summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-11-07 12:47:12 +0100
committerwolfbeast <mcwerewolf@gmail.com>2018-11-07 12:47:12 +0100
commit8240fb9c736f91044cabbdde8c537b179fc4921e (patch)
tree49a4cc8dc683cf955d61b6618ad471860554ccb5 /security/manager/ssl
parentf9e04b54c2ccbc1f8e24b511003de09b4565193c (diff)
parent5c83a18cde404b5c0c9fba1d35f003d951ea32e2 (diff)
downloadUXP-8240fb9c736f91044cabbdde8c537b179fc4921e.tar
UXP-8240fb9c736f91044cabbdde8c537b179fc4921e.tar.gz
UXP-8240fb9c736f91044cabbdde8c537b179fc4921e.tar.lz
UXP-8240fb9c736f91044cabbdde8c537b179fc4921e.tar.xz
UXP-8240fb9c736f91044cabbdde8c537b179fc4921e.zip
Merge branch 'master' into Pale_Moon-release
# Conflicts: # application/palemoon/config/version.txt
Diffstat (limited to 'security/manager/ssl')
-rw-r--r--security/manager/ssl/TransportSecurityInfo.cpp7
-rw-r--r--security/manager/ssl/nsNSSCallbacks.cpp12
-rw-r--r--security/manager/ssl/nsNSSCertificate.cpp13
-rw-r--r--security/manager/ssl/nsNSSIOLayer.cpp58
-rw-r--r--security/manager/ssl/nsSTSPreloadList.errors4425
-rw-r--r--security/manager/ssl/nsSTSPreloadList.inc6345
-rw-r--r--security/manager/ssl/tests/gtest/DeserializeCertTest.cpp86
-rw-r--r--security/manager/ssl/tests/unit/test_cert_chains.js26
8 files changed, 7102 insertions, 3870 deletions
diff --git a/security/manager/ssl/TransportSecurityInfo.cpp b/security/manager/ssl/TransportSecurityInfo.cpp
index 0e2238ad0..3c7023302 100644
--- a/security/manager/ssl/TransportSecurityInfo.cpp
+++ b/security/manager/ssl/TransportSecurityInfo.cpp
@@ -429,7 +429,12 @@ TransportSecurityInfo::Read(nsIObjectInputStream* stream)
if (NS_FAILED(rv)) {
return rv;
}
- mSSLStatus = BitwiseCast<nsSSLStatus*, nsISupports*>(supports.get());
+ nsCOMPtr<nsISSLStatus> castGuard(do_QueryInterface(supports));
+ if (castGuard) {
+ mSSLStatus = BitwiseCast<nsSSLStatus*, nsISSLStatus*>(castGuard.get());
+ } else {
+ mSSLStatus = nullptr;
+ }
nsCOMPtr<nsISupports> failedCertChainSupports;
rv = NS_ReadOptionalObject(stream, true, getter_AddRefs(failedCertChainSupports));
diff --git a/security/manager/ssl/nsNSSCallbacks.cpp b/security/manager/ssl/nsNSSCallbacks.cpp
index 6bac59f51..daabca591 100644
--- a/security/manager/ssl/nsNSSCallbacks.cpp
+++ b/security/manager/ssl/nsNSSCallbacks.cpp
@@ -1277,7 +1277,6 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) {
infoObject->GetPort(),
versions.max);
- bool usesFallbackCipher = false;
SSLChannelInfo channelInfo;
rv = SSL_GetChannelInfo(fd, &channelInfo, sizeof(channelInfo));
MOZ_ASSERT(rv == SECSuccess);
@@ -1296,8 +1295,6 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) {
sizeof cipherInfo);
MOZ_ASSERT(rv == SECSuccess);
if (rv == SECSuccess) {
- usesFallbackCipher = channelInfo.keaType == ssl_kea_dh;
-
MOZ_ASSERT(infoObject->GetKEAUsed() == channelInfo.keaType);
if (infoObject->IsFullHandshake()) {
@@ -1372,15 +1369,6 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) {
} else {
state = nsIWebProgressListener::STATE_IS_SECURE |
nsIWebProgressListener::STATE_SECURE_HIGH;
- if (!usesFallbackCipher) {
- SSLVersionRange defVersion;
- rv = SSL_VersionRangeGetDefault(ssl_variant_stream, &defVersion);
- if (rv == SECSuccess && versions.max >= defVersion.max) {
- // we know this site no longer requires a fallback cipher
- ioLayerHelpers.removeInsecureFallbackSite(infoObject->GetHostName(),
- infoObject->GetPort());
- }
- }
}
if (status->HasServerCert()) {
diff --git a/security/manager/ssl/nsNSSCertificate.cpp b/security/manager/ssl/nsNSSCertificate.cpp
index 12fca5065..f6685e89a 100644
--- a/security/manager/ssl/nsNSSCertificate.cpp
+++ b/security/manager/ssl/nsNSSCertificate.cpp
@@ -1208,6 +1208,10 @@ void nsNSSCertList::destructorSafeDestroyNSSReference()
NS_IMETHODIMP
nsNSSCertList::AddCert(nsIX509Cert* aCert)
{
+ if (!aCert) {
+ return NS_ERROR_INVALID_ARG;
+ }
+
nsNSSShutDownPreventionLock locker;
if (isAlreadyShutDown()) {
return NS_ERROR_NOT_AVAILABLE;
@@ -1369,17 +1373,20 @@ nsNSSCertList::Read(nsIObjectInputStream* aStream)
nsCOMPtr<nsISupports> certSupports;
rv = aStream->ReadObject(true, getter_AddRefs(certSupports));
if (NS_FAILED(rv)) {
- break;
+ return rv;
}
nsCOMPtr<nsIX509Cert> cert = do_QueryInterface(certSupports);
+ if (!cert) {
+ return NS_ERROR_UNEXPECTED;
+ }
rv = AddCert(cert);
if (NS_FAILED(rv)) {
- break;
+ return rv;
}
}
- return rv;
+ return NS_OK;
}
NS_IMETHODIMP
diff --git a/security/manager/ssl/nsNSSIOLayer.cpp b/security/manager/ssl/nsNSSIOLayer.cpp
index 93fca396b..d2549c52d 100644
--- a/security/manager/ssl/nsNSSIOLayer.cpp
+++ b/security/manager/ssl/nsNSSIOLayer.cpp
@@ -1916,59 +1916,12 @@ nsConvertCANamesToStrings(const UniquePLArenaPool& arena, char** caNameStrings,
}
SECItem* dername;
- SECStatus rv;
- int headerlen;
- uint32_t contentlen;
- SECItem newitem;
int n;
char* namestring;
for (n = 0; n < caNames->nnames; n++) {
- newitem.data = nullptr;
dername = &caNames->names[n];
- rv = DER_Lengths(dername, &headerlen, &contentlen);
-
- if (rv != SECSuccess) {
- goto loser;
- }
-
- if (headerlen + contentlen != dername->len) {
- // This must be from an enterprise 2.x server, which sent
- // incorrectly formatted der without the outer wrapper of type and
- // length. Fix it up by adding the top level header.
- if (dername->len <= 127) {
- newitem.data = (unsigned char*) PR_Malloc(dername->len + 2);
- if (!newitem.data) {
- goto loser;
- }
- newitem.data[0] = (unsigned char) 0x30;
- newitem.data[1] = (unsigned char) dername->len;
- (void) memcpy(&newitem.data[2], dername->data, dername->len);
- } else if (dername->len <= 255) {
- newitem.data = (unsigned char*) PR_Malloc(dername->len + 3);
- if (!newitem.data) {
- goto loser;
- }
- newitem.data[0] = (unsigned char) 0x30;
- newitem.data[1] = (unsigned char) 0x81;
- newitem.data[2] = (unsigned char) dername->len;
- (void) memcpy(&newitem.data[3], dername->data, dername->len);
- } else {
- // greater than 256, better be less than 64k
- newitem.data = (unsigned char*) PR_Malloc(dername->len + 4);
- if (!newitem.data) {
- goto loser;
- }
- newitem.data[0] = (unsigned char) 0x30;
- newitem.data[1] = (unsigned char) 0x82;
- newitem.data[2] = (unsigned char) ((dername->len >> 8) & 0xff);
- newitem.data[3] = (unsigned char) (dername->len & 0xff);
- memcpy(&newitem.data[4], dername->data, dername->len);
- }
- dername = &newitem;
- }
-
namestring = CERT_DerNameToAscii(dername);
if (!namestring) {
// XXX - keep going until we fail to convert the name
@@ -1977,21 +1930,12 @@ nsConvertCANamesToStrings(const UniquePLArenaPool& arena, char** caNameStrings,
caNameStrings[n] = PORT_ArenaStrdup(arena.get(), namestring);
PR_Free(namestring);
if (!caNameStrings[n]) {
- goto loser;
+ return SECFailure;
}
}
-
- if (newitem.data) {
- PR_Free(newitem.data);
- }
}
return SECSuccess;
-loser:
- if (newitem.data) {
- PR_Free(newitem.data);
- }
- return SECFailure;
}
// Possible behaviors for choosing a cert for client auth.
diff --git a/security/manager/ssl/nsSTSPreloadList.errors b/security/manager/ssl/nsSTSPreloadList.errors
index 48a20f39b..1b7c90ede 100644
--- a/security/manager/ssl/nsSTSPreloadList.errors
+++ b/security/manager/ssl/nsSTSPreloadList.errors
@@ -1,16 +1,29 @@
0-1.party: could not connect to host
0.me.uk: did not receive HSTS header
00001.am: max-age too low: 129600
-00002.am: max-age too low: 129600
0005.com: could not connect to host
0005aa.com: could not connect to host
0005pay.com: did not receive HSTS header
+00100010.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00120012.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00130013.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00140014.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00150015.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00160016.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00180018.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00190019.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
00220022.net: could not connect to host
+00330033.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00440044.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00550055.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00660066.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
007-preisvergleich.de: could not connect to host
+00770077.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
00778899.com: did not receive HSTS header
007kf.com: could not connect to host
007sascha.de: did not receive HSTS header
00880088.net: could not connect to host
+00990099.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
00wbf.com: could not connect to host
01100010011001010111001101110100.com: could not connect to host
013028.com: did not receive HSTS header
@@ -18,22 +31,25 @@
016098.com: did not receive HSTS header
016298.com: did not receive HSTS header
016328.com: did not receive HSTS header
-019328.com: did not receive HSTS header
+019328.com: could not connect to host
019398.com: did not receive HSTS header
+01smh.com: could not connect to host
020wifi.nl: could not connect to host
0222.mg: did not receive HSTS header
0222aa.com: could not connect to host
-023838.com: did not receive HSTS header
+023838.com: could not connect to host
028718.com: did not receive HSTS header
-029978.com: did not receive HSTS header
+029978.com: could not connect to host
029inno.com: could not connect to host
02dl.net: could not connect to host
+02smh.com: could not connect to host
03-09-2016.wedding: could not connect to host
+0311buy.cn: did not receive HSTS header
040fit.nl: did not receive HSTS header
040fitvitality.nl: did not receive HSTS header
048.ag: could not connect to host
+04sun.com: could not connect to host
050508.com: could not connect to host
-0513c.com: did not receive HSTS header
055268.com: did not receive HSTS header
066318.com: could not connect to host
066538.com: did not receive HSTS header
@@ -41,12 +57,14 @@
066928.com: could not connect to host
066938.com: could not connect to host
070709.net: could not connect to host
+07733.win: did not receive HSTS header
078805.com: did not receive HSTS header
078810.com: did not receive HSTS header
078820.com: did not receive HSTS header
078860.com: did not receive HSTS header
078890.com: did not receive HSTS header
081638.com: did not receive HSTS header
+083962.com: could not connect to host
086628.com: did not receive HSTS header
0c.eu: did not receive HSTS header
0cdn.ga: could not connect to host
@@ -72,13 +90,11 @@
0x90.fi: could not connect to host
0x90.in: could not connect to host
0xa.in: could not connect to host
-0xaa55.me: could not connect to host
0xb612.org: could not connect to host
0xcafec0.de: did not receive HSTS header
0xf00.ch: could not connect to host
1.0.0.1: max-age too low: 0
1000hats.com: did not receive HSTS header
-1000serien.com: could not connect to host
1001.best: could not connect to host
1001firms.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
100onrainkajino.com: could not connect to host
@@ -87,20 +103,29 @@
1022996493.rsc.cdn77.org: could not connect to host
1091.jp: could not connect to host
10gbit.ovh: could not connect to host
+10seos.com: did not receive HSTS header
10tacle.io: could not connect to host
10v2.com: did not receive HSTS header
10x.ooo: could not connect to host
+1100.so: could not connect to host
+110110110.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
1116pay.com: did not receive HSTS header
+112112112.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+113113113.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+118118118.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
11bt.cc: did not receive HSTS header
11recruitment.com.au: did not receive HSTS header
+11scc.com: did not receive HSTS header
120dayweightloss.com: could not connect to host
123110.com: could not connect to host
123movies.fyi: did not receive HSTS header
123share.org: did not receive HSTS header
123termpapers.com: could not connect to host
+123test.com: did not receive HSTS header
123test.de: did not receive HSTS header
123test.es: did not receive HSTS header
123test.fr: did not receive HSTS header
+123test.nl: did not receive HSTS header
126ium.moe: could not connect to host
127011-networks.ch: could not connect to host
12vpn.org: could not connect to host
@@ -112,12 +137,24 @@
1391kj.com: did not receive HSTS header
1396.cc: could not connect to host
1396.net: did not receive HSTS header
+1481481.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481481.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481482.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481482.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481483.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481483.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481485.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481485.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481486.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481486.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
1536.cf: could not connect to host
-160887.com: did not receive HSTS header
16164f.com: could not connect to host
163pwd.com: could not connect to host
+166166.com: could not connect to host
1689886.com: did not receive HSTS header
168bet9.com: could not connect to host
+168bo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+168bo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
168esb.com: could not connect to host
16deza.com: did not receive HSTS header
16packets.com: could not connect to host
@@ -126,18 +163,23 @@
173vpnv.com: could not connect to host
174.net.nz: did not receive HSTS header
174343.com: could not connect to host
+1750studios.com: could not connect to host
17hats.com: did not receive HSTS header
188522.com: did not receive HSTS header
18888msc.com: could not connect to host
1888zr.com: could not connect to host
188betwarriors.co.uk: could not connect to host
+188da.com: could not connect to host
188trafalgar.ca: did not receive HSTS header
+189dv.com: could not connect to host
1912x.com: could not connect to host
19216811.online: could not connect to host
1921958389.rsc.cdn77.org: could not connect to host
-195gm.com: did not receive HSTS header
+195gm.com: could not connect to host
1a-jva.de: could not connect to host
+1aim.com: did not receive HSTS header
1atic.com: could not connect to host
+1b1.pl: could not connect to host
1co-jp.net: did not receive HSTS header
1cover.com: could not connect to host
1day1ac.red: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -145,10 +187,12 @@
1gsoft.com: could not connect to host
1item.co.il: did not receive HSTS header
1k8b.com: could not connect to host
+1m.duckdns.org: could not connect to host
1nian.vip: could not connect to host
-1pw.ca: did not receive HSTS header
+1q2w.nl: could not connect to host
1q365a.com: could not connect to host
1s.tn: could not connect to host
+1salland.nl: could not connect to host
1st4abounce.co.uk: did not receive HSTS header
1stcapital.com.sg: did not receive HSTS header
1ststop.co.uk: did not receive HSTS header
@@ -157,21 +201,23 @@
1xcess.com: did not receive HSTS header
1years.cc: could not connect to host
2-cpu.de: could not connect to host
+200fcw.com: could not connect to host
2018.wales: could not connect to host
20188088.com: did not receive HSTS header
+2048-spiel.de: could not connect to host
2048game.co.uk: could not connect to host
206rc.net: max-age too low: 2592000
-208.es: did not receive HSTS header
+208.es: could not connect to host
20hs.cn: did not receive HSTS header
20zq.com: could not connect to host
+21.co.uk: did not receive HSTS header
21lg.co: could not connect to host
21stnc.com: could not connect to host
22bt.cc: did not receive HSTS header
+22scc.com: did not receive HSTS header
2333.press: could not connect to host
-2333666.xyz: did not receive HSTS header
-233ss.net: did not receive HSTS header
-245meadowvistaway.com: did not receive HSTS header
247a.co.uk: could not connect to host
+247exchange.com: could not connect to host
247quickbooks.com: did not receive HSTS header
2488.ch: did not receive HSTS header
249cq.com: could not connect to host
@@ -180,32 +226,35 @@
24kbet.com: could not connect to host
24pcr.com: could not connect to host
24sihu.com: could not connect to host
-2566335.xyz: could not connect to host
+2566335.xyz: did not receive HSTS header
256k.me: could not connect to host
+258da.com: did not receive HSTS header
25daysof.io: could not connect to host
-260887.com: did not receive HSTS header
27728522.com: could not connect to host
2859cc.com: could not connect to host
+286.com: did not receive HSTS header
+288da.com: did not receive HSTS header
29227.com: could not connect to host
+298da.com: did not receive HSTS header
2acbi-asso.fr: did not receive HSTS header
2b3b.com: could not connect to host
+2bad2c0.de: could not connect to host
2bitout.com: could not connect to host
2bizi.ru: could not connect to host
+2bouncy.com: did not receive HSTS header
2brokegirls.org: could not connect to host
2carpros.com: did not receive HSTS header
-2fl.me: did not receive HSTS header
-2gen.com: could not connect to host
+2fl.me: could not connect to host
2intermediate.co.uk: did not receive HSTS header
-2mir.com: could not connect to host
2or3.tk: could not connect to host
2smart4food.com: could not connect to host
-2ss.jp: could not connect to host
+2ss.jp: did not receive HSTS header
300651.ru: did not receive HSTS header
300mbmovie24.com: could not connect to host
300mbmovies4u.cc: could not connect to host
301.website: could not connect to host
302.nyc: could not connect to host
-30yearmortgagerates.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+30yearmortgagerates.net: could not connect to host
3133780x.com: did not receive HSTS header
314166.com: could not connect to host
314chan.org: could not connect to host
@@ -214,20 +263,22 @@
330.net: could not connect to host
338da.com: could not connect to host
33drugstore.com: could not connect to host
+33scc.com: did not receive HSTS header
341.mg: could not connect to host
34oztonic.eu: did not receive HSTS header
-3555500.com: could not connect to host
+3555500.com: did not receive HSTS header
3555aa.com: could not connect to host
35792.de: could not connect to host
360gradus.com: did not receive HSTS header
+360woodworking.com: could not connect to host
365.or.jp: could not connect to host
-365beautyworld.com: could not connect to host
365maya.com: did not receive HSTS header
368mibn.com: could not connect to host
3778vip.com: did not receive HSTS header
3778xl.com: could not connect to host
3839.ca: could not connect to host
38888msc.com: could not connect to host
+388da.com: could not connect to host
38blog.com: could not connect to host
38sihu.com: could not connect to host
3candy.com: could not connect to host
@@ -243,8 +294,9 @@
3sreporting.com: did not receive HSTS header
3vlnaeet.cz: could not connect to host
3wecommerce.com.br: could not connect to host
+3weekdietworks.com: did not receive HSTS header
3xx.link: could not connect to host
-40-grad.de: did not receive HSTS header
+40-grad.de: max-age too low: 2628000
4036aa.com: did not receive HSTS header
4036bb.com: did not receive HSTS header
4036cc.com: did not receive HSTS header
@@ -260,25 +312,18 @@
42entrepreneurs.fr: did not receive HSTS header
42ms.org: could not connect to host
42t.ru: could not connect to host
+439050.com: could not connect to host
439191.com: did not receive HSTS header
-440887.com: did not receive HSTS header
440hz-radio.de: did not receive HSTS header
440hz.radio: did not receive HSTS header
-442887.com: did not receive HSTS header
-443887.com: did not receive HSTS header
-444887.com: did not receive HSTS header
-4455software.com: could not connect to host
-445887.com: did not receive HSTS header
+4455software.com: did not receive HSTS header
+448da.com: did not receive HSTS header
44957.com: could not connect to host
+44scc.com: did not receive HSTS header
44sec.com: could not connect to host
4500.co.il: did not receive HSTS header
4679.space: did not receive HSTS header
-4706666.com: did not receive HSTS header
-4716666.com: did not receive HSTS header
-4726666.com: did not receive HSTS header
-4756666.com: did not receive HSTS header
-4786666.com: did not receive HSTS header
-478933.com: did not receive HSTS header
+478933.com: could not connect to host
47tech.com: could not connect to host
4997777.com: could not connect to host
4azino777.ru: did not receive HSTS header
@@ -294,32 +339,41 @@
4sqsu.eu: could not connect to host
4w-performers.link: could not connect to host
4web-hosting.com: could not connect to host
-4winds.pt: could not connect to host
+4winds.pt: did not receive HSTS header
5000yz.com: could not connect to host
-500103.com: could not connect to host
-500108.com: could not connect to host
+500103.com: did not receive HSTS header
+500108.com: did not receive HSTS header
+500fcw.com: could not connect to host
+50ma.xyz: could not connect to host
50millionablaze.org: could not connect to host
513vpn.net: could not connect to host
517vpn.cn: could not connect to host
518maicai.com: could not connect to host
-51aifuli.com: could not connect to host
+5214889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+5214889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
52b9.com: could not connect to host
52b9.net: could not connect to host
52kb.net: could not connect to host
52kb1.com: could not connect to host
-52neptune.com: could not connect to host
+52neptune.com: did not receive HSTS header
+5310899.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+5310899.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+5364.com: could not connect to host
540.co: did not receive HSTS header
5432.cc: did not receive HSTS header
54bf.com: could not connect to host
555fl.com: max-age too low: 129600
555xl.com: could not connect to host
55bt.cc: did not receive HSTS header
+55scc.com: did not receive HSTS header
56877.com: could not connect to host
56ct.com: could not connect to host
57aromas.com: did not receive HSTS header
+598598598.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
5chat.it: could not connect to host
5ece.de: could not connect to host
5piecesofadvice.com: could not connect to host
+5w5.la: did not receive HSTS header
605508.cc: could not connect to host
605508.com: could not connect to host
60ych.net: did not receive HSTS header
@@ -328,19 +382,20 @@
645ds.cn: did not receive HSTS header
645ds.com: did not receive HSTS header
64616e.xyz: could not connect to host
+64970.com: did not receive HSTS header
64bitgaming.de: could not connect to host
-64bitservers.net: could not connect to host
-660011.com: could not connect to host
-6677.us: did not receive HSTS header
+660011.com: did not receive HSTS header
+66205.net: did not receive HSTS header
+668da.com: did not receive HSTS header
67899876.com: did not receive HSTS header
-68277.me: could not connect to host
688da.com: could not connect to host
692b8c32.de: could not connect to host
69mentor.com: could not connect to host
69square.com: could not connect to host
6ird.com: did not receive HSTS header
+6w6.la: did not receive HSTS header
6z3.net: could not connect to host
-7045h.com: could not connect to host
+7045.com: could not connect to host
7183.org: could not connect to host
721av.com: could not connect to host
724go.com: could not connect to host
@@ -348,21 +403,25 @@
72ty.com: could not connect to host
72ty.net: could not connect to host
73223.com: did not receive HSTS header
-73info.com: did not receive HSTS header
+7570.com: could not connect to host
771122.tv: did not receive HSTS header
7717a.com: did not receive HSTS header
+772244.net: did not receive HSTS header
776573.net: did not receive HSTS header
7777av.co: could not connect to host
77890k.com: could not connect to host
+778da.com: did not receive HSTS header
77book.cn: could not connect to host
+788da.com: did not receive HSTS header
789zr.com: max-age too low: 86400
7f-wgg.cf: could not connect to host
7links.com.br: did not receive HSTS header
7nw.eu: could not connect to host
7thheavenrestaurant.com: could not connect to host
8.net.co: could not connect to host
+80036.com: could not connect to host
8003pay.com: could not connect to host
-808.lv: did not receive HSTS header
+808.lv: could not connect to host
808phone.net: could not connect to host
81818app.com: could not connect to host
81uc.com: could not connect to host
@@ -378,27 +437,44 @@
8722.com: did not receive HSTS header
87577.com: could not connect to host
88.to: could not connect to host
-887.ag: did not receive HSTS header
-8884553.com: could not connect to host
8887999.com: could not connect to host
8888av.co: could not connect to host
+8888esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
888azino.com: did not receive HSTS header
888lu.co: could not connect to host
+888msc.vip: did not receive HSTS header
88d.com: could not connect to host
88laohu.cc: could not connect to host
88laohu.com: could not connect to host
+8901178.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8901178.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8910899.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8910899.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8917168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8917168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8917818.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8917818.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8951889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8951889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
8989k3.com: could not connect to host
+8992088.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8992088.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
89955.com: could not connect to host
899699.com: did not receive HSTS header
89he.com: could not connect to host
8azino777.ru: did not receive HSTS header
8ballbombom.uk: could not connect to host
+8da2017.com: did not receive HSTS header
8da2018.com: could not connect to host
+8dabet.com: could not connect to host
8mpay.com: did not receive HSTS header
8t88.biz: could not connect to host
+8ung.online: could not connect to host
+8xx.bet: could not connect to host
+8xx.io: could not connect to host
+8xx888.com: could not connect to host
90smthng.com: could not connect to host
91-freedom.com: could not connect to host
-910kj.com: did not receive HSTS header
9118b.com: could not connect to host
911911.pw: could not connect to host
915ers.com: did not receive HSTS header
@@ -409,22 +485,27 @@
92bmh.com: did not receive HSTS header
9454.com: max-age too low: 86400
94cs.cn: did not receive HSTS header
+9500years.com: max-age too low: 0
95778.com: could not connect to host
960news.ca: could not connect to host
9617818.com: could not connect to host
9617818.net: could not connect to host
9651678.ru: could not connect to host
+9696178.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+9696178.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
9822.com: did not receive HSTS header
9822.info: did not receive HSTS header
987987.com: did not receive HSTS header
9906753.net: did not receive HSTS header
99511.fi: did not receive HSTS header
99buffets.com: could not connect to host
+9bingo.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
9iwan.net: did not receive HSTS header
9jadirect.com: could not connect to host
9point6.com: could not connect to host
9ss6.com: could not connect to host
9vies.ca: could not connect to host
+9won.kr: could not connect to host
a-intel.com: could not connect to host
a-ix.net: could not connect to host
a-plus.space: could not connect to host
@@ -434,42 +515,46 @@ a-theme.com: could not connect to host
a1-autopartsglasgow.com: could not connect to host
a1798.com: could not connect to host
a200k.xyz: did not receive HSTS header
+a2a.net: could not connect to host
a2c-co.net: could not connect to host
-a2it.gr: did not receive HSTS header
+a2it.gr: max-age too low: 0
a3workshop.swiss: could not connect to host
-a8q.org: could not connect to host
a9c.co: could not connect to host
+aa43d.cn: could not connect to host
+aa6688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
aa7733.com: could not connect to host
aaeblog.com: did not receive HSTS header
aaeblog.net: did not receive HSTS header
aaeblog.org: did not receive HSTS header
aaoo.net: could not connect to host
aapp.space: could not connect to host
+aardvarksolutions.co.za: did not receive HSTS header
aariefhaafiz.com: could not connect to host
aaron-gustafson.com: did not receive HSTS header
-aaronburt.co.uk: could not connect to host
-aaronhorler.com.au: could not connect to host
aaronmcguire.me: did not receive HSTS header
aarvinproperties.com: could not connect to host
+ab-bauservice-berlin.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+abacus-events.co.uk: did not receive HSTS header
+abacustech.net: did not receive HSTS header
+abacustech.org: did not receive HSTS header
abareplace.com: did not receive HSTS header
abasky.net: could not connect to host
-abcdef.be: could not connect to host
abcdentalcare.com: did not receive HSTS header
abcdobebe.com: did not receive HSTS header
abchelp.net: did not receive HSTS header
abearofsoap.com: could not connect to host
abecodes.net: could not connect to host
abeontech.com: could not connect to host
+aberdeenalmeras.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
abi-fvs.de: could not connect to host
abigailstark.com: could not connect to host
abilitylist.org: did not receive HSTS header
-abilma.com: could not connect to host
abioniere.de: could not connect to host
ablogagency.net: could not connect to host
abloop.com: could not connect to host
abmahnhelfer.de: did not receive HSTS header
abnarnro.com: could not connect to host
-abolition.co: could not connect to host
+abolition.co: did not receive HSTS header
abosav.com: did not receive HSTS header
abou.to: could not connect to host
about.ge: did not receive HSTS header
@@ -477,7 +562,8 @@ aboutassistedliving.org: did not receive HSTS header
aboutmyip.info: did not receive HSTS header
aboutmyproperty.ca: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
aboutyou-deals.de: could not connect to host
-abracadabra.co.jp: max-age too low: 0
+abraxan.pro: could not connect to host
+absimple.ca: did not receive HSTS header
absinthium.ch: could not connect to host
absolutewaterproofingsolutions.com: did not receive HSTS header
abstractbarista.com: could not connect to host
@@ -486,7 +572,8 @@ abt.de: did not receive HSTS header
abtom.de: did not receive HSTS header
abury.fr: did not receive HSTS header
abury.me: did not receive HSTS header
-abyssgaming.eu: did not receive HSTS header
+abyssgaming.eu: could not connect to host
+ac-epmservices.com: could not connect to host
ac.milan.it: did not receive HSTS header
acabadosboston.com: could not connect to host
academialowcost.com.br: did not receive HSTS header
@@ -496,6 +583,7 @@ acadianapatios.com: did not receive HSTS header
acai51.net: could not connect to host
acaonegocios.com.br: could not connect to host
acbc.ie: max-age too low: 0
+accadoro.it: did not receive HSTS header
accbay.com: could not connect to host
accelerate.network: could not connect to host
accelerole.com: did not receive HSTS header
@@ -504,7 +592,7 @@ accelight.jp: did not receive HSTS header
access-sofia.org: did not receive HSTS header
accolade.com.br: could not connect to host
accoun.technology: could not connect to host
-accounts-p.com: could not connect to host
+accounts-p.com: did not receive HSTS header
accountsuspended.club: could not connect to host
accwing.com: could not connect to host
aceadvisory.biz: did not receive HSTS header
@@ -520,7 +608,6 @@ acheritage.co.uk: did not receive HSTS header
achmadfamily.com: could not connect to host
achow101.com: did not receive HSTS header
achterhoekseveiligheidsbeurs.nl: could not connect to host
-achterstieg.dedyn.io: could not connect to host
acisonline.net: did not receive HSTS header
acksoft.fr: did not receive HSTS header
acksoftdemo.fr: did not receive HSTS header
@@ -528,9 +615,11 @@ acoffeeshops.com: could not connect to host
acorns.com: did not receive HSTS header
acpinformatique.fr: could not connect to host
acr.im: could not connect to host
+acraft.org: could not connect to host
acrepairdrippingsprings.com: could not connect to host
acritelli.com: did not receive HSTS header
acrossgw.com: could not connect to host
+acsihostingsolutions.com: did not receive HSTS header
acslimited.co.uk: did not receive HSTS header
actilove.ch: could not connect to host
actiontowingroundrock.com: could not connect to host
@@ -544,8 +633,9 @@ actu-film.com: max-age too low: 0
actu-medias.com: could not connect to host
actualite-videos.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
acuve.jp: could not connect to host
-acy.com: could not connect to host
+acyume.com: did not receive HSTS header
ad-disruptio.fr: could not connect to host
+ad13.in: could not connect to host
ada.is: max-age too low: 2592000
adajwells.me: could not connect to host
adambryant.ca: could not connect to host
@@ -553,14 +643,12 @@ adamcoffee.net: could not connect to host
adamdixon.co.uk: could not connect to host
adamricheimer.com: could not connect to host
adamsfoundationrepair.com: did not receive HSTS header
-adamwallington.co.uk: could not connect to host
adamwk.com: did not receive HSTS header
adastra.re: could not connect to host
adblock.ovh: could not connect to host
adboos.com: could not connect to host
addaxpetroleum.com: could not connect to host
addcrazy.com: did not receive HSTS header
-addiko.net: could not connect to host
addvocate.com: could not connect to host
adec-emsa.ae: could not connect to host
adelaides.com: did not receive HSTS header
@@ -569,7 +657,6 @@ adelinlydia-coach.com: did not receive HSTS header
adequatetechnology.com: could not connect to host
aderal.io: could not connect to host
adesa-asesoria.com: did not receive HSTS header
-adevel.eu: could not connect to host
adfa-1.com: could not connect to host
adhigamindia.com: could not connect to host
adhosting.nl: did not receive HSTS header
@@ -581,10 +668,8 @@ adlerweb.info: did not receive HSTS header
admin-forms.co.uk: did not receive HSTS header
admin-numerique.com: did not receive HSTS header
admin.google.com: did not receive HSTS header (error ignored - included regardless)
-admins.tech: could not connect to host
adminwerk.com: did not receive HSTS header
adminwerk.net: did not receive HSTS header
-admirable.one: did not receive HSTS header
admiral.dp.ua: did not receive HSTS header
admitcard.co.in: could not connect to host
admsel.ec: could not connect to host
@@ -593,6 +678,7 @@ adoge.me: could not connect to host
adonairelogios.com.br: could not connect to host
adoniscabaret.co.uk: could not connect to host
adopteunsiteflash.com: could not connect to host
+adora-illustrations.fr: did not receive HSTS header
adprospb.com: did not receive HSTS header
adquisitio.de: could not connect to host
adquisitio.in: could not connect to host
@@ -615,7 +701,7 @@ advancedplasticsurgerycenter.com: did not receive HSTS header
advancedseotool.it: did not receive HSTS header
advancedstudio.ro: could not connect to host
advancedwriters.com: could not connect to host
-advantagemechanicalinc.com: did not receive HSTS header
+advantagemechanicalinc.com: could not connect to host
adventistdeploy.org: could not connect to host
adventures.is: did not receive HSTS header
adver.top: could not connect to host
@@ -623,6 +709,7 @@ advertisemant.com: could not connect to host
adviespuntklokkenluiders.nl: could not connect to host
adzie.xyz: could not connect to host
adzuna.co.uk: did not receive HSTS header
+aegialis.com: did not receive HSTS header
aelurus.com: could not connect to host
aemoria.com: could not connect to host
aeon.wiki: could not connect to host
@@ -634,6 +721,7 @@ aes256.ru: could not connect to host
aesthetics-blog.com: did not receive HSTS header
aesym.de: could not connect to host
aether.pw: could not connect to host
+aethonan.pro: could not connect to host
aevpn.net: could not connect to host
aevpn.org: could not connect to host
aeyoun.com: did not receive HSTS header
@@ -664,12 +752,15 @@ agenciagriff.com: did not receive HSTS header
agencymanager.be: could not connect to host
agentseeker.ca: could not connect to host
agevio.com: could not connect to host
+agiairini.cz: could not connect to host
+agilebits.net: could not connect to host
agileecommerce.com.br: could not connect to host
agingstop.net: could not connect to host
-agonswim.com: did not receive HSTS header
+agonswim.com: could not connect to host
agoravm.tk: could not connect to host
agowa.eu: did not receive HSTS header
agowa338.de: did not receive HSTS header
+agracan.com: could not connect to host
agrafix.design: did not receive HSTS header
agrarking.com: could not connect to host
agrias.com.br: did not receive HSTS header
@@ -682,7 +773,8 @@ agroyard.com.ua: could not connect to host
agtv.com.br: did not receive HSTS header
ahabingo.com: did not receive HSTS header
ahelos.tk: could not connect to host
-ahlz.sk: could not connect to host
+ahiru3.com: did not receive HSTS header
+ahkubiak.ovh: could not connect to host
aholic.co: did not receive HSTS header
ahoynetwork.com: could not connect to host
ahri.ovh: could not connect to host
@@ -692,17 +784,18 @@ ahwatukeefoothillsmontessori.com: did not receive HSTS header
ai1989.com: could not connect to host
aibaoyou.com: could not connect to host
aibsoftware.mx: could not connect to host
-aicial.com: did not receive HSTS header
+aicial.com: could not connect to host
aicial.com.au: could not connect to host
aid-web.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
aidanwoods.com: did not receive HSTS header
aide-admin.com: did not receive HSTS header
+aide-valais.ch: could not connect to host
aidikofflaw.com: did not receive HSTS header
aiesecarad.ro: could not connect to host
aifreeze.ru: could not connect to host
aify.eu: could not connect to host
aikenorganics.com: could not connect to host
-aim-consultants.com: could not connect to host
+aim-consultants.com: did not receive HSTS header
aimerworld.com: did not receive HSTS header
aimrom.org: could not connect to host
ainrb.com: could not connect to host
@@ -710,16 +803,20 @@ aioboot.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERRO
aip-marine.com: could not connect to host
aiphyron.com: could not connect to host
aiponne.com: could not connect to host
+airbly.com: did not receive HSTS header
airconsalberton.co.za: did not receive HSTS header
airconsboksburg.co.za: did not receive HSTS header
airconsfourways.co.za: did not receive HSTS header
airconsmidrand.co.za: did not receive HSTS header
-airconssandton.co.za: did not receive HSTS header
airedaleterrier.com.br: could not connect to host
airfax.io: could not connect to host
+airhorn.de: did not receive HSTS header
+airicy.com: did not receive HSTS header
airlea.com: could not connect to host
airlinecheckins.com: did not receive HSTS header
+airlinesettlement.com: did not receive HSTS header
airmazinginflatables.com: could not connect to host
+airportlimototoronto.com: did not receive HSTS header
airproto.com: did not receive HSTS header
airsick.guide: did not receive HSTS header
airtimefranchise.com: did not receive HSTS header
@@ -728,8 +825,9 @@ aisle3.space: could not connect to host
aiticon.de: did not receive HSTS header
aivene.com: could not connect to host
aiw-thkoeln.online: could not connect to host
+aixxe.net: did not receive HSTS header
ajetaci.cz: could not connect to host
-ajibot.com: did not receive HSTS header
+ajibot.com: could not connect to host
ajmahal.com: could not connect to host
ajouin.com: could not connect to host
ajw-group.com: did not receive HSTS header
@@ -744,16 +842,15 @@ akhras.at: did not receive HSTS header
akiba-server.info: could not connect to host
akihiro.xyz: could not connect to host
akita-stream.com: could not connect to host
-akj.io: did not receive HSTS header
akkadia.cc: could not connect to host
+akkeylab.com: could not connect to host
akoch.net: could not connect to host
akombakom.net: could not connect to host
-akoww.de: could not connect to host
akracing.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
akselimedia.fi: could not connect to host
akstudentsfirst.org: could not connect to host
aktan.com.br: could not connect to host
-aktivist.in: did not receive HSTS header
+aktivist.in: could not connect to host
akul.co.in: could not connect to host
al-f.net: could not connect to host
al-shami.net: could not connect to host
@@ -770,6 +867,7 @@ alauda-home.de: could not connect to host
alaundeil.xyz: could not connect to host
albanien.guide: could not connect to host
alberguecimballa.es: could not connect to host
+albertbogdanowicz.pl: could not connect to host
albertify.xyz: could not connect to host
albertonplumber24-7.co.za: did not receive HSTS header
albertopimienta.com: did not receive HSTS header
@@ -780,20 +878,23 @@ alcazaar.com: could not connect to host
alchemia.co.il: did not receive HSTS header
alcorao.org: could not connect to host
aldes.co.za: did not receive HSTS header
+aldred.cloud: could not connect to host
aleax.me: could not connect to host
alecvannoten.be: did not receive HSTS header
+aledg.cl: could not connect to host
alenan.org: could not connect to host
aleph.land: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
alertaenlinea.gov: did not receive HSTS header
alessandro.pw: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+alessandroonline.com.br: did not receive HSTS header
+alessandroz.ddns.net: could not connect to host
alessandroz.pro: could not connect to host
alethearose.com: did not receive HSTS header
alexandernorth.ch: could not connect to host
alexandre.sh: did not receive HSTS header
-alexandros.io: could not connect to host
alexdodge.ca: did not receive HSTS header
-alexei.su: could not connect to host
alexfisherhealth.com.au: did not receive HSTS header
+alexgebhard.com: could not connect to host
alexhaydock.co.uk: did not receive HSTS header
alexischaussy.xyz: could not connect to host
alexismeza.com: could not connect to host
@@ -815,18 +916,19 @@ alghaib.com: could not connect to host
alibababee.com: did not receive HSTS header
alicialab.org: could not connect to host
alien.bz: did not receive HSTS header
-alignrs.com: could not connect to host
-alikulov.me: did not receive HSTS header
alilialili.ga: could not connect to host
alinemaciel.adm.br: could not connect to host
+alinode.com: could not connect to host
+alistairholland.me: did not receive HSTS header
alistairpialek.com: max-age too low: 86400
+alisync.com: could not connect to host
alittlebitcheeky.com: did not receive HSTS header
aliwebstore.com: could not connect to host
aljammaz.holdings: could not connect to host
aljmz.com: did not receive HSTS header
alkami.com: max-age too low: 0
alkamitech.com: max-age too low: 0
-alkel.info: did not receive HSTS header
+alkel.info: could not connect to host
all-subtitles.com: could not connect to host
all.tf: could not connect to host
all4os.com: did not receive HSTS header
@@ -835,9 +937,9 @@ alldaymonitoring.com: could not connect to host
alldm.ru: could not connect to host
allegro-inc.com: did not receive HSTS header
allerbestefreunde.de: did not receive HSTS header
-allfreelancers.su: did not receive HSTS header
allgrass.es: did not receive HSTS header
allgrass.net: did not receive HSTS header
+allhard.org: could not connect to host
alliance-compacts.com: did not receive HSTS header
allinnote.com: could not connect to host
allinonecyprus.com: did not receive HSTS header
@@ -860,12 +962,15 @@ allstorebrasil.com.br: could not connect to host
alltheducks.com: max-age too low: 43200
allthingsblogging.com: could not connect to host
allthingsfpl.com: could not connect to host
-allvips.ru: could not connect to host
+alltubedownload.net: could not connect to host
almagalla.com: could not connect to host
almatinki.com: could not connect to host
aloalabs.com: did not receive HSTS header
alocato.com: could not connect to host
+alorenzi.eu: did not receive HSTS header
+alp.net.cn: could not connect to host
alparque.com: did not receive HSTS header
+alpe-d-or.dyn-o-saur.com: could not connect to host
alpha.irccloud.com: could not connect to host
alphabit-secure.com: could not connect to host
alphabuild.io: could not connect to host
@@ -887,33 +992,31 @@ altered.network: could not connect to host
altfire.ca: could not connect to host
altiacaselight.com: could not connect to host
altitudemoversdenver.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-altoneum.com: could not connect to host
+altoneum.com: did not receive HSTS header
altporn.xyz: could not connect to host
altruistgroup.net: max-age too low: 300
aluminium-scaffolding.co.uk: could not connect to host
-alunjam.es: could not connect to host
-alunonaescola.com.br: could not connect to host
+alunjam.es: did not receive HSTS header
+alunonaescola.com.br: did not receive HSTS header
aluoblog.pw: could not connect to host
aluoblog.top: could not connect to host
alusta.co: could not connect to host
+alvis-audio.com: did not receive HSTS header
alvn.ga: could not connect to host
am8888.top: could not connect to host
amaderelectronics.com: max-age too low: 2592000
amadilo.de: could not connect to host
amadoraslindas.com: could not connect to host
amaforums.org: did not receive HSTS header
-amagical.net: did not receive HSTS header
amandaonishi.com: could not connect to host
amaranthus.com.ph: could not connect to host
-amartinz.at: could not connect to host
amateri.com: could not connect to host
-amateurvoicetalent.com: could not connect to host
amatzen.dk: did not receive HSTS header
amavis.org: did not receive HSTS header
amazing-gaming.fr: could not connect to host
amazingbouncycastles.co.uk: did not receive HSTS header
amazingfloridagulfhomes.com: did not receive HSTS header
-ambiancestudio.ro: could not connect to host
+ambiancestudio.ro: did not receive HSTS header
ambrosius.io: could not connect to host
amcvega.com: did not receive HSTS header
amdouglas.uk: could not connect to host
@@ -927,6 +1030,7 @@ americanoutlawjeepparts.com: did not receive HSTS header
americansforcommunitydevelopment.org: did not receive HSTS header
americansportsinstitute.org: did not receive HSTS header
americanworkwear.nl: did not receive HSTS header
+ameschristian.net: did not receive HSTS header
amethystcards.co.uk: could not connect to host
ameza.co.uk: could not connect to host
ameza.com.mx: could not connect to host
@@ -942,10 +1046,11 @@ amilx.org: could not connect to host
amimoto-ami.com: did not receive HSTS header
amin.ga: did not receive HSTS header
amin.one: could not connect to host
+amisharingstuff.com: could not connect to host
amishsecurity.com: could not connect to host
amitse.com: did not receive HSTS header
amitube.com: did not receive HSTS header
-amleeds.co.uk: could not connect to host
+amleeds.co.uk: did not receive HSTS header
amlvfs.net: could not connect to host
ammoulianiapartments.com: did not receive HSTS header
amo-entreprise-et-commerce.fr: could not connect to host
@@ -956,7 +1061,7 @@ ampledesigners.com: could not connect to host
ampleinfographics.com: could not connect to host
amri.nl: did not receive HSTS header
amtentertainments.co.uk: could not connect to host
-amua.fr: could not connect to host
+amua.fr: did not receive HSTS header
amunoz.org: could not connect to host
amv-crm.ru: could not connect to host
anabol.nl: could not connect to host
@@ -964,7 +1069,7 @@ anacruz.es: did not receive HSTS header
anadoluefessk.org: did not receive HSTS header
anadoluefessporkulubu.org: could not connect to host
anagra.ms: could not connect to host
-anaiscoachpersonal.es: did not receive HSTS header
+anaiscoachpersonal.es: could not connect to host
anaisypirueta.es: did not receive HSTS header
anakros.me: could not connect to host
analangelsteen.com: could not connect to host
@@ -980,10 +1085,10 @@ anchorgrounds.com: did not receive HSTS header
anchorinmarinainc.com: did not receive HSTS header
ancient-gates.de: could not connect to host
ancientkarma.com: could not connect to host
+ancientnorth.com: did not receive HSTS header
andbraiz.com: did not receive HSTS header
andere-gedanken.net: max-age too low: 10
anderslind.dk: could not connect to host
-andoms.fi: did not receive HSTS header
andreagobetti.com: did not receive HSTS header
andreas-kluge.eu: could not connect to host
andreasanti.net: did not receive HSTS header
@@ -991,17 +1096,21 @@ andreasbasurto.com: could not connect to host
andreasbreitenlohner.de: max-age too low: 600000
andreasfritz-fotografie.de: could not connect to host
andreaskluge.eu: could not connect to host
+andreasr.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
andreastoneman.com: could not connect to host
-andrei-coman.com: could not connect to host
+andrei-coman.com: did not receive HSTS header
andreigec.net: did not receive HSTS header
+andrejbenz.com: could not connect to host
+andrepicard.de: could not connect to host
andrerose.ca: did not receive HSTS header
-andrew.fi: could not connect to host
-andrewbroekman.com: did not receive HSTS header
+andrespaz.com: could not connect to host
+andrewbroekman.com: could not connect to host
andrewdavidwong.com: did not receive HSTS header
andrewdaws.co: could not connect to host
andrewdaws.info: could not connect to host
andrewdaws.me: could not connect to host
andrewdaws.tv: could not connect to host
+andrewhowden.com: did not receive HSTS header
andrewmichaud.beer: could not connect to host
andrewrdaws.com: could not connect to host
andrewregan.me: could not connect to host
@@ -1016,9 +1125,8 @@ androidsphone.com: did not receive HSTS header
androled.fr: max-age too low: 5184000
andronika.net: could not connect to host
androoz.se: could not connect to host
-anduril.de: did not receive HSTS header
-anduril.eu: did not receive HSTS header
andyclark.io: could not connect to host
+andycloud.dynu.net: could not connect to host
andycraftz.eu: did not receive HSTS header
andymartin.cc: could not connect to host
andymelichar.com: max-age too low: 0
@@ -1034,14 +1142,19 @@ angeloroberto.ch: did not receive HSTS header
angeloventuri.com: did not receive HSTS header
angervillelorcher.fr: did not receive HSTS header
anghami.com: did not receive HSTS header
+anglertanke.de: could not connect to host
anglictinatabor.cz: could not connect to host
-angrut.com: did not receive HSTS header
+angrut.com: could not connect to host
angry-monk.com: could not connect to host
angrydragonproductions.com: could not connect to host
+angrylab.com: did not receive HSTS header
angryroute.com: could not connect to host
-animal-nature-human.com: could not connect to host
+anguiao.com: did not receive HSTS header
+aniaimichal.eu: could not connect to host
+anim.ee: could not connect to host
animalnet.de: max-age too low: 7776000
animalstropic.com: could not connect to host
+animatelluris.nl: max-age too low: 300
anime1.top: could not connect to host
anime1video.tk: could not connect to host
animeday.ml: could not connect to host
@@ -1059,16 +1172,22 @@ ankakaak.com: could not connect to host
ankaraprofesyonelnakliyat.com: did not receive HSTS header
ankaraprofesyonelnakliyat.com.tr: did not receive HSTS header
ankitha.in: max-age too low: 0
+ankya9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+anlp.top: could not connect to host
annabellaw.com: did not receive HSTS header
annahmeschluss.de: did not receive HSTS header
+annangela.moe: did not receive HSTS header
annarbor.group: did not receive HSTS header
annetaan.fi: could not connect to host
annevankesteren.com: could not connect to host
annevankesteren.org: could not connect to host
+annicascakes.nl: could not connect to host
+annrusnak.com: did not receive HSTS header
annsbouncycastles.com: could not connect to host
anomaly.ws: did not receive HSTS header
anonboards.com: could not connect to host
anonrea.ch: could not connect to host
+anonukradio.org: could not connect to host
anonymo.co.uk: could not connect to host
anonymo.uk: could not connect to host
anonymousstatecollegelulzsec.com: could not connect to host
@@ -1085,6 +1204,7 @@ antecim.fr: could not connect to host
antenasmundosat.com.br: did not receive HSTS header
anthenor.co.uk: could not connect to host
anthony-rouanet.com: could not connect to host
+anthonyaires.com: did not receive HSTS header
anthonyavon.com: could not connect to host
anthonyloop.com: did not receive HSTS header
anthro.id: did not receive HSTS header
@@ -1093,6 +1213,7 @@ antimatiere.space: could not connect to host
antimine.kr: could not connect to host
antipa.ch: could not connect to host
antirayapmalang.com: did not receive HSTS header
+antocom.com: could not connect to host
antoine-roux.fr: did not receive HSTS header
antoinebetas.be: max-age too low: 0
antoined.fr: did not receive HSTS header
@@ -1100,6 +1221,7 @@ antoinemary.io: did not receive HSTS header
antoineschaller.ch: did not receive HSTS header
antoniomarques.eu: did not receive HSTS header
antoniorequena.com.ve: could not connect to host
+antons.io: did not receive HSTS header
antraxx.ee: could not connect to host
antscript.com: did not receive HSTS header
anttitenhunen.com: could not connect to host
@@ -1119,7 +1241,6 @@ aooobo.com: could not connect to host
aov.io: could not connect to host
aovcentrum.nl: did not receive HSTS header
aozora.moe: could not connect to host
-apachelounge.com: did not receive HSTS header
apadrinaunolivo.org: did not receive HSTS header
apaginastore.com.br: could not connect to host
apeasternpower.com: could not connect to host
@@ -1128,6 +1249,7 @@ aperture-laboratories.science: did not receive HSTS header
api.mega.co.nz: could not connect to host
apibot.de: could not connect to host
apience.com: did not receive HSTS header
+apila.us: could not connect to host
apis.blue: could not connect to host
apis.google.com: did not receive HSTS header (error ignored - included regardless)
apis.world: could not connect to host
@@ -1139,8 +1261,10 @@ apl2bits.net: did not receive HSTS header
apm.com.tw: did not receive HSTS header
apmg-certified.com: did not receive HSTS header
apmg-cyber.com: did not receive HSTS header
+apmpproject.org: did not receive HSTS header
apnakliyat.com: did not receive HSTS header
apolloyl.com: could not connect to host
+apollyon.work: could not connect to host
aponkral.site: could not connect to host
aponkralsunucu.com: could not connect to host
aponow.de: did not receive HSTS header
@@ -1150,6 +1274,7 @@ app-arena.com: did not receive HSTS header
app.manilla.com: could not connect to host
apparels24.com: did not receive HSTS header
appart.ninja: could not connect to host
+appcoins.io: did not receive HSTS header
appdb.cc: did not receive HSTS header
appdrinks.com: could not connect to host
appeldorn.me: did not receive HSTS header
@@ -1158,7 +1283,7 @@ appimlab.it: could not connect to host
apple-watch-zubehoer.de: could not connect to host
apple.ax: could not connect to host
applejacks-bouncy-castles.co.uk: could not connect to host
-applewatch.co.nz: did not receive HSTS header
+applewatch.co.nz: could not connect to host
applez.xyz: could not connect to host
appliancerepairlosangeles.com: did not receive HSTS header
applic8.com: did not receive HSTS header
@@ -1166,16 +1291,21 @@ apply55gx.com: could not connect to host
appointed.at: did not receive HSTS header
appraisal-comps.com: could not connect to host
appreciationkards.com: did not receive HSTS header
+apprenticeships.gov: did not receive HSTS header
approlys.fr: did not receive HSTS header
apps-for-fishing.com: could not connect to host
apps4all.sytes.net: could not connect to host
appsbystudio.co.uk: did not receive HSTS header
appsdash.io: could not connect to host
+appson.co.uk: did not receive HSTS header
apptoutou.com: could not connect to host
appuro.com: did not receive HSTS header
appxcrypto.com: did not receive HSTS header
+aproposcomputing.com: could not connect to host
aprpullmanportermuseum.org: did not receive HSTS header
+aprr.org: could not connect to host
aptitude9.com: could not connect to host
+aqilacademy.com.au: could not connect to host
aqqrate.com: could not connect to host
aquariumaccessories.shop: could not connect to host
aquilaguild.com: could not connect to host
@@ -1187,8 +1317,9 @@ arabsexi.info: could not connect to host
aradulconteaza.ro: could not connect to host
aran.me.uk: could not connect to host
aranel.me: could not connect to host
+arawaza.info: could not connect to host
arboineuropa.nl: did not receive HSTS header
-arbu.eu: max-age too low: 2419200
+arboleda-hurtado.com: could not connect to host
arcadiaeng.com: did not receive HSTS header
arcbit.io: could not connect to host
archii.ca: did not receive HSTS header
@@ -1199,33 +1330,37 @@ archsec.info: could not connect to host
arckr.com: could not connect to host
arctica.io: did not receive HSTS header
ardao.me: could not connect to host
-ardor.noip.me: could not connect to host
-ardorlabs.se: could not connect to host
+ardorlabs.se: did not receive HSTS header
area3.org: could not connect to host
areallyneatwebsite.com: could not connect to host
-arent.kz: could not connect to host
+arent.kz: did not receive HSTS header
arenzanaphotography.com: could not connect to host
-arethsu.se: could not connect to host
+areqgaming.com: could not connect to host
arewedubstepyet.com: did not receive HSTS header
areyouever.me: could not connect to host
argennon.xyz: could not connect to host
argh.io: could not connect to host
arguggi.co.uk: could not connect to host
+ariaartgallery.com: did not receive HSTS header
ariacreations.net: did not receive HSTS header
-ariege-pyrenees.net: did not receive HSTS header
arifburhan.online: could not connect to host
arifp.me: could not connect to host
arinflatablefun.co.uk: could not connect to host
arislight.com: could not connect to host
-aristocrates.co: could not connect to host
+aristilabs.com: did not receive HSTS header
aristocratps.com: did not receive HSTS header
arithxu.com: did not receive HSTS header
+arizer.com: did not receive HSTS header
arka.gq: did not receive HSTS header
arknodejs.com: could not connect to host
arlen.io: could not connect to host
arlen.se: could not connect to host
+arlet.click: could not connect to host
arlingtonwine.net: could not connect to host
+arm-host.com: did not receive HSTS header
+arm.gov: could not connect to host
armazemdaminiatura.com.br: could not connect to host
+armeni-jewellery.gr: did not receive HSTS header
armenians.online: could not connect to host
armingrodon.de: did not receive HSTS header
armodec.com: did not receive HSTS header
@@ -1236,6 +1371,7 @@ armory.supplies: could not connect to host
armsday.com: could not connect to host
armyofbane.com: did not receive HSTS header
armytricka.cz: did not receive HSTS header
+arnaudminable.net: could not connect to host
arne-petersen.net: did not receive HSTS header
arnesolutions.com: could not connect to host
aromaclub.nl: did not receive HSTS header
@@ -1251,24 +1387,16 @@ arrowgrove.com: could not connect to host
ars-design.net: could not connect to host
arsenal.ru: could not connect to host
arsk1.com: could not connect to host
-arswb.men: could not connect to host
art2web.net: could not connect to host
+artansoft.com: could not connect to host
artaronquieres.com: did not receive HSTS header
artartefatos.com.br: could not connect to host
artbytik.ru: did not receive HSTS header
-artea.ga: could not connect to host
-arteaga.co.uk: could not connect to host
-arteaga.eu: could not connect to host
-arteaga.me: could not connect to host
-arteaga.tech: could not connect to host
-arteaga.uk: could not connect to host
-arteaga.xyz: could not connect to host
artegusto.ru: did not receive HSTS header
artemicroway.com.br: could not connect to host
arteseideias.com.pt: did not receive HSTS header
artesupra.com: did not receive HSTS header
arthan.me: could not connect to host
-arthur.cn: could not connect to host
arti-group.ml: max-age too low: 2592000
articaexports.com: could not connect to host
artifex21.com: did not receive HSTS header
@@ -1297,9 +1425,10 @@ asana.studio: did not receive HSTS header
asasuou.pw: could not connect to host
asc16.com: could not connect to host
aschaefer.net: could not connect to host
-asciitable.tips: could not connect to host
+ascii.moe: could not connect to host
asdpress.cn: could not connect to host
asepms.com: max-age too low: 7776000
+asge-handel.de: did not receive HSTS header
ashlane-cottages.com: could not connect to host
ashleakunowski.com: could not connect to host
ashleyadum.com: could not connect to host
@@ -1308,17 +1437,19 @@ ashleymedway.com: could not connect to host
asian-archi.com.tw: did not receive HSTS header
asianbet77.co: did not receive HSTS header
asianbet77.net: did not receive HSTS header
-asianodor.com: could not connect to host
-asiesvenezuela.com: did not receive HSTS header
+asiesvenezuela.com: could not connect to host
asisee.co.il: could not connect to host
+asisee.photography: could not connect to host
ask.pe: could not connect to host
askfit.cz: did not receive HSTS header
askmagicconch.com: could not connect to host
asm-x.com: could not connect to host
asmik-armenie.com: did not receive HSTS header
+asmm.cc: did not receive HSTS header
asmui.ga: could not connect to host
-asmui.ml: could not connect to host
+asmui.ml: did not receive HSTS header
asoftwareco.com: did not receive HSTS header
+aspargesgaarden.no: could not connect to host
asphaltfruehling.de: could not connect to host
asral7.com: could not connect to host
asryflorist.com: could not connect to host
@@ -1330,12 +1461,14 @@ asset-alive.com: did not receive HSTS header
asset-alive.net: could not connect to host
assetsupervision.com: could not connect to host
assindia.nl: could not connect to host
+assistance-personnes-agees.ch: could not connect to host
assistcart.com: could not connect to host
assurancesmons.be: did not receive HSTS header
astaninki.com: could not connect to host
asthon.cn: could not connect to host
astraalivankila.net: could not connect to host
astral.gq: did not receive HSTS header
+astral.org.pl: could not connect to host
astrath.net: could not connect to host
astrea-voetbal-groningen.nl: could not connect to host
astrolpost.com: could not connect to host
@@ -1346,10 +1479,8 @@ astutr.co: could not connect to host
asuhe.cc: could not connect to host
asuhe.win: did not receive HSTS header
asuhe.xyz: could not connect to host
-async.be: could not connect to host
+async.be: max-age too low: 0
at1.co: could not connect to host
-ataber.pw: could not connect to host
-atacadodesandalias.com.br: could not connect to host
atacadooptico.com.br: could not connect to host
atavio.at: could not connect to host
atavio.ch: could not connect to host
@@ -1360,14 +1491,17 @@ atelier-rk.com: did not receive HSTS header
atelier-viennois-cannes.fr: could not connect to host
ateliernihongo.ch: did not receive HSTS header
ateliersantgervasi.com: did not receive HSTS header
-ath0.org: max-age too low: 600
+atg.soy: could not connect to host
athaliasoft.com: could not connect to host
athenelive.com: could not connect to host
athensbusinessresources.us: could not connect to host
+atheoryofchange.com: could not connect to host
athi.pl: did not receive HSTS header
athul.xyz: could not connect to host
atk.me: could not connect to host
atkdesign.pt: did not receive HSTS header
+atlantaspringroll.com: could not connect to host
+atlantichomes.com.au: could not connect to host
atlas-5.site: could not connect to host
atlas-staging.ml: could not connect to host
atlas.co: did not receive HSTS header
@@ -1382,24 +1516,27 @@ atop.io: could not connect to host
atracaosexshop.com.br: could not connect to host
atrevillot.com: could not connect to host
attic118.com: could not connect to host
+attilagyorffy.com: could not connect to host
attimidesigns.com: did not receive HSTS header
attogproductions.com: did not receive HSTS header
au-pair24.de: did not receive HSTS header
au.search.yahoo.com: max-age too low: 172800
+au2pb.net: could not connect to host
aubiosales.com: could not connect to host
aucubin.moe: could not connect to host
-audiense.com: did not receive HSTS header
+audioonly.stream: could not connect to host
audiovisualdevices.com.au: did not receive HSTS header
audividi.shop: did not receive HSTS header
aufmerksamkeitsstudie.com: could not connect to host
aufprise.de: did not receive HSTS header
-augaware.org: could not connect to host
+augaware.org: did not receive HSTS header
augenblicke-blog.de: could not connect to host
augias.org: could not connect to host
augix.net: could not connect to host
augrandinquisiteur.com: did not receive HSTS header
aujapan.ru: could not connect to host
auntieme.com: did not receive HSTS header
+aur.rocks: did not receive HSTS header
aurainfosec.com: did not receive HSTS header
aurainfosec.com.au: did not receive HSTS header
auraredeye.com: could not connect to host
@@ -1425,7 +1562,6 @@ auth.mail.ru: did not receive HSTS header
authenitech.com: did not receive HSTS header
authentication.io: could not connect to host
authint.com: could not connect to host
-authland.com: could not connect to host
author24.ru: did not receive HSTS header
authoritynutrition.com: did not receive HSTS header
authorsguild.in: did not receive HSTS header
@@ -1449,6 +1585,7 @@ autostock.me: could not connect to host
autostop-occasions.be: could not connect to host
autotsum.com: could not connect to host
autoxy.it: did not receive HSTS header
+autozane.com: could not connect to host
autumnwindsagility.com: could not connect to host
auverbox.ovh: could not connect to host
auvious.com: did not receive HSTS header
@@ -1464,16 +1601,16 @@ avastantivirus.ro: did not receive HSTS header
avdelivers.com: did not receive HSTS header
avdh.top: could not connect to host
avec-ou-sans-ordonnance.fr: could not connect to host
-aveling-adventure.co.uk: did not receive HSTS header
+aveling-adventure.co.uk: could not connect to host
avg.club: did not receive HSTS header
+avi9526.pp.ua: could not connect to host
aviacao.pt: did not receive HSTS header
avidcruiser.com: did not receive HSTS header
aviodeals.com: could not connect to host
-avitres.com: could not connect to host
+avitres.com: did not receive HSTS header
avmemo.com: could not connect to host
avmo.pw: could not connect to host
avmoo.com: could not connect to host
-avnet.ws: could not connect to host
avonlearningcampus.com: could not connect to host
avso.pw: could not connect to host
avspot.net: could not connect to host
@@ -1485,6 +1622,7 @@ awccanadianpharmacy.com: could not connect to host
awei.pub: could not connect to host
awf0.xyz: could not connect to host
awg-mode.de: did not receive HSTS header
+awin.la: did not receive HSTS header
aww.moe: did not receive HSTS header
awxg.eu.org: could not connect to host
awxg.org: could not connect to host
@@ -1495,23 +1633,24 @@ axel-fischer.science: could not connect to host
axelchv.fr: could not connect to host
axem.co.jp: did not receive HSTS header
axeny.com: did not receive HSTS header
-axfr.it: could not connect to host
axg.io: did not receive HSTS header
axialsports.com: did not receive HSTS header
axiumacademy.com: did not receive HSTS header
-axolotlfarm.org: could not connect to host
+axka.com: could not connect to host
axolsoft.com: max-age too low: 10540800
+axtudo.com: did not receive HSTS header
axtux.tk: could not connect to host
axxial.tk: could not connect to host
ayahuascaadvisor.com: could not connect to host
ayamchikchik.com: could not connect to host
ayatk.com: did not receive HSTS header
-aymericlagier.com: could not connect to host
+ayesh.win: could not connect to host
ayon.group: could not connect to host
ayor.jp: could not connect to host
ayor.tech: could not connect to host
ayuru.info: could not connect to host
az-vinyl-boden.de: could not connect to host
+azabani.com: did not receive HSTS header
azamra.com: did not receive HSTS header
azia.info: could not connect to host
azino777.ru: could not connect to host
@@ -1524,29 +1663,126 @@ b-entropy.com: could not connect to host
b-pi.duckdns.org: could not connect to host
b-rickroll-e.pw: could not connect to host
b-space.de: could not connect to host
+b0618.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b0618.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b0868.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b0868.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1.work: could not connect to host
b1236.com: could not connect to host
-b2and.com: could not connect to host
+b1758.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1758.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1768.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1768.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1788.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b2486.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b2486.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b2b-nestle.com.br: could not connect to host
b2bpromoteit.com: did not receive HSTS header
b3orion.com: could not connect to host
b422edu.com: could not connect to host
+b5189.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5189.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5289.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5289.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5989.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5989.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b61688.com: could not connect to host
+b8591.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b8591.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b8979.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b8979.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b8a.me: could not connect to host
+b9018.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9018.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9108.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9108.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9110.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9110.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9112.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9112.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b911gt.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b911gt.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b91688.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b91688.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b91688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b91688.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9175.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9175.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9258.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9258.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9318.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9318.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9418.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9418.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9428.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9428.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9453.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9453.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9468.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9468.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9488.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9488.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9498.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9498.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9518.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9518.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9518.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9520.com: could not connect to host
+b9528.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9528.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9538.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9538.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9568.com: could not connect to host
+b9586.net: could not connect to host
+b9588.net: could not connect to host
+b95888.net: could not connect to host
+b9589.net: could not connect to host
+b9598.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9598.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9658.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9658.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b96899.com: could not connect to host
+b9758.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9758.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9818.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9818.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9858.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9858.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9880.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9883.net: could not connect to host
+b9884.net: could not connect to host
+b9885.net: could not connect to host
b9886.com: could not connect to host
+b9886.net: could not connect to host
+b9887.net: could not connect to host
+b9888.net: could not connect to host
b98886.com: could not connect to host
+b9889.net: could not connect to host
+b9920.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9930.com: could not connect to host
+b9948.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9948.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b99520.com: could not connect to host
-b9970.com: could not connect to host
+b9960.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9970.com: did not receive HSTS header
b9980.com: could not connect to host
b99881.com: could not connect to host
b99882.com: could not connect to host
b99883.com: could not connect to host
b99885.com: could not connect to host
+b99886.com: could not connect to host
+b9best.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9best.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9king.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9king.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9king.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9winner.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9winner.com: could not connect to host
+b9winner.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
babelfisch.eu: could not connect to host
+babsbibs.com: could not connect to host
babursahvizeofisi.com: could not connect to host
baby-click.de: could not connect to host
babybee.ie: could not connect to host
@@ -1558,8 +1794,10 @@ babyliss-pro.net: did not receive HSTS header
babysaying.me: could not connect to host
babystep.tv: did not receive HSTS header
bacchanallia.com: could not connect to host
+bacgrouppublishing.com: could not connect to host
bacimg.com: did not receive HSTS header
back-bone.nl: did not receive HSTS header
+backeby.eu: could not connect to host
backenmachtgluecklich.de: max-age too low: 2592000
backgroundchecks.online: did not receive HSTS header
backgroundz.net: could not connect to host
@@ -1579,8 +1817,8 @@ badgirlsbible.com: could not connect to host
badkamergigant.com: could not connect to host
badlink.org: could not connect to host
baff.lu: could not connect to host
+baffinlee.com: could not connect to host
bagiobella.com: max-age too low: 0
-baglu.com: did not receive HSTS header
baiduaccount.com: could not connect to host
baildonhottubs.co.uk: could not connect to host
bair.io: could not connect to host
@@ -1596,19 +1834,17 @@ bakkerdesignandbuild.com: did not receive HSTS header
bakxnet.com: could not connect to host
balatoni-nyar.hu: did not receive HSTS header
balcan-underground.net: could not connect to host
-baldur.cc: could not connect to host
baldwinkoo.com: could not connect to host
baleares.party: could not connect to host
balenciaspa.com: did not receive HSTS header
balihai.com: did not receive HSTS header
balilingo.ooo: could not connect to host
-ballarin.cc: could not connect to host
ballbusting-cbt.com: could not connect to host
+ballitolocksmith.com: could not connect to host
balloonphp.com: could not connect to host
balnearionaturaspa.com: did not receive HSTS header
balonmano.co: could not connect to host
bals.org: did not receive HSTS header
-balticer.de: did not receive HSTS header
bambambaby.com.br: could not connect to host
bamtoki.com: could not connect to host
bamtoki.se: could not connect to host
@@ -1616,29 +1852,31 @@ bananabandy.com: could not connect to host
bananensap.nl: did not receive HSTS header
bananium.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
banbanchs.com: could not connect to host
-banburybid.com: could not connect to host
banchethai.com: could not connect to host
bandally.net: could not connect to host
bandar303.cc: did not receive HSTS header
bandar303.id: did not receive HSTS header
bandar303.win: did not receive HSTS header
bandarifamily.com: could not connect to host
-bandb.xyz: did not receive HSTS header
-bandrcrafts.com: could not connect to host
+bandb.xyz: could not connect to host
+bandrcrafts.com: did not receive HSTS header
banduhn.com: did not receive HSTS header
-bangdream.ga: could not connect to host
-bangzafran.com: did not receive HSTS header
+bangzafran.com: could not connect to host
bank: could not connect to host
bankcircle.co.in: could not connect to host
-bankersonline.com: did not receive HSTS header
bankitt.network: could not connect to host
bankmilhas.com.br: did not receive HSTS header
+banknet.gov: did not receive HSTS header
bankofrealty.review: could not connect to host
banksaround.com: did not receive HSTS header
bannisbierblog.de: could not connect to host
+banoviny.sk: did not receive HSTS header
banqingdiao.com: could not connect to host
banri.me: could not connect to host
banxehoi.com: did not receive HSTS header
+bao-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bao-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+baodan666.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
baosuckhoedoisong.net: could not connect to host
baptistboard.com: did not receive HSTS header
baptiste-destombes.fr: did not receive HSTS header
@@ -1646,8 +1884,9 @@ baraxolka.ru: could not connect to host
barcouniforms.com: did not receive HSTS header
bardiel.de: max-age too low: 0
barely.sexy: could not connect to host
-bargainmovingcompany.com: could not connect to host
+bargainmovingcompany.com: did not receive HSTS header
bariller.fr: did not receive HSTS header
+baris-sagdic.com: could not connect to host
barisi.me: could not connect to host
barnrats.com: could not connect to host
baropkamp.be: did not receive HSTS header
@@ -1655,7 +1894,7 @@ barprive.com: could not connect to host
barqo.co: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
barracuda.blog: could not connect to host
barrelhead.org: could not connect to host
-barrett.ag: could not connect to host
+barrett.ag: did not receive HSTS header
barrut.me: did not receive HSTS header
barshout.co.uk: could not connect to host
barss.io: could not connect to host
@@ -1664,6 +1903,7 @@ bartelldrugs.com: did not receive HSTS header
barunisystems.com: could not connect to host
bascht.com: did not receive HSTS header
basculasconfiables.com: could not connect to host
+basercap.co.ke: could not connect to host
bashc.at: could not connect to host
bashcode.ninja: could not connect to host
basicsolutionsus.com: could not connect to host
@@ -1674,12 +1914,20 @@ basketsbymaurice.com: did not receive HSTS header
baskettemple.com: did not receive HSTS header
basnieuwenhuizen.nl: did not receive HSTS header
bassh.net: did not receive HSTS header
+bastadigital.com: did not receive HSTS header
+bastivmobile.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bat909.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bat909.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bat9vip.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bat9vip.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
batfoundry.com: could not connect to host
-batonger.com: did not receive HSTS header
+batonger.com: could not connect to host
batten.eu.org: could not connect to host
batteryservice.ru: did not receive HSTS header
+batvip9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
baud.ninja: could not connect to host
-baudairenergyservices.com: could not connect to host
+baudairenergyservices.com: did not receive HSTS header
+bauen-mit-ziegel.de: max-age too low: 604800
baum.ga: did not receive HSTS header
baumstark.ca: could not connect to host
bayinstruments.com: could not connect to host
@@ -1694,6 +1942,8 @@ bbj.io: did not receive HSTS header
bbkanews.com: did not receive HSTS header
bblovess.cn: could not connect to host
bbrinck.eu: could not connect to host
+bbswin9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bbswin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bbw-wrestling.com: could not connect to host
bbwdom.xyz: could not connect to host
bbwf.de: did not receive HSTS header
@@ -1701,6 +1951,9 @@ bbwfacesitting.us: could not connect to host
bbwfacesitting.xyz: could not connect to host
bbwfight.xyz: could not connect to host
bbwteens.org: could not connect to host
+bbxin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bbxin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bc-personal.ch: did not receive HSTS header
bc416.com: did not receive HSTS header
bc418.com: did not receive HSTS header
bc419.com: did not receive HSTS header
@@ -1711,18 +1964,30 @@ bcheng.cf: did not receive HSTS header
bckp.de: could not connect to host
bcm.com.au: did not receive HSTS header
bcmlu.org: could not connect to host
+bcnet.com.hk: could not connect to host
bcnet.hk: could not connect to host
bcodeur.com: did not receive HSTS header
bcradio.org: could not connect to host
bcsytv.com: could not connect to host
bcweightlifting.ca: could not connect to host
-bdata.cl: could not connect to host
+bdata.cl: did not receive HSTS header
bddemir.com: could not connect to host
bde-epitech.fr: could not connect to host
bdenzer.com: did not receive HSTS header
bdenzer.xyz: could not connect to host
bdsmxxxpics.com: could not connect to host
-be-real.life: did not receive HSTS header
+be9418.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9418.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9418.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9418.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9458.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9458.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9458.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9458.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be958.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be958.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be958.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be958.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
be9966.com: could not connect to host
beach-inspector.com: did not receive HSTS header
beachi.es: could not connect to host
@@ -1742,13 +2007,14 @@ bebeefy.uk: could not connect to host
bebesurdoue.com: could not connect to host
beccajoshwedding.com: could not connect to host
becklove.cn: could not connect to host
+becoast.fr: did not receive HSTS header
becubed.co: could not connect to host
bedabox.com: did not receive HSTS header
bedeta.de: could not connect to host
bedouille.com: could not connect to host
bedreid.dk: did not receive HSTS header
bedrijvenadministratie.nl: could not connect to host
-beelen.fr: could not connect to host
+bee.supply: could not connect to host
beerboutique.com.br: could not connect to host
beermedlar.com: could not connect to host
beersandco.ch: could not connect to host
@@ -1757,11 +2023,13 @@ beetleroadstories.com: could not connect to host
beforesunrise.de: did not receive HSTS header
befundup.com: could not connect to host
begcykel.com: did not receive HSTS header
+begoodny.co.il: max-age too low: 7889238
behere.be: could not connect to host
beier.io: could not connect to host
beikeil.de: did not receive HSTS header
beingmad.org: did not receive HSTS header
belairsewvac.com: could not connect to host
+belcompany.nl: could not connect to host
belewpictures.com: could not connect to host
belgien.guide: could not connect to host
belize-firmengruendung.com: could not connect to host
@@ -1771,11 +2039,12 @@ belltower.io: did not receive HSTS header
belmontprom.com: could not connect to host
belpbleibtbelp.ch: could not connect to host
belwederczykow.eu: could not connect to host
-bemcorp.de: did not receive HSTS header
-bemvindoaolar.com.br: did not receive HSTS header
+bemvindoaolar.com.br: could not connect to host
bemyvictim.com: max-age too low: 2678400
+benchcast.com: could not connect to host
+bencorby.com: could not connect to host
bendechrai.com: did not receive HSTS header
-benedikt-tuchen.de: did not receive HSTS header
+benedikt-tuchen.de: could not connect to host
benediktdichgans.de: did not receive HSTS header
beneffy.com: did not receive HSTS header
benevisim.com: could not connect to host
@@ -1806,7 +2075,6 @@ beretech.fr: could not connect to host
berger.work: could not connect to host
bergfex.at: did not receive HSTS header
bergland-seefeld.at: did not receive HSTS header
-bergstoneware.com: could not connect to host
berhampore-gateway.tk: could not connect to host
berlatih.com: did not receive HSTS header
berlin-kohlefrei.de: could not connect to host
@@ -1814,6 +2082,8 @@ berlinleaks.com: could not connect to host
bermytraq.bm: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bernexskiclub.ch: did not receive HSTS header
bernieware.de: could not connect to host
+berr.yt: could not connect to host
+berry.cat: could not connect to host
berrymark.be: did not receive HSTS header
berseb.se: could not connect to host
berthelier.me: could not connect to host
@@ -1827,29 +2097,44 @@ besixdouze.world: could not connect to host
beslider.com: could not connect to host
besnik.de: could not connect to host
besola.de: could not connect to host
+bespaarnu.click: could not connect to host
+best-of-bounce.co.uk: could not connect to host
best-wedding-quotes.com: could not connect to host
bestattorney.com: did not receive HSTS header
bestbeards.ca: could not connect to host
bestbestbitcoin.com: could not connect to host
bestbonuses.co.uk: did not receive HSTS header
bestellipticalmachinereview.info: could not connect to host
+bestesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bestesb.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bestfitnesswatchreview.info: could not connect to host
besthost.cz: did not receive HSTS header
besthotsales.com: could not connect to host
+bestiahosting.com: could not connect to host
bestleftwild.com: could not connect to host
bestmodels.su: did not receive HSTS header
bestof1001.de: could not connect to host
bestorangeseo.com: could not connect to host
bestpaintings.nl: did not receive HSTS header
-bestschools.top: did not receive HSTS header
+bestparking.xyz: could not connect to host
+bestpig.fr: could not connect to host
bestwarezone.com: could not connect to host
+bet-99.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet-99.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet-99.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet168wy.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet168wy.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet909.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bet990.com: could not connect to host
+bet9bet9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
betaclean.fr: did not receive HSTS header
betafive.net: could not connect to host
betakah.net: could not connect to host
betamint.org: did not receive HSTS header
-betcafearena.ro: did not receive HSTS header
+betcafearena.ro: could not connect to host
betformular.com: could not connect to host
+betgo9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bethanyduke.com: could not connect to host
bethditto.com: did not receive HSTS header
betkoo.com: could not connect to host
betnet.fr: could not connect to host
@@ -1859,7 +2144,11 @@ bets.de: did not receive HSTS header
betshoot.com: could not connect to host
betsonlinefree.com.au: could not connect to host
betterlifemakers.com: max-age too low: 200
+bettflaschen.ch: did not receive HSTS header
bettween.com: did not receive HSTS header
+between.be: could not connect to host
+betwin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+betwin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
betz.ro: could not connect to host
beulahtabernacle.com: could not connect to host
bevapehappy.com: did not receive HSTS header
@@ -1870,7 +2159,7 @@ bexit-security.eu: could not connect to host
bexit-security.nl: could not connect to host
bexithosting.nl: could not connect to host
bey.io: could not connect to host
-beylikduzum.com: did not receive HSTS header
+beylikduzum.com: could not connect to host
beyond-edge.com: could not connect to host
beyuna.co.uk: did not receive HSTS header
beyuna.eu: did not receive HSTS header
@@ -1894,7 +2183,7 @@ bgenlisted.com: could not connect to host
bgfashion.net: could not connect to host
bgneuesheim.de: did not receive HSTS header
bhatia.at: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-biancolievito.it: did not receive HSTS header
+bhosted.nl: did not receive HSTS header
bianinapiccanovias.com: could not connect to host
biaoqingfuhao.net: did not receive HSTS header
biaoqingfuhao.org: did not receive HSTS header
@@ -1908,11 +2197,13 @@ bidon.ca: did not receive HSTS header
bidorbuy.co.ke: did not receive HSTS header
bieberium.de: could not connect to host
biego.cn: did not receive HSTS header
+biehl.co: did not receive HSTS header
bielsa.me: did not receive HSTS header
bienenblog.cc: could not connect to host
bier.jp: did not receive HSTS header
bierbringer.at: could not connect to host
bierochs.org: could not connect to host
+biftin.net: could not connect to host
big-black.de: did not receive HSTS header
bigbbqbrush.bid: could not connect to host
bigbounceentertainment.co.uk: could not connect to host
@@ -1920,11 +2211,13 @@ bigbrownpromotions.com.au: did not receive HSTS header
bigcorporateevents.com: could not connect to host
bigerbio.com: could not connect to host
bigfunbouncycastles.com: could not connect to host
+bigjohn.ru: did not receive HSTS header
biglagoonrentals.com: did not receive HSTS header
bigshinylock.minazo.net: could not connect to host
bigshort.org: could not connect to host
biguixhe.net: could not connect to host
bijoux.com.br: could not connect to host
+bijouxbrasil.com.br: did not receive HSTS header
bijouxdegriffe.com.br: could not connect to host
bijugeral.com.br: could not connect to host
bikelifetvkidsquads.co.uk: could not connect to host
@@ -1939,13 +2232,16 @@ billdestler.com: did not receive HSTS header
billigssl.dk: did not receive HSTS header
billkiss.com: could not connect to host
billninja.com: did not receive HSTS header
+billpro.com.au: could not connect to host
billrobinson.io: could not connect to host
billrusling.com: could not connect to host
binam.center: could not connect to host
binarization.net: could not connect to host
binarization.org: did not receive HSTS header
binaryabstraction.com: could not connect to host
-binaryfigments.com: max-age too low: 86400
+binaryfigments.com: max-age too low: 7776000
+binbin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+binbin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
binderapp.net: could not connect to host
bingcheung.com: could not connect to host
bingcheung.org: could not connect to host
@@ -1954,12 +2250,9 @@ bingo9.net: could not connect to host
bingofriends.com: could not connect to host
bingostars.com: did not receive HSTS header
binimo.com: could not connect to host
-binsp.net: could not connect to host
-biocrafting.net: could not connect to host
+biocrafting.net: did not receive HSTS header
bioespuna.eu: did not receive HSTS header
biofam.ru: did not receive HSTS header
-bioknowme.com: did not receive HSTS header
-biologis.ch: could not connect to host
biomax-mep.com.br: did not receive HSTS header
bionicspirit.com: did not receive HSTS header
biophysik-ssl.de: did not receive HSTS header
@@ -1971,17 +2264,18 @@ bip.gov.sa: could not connect to host
birdandbranchnyc.com: max-age too low: 43200
birkengarten.ch: could not connect to host
birkman.com: did not receive HSTS header
-bischoff-mathey.family: could not connect to host
biscuits-rec.com: could not connect to host
biscuits-shop.com: could not connect to host
bismarck.moe: did not receive HSTS header
bisterfeldt.com: did not receive HSTS header
biswas.me: could not connect to host
+bit.voyage: did not receive HSTS header
bitace.com: did not receive HSTS header
bitbit.org: did not receive HSTS header
bitbr.net: could not connect to host
bitcantor.com: did not receive HSTS header
bitchan.it: could not connect to host
+bitclubfun.com: did not receive HSTS header
bitcoin-casino-no-deposit-bonus.com: max-age too low: 0
bitcoin-class.com: could not connect to host
bitcoin-daijin.com: could not connect to host
@@ -1994,6 +2288,7 @@ bitcoinprivacy.net: did not receive HSTS header
bitcoinworld.me: could not connect to host
bitconcepts.co.uk: could not connect to host
bitedge.com: did not receive HSTS header
+bitenose.com: could not connect to host
bitenose.net: could not connect to host
bitenose.org: could not connect to host
biteoftech.com: did not receive HSTS header
@@ -2001,9 +2296,13 @@ bitf.ly: could not connect to host
bitfactory.ws: could not connect to host
bitfarm-archiv.com: did not receive HSTS header
bitfarm-archiv.de: did not receive HSTS header
+bithap.com: could not connect to host
bitheus.com: could not connect to host
bithosting.io: did not receive HSTS header
-bitk.uk: could not connect to host
+bitk.co: did not receive HSTS header
+bitk.co.uk: did not receive HSTS header
+bitk.eu: did not receive HSTS header
+bitk.uk: did not receive HSTS header
bitmain.com.ua: could not connect to host
bitmaincare.com.ua: could not connect to host
bitmaincare.ru: could not connect to host
@@ -2011,17 +2310,17 @@ bitmainwarranty.com.ua: could not connect to host
bitmainwarranty.ru: could not connect to host
bitmex.com: did not receive HSTS header
bitmexin.com: could not connect to host
+bitmon.net: could not connect to host
bitnet.io: did not receive HSTS header
+bitok.com: did not receive HSTS header
bitplay.space: could not connect to host
bitpod.de: could not connect to host
-bitpoll.de: could not connect to host
-bitpoll.org: could not connect to host
bitrage.de: could not connect to host
bitraum.io: could not connect to host
bitroll.com: could not connect to host
bitsafe.systems: did not receive HSTS header
bitsensor.io: did not receive HSTS header
-bitstep.ca: could not connect to host
+bitshaker.net: did not receive HSTS header
bittervault.xyz: could not connect to host
bituptick.com: did not receive HSTS header
bitvegas.com: did not receive HSTS header
@@ -2035,11 +2334,14 @@ bizon.sk: did not receive HSTS header
bizpare.com: did not receive HSTS header
bizzartech.com: did not receive HSTS header
bizzybeebouncers.co.uk: could not connect to host
-bjgongyi.com: could not connect to host
+bjgongyi.com: did not receive HSTS header
+bjl5689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bjl5689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bjrn.io: could not connect to host
bjtxl.cn: could not connect to host
bk-wife.com: could not connect to host
bkb-skandal.ch: could not connect to host
+bkhayes.com: did not receive HSTS header
black-armada.com: could not connect to host
black-armada.com.pl: could not connect to host
black-armada.pl: could not connect to host
@@ -2051,28 +2353,36 @@ blackburn.link: could not connect to host
blackdesertsp.com: could not connect to host
blackdiam.net: did not receive HSTS header
blacklane.com: did not receive HSTS header
-blacklightparty.be: could not connect to host
blackly.uk: max-age too low: 0
blackmagic.sk: could not connect to host
blackmirror.com.au: did not receive HSTS header
-blackpayment.ru: did not receive HSTS header
+blackpayment.ru: could not connect to host
blackphantom.de: could not connect to host
blackscreen.me: could not connect to host
+blackscytheconsulting.com: could not connect to host
blackunicorn.wtf: could not connect to host
bladesmith.io: did not receive HSTS header
-blakerandall.xyz: could not connect to host
+blakerandall.xyz: did not receive HSTS header
blantik.net: could not connect to host
blarg.co: could not connect to host
blauwwit.be: did not receive HSTS header
blazeit.io: could not connect to host
+blechpirat.name: could not connect to host
bleep.zone: could not connect to host
blendlecdn.com: could not connect to host
blenheimchalcot.com: did not receive HSTS header
+blessedearth.com.au: max-age too low: 7889238
blessnet.jp: did not receive HSTS header
+bleutecmedia.com: did not receive HSTS header
blha303.com.au: could not connect to host
-blikund.swedbank.se: did not receive HSTS header
+bliesekow.net: could not connect to host
+bliker.ga: could not connect to host
blindaryproduction.tk: could not connect to host
blindsexdate.nl: did not receive HSTS header
+bling9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bling999.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bling999.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bling999.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
blinkenlight.co.uk: could not connect to host
blinkenlight.com.au: could not connect to host
blmiller.com: did not receive HSTS header
@@ -2092,7 +2402,6 @@ bloglikepro.com: could not connect to host
blognone.com: did not receive HSTS header
blognr.com: could not connect to host
blogonblogspot.com: did not receive HSTS header
-blok56.nl: did not receive HSTS header
blokino.org: did not receive HSTS header
blokuhaka.fr: did not receive HSTS header
bloodyexcellent.com: did not receive HSTS header
@@ -2106,17 +2415,19 @@ blucas.org: did not receive HSTS header
blue17.co.uk: did not receive HSTS header
bluebill.net: did not receive HSTS header
bluecon.eu: did not receive HSTS header
-bluedata.ltd: could not connect to host
bluefinger.nl: did not receive HSTS header
blueglobalmedia.com: could not connect to host
-bluehawk.cloud: did not receive HSTS header
+bluehawk.cloud: could not connect to host
+bluehelixmusic.com: could not connect to host
blueliv.com: did not receive HSTS header
bluemoonroleplaying.com: could not connect to host
+bluepearl.tk: could not connect to host
bluepoint.foundation: could not connect to host
bluepoint.institute: could not connect to host
+blueprintloans.co.uk: did not receive HSTS header
blueridgesecuritycameras.com: did not receive HSTS header
bluescloud.xyz: could not connect to host
-bluesecure.com.br: did not receive HSTS header
+bluesecure.com.br: could not connect to host
bluetenmeer.com: did not receive HSTS header
bluezonehealth.co.uk: did not receive HSTS header
blui.cf: max-age too low: 1209600
@@ -2124,6 +2435,7 @@ bluketing.com: did not receive HSTS header
blumen-binder.ch: did not receive HSTS header
blumen-garage.de: could not connect to host
blumenwiese.xyz: did not receive HSTS header
+blundell.wedding: could not connect to host
blunderify.se: did not receive HSTS header
bluop.com: did not receive HSTS header
bluserv.net: could not connect to host
@@ -2132,7 +2444,6 @@ blutopia.xyz: did not receive HSTS header
blutroyal.de: could not connect to host
blvdmb.com: did not receive HSTS header
bm-i.ch: could not connect to host
-bm-immo.ch: could not connect to host
bm-trading.nl: did not receive HSTS header
bmet.de: did not receive HSTS header
bmoattachments.org: did not receive HSTS header
@@ -2140,8 +2451,17 @@ bnb-buddy.nl: could not connect to host
bnboy.cn: could not connect to host
bngsecure.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bnhlibrary.com: did not receive HSTS header
+bo1689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo1689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9club.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9club.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9club.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9fun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9fun.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9game.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9game.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9king.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
board-buy.ru: could not connect to host
-bobaobei.net: could not connect to host
bobaobei.org: could not connect to host
bobep.ru: could not connect to host
boboates.com: did not receive HSTS header
@@ -2154,14 +2474,13 @@ bodyweightsolution.com: could not connect to host
boel073.nl: did not receive HSTS header
boensou.com: did not receive HSTS header
bohaishibei.com: did not receive HSTS header
-bohan.co: could not connect to host
bohan.life: could not connect to host
bohyn.cz: could not connect to host
boiadeirodeberna.com: could not connect to host
boilesen.com: did not receive HSTS header
bokeyy.com: could not connect to host
bolainfoasia.com: did not receive HSTS header
-bolivarfm.com.ve: did not receive HSTS header
+bolivarfm.com.ve: could not connect to host
boltdata.io: could not connect to host
boltn.uk: did not receive HSTS header
bolwerk.com.br: did not receive HSTS header
@@ -2172,6 +2491,7 @@ bonapp.restaurant: could not connect to host
bondagefetishstore.com: could not connect to host
bondtofte.dk: did not receive HSTS header
boneko.de: did not receive HSTS header
+bonesserver.com: could not connect to host
bonigo.de: did not receive HSTS header
bonitabrazilian.co.nz: did not receive HSTS header
bonnin.fr: did not receive HSTS header
@@ -2186,13 +2506,16 @@ booked.holiday: could not connect to host
bookingentertainment.com: did not receive HSTS header
bookmakersfreebets.com.au: could not connect to host
bookofraonlinecasinos.com: could not connect to host
+bookourdjs.com: could not connect to host
bookreport.ga: could not connect to host
+bookshopofindia.com: did not receive HSTS header
bookwitty.social: could not connect to host
boomerang.com: did not receive HSTS header
boomsaki.com: did not receive HSTS header
boomsakis.com: did not receive HSTS header
boosterlearnpro.com: did not receive HSTS header
-boote.wien: did not receive HSTS header
+boostgame.win: could not connect to host
+boote.wien: could not connect to host
booter.es: could not connect to host
booth.in.th: could not connect to host
bootikexpress.fr: did not receive HSTS header
@@ -2206,37 +2529,43 @@ boringsecurity.net: could not connect to host
boris.one: could not connect to host
borisavstankovic.rs: could not connect to host
borisbesemer.com: could not connect to host
-born-to-learn.com: did not receive HSTS header
+born-to-learn.com: could not connect to host
borrelioz.com: did not receive HSTS header
borscheid-wenig.com: did not receive HSTS header
boschee.net: could not connect to host
+bosworthdental.co.uk: did not receive HSTS header
botlab.ch: could not connect to host
botmanager.pl: could not connect to host
botox.bz: did not receive HSTS header
bots.cat: could not connect to host
+botserver.de: could not connect to host
boueki.jp: did not receive HSTS header
boueki.org: did not receive HSTS header
bouk.co: could not connect to host
bounce-r-us.co.uk: did not receive HSTS header
+bouncebeyondcastles.co.uk: did not receive HSTS header
bounceboxspc.com: did not receive HSTS header
bouncecoffee.com: did not receive HSTS header
bouncehighpeak.co.uk: could not connect to host
bouncelanduk.co.uk: did not receive HSTS header
bouncemasters.co.uk: could not connect to host
+bouncewithbovells.com: could not connect to host
bouncing4joy.co.uk: could not connect to host
bouncingbuzzybees.co.uk: could not connect to host
bouncycastleandparty.co.uk: could not connect to host
-bouncycastlehireauckland.co.nz: could not connect to host
bouncycastlehiremedway.com: did not receive HSTS header
+bouncycastles.me: could not connect to host
+bouncymadness.com: did not receive HSTS header
bouwbedrijfpurmerend.nl: did not receive HSTS header
bowlsheet.com: did not receive HSTS header
-bownty.pt: could not connect to host
+bownty.pt: max-age too low: 0
boxcryptor.com: did not receive HSTS header
boxdevigneron.fr: could not connect to host
boxing-austria.eu: did not receive HSTS header
boxintense.com: did not receive HSTS header
boxit.es: did not receive HSTS header
boxlitepackaging.com: did not receive HSTS header
+boxmoe.cn: did not receive HSTS header
boxview.com: could not connect to host
boyan.in: could not connect to host
boyfriendhusband.men: did not receive HSTS header
@@ -2268,7 +2597,9 @@ brand-foo.com: did not receive HSTS header
brand-foo.jp: did not receive HSTS header
brand-foo.net: did not receive HSTS header
brandnewdays.nl: could not connect to host
+brando753.xyz: could not connect to host
brandon.so: could not connect to host
+brandonlui.ml: could not connect to host
brandons.site: could not connect to host
brandontaylor-black.com: could not connect to host
brandred.net: could not connect to host
@@ -2285,6 +2616,7 @@ brenden.net.au: could not connect to host
bress.cloud: could not connect to host
brettcornwall.com: did not receive HSTS header
brettpemberton.xyz: did not receive HSTS header
+bretz-hufer.de: did not receive HSTS header
brfvh24.se: could not connect to host
brianpcurran.com: did not receive HSTS header
brickoo.com: could not connect to host
@@ -2292,7 +2624,6 @@ brickwerks.io: could not connect to host
brickyardbuffalo.com: did not receive HSTS header
bridgeout.com: could not connect to host
bridholm.se: could not connect to host
-briggsleroux.com: did not receive HSTS header
brightfuturemadebyme.com: could not connect to host
brightstarkids.co.uk: did not receive HSTS header
brightstarkids.com.au: did not receive HSTS header
@@ -2306,6 +2637,7 @@ brinkhu.is: could not connect to host
brinkmann.one: could not connect to host
brinquedoseducativos.art.br: did not receive HSTS header
brio-ukraine.store: could not connect to host
+britishchronicles.com: could not connect to host
britishmeat.com: could not connect to host
britzer-toner.de: did not receive HSTS header
brivadois.ovh: did not receive HSTS header
@@ -2317,43 +2649,45 @@ broken-oak.com: could not connect to host
brookechase.com: did not receive HSTS header
brookframework.org: could not connect to host
brossman.it: could not connect to host
-brouwerijkoelit.nl: did not receive HSTS header
+brouwerijkoelit.nl: could not connect to host
brownlawoffice.us: did not receive HSTS header
browserid.org: could not connect to host
brplusdigital.com: could not connect to host
brrd.io: could not connect to host
-brrr.fr: could not connect to host
-brunix.net: could not connect to host
+brunix.net: did not receive HSTS header
brunoonline.co.uk: could not connect to host
-brunoramos.com: could not connect to host
-brunoramos.org: could not connect to host
-brunosouza.org: could not connect to host
bryancastillo.site: could not connect to host
+bryankaplan.com: could not connect to host
bryanshearer.accountant: did not receive HSTS header
bryn.xyz: could not connect to host
brynnan.nl: could not connect to host
brztec.com: did not receive HSTS header
+bs.sb: could not connect to host
bsagan.fr: did not receive HSTS header
bsalyzer.com: could not connect to host
bsc01.dyndns.org: could not connect to host
+bsd.com.ro: could not connect to host
bsdtips.com: could not connect to host
bsdug.org: could not connect to host
+bsg-aok-muenchen.de: did not receive HSTS header
bsklabels.com: did not receive HSTS header
bsktweetup.info: could not connect to host
bsohoekvanholland.nl: could not connect to host
bsuess.de: could not connect to host
bt78.cn: did not receive HSTS header
-bt85.cn: did not receive HSTS header
+bt85.cn: could not connect to host
bt9.cc: did not receive HSTS header
bt96.cn: did not receive HSTS header
bt995.com: did not receive HSTS header
btaoke.com: could not connect to host
-btc-e.com: did not receive HSTS header
+btc-e.com: could not connect to host
btcdlc.com: could not connect to host
btcgo.nl: did not receive HSTS header
btcp.space: could not connect to host
-btcpot.ltd: did not receive HSTS header
-btku.org: could not connect to host
+btcpot.ltd: could not connect to host
+btrb.ml: could not connect to host
+btserv.de: did not receive HSTS header
+btth.live: could not connect to host
btxiaobai.com: did not receive HSTS header
bubba.cc: could not connect to host
buben.tech: did not receive HSTS header
@@ -2361,15 +2695,18 @@ bubulazi.com: did not receive HSTS header
bubulazy.com: did not receive HSTS header
buchheld.at: could not connect to host
buchverlag-scholz.de: did not receive HSTS header
+buck.com: could not connect to host
bucket.tk: could not connect to host
buckmulligans.com: did not receive HSTS header
+budaev-shop.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
buddhistische-weisheiten.org: could not connect to host
budgetenergievriendenvoordeel.nl: could not connect to host
budgetthostels.nl: did not receive HSTS header
budskap.eu: could not connect to host
buenosairesestetica.com.ar: could not connect to host
buenotour.ru: did not receive HSTS header
-buettgens.net: max-age too low: 2592000
+buergerdialog.net: could not connect to host
+buergerhaushalt.com: did not receive HSTS header
buffalodrinkinggame.beer: did not receive HSTS header
bugtrack.co.uk: did not receive HSTS header
bugtrack.io: could not connect to host
@@ -2397,6 +2734,7 @@ bullbits.com: max-age too low: 0
bulldoghire.co.uk: did not receive HSTS header
bulletbabu.com: could not connect to host
bulletpoint.cz: could not connect to host
+bullpay.com: did not receive HSTS header
bullterrier.me: could not connect to host
bulmafox.com: could not connect to host
bulmastife.com.br: could not connect to host
@@ -2412,24 +2750,27 @@ burckardtnet.de: did not receive HSTS header
bureaubolster.nl: did not receive HSTS header
bureaugravity.com: did not receive HSTS header
burian-server.cz: could not connect to host
+buricloud.fr: could not connect to host
burlesquemakeup.com: did not receive HSTS header
burningcrash.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
burpsuite.site: could not connect to host
burroughsid.com: could not connect to host
burrow.ovh: could not connect to host
burrowingsec.com: could not connect to host
+bursa3bydgoszcz.pl: did not receive HSTS header
burtrum.top: could not connect to host
buryat-mongol.cf: could not connect to host
buryit.net: did not receive HSTS header
+busanhs.bid: could not connect to host
+buserror.cn: could not connect to host
bush41.org: did not receive HSTS header
+bushcraftfriends.com: could not connect to host
business.lookout.com: could not connect to host
business.medbank.com.mt: did not receive HSTS header
-businessadviceperth.com.au: did not receive HSTS header
businessamongus.com: could not connect to host
businessetmarketing.com: could not connect to host
businessfurs.info: could not connect to host
businesshosting.nl: did not receive HSTS header
-businessloanconnection.org: did not receive HSTS header
businessmodeler.se: could not connect to host
bustabit.com: could not connect to host
bustimes.org.uk: did not receive HSTS header
@@ -2438,20 +2779,31 @@ butchersworkshop.com: did not receive HSTS header
butian518.com: did not receive HSTS header
butt.repair: could not connect to host
buttercoin.com: could not connect to host
+buttercupstraining.co.uk: did not receive HSTS header
butterfieldstraining.com: could not connect to host
buttermilk.cf: could not connect to host
buturyu.org: did not receive HSTS header
buvinghausen.com: max-age too low: 86400
+buy-thing.com: did not receive HSTS header
+buyaccessible.gov: did not receive HSTS header
buybaby.eu: could not connect to host
-buybike.shop: could not connect to host
+buybike.shop: did not receive HSTS header
+buycarpet.shop: did not receive HSTS header
+buycook.shop: max-age too low: 2592000
buydesired.com: did not receive HSTS header
buyessay.org: could not connect to host
buyessays.net: could not connect to host
+buyessayscheap.com: could not connect to host
buyfox.de: could not connect to host
buyharpoon.com: could not connect to host
+buyhealth.shop: did not receive HSTS header
buyingsellingflorida.com: could not connect to host
+buyjewel.shop: did not receive HSTS header
buynowdepot.com: did not receive HSTS header
+buyplussize.shop: did not receive HSTS header
+buyprofessional.shop: max-age too low: 2592000
buyshoe.org: could not connect to host
+buywine.shop: did not receive HSTS header
buywood.shop: could not connect to host
buzzconcert.com: did not receive HSTS header
buzzdeck.com: did not receive HSTS header
@@ -2467,18 +2819,15 @@ bwin8603.com: did not receive HSTS header
bwin8604.com: did not receive HSTS header
bwin8605.com: did not receive HSTS header
bwin8606.com: did not receive HSTS header
-bwwb.nu: could not connect to host
bx-web.com: did not receive HSTS header
-bxdev.me: could not connect to host
by1896.com: could not connect to host
by1898.com: could not connect to host
by1899.com: could not connect to host
by4cqb.cn: could not connect to host
-by77.com: did not receive HSTS header
+by77.com: could not connect to host
by777.com: did not receive HSTS header
+bydisk.com: could not connect to host
byji.com: could not connect to host
-byken.cn: did not receive HSTS header
-bynet.cz: could not connect to host
bypass.kr: could not connect to host
bypassed.bid: could not connect to host
bypassed.cc: could not connect to host
@@ -2494,23 +2843,28 @@ bypassed.press: could not connect to host
bypassed.pw: could not connect to host
bypassed.rocks: could not connect to host
bypassed.site: could not connect to host
-bypassed.st: did not receive HSTS header
+bypassed.st: could not connect to host
bypassed.today: could not connect to host
bypassed.works: could not connect to host
bypassed.world: could not connect to host
bypro.xyz: could not connect to host
-byronwade.com: max-age too low: 7889238
+byronkg.us: could not connect to host
+byronprivaterehab.com.au: did not receive HSTS header
+byronr.com: did not receive HSTS header
+byronwade.com: did not receive HSTS header
byte.chat: did not receive HSTS header
byte.wtf: did not receive HSTS header
-bytelog.org: could not connect to host
+bytelog.org: did not receive HSTS header
+bytepen.com: could not connect to host
bytesatwork.eu: could not connect to host
byteshift.ca: could not connect to host
bytesofcode.de: could not connect to host
bytesund.biz: could not connect to host
byteturtle.eu: did not receive HSTS header
byurudraw.pics: could not connect to host
-bzhub.bid: did not receive HSTS header
+bywin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
c-rickroll-v.pw: could not connect to host
+c0rn3j.com: could not connect to host
c12discountonline.com: did not receive HSTS header
c16t.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
c1yd3i.me: could not connect to host
@@ -2520,42 +2874,45 @@ c3-compose.com: could not connect to host
c3.pm: could not connect to host
c3b.info: could not connect to host
c3bbs.com: could not connect to host
+c3hv.cn: could not connect to host
c3ie.com: did not receive HSTS header
c4.hk: could not connect to host
+c5h8no4na.net: could not connect to host
cabsites.com: could not connect to host
cabusar.fr: could not connect to host
+cachethome.com: could not connect to host
cachethq.io: did not receive HSTS header
caconnect.org: could not connect to host
cadao.me: did not receive HSTS header
-cadburymovies.in.net: could not connect to host
+cadburymovies.in.net: did not receive HSTS header
+cadcreations.co.ke: could not connect to host
cadenadg.gr: did not receive HSTS header
caerostris.com: could not connect to host
caesreon.com: could not connect to host
cafe-murr.de: did not receive HSTS header
cafe-scientifique.org.ec: could not connect to host
-cafe-service.ru: could not connect to host
cafechesscourt.com: could not connect to host
cafefresco.pe: did not receive HSTS header
-caferagazzi.de: did not receive HSTS header
-cafesg.net: could not connect to host
+cafesg.net: did not receive HSTS header
caibi.io: could not connect to host
caim.cz: did not receive HSTS header
caipai.fm: could not connect to host
cairnterrier.com.br: could not connect to host
cais.de: did not receive HSTS header
-cajapopcorn.com: could not connect to host
-cake-time.co.uk: could not connect to host
+caizx.com: did not receive HSTS header
+cajapopcorn.com: max-age too low: 0
cake.care: could not connect to host
cal.goip.de: could not connect to host
calcularpagerank.com.br: could not connect to host
calculatoaresecondhand.xyz: could not connect to host
-calebmorris.com: did not receive HSTS header
+caldecotevillagehall.co.uk: could not connect to host
+calebmorris.com: max-age too low: 60
calgaryconstructionjobs.com: did not receive HSTS header
callabs.net: could not connect to host
callanbryant.co.uk: did not receive HSTS header
calleveryday.com: could not connect to host
callision.com: did not receive HSTS header
-callmereda.com: did not receive HSTS header
+callmereda.com: could not connect to host
callsigns.ca: could not connect to host
calltrackingreports.com: could not connect to host
calomel.org: max-age too low: 2764800
@@ -2564,23 +2921,21 @@ caltonnutrition.com: did not receive HSTS header
calvin.me: did not receive HSTS header
calypso-tour.net: could not connect to host
calypsogames.net: could not connect to host
-calyxinstitute.org: could not connect to host
-camashop.de: did not receive HSTS header
camaya.net: did not receive HSTS header
cambridgeanalytica.net: could not connect to host
cambridgeanalytica.org: did not receive HSTS header
-camda.online: could not connect to host
camisadotorcedor.com.br: could not connect to host
camjackson.net: did not receive HSTS header
cammarkets.com: could not connect to host
-camomile.desi: could not connect to host
campaignelves.com: did not receive HSTS header
campbellsoftware.co.uk: could not connect to host
+campeoesdofutebol.com.br: did not receive HSTS header
campfire.co.il: did not receive HSTS header
campfourpaws.com: did not receive HSTS header
campingcarlovers.com: could not connect to host
campingdreams.com: did not receive HSTS header
campus-cybersecurity.team: did not receive HSTS header
+campusportalng.com: did not receive HSTS header
camsanalytics.com: could not connect to host
camshowhub.com: could not connect to host
canadiangamblingchoice.com: did not receive HSTS header
@@ -2591,28 +2946,33 @@ candicontrols.com: did not receive HSTS header
candratech.com: could not connect to host
candygirl.shop: could not connect to host
candykidsentertainment.co.uk: did not receive HSTS header
+candylion.rocks: could not connect to host
+canerkorkmaz.com: could not connect to host
canifis.net: did not receive HSTS header
cannarobotics.com: could not connect to host
canterbury.ws: could not connect to host
+canva-dev.com: could not connect to host
+canyons.media: did not receive HSTS header
canyonshoa.com: did not receive HSTS header
caodecristachines.com.br: could not connect to host
caoyu.info: did not receive HSTS header
+capacent.is: did not receive HSTS header
capacitacionyautoempleo.com: did not receive HSTS header
capecycles.co.za: did not receive HSTS header
capeyorkfire.com.au: did not receive HSTS header
-capitalonecardservice.com: could not connect to host
-captainark.net: could not connect to host
+capitalonecardservice.com: did not receive HSTS header
+capitaltg.com: did not receive HSTS header
+capogna.com: did not receive HSTS header
+captalize.com: could not connect to host
captchatheprize.com: could not connect to host
captianseb.de: could not connect to host
captivatedbytabrett.com: could not connect to host
captivationscience.com: could not connect to host
-captivationtheory.com: could not connect to host
capturethepen.co.uk: could not connect to host
car-navi.ph: did not receive HSTS header
car-rental24.com: did not receive HSTS header
-car-shop.top: did not receive HSTS header
carano-service.de: did not receive HSTS header
-caraudio69.cz: could not connect to host
+caraudio69.cz: did not receive HSTS header
card-cashing.com: max-age too low: 0
card-toka.jp: could not connect to host
cardloan-manual.net: could not connect to host
@@ -2621,13 +2981,14 @@ cardstream.com: did not receive HSTS header
cardurl.com: did not receive HSTS header
cardwars.hu: could not connect to host
careeraid.in: could not connect to host
-careerstuds.com: could not connect to host
+careerstuds.com: did not receive HSTS header
careplasticsurgery.com: did not receive HSTS header
carey.bio: did not receive HSTS header
-carif-idf.net: did not receive HSTS header
-carif-idf.org: did not receive HSTS header
+carey.li: did not receive HSTS header
+carif-idf.net: could not connect to host
+carif-idf.org: could not connect to host
+carlandfaith.com: could not connect to host
carlgo11.com: did not receive HSTS header
-carlo.mx: did not receive HSTS header
carlolly.co.uk: could not connect to host
carlosalves.info: could not connect to host
carloshmm.com: could not connect to host
@@ -2635,18 +2996,17 @@ carloshmm.stream: could not connect to host
carlovanwyk.com: could not connect to host
carlsbouncycastlesandhottubs.co.uk: did not receive HSTS header
carlscatering.com: did not receive HSTS header
-carol-lambert.com: could not connect to host
caroli.biz: could not connect to host
+caroli.info: could not connect to host
carpliyz.com: did not receive HSTS header
carrando.de: could not connect to host
carredejardin.com: could not connect to host
carroarmato0.be: did not receive HSTS header
carsforbackpackers.com: could not connect to host
-carsten.pw: could not connect to host
+carsten.pw: did not receive HSTS header
carstenfeuls.de: did not receive HSTS header
carterorland.com: could not connect to host
cartesunicef.be: did not receive HSTS header
-carun.us: did not receive HSTS header
carwashvapeur.be: could not connect to host
casadellecose.com: did not receive HSTS header
casajardininsecticidas.com: did not receive HSTS header
@@ -2660,17 +3020,22 @@ cashfortulsahouses.com: could not connect to host
cashless.fr: did not receive HSTS header
cashmyphone.ch: could not connect to host
cashsector.ga: could not connect to host
+casino-cash-flow.su: could not connect to host
+casino-cashflow.ru: could not connect to host
+casinocashflow.ru: could not connect to host
+casinolegal.pt: did not receive HSTS header
casinolistings.com: could not connect to host
casinoluck.com: could not connect to host
casinoreal.com: could not connect to host
casinostest.com: could not connect to host
casionova.org: did not receive HSTS header
casioshop.eu: did not receive HSTS header
+casjay.com: did not receive HSTS header
casovi.cf: could not connect to host
-caspicards.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
castagnonavocats.com: did not receive HSTS header
+castlejackpot.com: did not receive HSTS header
cata.ga: could not connect to host
-catalin.pw: did not receive HSTS header
+catalin.pw: could not connect to host
catarsisvr.com: could not connect to host
catcontent.cloud: could not connect to host
caterkids.com: did not receive HSTS header
@@ -2691,24 +3056,23 @@ caveclan.org: did not receive HSTS header
cavedevs.de: could not connect to host
cavedroid.xyz: could not connect to host
cavern.tv: did not receive HSTS header
-cayafashion.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-cayounglab.co.jp: did not receive HSTS header
-cazes.info: did not receive HSTS header
+cayafashion.de: did not receive HSTS header
cbamo.org: did not receive HSTS header
-cbengineeringinc.com: max-age too low: 86400
-cbhq.net: could not connect to host
cbi-epa.gov: could not connect to host
cc2729.com: did not receive HSTS header
ccayearbook.com: could not connect to host
ccblog.de: did not receive HSTS header
-ccl-sti.ch: could not connect to host
+ccja.ro: did not receive HSTS header
+ccl-sti.ch: did not receive HSTS header
ccretreatandfarm.com: did not receive HSTS header
cctech.ph: could not connect to host
cctld.com: could not connect to host
ccv.eu: did not receive HSTS header
cd0.us: could not connect to host
cdcpartners.gov: could not connect to host
+cdeck.net: could not connect to host
cdkeyworld.de: did not receive HSTS header
+cdlcenter.com: could not connect to host
cdmhp.org.nz: could not connect to host
cdmon.tech: could not connect to host
cdn.sx.cn: could not connect to host
@@ -2727,10 +3091,12 @@ cekaja.com: did not receive HSTS header
celebphotos.blog: could not connect to host
celec.gob.ec: could not connect to host
celeirorural.com.br: did not receive HSTS header
+celeraindustries.tk: did not receive HSTS header
celigo.com: did not receive HSTS header
celina-reads.de: could not connect to host
cellartracker.com: could not connect to host
cellsites.nz: could not connect to host
+cem.pw: did not receive HSTS header
cencalvia.org: could not connect to host
centennialrewards.com: did not receive HSTS header
centerforpolicy.org: could not connect to host
@@ -2744,10 +3110,11 @@ centralvoice.org: could not connect to host
centralync.com: could not connect to host
centrepoint-community.com: could not connect to host
centricbeats.com: did not receive HSTS header
-centrodoinstalador.com.br: did not receive HSTS header
centrolavoro.org: did not receive HSTS header
centsforchange.net: could not connect to host
+century-group.com: could not connect to host
ceoimon.com: did not receive HSTS header
+ceoptique.com: could not connect to host
cercevelet.com: did not receive HSTS header
ceres1.space: did not receive HSTS header
ceresia.ch: could not connect to host
@@ -2755,23 +3122,26 @@ ceritamalam.net: could not connect to host
cerize.love: could not connect to host
cernega.ro: did not receive HSTS header
cerpa.com.br: did not receive HSTS header
+cerstve-korenie.sk: did not receive HSTS header
+cerstvekorenie.sk: did not receive HSTS header
cert.se: max-age too low: 2628001
certcenter.fr: could not connect to host
-certifi.io: could not connect to host
+certifi.io: did not receive HSTS header
certifix.eu: did not receive HSTS header
certly.io: could not connect to host
certmgr.org: could not connect to host
ceruleanmainbeach.com.au: did not receive HSTS header
-cervejista.com: could not connect to host
cesal.net: could not connect to host
cesidianroot.eu: could not connect to host
+cespri.com.pe: did not receive HSTS header
+ceta.one: did not receive HSTS header
cevrimici.com: could not connect to host
cf-tm.net: could not connect to host
cf11.de: did not receive HSTS header
cfcnexus.org: could not connect to host
cfcproperties.com: did not receive HSTS header
cfetengineering.com: could not connect to host
-cfneia.org: could not connect to host
+cfneia.org: did not receive HSTS header
cfoitplaybook.com: could not connect to host
cfsh.tk: could not connect to host
cganx.org: could not connect to host
@@ -2782,8 +3152,8 @@ chabaojia.com: did not receive HSTS header
chadklass.com: could not connect to host
chahub.com: could not connect to host
chainmonitor.com: could not connect to host
+chairinstitute.com: did not receive HSTS header
chaldeen.pro: did not receive HSTS header
-chalker.io: could not connect to host
challengeskins.com: could not connect to host
chameleon-ents.co.uk: could not connect to host
chameth.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -2796,14 +3166,14 @@ chandlerredding.com: could not connect to host
changelab.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
changetip.com: did not receive HSTS header
channelcards.com: did not receive HSTS header
-channellife.asia: did not receive HSTS header
+channellife.asia: could not connect to host
channellife.co.nz: did not receive HSTS header
channellife.com.au: did not receive HSTS header
channyc.com: did not receive HSTS header
-chanoyu-gakkai.jp: could not connect to host
-chanshiyu.com: did not receive HSTS header
chaos.fail: could not connect to host
+chaoscastles.co.uk: did not receive HSTS header
chaospott.de: did not receive HSTS header
+chaoswars.ddns.net: could not connect to host
chaoswebs.net: did not receive HSTS header
chaouby.com: could not connect to host
charakato.com: could not connect to host
@@ -2811,25 +3181,29 @@ charge.co: could not connect to host
chargejuice.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
charityclear.com: could not connect to host
charitystreet.co.uk: could not connect to host
+charl.eu: could not connect to host
+charlesjay.com: could not connect to host
+charlestonfacialplastic.com: did not receive HSTS header
charlestonsecuritysystems.net: did not receive HSTS header
charliemcneive.com: could not connect to host
charlimarie.com: did not receive HSTS header
-charlipopkids.com.au: could not connect to host
+charlipopkids.com.au: did not receive HSTS header
charnleyhouse.co.uk: did not receive HSTS header
charonsecurity.com: could not connect to host
charp.eu: could not connect to host
chartstoffarm.de: did not receive HSTS header
+chasafilli.ch: could not connect to host
chaseganey.com: did not receive HSTS header
chasing-coins.com: did not receive HSTS header
-chaska.co.za: did not receive HSTS header
+chaska.co.za: could not connect to host
chasse-et-plaisir.com: did not receive HSTS header
chat-porc.eu: did not receive HSTS header
chatbot.me: did not receive HSTS header
+chatbot.one: could not connect to host
chatbots.email: could not connect to host
-chateau-belvoir.com: did not receive HSTS header
+chateau-belvoir.com: could not connect to host
chateauconstellation.ch: did not receive HSTS header
chateaudevaugrigneuse.com: did not receive HSTS header
-chatint.com: did not receive HSTS header
chatnbook.com: could not connect to host
chatup.cf: could not connect to host
chatxp.com: could not connect to host
@@ -2846,9 +3220,11 @@ cheazey.net: did not receive HSTS header
chebedara.com: could not connect to host
chebwebb.com: could not connect to host
checkhost.org: could not connect to host
+checkmateshoes.com: did not receive HSTS header
checkmatewebsolutions.com: max-age too low: 0
checkout.google.com: could not connect to host (error ignored - included regardless)
-checkyourmeds.com: could not connect to host
+checkyourmath.com: could not connect to host
+checkyourmeds.com: did not receive HSTS header
cheekylittlerascals.co.uk: did not receive HSTS header
cheerflow.com: could not connect to host
cheesefusion.com: could not connect to host
@@ -2856,7 +3232,6 @@ cheesetart.my: could not connect to host
cheesypicsbooths.co.uk: could not connect to host
cheetah85.de: could not connect to host
chefgalles.com.br: could not connect to host
-chehalemgroup.com: did not receive HSTS header
chejianer.cn: could not connect to host
chellame.com: could not connect to host
chellame.fr: could not connect to host
@@ -2867,13 +3242,14 @@ chengtongled.com: did not receive HSTS header
chensir.net: could not connect to host
chepaofen.com: did not receive HSTS header
cherekerry.com: could not connect to host
-cherrydropscandycarts.co.uk: did not receive HSTS header
+cherrydropscandycarts.co.uk: could not connect to host
cherylsoleway.com: did not receive HSTS header
chessreporter.nl: did not receive HSTS header
chesterbrass.uk: did not receive HSTS header
chiamata-aiuto.ch: could not connect to host
chiaramail.com: could not connect to host
chib.chat: could not connect to host
+chicagolug.org: could not connect to host
chicorycom.net: could not connect to host
chihiro.xyz: could not connect to host
chijiokeindustries.co.uk: could not connect to host
@@ -2881,12 +3257,13 @@ chikan-beacon.net: could not connect to host
chikatomo-ryugaku.com: did not receive HSTS header
chikory.com: could not connect to host
childcaresolutionscny.org: did not receive HSTS header
-childrendeservebetter.org: did not receive HSTS header
-childrens-room.com: did not receive HSTS header
-chilli943.info: did not receive HSTS header
+childrendeservebetter.org: could not connect to host
+chilli943.info: could not connect to host
chimparoo.ca: did not receive HSTS header
china-dhl.org: could not connect to host
china-line.org: could not connect to host
+chinacdn.org: could not connect to host
+chinawhale.com: could not connect to host
chinternet.xyz: could not connect to host
chiphell.com: did not receive HSTS header
chirgui.eu: could not connect to host
@@ -2896,23 +3273,22 @@ chloeallison.co.uk: could not connect to host
chloehorler.com: could not connect to host
chlouis.net: could not connect to host
chm.vn: did not receive HSTS header
-chmielarz.it: could not connect to host
chocolat-suisse.ch: could not connect to host
chodobien.com: could not connect to host
chodocu.com: did not receive HSTS header
choe.fi: could not connect to host
choiralberta.ca: did not receive HSTS header
-chonghe.org: did not receive HSTS header
+chollima.pro: could not connect to host
chontalpa.pw: could not connect to host
chopperforums.com: could not connect to host
chordso.com: did not receive HSTS header
chorkley.me: could not connect to host
+chorleiterverband.de: did not receive HSTS header
choruscrowd.com: could not connect to host
chotu.net: could not connect to host
+chr0me.sh: could not connect to host
chris-web.info: could not connect to host
chrisandsarahinasia.com: could not connect to host
-chrisb.me: did not receive HSTS header
-chrisb.xyz: did not receive HSTS header
chrisbrakebill.com: did not receive HSTS header
chrisbrown.id.au: could not connect to host
chrisebert.net: could not connect to host
@@ -2921,7 +3297,8 @@ chrisfinazzo.com: did not receive HSTS header
chriskirchner.de: did not receive HSTS header
chriskyrouac.com: could not connect to host
chrisopperwall.com: did not receive HSTS header
-chrisself.xyz: could not connect to host
+chrisself.xyz: max-age too low: 0
+christerwaren.fi: could not connect to host
christiaandruif.nl: could not connect to host
christianbro.gq: could not connect to host
christianhoffmann.info: could not connect to host
@@ -2931,17 +3308,19 @@ christianscholz.eu: did not receive HSTS header
christina-quast.de: did not receive HSTS header
christophebarbezat.ch: could not connect to host
christophercolumbusfoundation.gov: could not connect to host
+christopherpritchard.co.uk: could not connect to host
christophersole.com: could not connect to host
christophheich.me: did not receive HSTS header
+christophkreileder.com: could not connect to host
chrisupjohn.com: could not connect to host
chrisupjohn.xyz: could not connect to host
chrisvicmall.com: did not receive HSTS header
-chriswbarry.com: did not receive HSTS header
chromaryu.net: could not connect to host
chromaxa.com: could not connect to host
chrome: could not connect to host
chrome-devtools-frontend.appspot.com: did not receive HSTS header (error ignored - included regardless)
chrome.google.com: did not receive HSTS header (error ignored - included regardless)
+chronic101.xyz: could not connect to host
chronogram.me: did not receive HSTS header
chronoproject.com: did not receive HSTS header
chrst.ph: could not connect to host
@@ -2952,14 +3331,15 @@ chua.family: did not receive HSTS header
chuckame.fr: did not receive HSTS header
chulado.com: did not receive HSTS header
chundelac.com: could not connect to host
-churchux.co: did not receive HSTS header
+churchux.co: could not connect to host
churchwebcanada.ca: did not receive HSTS header
churchwebsupport.com: did not receive HSTS header
churrasqueirafacil.com.br: could not connect to host
+chxdf.net: could not connect to host
ci-labo.com.tw: max-age too low: 7889238
ci-suite.com: could not connect to host
cianmawhinney.xyz: could not connect to host
-cidadedopoker.com.br: did not receive HSTS header
+cidadedopoker.com.br: could not connect to host
ciderclub.com: could not connect to host
cidr.ml: could not connect to host
cienbeaute-lidl.fr: could not connect to host
@@ -2970,26 +3350,30 @@ ciicutini.ro: did not receive HSTS header
cim2b.de: could not connect to host
cimalando.eu: could not connect to host
cinartelorgu.com: did not receive HSTS header
+cindey.io: could not connect to host
cinefilia.tk: could not connect to host
-cinelite.club: could not connect to host
+cinelite.club: did not receive HSTS header
cinema5.ru: did not receive HSTS header
cinemaclub.co: could not connect to host
+ciner.is: could not connect to host
cinerama.com.br: did not receive HSTS header
cintdirect.com: could not connect to host
-cioconference.co.nz: did not receive HSTS header
+cioconference.co.nz: could not connect to host
cipher.co.th: did not receive HSTS header
cipher.land: could not connect to host
-cipherboy.com: could not connect to host
cipherli.st: did not receive HSTS header
ciplanutrition.com: could not connect to host
cipriano.nl: did not receive HSTS header
cira.email: could not connect to host
circ-logic.com: did not receive HSTS header
circlebox.rocks: could not connect to host
+cirfi.com: could not connect to host
cirrohost.com: did not receive HSTS header
ciscohomeanalytics.com: could not connect to host
ciscommerce.net: could not connect to host
+citationgurus.com: could not connect to host
citiagent.cz: could not connect to host
+citizen-cam.de: did not receive HSTS header
citra-emu.org: did not receive HSTS header
citroner.blog: could not connect to host
citybusexpress.com: did not receive HSTS header
@@ -3006,12 +3390,14 @@ cjessett.com: max-age too low: 0
cjtkfan.club: could not connect to host
ckcameron.net: could not connect to host
ckp.io: could not connect to host
+clad.cf: could not connect to host
+claibornecountytn.gov: could not connect to host
claimit.ml: could not connect to host
clan-ww.com: did not receive HSTS header
clapping-rhymes.com: could not connect to host
clara-baumert.de: could not connect to host
claralabs.com: did not receive HSTS header
-claretandbanter.uk: could not connect to host
+claretandbanter.uk: did not receive HSTS header
clarity-c2ced.appspot.com: did not receive HSTS header
claritysrv.com: did not receive HSTS header
clarksgaragedoorrepair.com: did not receive HSTS header
@@ -3026,6 +3412,7 @@ claudearpel.fr: did not receive HSTS header
claudio4.com: did not receive HSTS header
claytoncondon.com: could not connect to host
clcleaningco.com: could not connect to host
+cleanbeautymarket.com.au: did not receive HSTS header
cleanexperts.co.uk: could not connect to host
cleaningsquad.ca: did not receive HSTS header
cleanmta.com: could not connect to host
@@ -3035,6 +3422,7 @@ clearc.tk: could not connect to host
clearchatsandbox.com: could not connect to host
clearsky.me: did not receive HSTS header
clearviewwealthprojector.com.au: could not connect to host
+clementfevrier.fr: could not connect to host
clemovementlaw.com: could not connect to host
clerkendweller.uk: could not connect to host
clevelandokla.com: could not connect to host
@@ -3054,16 +3442,17 @@ clicktenisdemesa.com.br: did not receive HSTS header
clicn.bio: could not connect to host
clicnbio.com: could not connect to host
cliftons.com: did not receive HSTS header
+climaencusco.com: could not connect to host
clinia.ca: did not receive HSTS header
clinicaferrusbratos.com: did not receive HSTS header
clinicasilos.com: did not receive HSTS header
cliniko.com: did not receive HSTS header
-cliniquecomplementaire.com: could not connect to host
clintonbloodworth.com: could not connect to host
clintonbloodworth.io: could not connect to host
clintwilson.technology: max-age too low: 2592000
+clip.ovh: did not receive HSTS header
clipped4u.com: could not connect to host
-clod-hacking.com: could not connect to host
+clnet.com.au: did not receive HSTS header
cloghercastles.co.uk: did not receive HSTS header
clorik.com: could not connect to host
closient.com: did not receive HSTS header
@@ -3072,6 +3461,7 @@ cloud-crowd.com.au: did not receive HSTS header
cloud-project.com: could not connect to host
cloud.wtf: could not connect to host
cloud2go.de: did not receive HSTS header
+cloud58.org: did not receive HSTS header
cloudapi.vc: could not connect to host
cloudbased.info: did not receive HSTS header
cloudbasedsite.com: did not receive HSTS header
@@ -3085,11 +3475,12 @@ cloudimag.es: could not connect to host
cloudimproved.com: could not connect to host
cloudimprovedtest.com: could not connect to host
cloudlink.club: could not connect to host
-cloudmigrator365.com: did not receive HSTS header
+cloudmigrator365.com: could not connect to host
cloudns.com.au: could not connect to host
cloudopt.net: did not receive HSTS header
cloudpagesforwork.com: did not receive HSTS header
cloudpebble.net: did not receive HSTS header
+cloudpengu.in: could not connect to host
clouds.webcam: could not connect to host
cloudspotterapp.com: did not receive HSTS header
cloudstoragemaus.com: could not connect to host
@@ -3099,14 +3490,13 @@ cloudteam.de: did not receive HSTS header
cloudwalk.io: did not receive HSTS header
cloudwarez.xyz: could not connect to host
clounix.online: could not connect to host
-clovissantos.com: could not connect to host
+clovissantos.com: did not receive HSTS header
clowde.in: could not connect to host
clownaroundbouncycastles.co.uk: did not receive HSTS header
clownish.co.il: could not connect to host
clsimplex.com: did not receive HSTS header
clubcall.com: did not receive HSTS header
clubdeslecteurs.net: could not connect to host
-clubmate.rocks: could not connect to host
clubmix.co.kr: could not connect to host
cluefulca.com: could not connect to host
cluefulca.net: could not connect to host
@@ -3117,6 +3507,7 @@ clvrwebdesign.com: did not receive HSTS header
clvs7.com: did not receive HSTS header
clycat.ru: could not connect to host
clywedogmaths.co.uk: could not connect to host
+cm3.pw: could not connect to host
cmangos.net: did not receive HSTS header
cmc-versand.de: did not receive HSTS header
cmcc.network: could not connect to host
@@ -3125,32 +3516,32 @@ cmdtelecom.net.br: did not receive HSTS header
cmitao.com: could not connect to host
cmpr.es: could not connect to host
cmrss.com: could not connect to host
-cms-weble.jp: could not connect to host
cmsbattle.com: could not connect to host
cmscafe.ru: did not receive HSTS header
cmskh.co.uk: could not connect to host
cmso-cal.com: could not connect to host
cmweller.com: could not connect to host
+cnam.net: did not receive HSTS header
cnaprograms.online: could not connect to host
cncfraises.fr: did not receive HSTS header
+cncmachinemetal.com: did not receive HSTS header
cncn.us: did not receive HSTS header
cnetw.xyz: could not connect to host
cnitdog.com: could not connect to host
+cnlau.com: did not receive HSTS header
cnlic.com: could not connect to host
cnrd.me: did not receive HSTS header
cnsyear.com: did not receive HSTS header
cnwage.com: could not connect to host
cnwarn.com: could not connect to host
-co-driversphoto.se: did not receive HSTS header
+co-driversphoto.se: could not connect to host
co-yutaka.com: could not connect to host
coach-sportif.paris: did not receive HSTS header
coachingconsultancy.com: did not receive HSTS header
-coam.co: could not connect to host
-coathangerstrangla.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-coathangerstrangler.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
cobaltlp.com: could not connect to host
cobcode.com: could not connect to host
cobrax.net: could not connect to host
+cocaine-import.agency: could not connect to host
coccinellaskitchen.com: could not connect to host
coccinellaskitchen.de: could not connect to host
coccinellaskitchen.it: could not connect to host
@@ -3162,8 +3553,6 @@ cocktailfuture.fr: could not connect to host
coco-cool.fr: could not connect to host
cocodemy.com: did not receive HSTS header
cocolovesdaddy.com: could not connect to host
-codabix.com: did not receive HSTS header
-codabix.de: did not receive HSTS header
codabix.net: could not connect to host
code-35.com: could not connect to host
code-digsite.com: could not connect to host
@@ -3172,9 +3561,9 @@ code.google.com: did not receive HSTS header (error ignored - included regardles
codealkemy.co: could not connect to host
codeco.pw: could not connect to host
codecontrollers.de: could not connect to host
-codedelarouteenligne.fr: did not receive HSTS header
codeforce.io: could not connect to host
-codeforhakodate.org: did not receive HSTS header
+codeforhakodate.org: could not connect to host
+codejunkie.de: could not connect to host
codelayer.ca: could not connect to host
codelitmus.com: did not receive HSTS header
codeloop.pw: could not connect to host
@@ -3189,30 +3578,34 @@ codeproxy.ddns.net: could not connect to host
codepx.com: did not receive HSTS header
codercy.com: could not connect to host
coderhangout.com: could not connect to host
+codersbistro.com: did not receive HSTS header
codewiththepros.org: could not connect to host
codewiz.xyz: could not connect to host
-codigosddd.com.br: did not receive HSTS header
coecrafters.com: could not connect to host
coffeedino.com: did not receive HSTS header
coffeeetc.co.uk: could not connect to host
coffeestrategies.com: max-age too low: 5184000
cogniflex.com: did not receive HSTS header
+cognixia.com: did not receive HSTS header
cogumelosmagicos.org: could not connect to host
cohesive.io: did not receive HSTS header
coin-exchange.cz: could not connect to host
coindam.com: could not connect to host
coinessa.com: could not connect to host
+coinjar-sandbox.com: could not connect to host
colarelli.ch: could not connect to host
coldaddy.com: could not connect to host
coldlostsick.net: could not connect to host
coldwatericecream.com: did not receive HSTS header
colearnr.com: could not connect to host
+colincampbell.me: could not connect to host
collablynk.com: could not connect to host
collabra.email: did not receive HSTS header
collard.tk: could not connect to host
collbox.co: did not receive HSTS header
-collectosaurus.com: did not receive HSTS header
+collectosaurus.com: could not connect to host
colleencornez.com: could not connect to host
+collegepaperworld.com: could not connect to host
collegepulse.org: could not connect to host
collies.eu: max-age too low: 3
collinghammethodist.org.uk: did not receive HSTS header
@@ -3222,20 +3615,25 @@ collinsartworks.com: did not receive HSTS header
collision.fyi: could not connect to host
colmexpro.com: did not receive HSTS header
colognegaming.net: could not connect to host
+cololi.moe: max-age too low: 2592000
coloradocomputernetworking.net: could not connect to host
colorcentertoner.com.br: did not receive HSTS header
coloringnotebook.com: could not connect to host
colorlib.com: did not receive HSTS header
colorunhas.com.br: did not receive HSTS header
+com-news.io: could not connect to host
com.cc: could not connect to host
combatshield.cz: did not receive HSTS header
comchezmeme.com: could not connect to host
comdotgame.com: could not connect to host
-comefollowme2016.com: could not connect to host
+comefollowme2016.com: did not receive HSTS header
comeoncolleen.com: did not receive HSTS header
comercialtrading.eu: could not connect to host
-cometonovascotia.ca: could not connect to host
+cometbot.cf: could not connect to host
cometrueunlimited.com: could not connect to host
+comevius.com: could not connect to host
+comevius.org: could not connect to host
+comevius.xyz: could not connect to host
comfortdom.ua: did not receive HSTS header
comfortticket.de: did not receive HSTS header
comfy.cafe: could not connect to host
@@ -3252,13 +3650,10 @@ commerciallocker.com: could not connect to host
commercialplanet.eu: could not connect to host
commune-preuilly.fr: did not receive HSTS header
community-cupboard.org: did not receive HSTS header
-comocurarlagastritis24.online: did not receive HSTS header
-comocurarlashemorroides.org: could not connect to host
+comocurarlashemorroides.org: did not receive HSTS header
comocurarlashemorroidesya.com: did not receive HSTS header
-comoimportar.net: did not receive HSTS header
+comodo.nl: could not connect to host
comorecuperaratumujerpdf.com: could not connect to host
-comosecarabarriga.net: did not receive HSTS header
-comoseduzir.net: did not receive HSTS header
comotalk.com: could not connect to host
compalytics.com: could not connect to host
comparamejor.com: did not receive HSTS header
@@ -3276,11 +3671,13 @@ compredietlight.com.br: did not receive HSTS header
comprefitasadere.com.br: could not connect to host
comprehensiveihc.com: could not connect to host
compromised.com: could not connect to host
+compros.me: could not connect to host
compsmag.com: did not receive HSTS header
-comptrollerofthecurrency.gov: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+comptrollerofthecurrency.gov: did not receive HSTS header
compucorner.com.mx: could not connect to host
-computeremergency.com.au: did not receive HSTS header
+compusolve.nl: could not connect to host
computertal.de: could not connect to host
+comssa.org.au: did not receive HSTS header
comyuno.com: did not receive HSTS header
concentrade.de: did not receive HSTS header
conceptatelier.de: could not connect to host
@@ -3288,11 +3685,13 @@ conception.sk: could not connect to host
concerts-metal.ch: did not receive HSTS header
conclave.global: could not connect to host
concord-group.co.jp: did not receive HSTS header
-concretehermit.com: did not receive HSTS header
conectalmeria.com: did not receive HSTS header
+confidential.network: could not connect to host
confirm365.com: could not connect to host
-conflux.tw: could not connect to host
+conflux.tw: did not receive HSTS header
conformal.com: could not connect to host
+confuddledpenguin.com: did not receive HSTS header
+cong5.net: max-age too low: 0
congz.me: could not connect to host
conkret.ch: could not connect to host
conkret.co.uk: could not connect to host
@@ -3305,7 +3704,7 @@ connected-verhuurservice.nl: did not receive HSTS header
connectfss.com: could not connect to host
connectingconcepts.com: did not receive HSTS header
conniesacademy.com: could not connect to host
-connorsmith.co: could not connect to host
+conpins.nl: could not connect to host
conrad.am: could not connect to host
consciousandglamorous.com: could not connect to host
consciousbrand.org.au: could not connect to host
@@ -3315,8 +3714,7 @@ conseil-gli.fr: did not receive HSTS header
consejosdehogar.com: did not receive HSTS header
console.python.org: did not receive HSTS header
console.support: did not receive HSTS header
-construct-trust.com: did not receive HSTS header
-constructive.men: could not connect to host
+construct-trust.com: could not connect to host
consultcelerity.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
consultingroupitaly.com: did not receive HSTS header
consultorcr.net: did not receive HSTS header
@@ -3332,7 +3730,9 @@ continuation.io: could not connect to host
continuumgaming.com: could not connect to host
contraout.com: could not connect to host
controlcenter.gigahost.dk: did not receive HSTS header
+contxt-agentur.de: did not receive HSTS header
convergemagazine.com: did not receive HSTS header
+converter.ml: could not connect to host
convertimg.com: could not connect to host
convoitises.com: did not receive HSTS header
cooink.net: could not connect to host
@@ -3342,9 +3742,9 @@ coolaj86.com: did not receive HSTS header
coolbutbroken.com: did not receive HSTS header
coolchevy.org.ua: did not receive HSTS header
coole-meister.de: could not connect to host
-coolerssr.space: could not connect to host
cooljs.me: could not connect to host
coolkidsbouncycastles.co.uk: did not receive HSTS header
+coolrc.me: did not receive HSTS header
coolvox.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
coonelnel.net: did not receive HSTS header
cooxa.com: could not connect to host
@@ -3356,7 +3756,7 @@ cor-ser.es: could not connect to host
coralproject.net: did not receive HSTS header
coralrosado.com.br: did not receive HSTS header
coramcdaniel.com: did not receive HSTS header
-corbinhesse.com: could not connect to host
+corbinhesse.com: did not receive HSTS header
corderoscleaning.com: did not receive HSTS header
cordial-restaurant.com: did not receive HSTS header
core4system.de: could not connect to host
@@ -3375,6 +3775,7 @@ cormilu.com.br: did not receive HSTS header
cornishcamels.com: did not receive HSTS header
cornmachine.com: did not receive HSTS header
coroasdefloresonline.com.br: could not connect to host
+coropiacere.org: could not connect to host
corozanu.ro: did not receive HSTS header
corpoatletico.com.br: could not connect to host
corporateencryption.com: could not connect to host
@@ -3385,12 +3786,11 @@ correiodovale.com.br: did not receive HSTS header
corruption-mc.net: could not connect to host
corruption-rsps.net: could not connect to host
corruption-server.net: could not connect to host
-corzntin.fr: could not connect to host
cosmeticosnet.com.br: did not receive HSTS header
cosmiatria.pe: could not connect to host
+cosmic-os.org: could not connect to host
cosmoluziluminacion.com: did not receive HSTS header
-cosmoss-departure.com: did not receive HSTS header
-cosplayer.com: could not connect to host
+cosmoss-departure.com: could not connect to host
costow.club: did not receive HSTS header
cotonea.de: did not receive HSTS header
cougarsland.com: did not receive HSTS header
@@ -3400,8 +3800,8 @@ count.sh: could not connect to host
countryoutlaws.ca: did not receive HSTS header
coup-dun-soir.ch: could not connect to host
couponcodeq.com: could not connect to host
-cour4g3.me: could not connect to host
couragewhispers.ca: could not connect to host
+coursables.com: did not receive HSTS header
coursdeprogrammation.com: could not connect to host
course.pp.ua: did not receive HSTS header
course.rs: could not connect to host
@@ -3413,12 +3813,12 @@ covenantbank.net: could not connect to host
coverdat.com: could not connect to host
coverduck.ru: could not connect to host
coworkingmanifesto.com: did not receive HSTS header
+cozitop.com.br: could not connect to host
cozmaadrian.ro: could not connect to host
cozy.io: did not receive HSTS header
cozycloud.cc: did not receive HSTS header
cpaneltips.com: could not connect to host
cpbanq.com: could not connect to host
-cptoon.com: could not connect to host
cpuvinf.eu.org: could not connect to host
cqchome.com: did not receive HSTS header
cracking.org: did not receive HSTS header
@@ -3442,23 +3842,27 @@ cravelyrics.com: could not connect to host
crazifyngers.com: could not connect to host
crazy-crawler.de: did not receive HSTS header
crazycen.com: could not connect to host
-crazycraftland.de: did not receive HSTS header
-crazycraftland.net: did not receive HSTS header
+crazycraftland.de: could not connect to host
+crazycraftland.net: could not connect to host
crazyfamily11.de: did not receive HSTS header
crazyhotseeds.com: did not receive HSTS header
crazyker.com: did not receive HSTS header
crbug.com: did not receive HSTS header (error ignored - included regardless)
+crc-online.nl: did not receive HSTS header
creaescola.com: did not receive HSTS header
creamybuild.com: could not connect to host
create-ls.jp: could not connect to host
create-test-publish.co.uk: could not connect to host
+createcos.com: could not connect to host
creativeapple.ltd: did not receive HSTS header
creativeartifice.com: did not receive HSTS header
+creativecommons.cl: did not receive HSTS header
creativecommonscatpictures.com: could not connect to host
creativefolks.co.uk: did not receive HSTS header
creativephysics.ml: could not connect to host
creativeplayuk.com: did not receive HSTS header
creato.top: could not connect to host
+creators.co: could not connect to host
crecips.com: could not connect to host
crecket.me: could not connect to host
credia.jp: did not receive HSTS header
@@ -3470,48 +3874,54 @@ crestoncottage.com: could not connect to host
crewplanner.eu: did not receive HSTS header
crge.eu: max-age too low: 0
crimewatch.net.za: could not connect to host
+crip-usk.ba: could not connect to host
crisissurvivalspecialists.com: could not connect to host
cristianhares.com: could not connect to host
-critcola.com: could not connect to host
criticalaim.com: could not connect to host
crizk.com: could not connect to host
crl-autos.com: could not connect to host
-crmdemo.website: did not receive HSTS header
+crmdemo.website: could not connect to host
+croceverdevb.it: did not receive HSTS header
crockett.io: did not receive HSTS header
croco.vision: did not receive HSTS header
croeder.net: could not connect to host
croisieres.discount: did not receive HSTS header
+cromefire.myds.me: could not connect to host
cromosomax.com: could not connect to host
+cronoscentral.be: did not receive HSTS header
croods-mt2.fr: did not receive HSTS header
croome.no-ip.org: could not connect to host
crop-alert.com: could not connect to host
crosbug.com: did not receive HSTS header (error ignored - included regardless)
crosspeakoms.com: did not receive HSTS header
crosssec.com: did not receive HSTS header
-crowd.supply: did not receive HSTS header
+crow.tw: could not connect to host
crowdcurity.com: did not receive HSTS header
crowdjuris.com: could not connect to host
-crowdwis.com: could not connect to host
+crowdwis.com: did not receive HSTS header
crownbouncycastlehire.co.uk: did not receive HSTS header
crownruler.com: did not receive HSTS header
crox.co: could not connect to host
crrev.com: did not receive HSTS header (error ignored - included regardless)
-crt.cloud: could not connect to host
+crt2014-2024review.gov: could not connect to host
crtvmgmt.com: could not connect to host
crudysql.com: could not connect to host
crufad.org: did not receive HSTS header
cruikshank.com.au: did not receive HSTS header
crushroom.com: max-age too low: 43200
+cruzadobalcazarabogados.com: could not connect to host
cruzeiropedia.org: did not receive HSTS header
cruzr.xyz: could not connect to host
crypalert.com: could not connect to host
crypt.guru: did not receive HSTS header
cryptify.eu: could not connect to host
-crypto-armory.com: could not connect to host
+crypto-navi.org: did not receive HSTS header
+crypto.tube: did not receive HSTS header
cryptobells.com: did not receive HSTS header
cryptobin.org: could not connect to host
cryptocaseproject.com: could not connect to host
cryptodash.net: could not connect to host
+cryptodyno.ninja: could not connect to host
cryptoisnotacrime.org: could not connect to host
cryptojar.io: could not connect to host
cryptolab.pro: could not connect to host
@@ -3519,44 +3929,50 @@ cryptolab.tk: did not receive HSTS header
cryptoparty.dk: could not connect to host
cryptopartyatx.org: could not connect to host
cryptopartynewcastle.org: could not connect to host
+cryptopro.shop: could not connect to host
cryptopush.com: did not receive HSTS header
crysadm.com: could not connect to host
crystalclassics.co.uk: did not receive HSTS header
crystalmate.eu: did not receive HSTS header
cs-colorscreed-betongulve.dk: could not connect to host
cs-ubladego.pl: could not connect to host
-csacongress.org: did not receive HSTS header
+csacongress.org: max-age too low: 2592000
csapak.com: did not receive HSTS header
csawctf.poly.edu: could not connect to host
cscau.com: did not receive HSTS header
csehnyelv.hu: could not connect to host
cselzer.com: did not receive HSTS header
cser.me: could not connect to host
+csfloors.co.uk: could not connect to host
csfs.org.uk: could not connect to host
csgf.ru: did not receive HSTS header
csgo.help: could not connect to host
csgo77.com: could not connect to host
csgodicegame.com: could not connect to host
csgoelemental.com: could not connect to host
-csgogamers.com: did not receive HSTS header
+csgogamers.com: could not connect to host
csgohandouts.com: did not receive HSTS header
csgokings.eu: could not connect to host
csgoshifter.com: could not connect to host
+csgotwister.com: could not connect to host
+cshopify.com: could not connect to host
csilies.de: could not connect to host
csinfo.us: could not connect to host
+cskdoc.com: did not receive HSTS header
csohack.tk: could not connect to host
cspbuilder.info: did not receive HSTS header
+csru.net: could not connect to host
cssps.org: could not connect to host
cssu.in: did not receive HSTS header
csvape.com: did not receive HSTS header
cswarzone.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ct-status.org: could not connect to host
ct-watches.dk: did not receive HSTS header
-ctliu.com: could not connect to host
+cthomas.work: could not connect to host
ctrl.blog: did not receive HSTS header
-ctyi.me: did not receive HSTS header
+ctyi.me: could not connect to host
cuanhua3s.com: did not receive HSTS header
-cubecart.net: could not connect to host
+cubecart.net: did not receive HSTS header
cubecraftstore.com: could not connect to host
cubecraftstore.net: could not connect to host
cubela.tech: could not connect to host
@@ -3568,8 +3984,8 @@ cuecamania.com.br: could not connect to host
cujanovic.com: did not receive HSTS header
cujba.com: could not connect to host
culinae.nl: could not connect to host
-culture-school.top: did not receive HSTS header
cultureelbeleggen.nl: did not receive HSTS header
+cultureroll.com: could not connect to host
cumparama.com: did not receive HSTS header
cumshots-video.ru: could not connect to host
cunha.be: could not connect to host
@@ -3581,45 +3997,55 @@ cuongthach.com: did not receive HSTS header
cuonic.com: could not connect to host
cupcake.io: did not receive HSTS header
cupcake.is: did not receive HSTS header
+cupidosshop.com: could not connect to host
cupofarchitects.net: could not connect to host
curacao-license.com: could not connect to host
curarnosensalud.com: could not connect to host
+curia.fi: could not connect to host
curiouscat.me: max-age too low: 2592000
curlyroots.com: did not receive HSTS header
current.com: did not receive HSTS header
curroapp.com: could not connect to host
cursosdnc.cl: did not receive HSTS header
+cursosgratuitos.com.br: did not receive HSTS header
curveweb.co.uk: did not receive HSTS header
cusfit.com: did not receive HSTS header
custe.rs: could not connect to host
+custerweb.com: could not connect to host
customadesign.com: did not receive HSTS header
customd.com: did not receive HSTS header
customfilmworks.com: could not connect to host
customizeyourshower.com: could not connect to host
custompapers.com: could not connect to host
customromlist.com: could not connect to host
+customshort.link: could not connect to host
customwritings.com: could not connect to host
cutelariafiveladeouro.com.br: did not receive HSTS header
cutorrent.com: could not connect to host
cuvva.insure: did not receive HSTS header
+cuxpool.club: could not connect to host
cvjm-memmingen.de: did not receive HSTS header
+cvps.top: did not receive HSTS header
cvsoftub.com: did not receive HSTS header
cvtparking.co.uk: did not receive HSTS header
+cvv.cn: could not connect to host
cw-bw.de: could not connect to host
cwage.com: could not connect to host
cwbw.network: did not receive HSTS header
cwilson.ga: could not connect to host
+cwinfo.fi: could not connect to host
cy.technology: did not receive HSTS header
cyanogenmod.xxx: could not connect to host
cybbh.space: could not connect to host
cyber-computer.club: could not connect to host
cyber-konzept.de: did not receive HSTS header
-cyber-perikarp.eu: did not receive HSTS header
+cyber-perikarp.eu: could not connect to host
+cyber.cafe: could not connect to host
cybercecurity.com: did not receive HSTS header
cybercloud.cc: did not receive HSTS header
-cyberdos.de: did not receive HSTS header
+cybercymru.co.uk: did not receive HSTS header
cyberdyne-industries.net: could not connect to host
-cyberlab.kiev.ua: did not receive HSTS header
+cyberfrancais.ro: did not receive HSTS header
cyberlab.team: did not receive HSTS header
cyberpeace.nl: could not connect to host
cyberprey.com: did not receive HSTS header
@@ -3627,15 +4053,18 @@ cyberpunk.ca: could not connect to host
cybersantri.com: could not connect to host
cyberserver.org: could not connect to host
cybershambles.com: could not connect to host
+cybersmart.co.uk: did not receive HSTS header
cyberspace.today: could not connect to host
+cybertorsk.org: could not connect to host
cyclehackluxembourgcity.lu: could not connect to host
cyclingjunkies.com: could not connect to host
cydia-search.io: could not connect to host
cyelint.com: could not connect to host
-cygu.ch: could not connect to host
+cygu.ch: did not receive HSTS header
cymtech.net: could not connect to host
cynoshair.com: could not connect to host
cyoda.com: did not receive HSTS header
+cypherpunk.at: could not connect to host
cypherpunk.com: could not connect to host
cypherpunk.ws: could not connect to host
cyphertite.com: could not connect to host
@@ -3648,45 +4077,51 @@ d-academia.com: did not receive HSTS header
d-macindustries.com: did not receive HSTS header
d-rickroll-e.pw: could not connect to host
d-toys.com.ua: could not connect to host
+d.rip: max-age too low: 900
d00r.de: did not receive HSTS header
d0xq.net: could not connect to host
d1ves.io: did not receive HSTS header
+d3njjcbhbojbot.cloudfront.net: did not receive HSTS header
d3x.pw: could not connect to host
d4rkdeagle.tk: could not connect to host
-d4wson.com: could not connect to host
d8studio.net: could not connect to host
+da.hn: could not connect to host
da8.cc: could not connect to host
dabblegoat.com: could not connect to host
dabbot.org: did not receive HSTS header
dad256.tk: could not connect to host
dadtheimpaler.com: could not connect to host
+daemonslayer.net: could not connect to host
dah5.com: did not receive HSTS header
dahl-pind.dk: did not receive HSTS header
+dahlberg.cologne: could not connect to host
dai-rin.co.jp: could not connect to host
dailybunda.com: did not receive HSTS header
dailystormerpodcasts.com: could not connect to host
dailytopix.com: could not connect to host
daimadi.com: could not connect to host
-daisuki.pw: could not connect to host
-daiyuu.jp: could not connect to host
+daisuki.pw: did not receive HSTS header
+daiwai.de: did not receive HSTS header
dakerealestate.com: did not receive HSTS header
dakl-shop.de: did not receive HSTS header
dakotasilencer.com: did not receive HSTS header
dakrib.net: could not connect to host
daku.gdn: could not connect to host
+dalek.co.nz: did not receive HSTS header
dalfiume.it: did not receive HSTS header
dalingk.co: could not connect to host
daltonedwards.me: could not connect to host
dam74.com.ar: could not connect to host
damianuv-blog.cz: did not receive HSTS header
+damicris.ro: could not connect to host
damjanovic.work: could not connect to host
dan.org.nz: could not connect to host
danbarrett.com.au: could not connect to host
dancebuzz.co.uk: did not receive HSTS header
dancerdates.net: did not receive HSTS header
dandymrsb.com: could not connect to host
-dane-bre.net: max-age too low: 172800
dango.in: could not connect to host
+daniel-du.com: could not connect to host
daniel-mosquera.com: could not connect to host
daniel-seifert.com: max-age too low: 600000
daniel-stahl.net: could not connect to host
@@ -3694,36 +4129,33 @@ daniel-steuer.de: could not connect to host
danielcowie.me: could not connect to host
danieldk.eu: did not receive HSTS header
danielgraziano.ca: could not connect to host
-danielheal.net: could not connect to host
danieliancu.com: could not connect to host
danielkratz.com: max-age too low: 172800
-danielmarquard.com: could not connect to host
-danielt.co.uk: could not connect to host
-danielthompson.info: could not connect to host
+danielt.co.uk: did not receive HSTS header
danielverlaan.nl: could not connect to host
danielworthy.com: did not receive HSTS header
danielzuzevich.com: could not connect to host
danijobs.com: could not connect to host
danishenanigans.com: could not connect to host
dankeblog.com: could not connect to host
+dankredues.com: could not connect to host
danmark.guide: did not receive HSTS header
dannycrichton.com: did not receive HSTS header
danova.de: did not receive HSTS header
danrl.de: could not connect to host
-dansage.co: could not connect to host
danskringsporta.be: did not receive HSTS header
danwillenberg.com: did not receive HSTS header
daolerp.xyz: could not connect to host
+dapim.co.il: did not receive HSTS header
dargasia.is: could not connect to host
darinjohnson.ca: did not receive HSTS header
dario.im: did not receive HSTS header
-dariosirangelo.me: did not receive HSTS header
dark-x.cf: could not connect to host
-dark.ninja: could not connect to host
darkanzali.pl: max-age too low: 0
darkdestiny.ch: could not connect to host
+darkfire.ch: could not connect to host
darkfriday.ddns.net: could not connect to host
-darkhole.cn: could not connect to host
+darkhole.cn: did not receive HSTS header
darkishgreen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
darkkeepers.dk: max-age too low: 172800
darknebula.space: could not connect to host
@@ -3737,6 +4169,8 @@ darlastudio66.com: did not receive HSTS header
darlo.co.uk: could not connect to host
darrenellis.xyz: could not connect to host
darrenm.net: could not connect to host
+dart-tanke.com: could not connect to host
+dart-tanke.de: could not connect to host
das-tyrol.at: did not receive HSTS header
dash-board.jp: did not receive HSTS header
dash.rocks: did not receive HSTS header
@@ -3760,6 +4194,7 @@ datahoarderschool.club: did not receive HSTS header
dataisme.com: did not receive HSTS header
datajapan.co.jp: did not receive HSTS header
datamatic.ru: could not connect to host
+datapun.ch: did not receive HSTS header
dataretention.solutions: could not connect to host
datasharesystem.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
datasnitch.co.uk: could not connect to host
@@ -3778,6 +4213,8 @@ datortipsen.se: did not receive HSTS header
datsound.ru: did not receive HSTS header
datsumou-q.com: did not receive HSTS header
daverandom.com: could not connect to host
+davewut.ca: did not receive HSTS header
+david-mallett.com: did not receive HSTS header
davidandkailey.com: could not connect to host
davidbrito.tech: could not connect to host
davidglidden.eu: did not receive HSTS header
@@ -3791,26 +4228,28 @@ davidscherzer.at: could not connect to host
davimun.org: could not connect to host
davros.eu: could not connect to host
davros.ru: could not connect to host
-daw.nz: could not connect to host
dawnofeden.org: did not receive HSTS header
dawnson.is: could not connect to host
dawnsonb.com: could not connect to host
-day.vip: did not receive HSTS header
+day.vip: could not connect to host
daylightcompany.com: did not receive HSTS header
days.one: could not connect to host
daytonaseaside.com: did not receive HSTS header
+db-sanity.com: could not connect to host
db.gy: could not connect to host
+dbcom.ru: could not connect to host
dbjc.duckdns.org: could not connect to host
dblx.io: could not connect to host
dbox.ga: could not connect to host
dbpmedia.se: did not receive HSTS header
-dbx.ovh: did not receive HSTS header
+dbx.ovh: could not connect to host
dbyz.co.uk: max-age too low: 43200
dcaracing.nl: could not connect to host
dcc.moe: could not connect to host
dccode.gov: could not connect to host
dccoffeeproducts.com: did not receive HSTS header
dccraft.net: could not connect to host
+dcl.re: could not connect to host
dctxf.com: did not receive HSTS header
dcuofriends.net: could not connect to host
dcw.io: did not receive HSTS header
@@ -3820,12 +4259,13 @@ dden.website: could not connect to host
dden.xyz: could not connect to host
ddmeportal.com: could not connect to host
ddns-anbieter.de: could not connect to host
-ddocu.me: did not receive HSTS header
+ddocu.me: could not connect to host
ddos-mitigation.co.uk: could not connect to host
ddos-mitigation.info: could not connect to host
de-servers.de: could not connect to host
deadmann.com: could not connect to host
deadsoul.net: could not connect to host
+deai-life.biz: could not connect to host
debank.tv: did not receive HSTS header
debatch.se: could not connect to host
debian-vhost.de: could not connect to host
@@ -3852,10 +4292,8 @@ decormiernissanparts.com: could not connect to host
decoyrouting.com: could not connect to host
dedeo.tk: could not connect to host
dedicatutiempo.es: could not connect to host
-dedietrich-asia.com: could not connect to host
-deep.club: could not connect to host
+dedietrich-asia.com: did not receive HSTS header
deep.social: did not receive HSTS header
-deeparamaraj.com: did not receive HSTS header
deepcovelabs.net: could not connect to host
deepcreampie.com: could not connect to host
deepearth.uk: could not connect to host
@@ -3863,29 +4301,33 @@ deeprecce.com: could not connect to host
deeprecce.link: could not connect to host
deeprecce.tech: could not connect to host
deeps.cat: could not connect to host
-deeps.me: did not receive HSTS header
+deeps.me: could not connect to host
+deepsouthsounds.com: did not receive HSTS header
deepvalley.tech: could not connect to host
deepvision.com.ua: did not receive HSTS header
deer.team: could not connect to host
deetz.nl: did not receive HSTS header
deetzen.de: did not receive HSTS header
-defi-metier.com: did not receive HSTS header
-defi-metier.fr: did not receive HSTS header
+deezeno.com: could not connect to host
+defi-metier.com: could not connect to host
+defi-metier.fr: could not connect to host
defi-metier.org: could not connect to host
-defi-metiers.com: did not receive HSTS header
+defi-metiers.com: could not connect to host
defi-metiers.fr: did not receive HSTS header
-defi-metiers.org: did not receive HSTS header
+defi-metiers.org: could not connect to host
defiler.tk: could not connect to host
defimetier.fr: could not connect to host
-defimetier.org: did not receive HSTS header
-defimetiers.com: did not receive HSTS header
-defimetiers.fr: did not receive HSTS header
+defimetier.org: could not connect to host
+defimetiers.com: could not connect to host
+defimetiers.fr: could not connect to host
degroetenvanrosaline.nl: could not connect to host
deight.co: could not connect to host
deight.in: could not connect to host
dekasan.ru: could not connect to host
delandalucia.com: did not receive HSTS header
delayrefunds.co.uk: could not connect to host
+delcopa.gov: could not connect to host
+delf.co.jp: did not receive HSTS header
deliberatedigital.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
deliver.moe: did not receive HSTS header
deliverance.co.uk: could not connect to host
@@ -3894,13 +4336,10 @@ deltaconcepts.de: could not connect to host
delvj.org: could not connect to host
demandware.com: did not receive HSTS header
demarche-expresse.com: did not receive HSTS header
-demarle.ch: could not connect to host
demdis.org: could not connect to host
demilitarized.ninja: could not connect to host
demo-server.us: could not connect to host
demo.sb: could not connect to host
-demo.swedbank.se: did not receive HSTS header
-demo9.ovh: did not receive HSTS header
democracy.io: did not receive HSTS header
democraticdifference.com: could not connect to host
demomanca.com: did not receive HSTS header
@@ -3914,16 +4353,16 @@ dentaldomain.org: did not receive HSTS header
dentaldomain.ph: did not receive HSTS header
denvercybersecurity.com: did not receive HSTS header
denverphilharmonic.org: did not receive HSTS header
-denverprophit.us: did not receive HSTS header
+denverprophit.us: could not connect to host
depaco.com: did not receive HSTS header
deped.blog: could not connect to host
depedshs.com: could not connect to host
+depedtayo.com: did not receive HSTS header
depedtayo.ph: could not connect to host
depijl-mz.nl: did not receive HSTS header
depixion.agency: could not connect to host
depo.space: could not connect to host
deprobe.pro: could not connect to host
-depth-co.jp: could not connect to host
dequehablamos.es: could not connect to host
derbyshiredotnet.co.uk: did not receive HSTS header
derchris.me: could not connect to host
@@ -3934,10 +4373,11 @@ derivativeshub.pro: could not connect to host
derive.cc: could not connect to host
dermacarecomplex.com: could not connect to host
derpumpkinfuhrer.com: could not connect to host
-derrickemery.com: did not receive HSTS header
+derrickemery.com: could not connect to host
derwaldschrat.net: did not receive HSTS header
derwolfe.net: did not receive HSTS header
desiccantpackets.com: did not receive HSTS header
+design-fu.com: did not receive HSTS header
designandmore.it: did not receive HSTS header
designanyware.com.br: could not connect to host
designgears.com: did not receive HSTS header
@@ -3948,9 +4388,11 @@ despora.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR
despotika.de: could not connect to host
desserteagleselvenar.tk: could not connect to host
destinationbijoux.fr: could not connect to host
+destinopiriapolis.com: did not receive HSTS header
destom.be: could not connect to host
desveja.com.br: could not connect to host
detalhecomercio.com.br: could not connect to host
+detalyedesigngroup.com: could not connect to host
detechnologiecooperatie.nl: did not receive HSTS header
detecte-fuite.ch: could not connect to host
detecte.ch: could not connect to host
@@ -3961,8 +4403,8 @@ dethikiemtra.com: did not receive HSTS header
detroitrocs.org: did not receive HSTS header
detteflies.com: max-age too low: 7889238
detutorial.com: max-age too low: 36000
-deusu.de: could not connect to host
-deusu.org: could not connect to host
+deusu.de: did not receive HSTS header
+deusu.org: did not receive HSTS header
deux.solutions: could not connect to host
deuxsol.co: could not connect to host
deuxsol.com: could not connect to host
@@ -3972,21 +4414,22 @@ dev: could not connect to host
dev-aegon.azurewebsites.net: did not receive HSTS header
dev-bluep.pantheonsite.io: did not receive HSTS header
dev-talk.eu: did not receive HSTS header
-dev-talk.net: did not receive HSTS header
+dev-talk.net: could not connect to host
devafterdark.com: could not connect to host
devdesco.com: could not connect to host
devdom.io: max-age too low: 172800
-develop.cool: did not receive HSTS header
+devdoodle.net: could not connect to host
develop.fitness: could not connect to host
-developermail.io: did not receive HSTS header
developersclub.website: could not connect to host
-developyourelement.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+devenney.io: did not receive HSTS header
devh.de: could not connect to host
+deviltracks.net: could not connect to host
devin-balimuhac.de: did not receive HSTS header
devincrow.me: could not connect to host
devinpacker.com: could not connect to host
devisonline.ch: could not connect to host
devistravaux.org: did not receive HSTS header
+devjack.de: could not connect to host
devlux.ch: did not receive HSTS header
devmsg.com: could not connect to host
devnsec.com: could not connect to host
@@ -3994,10 +4437,14 @@ devnull.team: could not connect to host
devopps.me: did not receive HSTS header
devops.moe: could not connect to host
devopsconnected.com: could not connect to host
+devpgsv.com: could not connect to host
devtestfan1.gov: could not connect to host
devtub.com: could not connect to host
devuan.org: did not receive HSTS header
+dewebwerf.nl: did not receive HSTS header
dewin.io: could not connect to host
+dfekt.no: could not connect to host
+dfektlan.no: could not connect to host
dfixit.com: could not connect to host
dfrance.com.br: did not receive HSTS header
dfviana.com.br: max-age too low: 2592000
@@ -4013,9 +4460,10 @@ dhub.xyz: could not connect to host
dhxxls.com: could not connect to host
diablotine.rocks: could not connect to host
diabolic.chat: could not connect to host
+diagnocentro.cl: could not connect to host
diagnosia.com: did not receive HSTS header
diagonale-deco.fr: did not receive HSTS header
-dialoegue.com: did not receive HSTS header
+dialectic-og.com: could not connect to host
diamondcare.com.br: did not receive HSTS header
diamondpkg.org: could not connect to host
diamondt.us: did not receive HSTS header
@@ -4029,15 +4477,15 @@ dicgaming.net: could not connect to host
dichgans-besserer.de: did not receive HSTS header
dichvudangkygiayphep.com: could not connect to host
dicio.com.br: did not receive HSTS header
-dicionariofinanceiro.com: did not receive HSTS header
-dicionariopopular.com: did not receive HSTS header
dick.red: could not connect to host
+dickord.club: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
didierlaumen.be: did not receive HSTS header
die-besten-weisheiten.de: could not connect to host
die-gruenen-teufel.de: could not connect to host
dieb.photo: could not connect to host
diejanssens.net: did not receive HSTS header
-diemogebhardt.com: could not connect to host
+diemogebhardt.com: did not receive HSTS header
+dierabenmutti.de: max-age too low: 7776000
dierencompleet.nl: did not receive HSTS header
dierenkruiden.nl: did not receive HSTS header
dieser.me: could not connect to host
@@ -4046,14 +4494,14 @@ diewebstube.de: could not connect to host
diezel.com: could not connect to host
diferenca.com: did not receive HSTS header
diggable.co: max-age too low: 2592000
-digihyp.ch: could not connect to host
+digihyp.ch: did not receive HSTS header
digikol.net: could not connect to host
diginota.com: did not receive HSTS header
digired.xyz: could not connect to host
digital1world.com: did not receive HSTS header
digitalbank.kz: could not connect to host
digitalcloud.ovh: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-digitalcraftmarketing.co.uk: did not receive HSTS header
+digitalcuko.com: did not receive HSTS header
digitaldaddy.net: did not receive HSTS header
digitalero.rip: did not receive HSTS header
digitalewelten.de: could not connect to host
@@ -4062,6 +4510,7 @@ digitalhurricane.io: could not connect to host
digitalimpostor.co.uk: could not connect to host
digitaljungle.net: could not connect to host
digitallocker.com: did not receive HSTS header
+digitalmaniac.co.uk: could not connect to host
digitalnonplus.com: could not connect to host
digitalquery.com: did not receive HSTS header
digitalriver.tk: did not receive HSTS header
@@ -4073,38 +4522,39 @@ diguass.us: could not connect to host
dijks.com: could not connect to host
dikshant.net: could not connect to host
diletec.com.br: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+dilichen.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dillynbarber.com: did not receive HSTS header
dim.lighting: could not connect to host
+dimensionen.de: did not receive HSTS header
dimes.com.tr: did not receive HSTS header
dimitrisotiropoulosbooks.com: max-age too low: 7889238
+dimseklubben.dk: could not connect to host
din-tools.com: did not receive HSTS header
dinamoelektrik.com: could not connect to host
dingcc.com: could not connect to host
dingcc.org: could not connect to host
dingcc.xyz: could not connect to host
-dinge.xyz: could not connect to host
dingelbob-schuhcreme.gq: could not connect to host
dingss.com: could not connect to host
-dinheirolucrar.com: did not receive HSTS header
dinkum.online: could not connect to host
dinotv.at: could not connect to host
dintillat.fr: could not connect to host
dinube.com: did not receive HSTS header
dionysus.se: could not connect to host
dipconsultants.com: could not connect to host
-direct2uk.com: could not connect to host
directhskincream.com: could not connect to host
directinsure.in: did not receive HSTS header
+directme.ga: could not connect to host
directorinegocis.cat: could not connect to host
directtwo.solutions: could not connect to host
directtwosolutions.org: could not connect to host
directwatertanks.co.uk: did not receive HSTS header
direnv.net: did not receive HSTS header
direwolfsoftware.ca: could not connect to host
-dirk-weise.de: could not connect to host
dirkwolf.de: could not connect to host
dirtycat.ru: could not connect to host
disadattamentolavorativo.it: could not connect to host
+discipul.nl: did not receive HSTS header
disclosure.io: did not receive HSTS header
disco-crazy-world.de: could not connect to host
discord-chan.net: could not connect to host
@@ -4113,7 +4563,7 @@ discountmetaux.fr: did not receive HSTS header
discover-mercure.com: could not connect to host
discoveringdocker.com: could not connect to host
discoverrsv.com: did not receive HSTS header
-discoverwellness.center: did not receive HSTS header
+discoverwellness.center: could not connect to host
discovery.lookout.com: did not receive HSTS header
discoveryballoon.org: could not connect to host
disking.co.uk: did not receive HSTS header
@@ -4132,23 +4582,29 @@ ditrutoancau.vn: could not connect to host
dittvertshus.no: could not connect to host
diva-ey.com: could not connect to host
divegearexpress.com.cn: did not receive HSTS header
+divenwa.com: did not receive HSTS header
diversity-spielzeug.de: did not receive HSTS header
divvi.co.nz: did not receive HSTS header
+divvymonkey.com: did not receive HSTS header
divvyradio.com: did not receive HSTS header
dixiediner.com: did not receive HSTS header
dixmag.com: could not connect to host
-diz.in.ua: did not receive HSTS header
+diz.in.ua: could not connect to host
dizihocasi.com: could not connect to host
dizorg.net: could not connect to host
dj4et.de: could not connect to host
+djieno.com: could not connect to host
+djsk.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
djul.net: could not connect to host
djxmmx.net: did not receive HSTS header
+dkn.go.id: did not receive HSTS header
dkniss.de: could not connect to host
-dko-steiermark.ml: did not receive HSTS header
dl.google.com: did not receive HSTS header (error ignored - included regardless)
dlbouncers.co.uk: could not connect to host
dlc.viasinc.com: could not connect to host
+dlcwilson.com: could not connect to host
dlemper.de: did not receive HSTS header
+dlouwrink.nl: could not connect to host
dlyl888.com: could not connect to host
dmarketer.com: did not receive HSTS header
dmcastles.com: did not receive HSTS header
@@ -4162,7 +4618,9 @@ dmlogic.com: could not connect to host
dmtry.me: did not receive HSTS header
dmwall.cn: could not connect to host
dmz.ninja: could not connect to host
+dnfc.rocks: could not connect to host
dnmaze.com: could not connect to host
+dns-manager.info: did not receive HSTS header
dns.google.com: did not receive HSTS header (error ignored - included regardless)
dnsbird.net: could not connect to host
dnsbird.org: could not connect to host
@@ -4175,14 +4633,16 @@ doak.io: did not receive HSTS header
dobet.in: could not connect to host
doc-justice.com: did not receive HSTS header
docid.io: could not connect to host
+dockerm.com: could not connect to host
dockerturkiye.com: could not connect to host
docket.news: could not connect to host
doclassworks.com: could not connect to host
doclot.io: could not connect to host
docplexus.in: did not receive HSTS header
+docplexus.org: did not receive HSTS header
docset.io: could not connect to host
docufiel.com: could not connect to host
-doculus.io: did not receive HSTS header
+doculus.io: could not connect to host
documentations-sociales.com: could not connect to host
docxtemplater.com: did not receive HSTS header
doesmycodehavebugs.today: could not connect to host
@@ -4190,6 +4650,7 @@ doeswindowssuckforeveryoneorjustme.com: could not connect to host
dogbox.se: could not connect to host
dogcratereview.info: could not connect to host
dogespeed.ga: could not connect to host
+dogfi.sh: could not connect to host
doggieholic.net: could not connect to host
dognlife.com: could not connect to host
dogoodbehappyllc.com: did not receive HSTS header
@@ -4197,9 +4658,10 @@ dogprograms.net: could not connect to host
dohosting.ru: could not connect to host
dojifish.space: could not connect to host
dojin.nagoya: could not connect to host
-dokan-e.com: could not connect to host
dokan.online: did not receive HSTS header
doked.io: could not connect to host
+dokspot.cf: could not connect to host
+dokspot.ga: could not connect to host
dolarcanadense.com.br: could not connect to host
dolevik.com: could not connect to host
dollarstore24.com: could not connect to host
@@ -4208,7 +4670,7 @@ dolphin-cloud.com: could not connect to host
dolphin-hosting.com: could not connect to host
dolphincorp.co.uk: could not connect to host
dolphinswithlasers.com: could not connect to host
-dolt.xyz: did not receive HSTS header
+dolt.xyz: could not connect to host
domaine-aigoual-cevennes.com: did not receive HSTS header
domainelaremejeanne.com: did not receive HSTS header
domaris.de: did not receive HSTS header
@@ -4219,17 +4681,19 @@ domfee.com: could not connect to host
dominikanskarepubliken.guide: could not connect to host
dominioanimal.com: could not connect to host
dominique-mueller.de: could not connect to host
+domytermpaper.com: could not connect to host
don.yokohama: could not connect to host
donateway.com: did not receive HSTS header
dong8.top: could not connect to host
+dongjingre.net: could not connect to host
donhoward.org: did not receive HSTS header
+donlydental.ca: did not receive HSTS header
donmez.uk: could not connect to host
donmez.ws: could not connect to host
-donner-reuschel.de: did not receive HSTS header
-donotcall.gov: did not receive HSTS header
donotspampls.me: could not connect to host
donotspellitgav.in: did not receive HSTS header
donpaginasweb.com: did not receive HSTS header
+donsbach-edv.de: did not receive HSTS header
donthedragonwilson.com: could not connect to host
donttrustrobots.nl: could not connect to host
donzelot.co.uk: did not receive HSTS header
@@ -4239,6 +4703,7 @@ doodlefinder.de: max-age too low: 600000
dooku.cz: could not connect to host
doomleika.com: did not receive HSTS header
doooonoooob.com: could not connect to host
+doopdidoop.com: did not receive HSTS header
door.cards: could not connect to host
dopost.it: could not connect to host
doriginal.es: did not receive HSTS header
@@ -4247,14 +4712,13 @@ dormebebe.com.br: could not connect to host
dosipe.com: could not connect to host
doska.kz: could not connect to host
dostavkakurierom.ru: could not connect to host
+dot.ro: did not receive HSTS header
dotadata.me: could not connect to host
dotb.dn.ua: did not receive HSTS header
-dotbrick.co.th: did not receive HSTS header
+dotbrick.co.th: could not connect to host
dotkod.com: could not connect to host
dotnetsandbox.ca: could not connect to host
-dotrox.net: could not connect to host
dotspaperie.com: could not connect to host
-doubleaste.com: did not receive HSTS header
doublethink.online: could not connect to host
doubleyummy.uk: did not receive HSTS header
dougferris.id.au: could not connect to host
@@ -4268,16 +4732,20 @@ dovetailnow.com: could not connect to host
dowc.org: did not receive HSTS header
download.jitsi.org: did not receive HSTS header
downsouthweddings.com.au: did not receive HSTS header
+doxcelerate.com: could not connect to host
doyoulyft.com: could not connect to host
dpangerl.de: did not receive HSTS header
dps.srl: did not receive HSTS header
dpsart.it: did not receive HSTS header
dr-knirr.de: could not connect to host
dr2dr.ca: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+drabben.be: did not receive HSTS header
drabbin.com: could not connect to host
+dragfiles.com: could not connect to host
draghive.club: did not receive HSTS header
draghive.net: could not connect to host
draghive.photos: did not receive HSTS header
+dragon-aspect.com: could not connect to host
dragoncityhack.tips: could not connect to host
dragonisles.net: could not connect to host
dragons-of-highlands.cz: did not receive HSTS header
@@ -4291,6 +4759,7 @@ drakfot.se: could not connect to host
dralexjimenez.com: did not receive HSTS header
drastosasports.com.br: could not connect to host
drawvesly.ovh: did not receive HSTS header
+drbarnabus.com: could not connect to host
drdevil.ru: could not connect to host
dreadbyte.com: could not connect to host
dreadd.org: could not connect to host
@@ -4298,26 +4767,26 @@ dreamaholic.club: could not connect to host
dreamcatcherblog.de: could not connect to host
dreaming.solutions: could not connect to host
dreamlighteyeserum.com: could not connect to host
-dreamof.net: could not connect to host
dreamsforabetterworld.com.au: did not receive HSTS header
dreax.win: could not connect to host
dredgepress.com: did not receive HSTS header
dreischneidiger.de: could not connect to host
dreizwosechs.de: could not connect to host
drewgle.net: could not connect to host
-drhopeson.com: could not connect to host
+drhopeson.com: did not receive HSTS header
drillnation.com.au: could not connect to host
drinknaturespower.com: could not connect to host
drinkvabeer.com: could not connect to host
+dripdoctors.com: did not receive HSTS header
drishti.guru: could not connect to host
drive.xyz: could not connect to host
+drivercopilot.com: did not receive HSTS header
drivewithstatetransit.com.au: did not receive HSTS header
driving-lessons.co.uk: could not connect to host
drixn.cn: could not connect to host
drixn.com: could not connect to host
drixn.info: could not connect to host
drixn.net: could not connect to host
-drizz.com.br: could not connect to host
drlazarina.net: did not receive HSTS header
drobniuch.pl: could not connect to host
drogoz.moe: could not connect to host
@@ -4343,8 +4812,10 @@ drpure.pw: did not receive HSTS header
drtroyhendrickson.com: could not connect to host
drtti.io: could not connect to host
drturner.com.au: did not receive HSTS header
+drubn.de: could not connect to host
drugagodba.si: did not receive HSTS header
drumbandesperanto.nl: could not connect to host
+drump-truck.com: did not receive HSTS header
drupal123.com: could not connect to host
druznek.rocks: could not connect to host
druznek.xyz: could not connect to host
@@ -4353,15 +4824,13 @@ drybasementkansas.com: did not receive HSTS header
drycreekapiary.com: could not connect to host
ds-christiansen.de: could not connect to host
dshiv.io: could not connect to host
-dsne.com.mx: did not receive HSTS header
dsouzamusic.com: could not connect to host
-dstvinstallrandburg.co.za: did not receive HSTS header
dsuinnovation.com: could not connect to host
-dsyunmall.com: could not connect to host
-dtp-mstdn.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+dsyunmall.com: did not receive HSTS header
dtub.co: could not connect to host
-dualascent.com: did not receive HSTS header
+dualias.xyz: could not connect to host
duan.li: could not connect to host
+dubaosheng.com: could not connect to host
dubik.su: did not receive HSTS header
duckyubuntu.tk: could not connect to host
ducohosting.com: did not receive HSTS header
@@ -4387,9 +4856,11 @@ duocircle.com: did not receive HSTS header
duole30.com: could not connect to host
duongpho.com: did not receive HSTS header
durangoenergyllc.com: could not connect to host
+durchblick-shop.de: could not connect to host
+durexwinkel.nl: could not connect to host
dushu.cat: could not connect to host
duskopy.top: could not connect to host
-dutchessuganda.com: could not connect to host
+dutchessuganda.com: did not receive HSTS header
dutchrank.com: did not receive HSTS header
dutyfreeonboard.com: did not receive HSTS header
duuu.ch: could not connect to host
@@ -4399,18 +4870,22 @@ dwellstudio.com: did not receive HSTS header
dwhd.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dwnld.me: could not connect to host
dycem-ns.com: did not receive HSTS header
+dycoa.com: could not connect to host
dycontrol.de: could not connect to host
+dylancl.cf: could not connect to host
dylanscott.com.au: did not receive HSTS header
dynamic-innovations.net: could not connect to host
dynamic-networks.be: could not connect to host
dynamize.solutions: did not receive HSTS header
dyncdn.me: could not connect to host
dynts.pro: could not connect to host
-dyz.pw: did not receive HSTS header
+dyz.pw: could not connect to host
dziekonski.com: could not connect to host
dzimejl.sk: did not receive HSTS header
dzlibs.io: could not connect to host
-dzsibi.com: could not connect to host
+dzndk.com: could not connect to host
+dzndk.net: could not connect to host
+dzndk.org: could not connect to host
dzytdl.com: did not receive HSTS header
e-aut.net: could not connect to host
e-baraxolka.ru: could not connect to host
@@ -4419,21 +4894,28 @@ e-isfa.eu: did not receive HSTS header
e-mak.eu: could not connect to host
e-migration.ch: could not connect to host
e-newshub.com: could not connect to host
+e-planetelec.fr: did not receive HSTS header
e-pokupki.eu: did not receive HSTS header
e-rickroll-r.pw: could not connect to host
e-sa.com: did not receive HSTS header
-e-speak24.pl: could not connect to host
e-vau.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
e-vo-linka.cz: did not receive HSTS header
e-wishlist.net: could not connect to host
-e024.org: did not receive HSTS header
+e024.org: could not connect to host
+e1488.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
e191.com: could not connect to host
e30gruppe.com: did not receive HSTS header
e3amn2l.com: could not connect to host
e3kids.com: did not receive HSTS header
e3q.de: could not connect to host
-e505.net: did not receive HSTS header
+e505.net: could not connect to host
e51888.com: did not receive HSTS header
+e52888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e52888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e53888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e53888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e59888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e59888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
eagle-aluminum.com: did not receive HSTS header
eagle-yard.de: could not connect to host
eagleridgecampground.com: could not connect to host
@@ -4444,16 +4926,23 @@ earlybirdsnacks.com: could not connect to host
earth-people.org: could not connect to host
earthrise16.com: could not connect to host
easew.com: could not connect to host
+east-line.su: could not connect to host
+eastcoastbubbleandbounce.co.uk: could not connect to host
eastcoastinflatables.co.uk: did not receive HSTS header
easthokkaido-5airport.jp: did not receive HSTS header
eastmidlandsstargazers.org.uk: did not receive HSTS header
eastmontgroup.com: did not receive HSTS header
+eastpeoria-il.gov: could not connect to host
easy-factures.fr: could not connect to host
easychiller.org: could not connect to host
easykonto.de: could not connect to host
+easykraamzorg.nl: did not receive HSTS header
easyplane.it: did not receive HSTS header
+easypv.ch: could not connect to host
easyreal.ru: could not connect to host
+easyschools.org: did not receive HSTS header
easysimplecrm.com: could not connect to host
+eat-mine.ml: could not connect to host
eat-the-world.ch: could not connect to host
eat4happiness.com: did not receive HSTS header
eatfitoutlet.com.br: could not connect to host
@@ -4471,19 +4960,19 @@ ebolsas.com.br: did not receive HSTS header
ebooksgratuits.org: could not connect to host
ebop.ch: could not connect to host
ebp2p.com: did not receive HSTS header
-ebpglobal.com: could not connect to host
ebraph.com: could not connect to host
ebrowz.com: could not connect to host
ecake.in: could not connect to host
ecc-kaufbeuren.de: could not connect to host
eccux.com: could not connect to host
+ecelembrou.ovh: could not connect to host
ecfs.link: could not connect to host
ecg.fr: could not connect to host
echipstore.com: did not receive HSTS header
echo.cc: could not connect to host
-echoactive.com: could not connect to host
+echoactive.com: max-age too low: 7776000
echomanchester.net: could not connect to host
-eckro.com: did not receive HSTS header
+eckro.com: could not connect to host
ecole-en-danger.fr: could not connect to host
ecole-iaf.fr: could not connect to host
ecole-maternelle-saint-joseph.be: could not connect to host
@@ -4492,7 +4981,7 @@ ecology-21.ru: did not receive HSTS header
ecomlane.com: could not connect to host
ecomparemo.com: did not receive HSTS header
econativa.pt: could not connect to host
-economy.st: could not connect to host
+economy.st: did not receive HSTS header
economycarrentalscyprus.com: could not connect to host
ecorus.eu: did not receive HSTS header
ecosoftconsult.com: could not connect to host
@@ -4517,12 +5006,13 @@ edh.email: did not receive HSTS header
edhrealtor.com: did not receive HSTS header
edilservizi.it: did not receive HSTS header
edilservizivco.it: did not receive HSTS header
-edisonchee.com: could not connect to host
+edisonchee.com: did not receive HSTS header
edissecurity.sk: did not receive HSTS header
edition-pommern.com: did not receive HSTS header
editoraacademiacrista.com.br: could not connect to host
edix.ru: could not connect to host
edk.com.tr: did not receive HSTS header
+edpubs.gov: could not connect to host
edsh.de: did not receive HSTS header
eduardnikolenko.com: could not connect to host
eduardnikolenko.ru: could not connect to host
@@ -4533,9 +5023,8 @@ educatoys.com.br: could not connect to host
educatweb.de: did not receive HSTS header
educnum.fr: did not receive HSTS header
educourse.ga: could not connect to host
-eduif.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+eduif.nl: could not connect to host
eduvance.in: did not receive HSTS header
-edvgarbe.de: could not connect to host
ee-terminals.com: could not connect to host
eeb98.com: could not connect to host
eeetrust.org: could not connect to host
@@ -4552,20 +5041,21 @@ eengezinswoning-in-zuid-holland-kopen.nl: could not connect to host
eengezinswoning-in-zuidplas-kopen.nl: could not connect to host
eengezinswoning-in-zwartewaterland-kopen.nl: could not connect to host
eengezinswoningverkopen.nl: could not connect to host
+eengoedenotaris.nl: did not receive HSTS header
eenhoorn.ga: could not connect to host
eeqj.com: did not receive HSTS header
eesistumine2017.ee: could not connect to host
eez.ee: could not connect to host
+ef-georgia.org: could not connect to host
effectiveosgi.com: could not connect to host
effectivepapers.com: could not connect to host
-efficienthealth.com: did not receive HSTS header
-effortlesshr.com: did not receive HSTS header
-efinity.io: did not receive HSTS header
-eftcorp.biz: max-age too low: 0
-egarden.it: did not receive HSTS header
+efficienthealth.com: could not connect to host
+eftcorp.biz: did not receive HSTS header
+egbert.net: could not connect to host
egfl.org.uk: did not receive HSTS header
egge.com: max-age too low: 0
egit.co: could not connect to host
+eglek.com: did not receive HSTS header
ego-world.org: did not receive HSTS header
egupova.ru: did not receive HSTS header
ehealthcounselor.com: could not connect to host
@@ -4580,7 +5070,7 @@ eifelindex.de: did not receive HSTS header
eiga-movie.com: max-age too low: 0
eigenbubi.de: could not connect to host
eightyfour.ca: could not connect to host
-eigo.work: could not connect to host
+eigo.work: did not receive HSTS header
eimanavicius.lt: did not receive HSTS header
einar.io: max-age too low: 86400
einfachmaldiefressehalten.de: could not connect to host
@@ -4590,7 +5080,8 @@ einsatzstiefel.info: could not connect to host
einsit.com: could not connect to host
einsitapis.com: could not connect to host
ejgconsultancy.co.uk: did not receive HSTS header
-ejusu.com: did not receive HSTS header
+ejuicelab.co.uk: did not receive HSTS header
+ejusu.com: could not connect to host
ek.network: could not connect to host
ekbanden.nl: could not connect to host
ekobudisantoso.net: could not connect to host
@@ -4602,11 +5093,14 @@ elan-organics.com: did not receive HSTS header
elanguest.pl: could not connect to host
elanguest.ro: could not connect to host
elanguest.ru: could not connect to host
-elastic7.uk: could not connect to host
+elarvee.xyz: could not connect to host
elaxy-online.de: could not connect to host
elbaal.gov: did not receive HSTS header
elblein.de: did not receive HSTS header
-elderoost.com: could not connect to host
+elbohlyart.com: did not receive HSTS header
+eldietista.es: could not connect to host
+eldisagjapi.com: could not connect to host
+eldisagjapi.de: could not connect to host
elearningpilot.com: did not receive HSTS header
electicofficial.com: did not receive HSTS header
electricalcontrolpanels.co.uk: could not connect to host
@@ -4625,22 +5119,21 @@ elementalict.com: did not receive HSTS header
elementalrobotics.com: could not connect to host
elemenx.com: did not receive HSTS header
elemprendedor.com.ve: could not connect to host
-elena-baykova.ru: did not receive HSTS header
elenag.ga: could not connect to host
elenagherta.ga: could not connect to host
elenoon.ir: max-age too low: 1
elenorsmadness.org: could not connect to host
eleonorengland.com: did not receive HSTS header
+elestanteliterario.com: did not receive HSTS header
eletesstilus.hu: could not connect to host
elevateandprosper.com: could not connect to host
-elexel.ru: could not connect to host
elgacien.de: could not connect to host
elguillatun.cl: did not receive HSTS header
elhall.pro: did not receive HSTS header
elhall.ru: did not receive HSTS header
-elias-nicolas.com: could not connect to host
eliasojala.me: did not receive HSTS header
elimdengelen.com: did not receive HSTS header
+eline168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
eliott.be: could not connect to host
elistor6100.xyz: did not receive HSTS header
elite-box.com: did not receive HSTS header
@@ -4660,9 +5153,7 @@ elnutricionista.es: could not connect to host
elo.fyi: could not connect to host
elohna.ch: did not receive HSTS header
elonbase.com: could not connect to host
-elpado.de: could not connect to host
elpay.kz: did not receive HSTS header
-elpo.net: did not receive HSTS header
elpo.xyz: could not connect to host
elsamakhin.com: could not connect to host
elsemanario.com: did not receive HSTS header
@@ -4671,7 +5162,8 @@ elsitar.com: could not connect to host
elsword.moe: could not connect to host
eltransportquevolem.org: could not connect to host
eltrox.me: could not connect to host
-elyisus.info: could not connect to host
+eluft.de: could not connect to host
+elyisus.info: did not receive HSTS header
elytronsecurity.com: did not receive HSTS header
email.lookout.com: could not connect to host
email2rss.net: could not connect to host
@@ -4683,7 +5175,7 @@ embellir-aroma.com: could not connect to host
embellir-kyujin.com: could not connect to host
embracethedarkness.co.uk: could not connect to host
embroidered-stuff.com: could not connect to host
-embudospro.net: did not receive HSTS header
+embudospro.net: could not connect to host
emeldi-commerce.com: max-age too low: 0
emergencyessay.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
emergencymedicinefoundations.com: did not receive HSTS header
@@ -4691,16 +5183,16 @@ emergentvisiontec.com: did not receive HSTS header
emesolutions.net: did not receive HSTS header
emiele.com.br: could not connect to host
emilyhorsman.com: could not connect to host
-emilyjohnson.ga: could not connect to host
emilyshepherd.me: did not receive HSTS header
eminhuseynov.com: could not connect to host
eminovic.me: could not connect to host
emjainteractive.com: did not receive HSTS header
emjimadhu.com: could not connect to host
+emma-o.com: could not connect to host
emmable.com: could not connect to host
emmaliddell.com: did not receive HSTS header
emmanuelle-et-julien.ch: could not connect to host
-emmdy.com: did not receive HSTS header
+emmdy.com: could not connect to host
emmehair.com: could not connect to host
emnitech.com: could not connect to host
emojiengine.com: did not receive HSTS header
@@ -4715,6 +5207,7 @@ employeestore.org: did not receive HSTS header
emporiovinareal.com.br: could not connect to host
empty-r.com: could not connect to host
emptypath.com: did not receive HSTS header
+emupedia.net: did not receive HSTS header
emyself.info: could not connect to host
emyself.org: did not receive HSTS header
en4u.org: could not connect to host
@@ -4733,6 +5226,7 @@ endangeredwatch.com: could not connect to host
endlessdark.net: max-age too low: 600
endlesshorizon.net: could not connect to host
endlesstone.com: did not receive HSTS header
+endofinternet.goip.de: could not connect to host
endofnet.org: could not connect to host
endohaus.ca: could not connect to host
endohaus.com: could not connect to host
@@ -4741,10 +5235,12 @@ endohaus.us: could not connect to host
endspamwith.us: could not connect to host
enecoshop.nl: did not receive HSTS header
enefan.jp: could not connect to host
+enelacto.com: did not receive HSTS header
energethik-tulln.at: did not receive HSTS header
enersaveapp.org: could not connect to host
enersec.co.uk: could not connect to host
enfoqueseguro.com: did not receive HSTS header
+engineowning.com: did not receive HSTS header
enginx.cn: could not connect to host
englerts.de: did not receive HSTS header
englishclub.com: did not receive HSTS header
@@ -4755,23 +5251,25 @@ enigmail.net: did not receive HSTS header
enjen.net: did not receive HSTS header
enjoymayfield.com: max-age too low: 0
enjoystudio.ro: did not receive HSTS header
-enlatte.com: did not receive HSTS header
-enlightened.si: could not connect to host
+enlatte.com: could not connect to host
+enlazaresbueno.cl: did not receive HSTS header
+enlightened.si: did not receive HSTS header
enoou.com: could not connect to host
enpalmademallorca.info: could not connect to host
ensemble-vos-idees.fr: could not connect to host
enskat.de: could not connect to host
enskatson-sippe.de: could not connect to host
+ensured.com: could not connect to host
+ensured.nl: could not connect to host
entaurus.com: could not connect to host
enteente.club: could not connect to host
enteente.com: could not connect to host
enteente.space: could not connect to host
enteente.xyz: could not connect to host
enterdev.co: did not receive HSTS header
-enterprisecarclub.co.uk: did not receive HSTS header
+enterprisecarclub.co.uk: could not connect to host
enterprisechannel.asia: did not receive HSTS header
enterprivacy.com: did not receive HSTS header
-entersynapse.com: could not connect to host
entheorie.net: did not receive HSTS header
entourneebeetle.com: could not connect to host
entrepreneur.or.id: could not connect to host
@@ -4780,15 +5278,20 @@ enumify.com: could not connect to host
envelope.co.nz: could not connect to host
enviam.de: did not receive HSTS header
enviapresentes.com.br: could not connect to host
-enviatufoto.com: max-age too low: 604800
environment.ai: could not connect to host
+envoutement-desenvoutement.com: did not receive HSTS header
envoyglobal.com: did not receive HSTS header
envoyworld.com: did not receive HSTS header
envygeeks.com: could not connect to host
+envygeeks.io: did not receive HSTS header
eol34.com: could not connect to host
eoldb.org: could not connect to host
eolme.ml: could not connect to host
+eonet.cc: did not receive HSTS header
+eos-classic.io: could not connect to host
+eosol.zone: could not connect to host
epanurse.com: could not connect to host
+epave.paris: could not connect to host
epaygateway.net: could not connect to host
ephe.be: could not connect to host
ephry.com: could not connect to host
@@ -4796,29 +5299,36 @@ epicmc.games: could not connect to host
epitesz.co: did not receive HSTS header
eposcloud.net: could not connect to host
eposmidlands.co.uk: could not connect to host
-eposnewport.co.uk: could not connect to host
+eposnewport.co.uk: did not receive HSTS header
eposnottingham.co.uk: could not connect to host
eposreading.co.uk: could not connect to host
eposreview.co.uk: could not connect to host
-epossurrey.co.uk: could not connect to host
+epossurrey.co.uk: did not receive HSTS header
epossussex.co.uk: could not connect to host
eposwales.co.uk: could not connect to host
epoxate.com: could not connect to host
eprofitacademy.com: did not receive HSTS header
+epulsar.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+epvin.com: could not connect to host
eq8.net.au: could not connect to host
eqib.nl: did not receive HSTS header
eqim.me: could not connect to host
eqorg.com: could not connect to host
+equallyy.com: could not connect to host
equalparts.eu: could not connect to host
equate.net.au: did not receive HSTS header
equatetechnologies.com.au: did not receive HSTS header
equilibre-yoga-jennifer-will.com: could not connect to host
+equilime.com: did not receive HSTS header
equippers.de: did not receive HSTS header
+equipsupply.com: did not receive HSTS header
equitee.co: did not receive HSTS header
equityflows.com: did not receive HSTS header
er-music.com: could not connect to host
erad.fr: could not connect to host
+erawanarifnugroho.com: did not receive HSTS header
erclab.kr: could not connect to host
+erecciontotalal100.com: could not connect to host
erepublik-deutschland.de: did not receive HSTS header
eressea.xyz: could not connect to host
ericbond.net: could not connect to host
@@ -4830,58 +5340,142 @@ eriel.com.br: could not connect to host
erikwagner.de: did not receive HSTS header
erinlin.com: did not receive HSTS header
eriser.fr: did not receive HSTS header
+ernaehrungsberatung-rapperswil.ch: did not receive HSTS header
ernaehrungsberatung-zurich.ch: could not connect to host
ernesto.at: could not connect to host
eroimatome.com: could not connect to host
eromixx.com: could not connect to host
+eromon.net: could not connect to host
erotalia.es: could not connect to host
erotic4me.ch: did not receive HSTS header
+eroticforce.com: could not connect to host
erotische-aanbiedingen.nl: could not connect to host
erotpo.cz: could not connect to host
+erpiv.com: could not connect to host
errolz.com: did not receive HSTS header
errors.zenpayroll.com: could not connect to host
erspro.net: could not connect to host
-eru.me: did not receive HSTS header
-erverydown.ml: could not connect to host
+ervaarjapan.nl: did not receive HSTS header
erwinvanlonden.net: did not receive HSTS header
+es888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
es8888.net: could not connect to host
es888999.com: could not connect to host
+es999.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+es9999.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esafar.cz: did not receive HSTS header
+esb-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb-top.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb-top.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb111.com: could not connect to host
esb111.net: could not connect to host
esb112.com: could not connect to host
esb112.net: could not connect to host
+esb116.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb1314.net: could not connect to host
esb1668.com: could not connect to host
+esb168168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb168168.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb168168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb168168.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb16888.com: could not connect to host
+esb1711.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1711.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1788.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1788.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1788.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1788.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb17888.com: could not connect to host
+esb2013.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb2013.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb2099.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb2099.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb222.net: could not connect to host
+esb258.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb325.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb325.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb333.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb336.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb369.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb433.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb553.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb555.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb555.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb555.com: could not connect to host
esb556.com: could not connect to host
+esb5889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb5889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb6.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb666.com: could not connect to host
esb666.net: could not connect to host
esb66666.com: could not connect to host
+esb677.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb688.com: could not connect to host
esb68888.com: could not connect to host
+esb775.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb777.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb777.cc: could not connect to host
esb777.com: could not connect to host
+esb777.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb777.net: could not connect to host
+esb777.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb777.us: could not connect to host
-esb9588.info: did not receive HSTS header
+esb886.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb8886.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb9527.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb9588.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb9588.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb9588.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb999.biz: could not connect to host
esb999.com: could not connect to host
esb999.info: could not connect to host
+esb999.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb999.us: could not connect to host
esba11.cc: could not connect to host
+esba11.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esba11.in: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esba11.net: could not connect to host
esba11.us: could not connect to host
+esball-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.bz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esball.in: could not connect to host
+esball.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.mx: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.online: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.tv: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.win: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.ws: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball518.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball518.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball518.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esball888.com: could not connect to host
esball888.net: could not connect to host
+esballs.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbbon.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbbon.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbfun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbfun.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbgood.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbin.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbjon.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbjon.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbm4.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbm5.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esbuilders.co.nz: did not receive HSTS header
escalate.eu: could not connect to host
escapees.com: did not receive HSTS header
escolaengenharia.com.br: did not receive HSTS header
+escort-byuro.net: could not connect to host
escort-fashion.com: could not connect to host
escortdisplay.com: could not connect to host
escortshotsexy.com: could not connect to host
@@ -4891,15 +5485,18 @@ esec.rs: did not receive HSTS header
eseth.de: did not receive HSTS header
esh.ink: could not connect to host
eshepperd.com: did not receive HSTS header
+eshobe.com: did not receive HSTS header
eshtapay.com: could not connect to host
esko.bar: could not connect to host
esln.org: did not receive HSTS header
+esmoney.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esmoney.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esn-ypci.com: did not receive HSTS header
esocweb.com: could not connect to host
esoterik.link: could not connect to host
esp-berlin.de: could not connect to host
esp-desarrolladores.com: could not connect to host
-esp.community: did not receive HSTS header
+esp.community: could not connect to host
esp8285.store: could not connect to host
espacemontmorency.com: did not receive HSTS header
especificosba.com.mx: could not connect to host
@@ -4914,6 +5511,7 @@ essayhave.com: could not connect to host
essaylib.com: could not connect to host
essayscam.org: could not connect to host
essayshark.com: could not connect to host
+essaywebsite.com: did not receive HSTS header
essenceofvitalitydetox.com: could not connect to host
essential12.com: could not connect to host
essentialoilsimports.com: could not connect to host
@@ -4927,9 +5525,11 @@ estaleiro.org: could not connect to host
estan.cn: could not connect to host
estebanborges.com: did not receive HSTS header
estespr.com: did not receive HSTS header
+estetistarimini.it: did not receive HSTS header
estilosapeca.com: could not connect to host
estland.guide: could not connect to host
estoqueinformatica.com.br: could not connect to host
+estudio21pattern.com: could not connect to host
estudioamazonico.com: could not connect to host
et-buchholz.de: could not connect to host
et180.com: could not connect to host
@@ -4941,7 +5541,7 @@ etenendrinken.nu: could not connect to host
eternalsymbols.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
eternitylove.us: could not connect to host
eth9.net: could not connect to host
-etha.nz: max-age too low: 0
+ethandelany.me: did not receive HSTS header
ethanfaust.com: did not receive HSTS header
ethanlew.is: could not connect to host
ethantskinner.com: did not receive HSTS header
@@ -4953,6 +5553,7 @@ ethicaltek.com: could not connect to host
ethil-faer.fr: could not connect to host
ethiobaba.com: could not connect to host
etidni.help: did not receive HSTS header
+etincelle.ml: could not connect to host
etk2000.com: did not receive HSTS header
etmirror.top: could not connect to host
etmirror.xyz: could not connect to host
@@ -4961,11 +5562,11 @@ etproxy.tech: could not connect to host
ets2mp.de: did not receive HSTS header
etsysecure.com: could not connect to host
ettebiz.com: max-age too low: 0
-etula.ga: could not connect to host
+etula.ga: did not receive HSTS header
etula.me: could not connect to host
etys.no: did not receive HSTS header
euanbaines.com: did not receive HSTS header
-euanbarrett.com: could not connect to host
+eucl3d.com: did not receive HSTS header
euclideanpostulates.xyz: could not connect to host
eucollegetours.com: could not connect to host
euexia.fr: could not connect to host
@@ -4981,29 +5582,43 @@ eupresidency2018.com: could not connect to host
euren.se: could not connect to host
eurocamping.se: could not connect to host
euroescortguide.com: could not connect to host
+europapier.at: did not receive HSTS header
+europapier.ba: did not receive HSTS header
+europapier.bg: did not receive HSTS header
+europapier.com: did not receive HSTS header
+europapier.cz: did not receive HSTS header
+europapier.hr: did not receive HSTS header
+europapier.rs: did not receive HSTS header
+europapier.si: did not receive HSTS header
+europapier.ua: did not receive HSTS header
+europeanpreppers.com: could not connect to host
+euroservice.com.gr: did not receive HSTS header
euroshop24.net: could not connect to host
-euroskano.nl: did not receive HSTS header
eurospecautowerks.com: did not receive HSTS header
eurostrategy.vn.ua: could not connect to host
-euteamo.cn: did not receive HSTS header
+euvo.tk: could not connect to host
+evades.io: did not receive HSTS header
evanhandgraaf.nl: did not receive HSTS header
evankurniawan.com: did not receive HSTS header
+evanreev.es: could not connect to host
+evansville-wy.gov: could not connect to host
+evantage.org: could not connect to host
evasion-energie.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-evasioncreole.com: could not connect to host
evdenevenakliyatankara.pw: could not connect to host
evecalm.com: did not receive HSTS header
evedanjailbreak.com: could not connect to host
evegalaxy.net: could not connect to host
+evemodx.com: did not receive HSTS header
evenstar-gaming.com: could not connect to host
event64.ru: did not receive HSTS header
eventmake.es: could not connect to host
eventplace.me: did not receive HSTS header
events12.com: did not receive HSTS header
-eventsafrica.net: could not connect to host
+eventsafrica.net: did not receive HSTS header
+everitoken.io: did not receive HSTS header
everyarti.st: could not connect to host
everybooks.com: could not connect to host
everydaytherich.com: max-age too low: 7776000
-everydaywot.com: could not connect to host
everygayporn.xyz: could not connect to host
everylab.org: could not connect to host
everymove.org: could not connect to host
@@ -5012,9 +5627,12 @@ everytruckjob.com: did not receive HSTS header
eveseat.net: could not connect to host
eveshaiwu.com: could not connect to host
evi.be: did not receive HSTS header
+evilbeasts.ru: could not connect to host
evileden.com: could not connect to host
evilnerd.de: did not receive HSTS header
+evilness.nl: could not connect to host
evilsay.com: could not connect to host
+evilvolcanolairs.com: did not receive HSTS header
evin.ml: could not connect to host
evio.com: did not receive HSTS header
evites.me: could not connect to host
@@ -5026,57 +5644,64 @@ evowl.com: could not connect to host
ewallet-optimizer.com: did not receive HSTS header
ewex.org: could not connect to host
eworksmedia.com: could not connect to host
+ewuchuan.com: could not connect to host
exampleessays.com: could not connect to host
excelgum.ca: did not receive HSTS header
exceptionalbits.com: could not connect to host
exceptionalservices.us: could not connect to host
-excessamerica.com: could not connect to host
exchangecoordinator.com: could not connect to host
exchangeworks.co: did not receive HSTS header
+exebouncycastles.co.uk: did not receive HSTS header
exembit.com: did not receive HSTS header
exfiles.cz: did not receive HSTS header
exgaywatch.com: could not connect to host
exgravitus.com: could not connect to host
exno.co: could not connect to host
-exo.do: could not connect to host
+exo.do: max-age too low: 0
+exocen.com: could not connect to host
exoticads.com: could not connect to host
exousiakaidunamis.xyz: could not connect to host
+expancio.com: max-age too low: 0
expanddigital.media: did not receive HSTS header
expatads.com: could not connect to host
expatriate.pl: did not receive HSTS header
expecting.com.br: could not connect to host
experticon.com: did not receive HSTS header
expertmile.com: did not receive HSTS header
+experts-en-gestion.fr: did not receive HSTS header
explodingcamera.com: did not receive HSTS header
exploit-db.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-exploit.cz: did not receive HSTS header
expo-designers.com: did not receive HSTS header
expokohler.com: could not connect to host
expoort.com.br: could not connect to host
+exporo.de: did not receive HSTS header
expoundite.net: did not receive HSTS header
expowerhps.com: did not receive HSTS header
-expressemotion.net: could not connect to host
expressfinance.co.za: did not receive HSTS header
+extendwings.com: could not connect to host
exteriorservices.io: could not connect to host
-extramoney.cash: did not receive HSTS header
+extramoney.cash: could not connect to host
extrathemeshowcase.net: could not connect to host
extratorrent.cool: did not receive HSTS header
-extratorrent.fyi: could not connect to host
-extratorrent.red: could not connect to host
+extratorrent.fyi: max-age too low: 0
+extratorrent.red: max-age too low: 0
extratorrent.world: could not connect to host
extratorrentlive.xyz: could not connect to host
extratorrents.tech: could not connect to host
extreemhost.nl: did not receive HSTS header
extremenetworking.net: could not connect to host
+extremeservicesandrestoration.com: could not connect to host
exy.pw: could not connect to host
+eyasc.nl: did not receive HSTS header
eyedarts.com: did not receive HSTS header
eyeglassuniverse.com: did not receive HSTS header
eyenote.gov: did not receive HSTS header
eyes-of-universe.eu: did not receive HSTS header
eyesoccer-didikh.rhcloud.com: could not connect to host
+eyesonly.cc: did not receive HSTS header
eytosh.net: could not connect to host
ez.fi: could not connect to host
-ezgamble.com: could not connect to host
+ezgamble.com: did not receive HSTS header
ezimoeko.net: could not connect to host
ezmod.org: could not connect to host
eznfe.com: could not connect to host
@@ -5087,21 +5712,22 @@ f-rickroll-g.pw: could not connect to host
f-s-u.co.uk: could not connect to host
f00.ca: did not receive HSTS header
f1bigpicture.com: could not connect to host
-f2e.io: did not receive HSTS header
f2f.cash: could not connect to host
f42.net: could not connect to host
f5movies.top: could not connect to host
f8842.com: could not connect to host
-f9digital.com: did not receive HSTS header
+f9digital.com: max-age too low: 2592000
faber.io: could not connect to host
faberusa.com: did not receive HSTS header
fabhub.io: could not connect to host
fabian-kluge.de: could not connect to host
+fabianasantiago.com: could not connect to host
fabianfischer.de: did not receive HSTS header
-fabianmunoz.com: did not receive HSTS header
+fabianmunoz.com: could not connect to host
fabienbaker.com: could not connect to host
fabled.com: did not receive HSTS header
fabriko.fr: did not receive HSTS header
+fabriziorocca.com: could not connect to host
fabrysociety.org: could not connect to host
fabulouslyyouthfulskin.com: could not connect to host
fabulouslyyouthfulskineyeserum.com: could not connect to host
@@ -5109,10 +5735,10 @@ facebattle.com: could not connect to host
facebook.ax: could not connect to host
facebooktsukaikata.net: did not receive HSTS header
facepalmsecurity.com: could not connect to host
+facepunch.org: could not connect to host
facesnf.com: could not connect to host
fachschaft-informatik.de: did not receive HSTS header
facilitrak.com: could not connect to host
-factor.cc: did not receive HSTS header
factorable.net: did not receive HSTS header
factorygw.com: did not receive HSTS header
factorypartsdirect.com: could not connect to host
@@ -5124,7 +5750,6 @@ faesser.com: did not receive HSTS header
fafatiger.com: could not connect to host
fag.wtf: could not connect to host
fahmed.de: did not receive HSTS header
-faidanoi.it: did not receive HSTS header
failproof.be: max-age too low: 604800
faircom.co.za: did not receive HSTS header
fairkey.dk: did not receive HSTS header
@@ -5133,19 +5758,17 @@ faisalshuvo.com: did not receive HSTS header
faizan.net: did not receive HSTS header
faizan.xyz: did not receive HSTS header
fakeletters.org: could not connect to host
-fakerli.com: could not connect to host
faktura.pl: did not receive HSTS header
falcibiosystems.org: did not receive HSTS header
falconwiz.com: did not receive HSTS header
falkp.no: did not receive HSTS header
falkus.net: could not connect to host
-falldennismarketing.com: max-age too low: 2592000
fallenangeldrinks.eu: could not connect to host
fallenangelspirits.uk: could not connect to host
fallingapart.de: could not connect to host
-fallofthecitadel.com: did not receive HSTS header
false.in.net: could not connect to host
faluninfo.ba: did not receive HSTS header
+famdouma.nl: could not connect to host
fame-agency.net: could not connect to host
famep.gov: could not connect to host
famer.me: could not connect to host
@@ -5153,16 +5776,18 @@ fameuxhosting.co.uk: could not connect to host
familie-sander.rocks: max-age too low: 600
familie-sprink.de: could not connect to host
familie-zimmermann.at: could not connect to host
+familletouret.fr: did not receive HSTS header
famio.cn: did not receive HSTS header
-fan.gov: could not connect to host
-fancy-bridge.com: could not connect to host
fanflow.com: did not receive HSTS header
+fanhouwan.com: did not receive HSTS header
fansmade.art: could not connect to host
fant.dk: did not receive HSTS header
fantasticgardenersmelbourne.com.au: did not receive HSTS header
fantasticpestcontrolmelbourne.com.au: did not receive HSTS header
fantasyfootballpundit.com: did not receive HSTS header
+fantasyprojections.com: could not connect to host
fanyl.cn: could not connect to host
+fap.no: could not connect to host
faq.lookout.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
faraonplay5.com: could not connect to host
faraonplay7.com: could not connect to host
@@ -5175,7 +5800,7 @@ farm24.co.uk: could not connect to host
farmacia.pt: did not receive HSTS header
farmaciaformula.com.br: could not connect to host
farmaciamedicom.com.br: could not connect to host
-fascia.fit: could not connect to host
+farmmaximizer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
fashion.net: did not receive HSTS header
fashioncare.cz: did not receive HSTS header
fashiondays.bg: max-age too low: 0
@@ -5189,8 +5814,10 @@ fastbackmbg.be: could not connect to host
fastbackmbm.be: could not connect to host
fastcomcorp.com: did not receive HSTS header
fastcomcorp.net: did not receive HSTS header
+fastconfirm.com: could not connect to host
fastograph.com: could not connect to host
fastopen.ml: could not connect to host
+fastwebsites.com.br: did not receive HSTS header
fastworx.com: did not receive HSTS header
fatdoge.cn: did not receive HSTS header
fatgeekflix.net: could not connect to host
@@ -5198,18 +5825,22 @@ fatherhood.gov: did not receive HSTS header
fatlossguide.xyz: could not connect to host
fator25.com.br: could not connect to host
fatox.de: could not connect to host
+fattorino.it: did not receive HSTS header
fatwin.pw: could not connect to host
fatzebra.com.au: max-age too low: 0
favorit.club: did not receive HSTS header
fawkex.me: could not connect to host
faxreader.net: could not connect to host
fayolle.info: did not receive HSTS header
-fbi.pw: did not receive HSTS header
+fbf.gov: did not receive HSTS header
+fbi.pw: could not connect to host
fbook.top: could not connect to host
fbox.li: could not connect to host
fcapartsdb.com: could not connect to host
+fcitasc.com: could not connect to host
fcp.cn: could not connect to host
fdj.im: could not connect to host
+fdm.ro: did not receive HSTS header
fdt.name: did not receive HSTS header
feard.space: could not connect to host
fed51.com: could not connect to host
@@ -5221,7 +5852,7 @@ fedo.moe: could not connect to host
feedstringer.com: could not connect to host
feedthebot.com: did not receive HSTS header
feegg.com.br: could not connect to host
-feelgood-workouts.de: did not receive HSTS header
+feeriedesign-event.com: could not connect to host
fefore.com: did not receive HSTS header
fegans.org.uk: did not receive HSTS header
feirlane.org: could not connect to host
@@ -5229,12 +5860,16 @@ feisbed.com: could not connect to host
feist.io: could not connect to host
feitobrasilcosmeticos.com.br: did not receive HSTS header
felger-times.fr: could not connect to host
+felgitscher.xyz: max-age too low: 2592000
feliwyn.fr: did not receive HSTS header
felixhefner.de: did not receive HSTS header
+felixqu.com: did not receive HSTS header
felixrr.pro: could not connect to host
femaledom.xyz: could not connect to host
femdombbw.com: could not connect to host
feminists.co: could not connect to host
+feng-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+feng-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
fengyadi.com: could not connect to host
fenixhost.com.br: could not connect to host
fenno.net: could not connect to host
@@ -5259,15 +5894,15 @@ fetlife.com: could not connect to host
fettbrot.tk: did not receive HSTS header
feudaltactics.com: could not connect to host
feuerwehr-dachaufsetzer.de: could not connect to host
-fexmen.com: could not connect to host
+fexmen.com: did not receive HSTS header
ff-bg.xyz: could not connect to host
ffh.me: could not connect to host
ffl123.com: did not receive HSTS header
fgequipamentos.com.br: did not receive HSTS header
fhsseniormens.club: could not connect to host
-fi-sanki.co.jp: did not receive HSTS header
+fi-sanki.co.jp: could not connect to host
fibrasynormasdecolombia.com: did not receive HSTS header
-ficklenote.net: could not connect to host
+ficklenote.net: did not receive HSTS header
fics-twosigma.com: could not connect to host
fid.to: could not connect to host
fidel.uk: did not receive HSTS header
@@ -5275,20 +5910,21 @@ fideleslaici.com: did not receive HSTS header
fieldclockapp.com: did not receive HSTS header
fieldtalk.co.uk: could not connect to host
fiendishmasterplan.com: did not receive HSTS header
-fierman.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-fierman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-fierman.us: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+fierman.eu: could not connect to host
+fierman.net: could not connect to host
+fierman.us: could not connect to host
fiftyshadesofluca.ml: could not connect to host
fig.co: did not receive HSTS header
fig.ms: could not connect to host
fightr.co: could not connect to host
figura.cz: did not receive HSTS header
figura.im: did not receive HSTS header
-figuurzagers.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+figuurzagers.nl: could not connect to host
fiksel.info: could not connect to host
fikt.space: could not connect to host
+filamentia.nl: could not connect to host
filebox.moe: could not connect to host
-filebox.space: did not receive HSTS header
+filebox.space: could not connect to host
filedir.com: did not receive HSTS header
fileio.io: could not connect to host
fileon.com: could not connect to host
@@ -5305,11 +5941,13 @@ filme-online.eu.com: did not receive HSTS header
filmesubtitrate2017.online: could not connect to host
filo.xyz: did not receive HSTS header
filoitoupediou.gr: did not receive HSTS header
+filterflasche-kaufen.de: did not receive HSTS header
finalgear.com: could not connect to host
finalvpn.com: did not receive HSTS header
financier.io: did not receive HSTS header
financieringsportaal.nl: did not receive HSTS header
finanzkontor.net: could not connect to host
+find-your-happy-place.de: did not receive HSTS header
findigo.fish: could not connect to host
findingmyname.com: max-age too low: 2629746
findmybottleshop.com.au: could not connect to host
@@ -5321,10 +5959,9 @@ finewineonline.com: could not connect to host
fingent.com: did not receive HSTS header
fingerscrossed.style: could not connect to host
finiteheap.com: did not receive HSTS header
-finn.io: did not receive HSTS header
+finkenberger.org: did not receive HSTS header
finstererlebnis.de: could not connect to host
finsterlebnis.de: did not receive HSTS header
-fintandunleavy.com: could not connect to host
fiodental.com.br: did not receive HSTS header
fiork.com: did not receive HSTS header
fire-wolf.com: could not connect to host
@@ -5333,31 +5970,30 @@ firebaseio-demo.com: could not connect to host
firebaseio.com: could not connect to host (error ignored - included regardless)
firebird.io: did not receive HSTS header
firefall.rocks: could not connect to host
-firehost.com: could not connect to host
+firehost.com: did not receive HSTS header
fireinthedeep.com: could not connect to host
firemail.io: could not connect to host
-firenza.org: did not receive HSTS header
fireorbit.de: did not receive HSTS header
firepeak.ru: could not connect to host
fireworkcoaching.com: did not receive HSTS header
firexarxa.de: could not connect to host
-firmament.space: could not connect to host
-firmenverzeichnis.nu: did not receive HSTS header
+firmale.com: could not connect to host
+firmenverzeichnis.nu: could not connect to host
first-time-offender.com: could not connect to host
firstchoicepool.com: did not receive HSTS header
firstdogonthemoon.com.au: did not receive HSTS header
firstforex.co.uk: did not receive HSTS header
firstlook.org: did not receive HSTS header
-fischers.cc: could not connect to host
fiscoeconti.it: did not receive HSTS header
-fishfinders.info: did not receive HSTS header
fiskestang.com: did not receive HSTS header
fit4medien.de: did not receive HSTS header
fitbylo.com: could not connect to host
fitea.cz: could not connect to host
+fitfitup.com: did not receive HSTS header
fitiapp.com: could not connect to host
fitnesswerk.de: could not connect to host
fitqbe.com: did not receive HSTS header
+fitseven.ru: did not receive HSTS header
fitshop.com.br: could not connect to host
fitsw.com: did not receive HSTS header
fiuxy.org: could not connect to host
@@ -5389,7 +6025,8 @@ fl0666.com: did not receive HSTS header
fl0777.com: did not receive HSTS header
fl0888.com: did not receive HSTS header
fl0999.com: did not receive HSTS header
-flagfic.com: could not connect to host
+flacandmp3.ml: could not connect to host
+flagfic.com: did not receive HSTS header
flags.ninja: could not connect to host
flair.co: max-age too low: 7889238
flairbros.at: could not connect to host
@@ -5402,15 +6039,11 @@ flareon.net: could not connect to host
flaretechnologies.io: could not connect to host
flashbaggie.com: could not connect to host
flatbellyreview.com: max-age too low: 2592000
+flatlandchurch.com: did not receive HSTS header
flawcheck.com: could not connect to host
flc111.com: did not receive HSTS header
flc999.com: max-age too low: 129600
-fleetcor.at: could not connect to host
-fleetcor.de: could not connect to host
-fleetcor.fr: could not connect to host
-fleetcor.hu: could not connect to host
-fleetcor.nl: could not connect to host
-fleetcor.pl: could not connect to host
+fleamarketgoods.com: did not receive HSTS header
flemingtonaudiparts.com: could not connect to host
fleurette.me: could not connect to host
fleursdesoleil.fr: did not receive HSTS header
@@ -5418,14 +6051,16 @@ flexdrukker.nl: could not connect to host
flexinvesting.fi: could not connect to host
fliexer.com: could not connect to host
flightschoolusa.com: did not receive HSTS header
+flikmsg.co: could not connect to host
fling.dating: could not connect to host
flipagram.com: did not receive HSTS header
flipbell.com: did not receive HSTS header
flipkey.com: did not receive HSTS header
flirchi.com: did not receive HSTS header
+flirtycourts.com: did not receive HSTS header
flixtor.net: could not connect to host
flkrpxl.com: max-age too low: 86400
-floless.co.uk: could not connect to host
+flood.io: did not receive HSTS header
floorball-haunwoehr.de: did not receive HSTS header
flopy.club: could not connect to host
florafiora.com.br: did not receive HSTS header
@@ -5460,24 +6095,31 @@ flybunnyfly.dk: did not receive HSTS header
flygpost.com: did not receive HSTS header
flyingdoggy.net: could not connect to host
flyingspaghettimonsterdonationsfund.nl: could not connect to host
+flyingyoung.top: did not receive HSTS header
flyp.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
flyspace.ga: did not receive HSTS header
+flyspace.ml: did not receive HSTS header
flyss.net: could not connect to host
fm83.nl: could not connect to host
fm992.com: could not connect to host
+fmapplication.com: could not connect to host
+fmi.gov: did not receive HSTS header
+fmovies.fyi: did not receive HSTS header
fmovies.life: could not connect to host
fnfpt.co.uk: could not connect to host
fniephaus.com: did not receive HSTS header
-fnncat.com: could not connect to host
+fnncat.com: did not receive HSTS header
fnvsecurity.com: could not connect to host
fobc-usa.org: did not receive HSTS header
focalforest.com: could not connect to host
-foerster-kunststoff.de: did not receive HSTS header
+foerster-kunststoff.de: could not connect to host
fognini-depablo.eu: could not connect to host
fohome.ca: could not connect to host
fokan.ch: did not receive HSTS header
+fol.tf: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
foliekonsulenten.dk: did not receive HSTS header
-folioapp.io: did not receive HSTS header
+folioapp.io: could not connect to host
+folkfests.org: did not receive HSTS header
fondanastasia.ru: did not receive HSTS header
fondy.ru: did not receive HSTS header
foneo.com: could not connect to host
@@ -5496,7 +6138,7 @@ foodserve.in: did not receive HSTS header
footballmapped.com: could not connect to host
footlegende.fr: did not receive HSTS header
forafifty.co.za: could not connect to host
-foraje-profesionale.ro: did not receive HSTS header
+foraje-profesionale.ro: could not connect to host
forbid.life: could not connect to host
forbiddenhistory.info: could not connect to host
forbook.net: did not receive HSTS header
@@ -5511,15 +6153,19 @@ foreveryoung.pt: did not receive HSTS header
forex-dan.com: did not receive HSTS header
forex-plus.com: did not receive HSTS header
forgix.com: could not connect to host
+forglemmigej.net: could not connect to host
forlagetmarx.dk: did not receive HSTS header
formadmin.com: did not receive HSTS header
formaliteo.com: did not receive HSTS header
+formasdemaquillarse.com: did not receive HSTS header
formazioneopen.it: could not connect to host
formersessalaries.com: did not receive HSTS header
formula.cf: could not connect to host
forplanetsake.com: could not connect to host
forplayers.pl: could not connect to host
+forquilhinhanoticias.com.br: did not receive HSTS header
forsyththeatre.com: could not connect to host
+fortoglethorpega.gov: could not connect to host
fortricks.in: did not receive HSTS header
fortuna-loessnitz.de: could not connect to host
fortuna-s.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -5532,43 +6178,43 @@ foryoucosmeticos.com.br: could not connect to host
fossewayflowers.co.uk: could not connect to host
fossewayflowers.com: could not connect to host
fossewaygardencentre.co.uk: did not receive HSTS header
-fossgruppen.se: could not connect to host
+fossgruppen.se: did not receive HSTS header
+fossguard.com: could not connect to host
fotiu.com: could not connect to host
fotoallerlei.com: did not receive HSTS header
fotocerita.net: could not connect to host
-fotofaerie.net: could not connect to host
fotogiraffe.ru: did not receive HSTS header
fotografosexpertos.com: did not receive HSTS header
-fotonjan.com: could not connect to host
fotopasja.info: could not connect to host
fotostravestisbr.com: could not connect to host
fourchin.net: could not connect to host
fourwheelpartloanssimple.com: did not receive HSTS header
foxdev.io: could not connect to host
-foxelbox.com: could not connect to host
+foxelbox.com: did not receive HSTS header
foxes.no: could not connect to host
foxley-farm.co.uk: did not receive HSTS header
foxley-seeds.co.uk: did not receive HSTS header
foxleyseeds.co.uk: could not connect to host
foxmay.co.uk: could not connect to host
-foxtrot.pw: could not connect to host
+foxterrier.com.br: could not connect to host
+foxtrot.pw: did not receive HSTS header
foxyslut.com: could not connect to host
foyale.io: could not connect to host
fpki.sh: could not connect to host
-fptravelling.com: could not connect to host
fr0zenbits.io: could not connect to host
fr33d0m.link: could not connect to host
fragilesolar.cf: could not connect to host
-fragnic.com: could not connect to host
+fragnic.com: did not receive HSTS header
fralef.me: did not receive HSTS header
francesca-and-lucas.com: did not receive HSTS header
-francescoservida.ch: could not connect to host
francevpn.xyz: could not connect to host
+franckgirard.net: could not connect to host
francois-vidit.com: did not receive HSTS header
frangor.info: did not receive HSTS header
frankedier.com: did not receive HSTS header
-frankl.in: did not receive HSTS header
+frankfurt-am-start.de: did not receive HSTS header
franklinhua.com: could not connect to host
+fransallen.com: did not receive HSTS header
franta.biz: did not receive HSTS header
franta.email: did not receive HSTS header
franzt.de: could not connect to host
@@ -5579,13 +6225,14 @@ frasys.cloud: max-age too low: 2592000
frasys.io: could not connect to host
fraudempire.com: could not connect to host
freakyamazing.com: could not connect to host
-freakyaweso.me: could not connect to host
+freakyaweso.me: max-age too low: 86400
freakyawesome.band: could not connect to host
freakyawesome.blog: could not connect to host
freakyawesome.ca: could not connect to host
freakyawesome.club: could not connect to host
freakyawesome.co: could not connect to host
freakyawesome.co.uk: could not connect to host
+freakyawesome.com: could not connect to host
freakyawesome.company: could not connect to host
freakyawesome.email: could not connect to host
freakyawesome.events: could not connect to host
@@ -5645,9 +6292,8 @@ freakyawesometheme.com: could not connect to host
freakyawesomethemes.com: could not connect to host
freakyawesomewp.com: could not connect to host
freddythechick.uk: could not connect to host
-fredericcote.com: could not connect to host
+fredericcote.com: did not receive HSTS header
fredliang.cn: could not connect to host
-fredtec.ru: could not connect to host
free8.xyz: could not connect to host
freeasinlliure.org: did not receive HSTS header
freeassangenow.org: did not receive HSTS header
@@ -5655,8 +6301,6 @@ freeben666.fr: could not connect to host
freeblog.me: could not connect to host
freebookmakerbets.com.au: did not receive HSTS header
freebus.org: could not connect to host
-freecam2cam.site: could not connect to host
-freecookies.nl: did not receive HSTS header
freedomrealtyoftexas.com: did not receive HSTS header
freedomvote.nl: could not connect to host
freeexampapers.com: could not connect to host
@@ -5681,6 +6325,8 @@ frenzel.dk: could not connect to host
freqlabs.com: did not receive HSTS header
freshfind.xyz: could not connect to host
freshlymind.com: did not receive HSTS header
+freshmaza.io: did not receive HSTS header
+frettboard.com: did not receive HSTS header
frezbo.com: could not connect to host
frforms.com: did not receive HSTS header
frickelboxx.de: could not connect to host
@@ -5689,37 +6335,38 @@ fridaperfumaria.com.br: could not connect to host
friedhelm-wolf.de: could not connect to host
friendica.ch: could not connect to host
friendlyfiregameshow.com: could not connect to host
+friendship-quotes.co.uk: could not connect to host
+friller.com.au: did not receive HSTS header
frimons.com: max-age too low: 7889238
fringeintravel.com: did not receive HSTS header
+fritteli.ch: did not receive HSTS header
frodriguez.xyz: could not connect to host
froehlich.it: did not receive HSTS header
froggstack.de: could not connect to host
frolov.net: could not connect to host
-from-the-net.com: could not connect to host
fromix.de: could not connect to host
fromlemaytoz.com: could not connect to host
front-end.dog: could not connect to host
frontisme.nl: did not receive HSTS header
frontline.cloud: did not receive HSTS header
frontline6.com: did not receive HSTS header
-frontlinemessenger.com: did not receive HSTS header
frontmin.com: did not receive HSTS header
frost-ci.xyz: could not connect to host
-frostbytes.net: could not connect to host
+frostbytes.net: did not receive HSTS header
frosty-gaming.xyz: could not connect to host
frp-roleplay.de: could not connect to host
frprn.com: could not connect to host
frprn.xxx: could not connect to host
frsis2017.com: could not connect to host
+frugal-millennial.com: did not receive HSTS header
fruitscale.com: could not connect to host
fruitusers.com: could not connect to host
frumious.fyi: could not connect to host
frusky.net: could not connect to host
-fs-gamenet.de: could not connect to host
-fsf.moe: did not receive HSTS header
+fs-gamenet.de: did not receive HSTS header
+fsf.moe: could not connect to host
fsfi.is: could not connect to host
fsinf.at: did not receive HSTS header
-fsk.fo: did not receive HSTS header
fspphoto.com: could not connect to host
fsradio.eu: did not receive HSTS header
fsrs.gov: could not connect to host
@@ -5731,6 +6378,8 @@ ftctele.com: could not connect to host
fteproxy.org: did not receive HSTS header
ftgho.com: could not connect to host
ftpi.ml: could not connect to host
+fu-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+fu-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
fuchsy.com: could not connect to host
fuckbilibili.com: could not connect to host
fuckcf.cf: could not connect to host
@@ -5741,6 +6390,7 @@ fuelministry.com: did not receive HSTS header
fugle.de: could not connect to host
fuitedeau.ch: could not connect to host
fujianshipbuilding.com: could not connect to host
+fujiorganics.com: did not receive HSTS header
fukuko.biz: could not connect to host
fukuko.xyz: could not connect to host
fukuoka-cityliner.jp: did not receive HSTS header
@@ -5750,7 +6400,7 @@ fulilingyu.info: could not connect to host
fuliydys.com: could not connect to host
fullpackage.co.uk: did not receive HSTS header
fulltxt.ml: could not connect to host
-fullytrained.co.uk: could not connect to host
+fullytrained.co.uk: did not receive HSTS header
fumiware.com: could not connect to host
fun25.tk: could not connect to host
fun9.cc: could not connect to host
@@ -5771,21 +6421,23 @@ funnyang.com: could not connect to host
funrun.com: did not receive HSTS header
funtastic-event-hire.co.uk: did not receive HSTS header
funtastic.ie: could not connect to host
-funtimebourne.co.uk: could not connect to host
-fuorifuocogenova.it: did not receive HSTS header
+funtimebourne.co.uk: did not receive HSTS header
+fuorifuocogenova.it: could not connect to host
furi.ga: could not connect to host
furiffic.com: did not receive HSTS header
-furikake.xyz: did not receive HSTS header
furnation.com: could not connect to host
furnishedproperty.com.au: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+furnitureconcept.co.uk: could not connect to host
furry.agency: could not connect to host
furry.be: did not receive HSTS header
+furry.zone: did not receive HSTS header
+fursuitbutts.com: could not connect to host
+furtherfood.com: did not receive HSTS header
furtivelook.com: did not receive HSTS header
-fusa-miyamoto.jp: could not connect to host
fusedrops.com: did not receive HSTS header
fusionmate.com: could not connect to host
-fuskator.com: could not connect to host
fussell.io: could not connect to host
+futa.agency: could not connect to host
futbol11.com: did not receive HSTS header
futbolvivo.tv: did not receive HSTS header
futos.de: could not connect to host
@@ -5801,16 +6453,18 @@ fuzoku-sodan.com: could not connect to host
fuzoku.jp: could not connect to host
fwei.tk: did not receive HSTS header
fws.gov: did not receive HSTS header
-fwww7.com: did not receive HSTS header
+fwww7.com: could not connect to host
fxgame.online: could not connect to host
fxpig-ib.com: could not connect to host
+fxtalk.cn: could not connect to host
fxwebstudio.com.au: max-age too low: 0
fyodorpi.com: did not receive HSTS header
fyol.pw: could not connect to host
fysiohaenraets.nl: did not receive HSTS header
fzn.io: did not receive HSTS header
-fzslm.me: could not connect to host
+fzslm.me: did not receive HSTS header
g-i-s.vn: did not receive HSTS header
+g-marketing.ro: did not receive HSTS header
g-rickroll-o.pw: could not connect to host
g01.in.ua: could not connect to host
g1jeu.com: could not connect to host
@@ -5832,20 +6486,22 @@ gablaxian.com: max-age too low: 2592000
gabriele-kluge.de: could not connect to host
gaelleetarnaud.com: did not receive HSTS header
gafachi.com: could not connect to host
-gagor.pl: could not connect to host
gaichanh.com: did not receive HSTS header
gailfellowsphotography.com: could not connect to host
gainesvillegoneaustin.org: did not receive HSTS header
gaiserik.com: did not receive HSTS header
gaite.me: did not receive HSTS header
gajas18.com: could not connect to host
+gakkainavi.net: could not connect to host
gakkainavi4.com: could not connect to host
galardi.org: could not connect to host
galena.io: could not connect to host
galenskap.eu: could not connect to host
galeriadobimba.com.br: could not connect to host
+galerieautodirect.com: did not receive HSTS header
galgoafegao.com.br: could not connect to host
galgoingles.com.br: could not connect to host
+galgopersa.com.br: could not connect to host
gali.review: did not receive HSTS header
galileomtz.com: did not receive HSTS header
gallery44.org: did not receive HSTS header
@@ -5855,6 +6511,7 @@ gambitcloud.net: could not connect to host
game-files.net: did not receive HSTS header
game-gentle.com: could not connect to host
game.yt: could not connect to host
+game88city.com: could not connect to host
gamebits.net: did not receive HSTS header
gamecave.de: could not connect to host
gamecdn.com: could not connect to host
@@ -5866,6 +6523,7 @@ gamek.es: could not connect to host
gamenected.com: could not connect to host
gamenected.de: could not connect to host
gameofbay.org: could not connect to host
+gameofpwnz.com: did not receive HSTS header
gamepad.vg: could not connect to host
gamepader.com: could not connect to host
gameparade.de: could not connect to host
@@ -5876,7 +6534,6 @@ gamers-life.fr: could not connect to host
gamerslair.org: did not receive HSTS header
gamerz-point.de: could not connect to host
gamerz-stream.com: did not receive HSTS header
-gamesdepartment.co.uk: could not connect to host
gameserver-sponsor.de: did not receive HSTS header
gamesurferapp.com: could not connect to host
gameswitchers.uk: could not connect to host
@@ -5888,30 +6545,35 @@ gamingreinvented.com: did not receive HSTS header
gamoice.com: did not receive HSTS header
gampenhof.de: could not connect to host
gangnam-club.com: could not connect to host
-gangnam-karaoke.com: could not connect to host
+gangnam-karaoke.com: did not receive HSTS header
ganhonet.com.br: did not receive HSTS header
+ganyouxuan.com: could not connect to host
ganzgraph.de: did not receive HSTS header
gaon.network: could not connect to host
-gaphag.ddns.net: could not connect to host
-gar-nich.net: could not connect to host
+gaptek.id: did not receive HSTS header
garage-abri-chalet.fr: did not receive HSTS header
garage-door.pro: could not connect to host
garageon.net: did not receive HSTS header
+garbage-juice.com: could not connect to host
garciamartin.me: could not connect to host
garcinia--cambogia.com: could not connect to host
garciniacambogiareviewed.co: did not receive HSTS header
+garden-life.org: could not connect to host
garden.trade: could not connect to host
gardencarezone.com: did not receive HSTS header
+garethkirk.com: could not connect to host
+garethkirkreviews.com: could not connect to host
garfieldairlines.net: did not receive HSTS header
garten-bau.ch: did not receive HSTS header
garten-diy.de: could not connect to host
+gartenhauszentrum.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
gasbarkenora.com: could not connect to host
gasnews.net: could not connect to host
gasser-daniel.ch: did not receive HSTS header
gastauftritt.net: did not receive HSTS header
gastritisolucion.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
gatapro.net: could not connect to host
-gatemotorsumhlanga.co.za: could not connect to host
+gatemotorsumhlanga.co.za: did not receive HSTS header
gatemoves.com: could not connect to host
gateworld.fr: did not receive HSTS header
gatilagata.com.br: could not connect to host
@@ -5920,36 +6582,45 @@ gatorsa.es: could not connect to host
gaussorgues.me: could not connect to host
gautham.pro: could not connect to host
gavick.com: did not receive HSTS header
+gay-jays.com: could not connect to host
gay-sissies.com: could not connect to host
-gaycc.cc: could not connect to host
+gaya-sa.org: did not receive HSTS header
+gaycc.cc: did not receive HSTS header
gaygeeks.de: could not connect to host
+gayjays.com: could not connect to host
gaysfisting.com: could not connect to host
gaytorrent.ru: could not connect to host
gayxsite.com: could not connect to host
+gazee.net: did not receive HSTS header
gazflynn.com: did not receive HSTS header
gbit.xyz: could not connect to host
gc.net: could not connect to host
+gccm-events.com: did not receive HSTS header
gchoic.com: max-age too low: 7889238
gchp.ie: did not receive HSTS header
+gcodetools.com: could not connect to host
gdegem.org: did not receive HSTS header
gdevpenze.ru: could not connect to host
gdprhallofshame.com: could not connect to host
gdutnic.com: could not connect to host
gdz-otvety.com: could not connect to host
-gdz.tv: could not connect to host
gear-acquisition-syndrome.community: could not connect to host
+gearseo.com.br: did not receive HSTS header
geaskb.nl: could not connect to host
geblitzt.de: did not receive HSTS header
gedankenbude.info: could not connect to host
+gedankenworks.com: could not connect to host
geekbaba.com: could not connect to host
-geekcast.co.uk: did not receive HSTS header
-geekchimp.com: did not receive HSTS header
-geekdt.com: could not connect to host
+geekcast.co.uk: could not connect to host
+geekchimp.com: could not connect to host
+geekdt.com: did not receive HSTS header
geekmind.org: max-age too low: 172800
geeks.berlin: could not connect to host
geeks.lgbt: could not connect to host
+geeks.one: did not receive HSTS header
geektimes.com: did not receive HSTS header
geeky.software: could not connect to host
+geekystudios.us: could not connect to host
geemo.top: could not connect to host
gehrke.nrw: could not connect to host
geigr.de: could not connect to host
@@ -5970,33 +6641,36 @@ genneve.com: did not receive HSTS header
genoog.com: could not connect to host
genossen.ru: could not connect to host
genshiken.org: could not connect to host
-genuu.com: could not connect to host
+gensokyo.chat: could not connect to host
+genuu.com: did not receive HSTS header
genuxation.com: could not connect to host
genxbeats.com: did not receive HSTS header
genyaa.com: could not connect to host
genyhitch.com: did not receive HSTS header
+geocommunicator.gov: could not connect to host
geoffanderinmyers.com: did not receive HSTS header
geoffdev.com: could not connect to host
geoffmyers.com: did not receive HSTS header
geoffreyrichard.com: could not connect to host
geopals.net: did not receive HSTS header
-georgeperez.me: could not connect to host
+georgeperez.me: did not receive HSTS header
georgesonarthurs.com.au: did not receive HSTS header
-gerardobsd.com: could not connect to host
gereja.ga: max-age too low: 1209600
gerencianet.com.br: did not receive HSTS header
gereon.ch: could not connect to host
geri.be: could not connect to host
-germanticz.de: could not connect to host
+germansoldiers.net: could not connect to host
gers-authentique.com: could not connect to host
gerum.dynv6.net: did not receive HSTS header
geschenkly.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
geschmackspiloten.de: did not receive HSTS header
gesiwista.net: did not receive HSTS header
+gestorehotel.com: did not receive HSTS header
gesunde-smoothies.de: did not receive HSTS header
gesundes-im-napf.de: did not receive HSTS header
get-asterisk.ru: could not connect to host
get-cctv.com: could not connect to host
+get-link.info: could not connect to host
get.zenpayroll.com: did not receive HSTS header
getable.com: did not receive HSTS header
getblys.com.au: did not receive HSTS header
@@ -6028,7 +6702,7 @@ getlittleapps.com: could not connect to host
getlolaccount.com: did not receive HSTS header
getmassage.com.ng: could not connect to host
getmondo.co.uk: could not connect to host
-geto.ml: could not connect to host
+geto.ml: did not receive HSTS header
getpake.com: could not connect to host
getpop.org: did not receive HSTS header
getpost.online: did not receive HSTS header
@@ -6040,15 +6714,19 @@ getsetupfile.com: did not receive HSTS header
getshifter.io: did not receive HSTS header
getspeaker.com: did not receive HSTS header
getspire.com: could not connect to host
+getsubs.net: could not connect to host
getwarden.net: could not connect to host
getwashdaddy.com: could not connect to host
+getweloop.io: did not receive HSTS header
getyourphix.tk: could not connect to host
gevaulug.fr: could not connect to host
gfbouncycastles.co.uk: did not receive HSTS header
gfhgiro.nl: did not receive HSTS header
+gflclan.ru: could not connect to host
gfm.tech: could not connect to host
gfoss.gr: could not connect to host
gfw.moe: could not connect to host
+gfwno.win: did not receive HSTS header
gfwsb.ml: could not connect to host
gglks.com: could not connect to host
ggobbo.com: could not connect to host
@@ -6061,24 +6739,27 @@ gheorghe-sarcov.ga: could not connect to host
gheorghesarcov.ga: could not connect to host
gheorghesarcov.tk: could not connect to host
ghi.gov: could not connect to host
-ghibli.studio: did not receive HSTS header
+ghibli.studio: could not connect to host
+ghid-pitesti.ro: did not receive HSTS header
ghkim.net: could not connect to host
-ghuntley.com: max-age too low: 0
-giakki.eu: could not connect to host
+ghowell.io: could not connect to host
gianlucapartengo.photography: did not receive HSTS header
giant-powerfit.co.uk: did not receive HSTS header
gibraltar-firma.com: did not receive HSTS header
giddyaunt.net: could not connect to host
gidea.nu: could not connect to host
+giduv.com: did not receive HSTS header
giegler.software: did not receive HSTS header
+giftbg.org: did not receive HSTS header
giftgofers.com: max-age too low: 2592000
giftservices.nl: did not receive HSTS header
gifzilla.net: could not connect to host
gigacloud.org: could not connect to host
-gigawattz.com: could not connect to host
+gigawattz.com: did not receive HSTS header
gigiscloud.servebeer.com: could not connect to host
gigolodavid.be: could not connect to host
gilcloud.com: could not connect to host
+gilescountytn.gov: did not receive HSTS header
gilgaz.com: did not receive HSTS header
gillet-cros.fr: could not connect to host
gilly.berlin: did not receive HSTS header
@@ -6095,6 +6776,9 @@ gip-carif-idf.net: could not connect to host
gip-carif-idf.org: could not connect to host
gipsamsfashion.com: could not connect to host
gipsic.com: did not receive HSTS header
+girlsgonesporty.com: could not connect to host
+girlsnet.work: could not connect to host
+girsa.org: could not connect to host
gis3m.org: did not receive HSTS header
gisac.org: did not receive HSTS header
gistfy.com: could not connect to host
@@ -6108,6 +6792,7 @@ giverang.com: could not connect to host
gix.net.pl: could not connect to host
gixtools.co.uk: could not connect to host
gixtools.uk: could not connect to host
+gizmo.ovh: could not connect to host
gizzo.sk: could not connect to host
glabiatoren-kst.de: could not connect to host
gladystudio.com: did not receive HSTS header
@@ -6116,43 +6801,51 @@ glasslikes.com: did not receive HSTS header
glbg.eu: did not receive HSTS header
gle: could not connect to host
glenavy.tk: could not connect to host
+glencambria.com: could not connect to host
+glencoveny.gov: could not connect to host
glentakahashi.com: could not connect to host
glicerina.online: did not receive HSTS header
glittersjabloon.nl: did not receive HSTS header
glitzmirror.com: could not connect to host
glnpo.gov: could not connect to host
globalado.com: could not connect to host
-globalbridge-japan.com: did not receive HSTS header
+globalbridge-japan.com: could not connect to host
globalelite.black: did not receive HSTS header
globalexpert.co.nz: could not connect to host
+globalgivingtime.com: could not connect to host
globalinsights.xyz: could not connect to host
globalinstitutefortraining.org.au: did not receive HSTS header
globalittech.com: could not connect to host
+globalmoneyapp.com: could not connect to host
globalmusic.ga: could not connect to host
globalnewsdaily.cf: could not connect to host
globalnomadvintage.com: could not connect to host
globalperspectivescanada.com: could not connect to host
+globalresistancecorporation.com: could not connect to host
globalsites.nl: did not receive HSTS header
globaltennis.ca: could not connect to host
globalvisions-events.ch: could not connect to host
globalvisions-events.com: could not connect to host
+globeinform.com: did not receive HSTS header
globuli-info.de: could not connect to host
gloomyspark.com: could not connect to host
glotter.com: did not receive HSTS header
gloucesterphotographer.com: did not receive HSTS header
glubbforum.de: did not receive HSTS header
-glutenfreiheit.at: did not receive HSTS header
+glutenfreiheit.at: could not connect to host
glws.org: did not receive HSTS header
-glyph.ws: could not connect to host
gm-assicurazioni.it: could not connect to host
gmail.com: did not receive HSTS header (error ignored - included regardless)
+gmantra.org: max-age too low: 7776000
gmanukyan.com: could not connect to host
gmat.ovh: could not connect to host
gmoes.at: did not receive HSTS header
-gmslparking.co.uk: did not receive HSTS header
+gmplab.com: could not connect to host
gnaptracker.tk: could not connect to host
gnom.me: could not connect to host
gnosticjade.net: did not receive HSTS header
+gnwp.eu: could not connect to host
+gnylf.com: could not connect to host
go.ax: did not receive HSTS header
go2sh.de: did not receive HSTS header
go4it.solutions: did not receive HSTS header
@@ -6160,16 +6853,23 @@ goabonga.com: could not connect to host
goalsetup.com: did not receive HSTS header
goaltree.ch: did not receive HSTS header
goapunks.net: did not receive HSTS header
-goarmy.eu: could not connect to host
goat.chat: did not receive HSTS header
goat.xyz: could not connect to host
+goatbot.xyz: could not connect to host
goben.ch: could not connect to host
goblins.net: did not receive HSTS header
goblinsatwork.com: could not connect to host
+goblintears.com: could not connect to host
gocardless.com: did not receive HSTS header
+god-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godbo9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godbo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godbo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
godrealms.com: could not connect to host
goedeke.ml: could not connect to host
goerner.me: did not receive HSTS header
+goesta-hallenbau.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
goge.site: could not connect to host
gogenenglish.com: could not connect to host
gogetssl.com: did not receive HSTS header
@@ -6190,11 +6890,13 @@ goldwaterscholarship.gov: could not connect to host
golearn.gov: could not connect to host
golfburn.com: could not connect to host
golocal-media.de: could not connect to host
+gomiblog.com: did not receive HSTS header
gong8.win: could not connect to host
-gongjianwei.com: could not connect to host
gonkar.com: did not receive HSTS header
+gonzalesca.gov: did not receive HSTS header
gonzalosanchez.mx: did not receive HSTS header
goodeats.nyc: did not receive HSTS header
+goodfeels.net: could not connect to host
goodfurday.ca: could not connect to host
goodmengroup.de: did not receive HSTS header
goods-memo.net: did not receive HSTS header
@@ -6213,6 +6915,9 @@ goozz.nl: did not receive HSTS header
gopay.cz: did not receive HSTS header
gopokego.cz: could not connect to host
goranrango.ch: could not connect to host
+gordonobrecht.com: did not receive HSTS header
+gorf.chat: could not connect to host
+gorf.club: could not connect to host
gorgiaxx.com: could not connect to host
gorilla-gym.site: could not connect to host
gorillow.com: could not connect to host
@@ -6221,6 +6926,8 @@ gosharewood.com: did not receive HSTS header
goshop.cz: did not receive HSTS header
goshow.tv: could not connect to host
gostream.asia: could not connect to host
+gosuland.org: did not receive HSTS header
+got-tty.de: did not receive HSTS header
gotgenes.com: could not connect to host
goto.google.com: did not receive HSTS header (error ignored - included regardless)
gotobrno.cz: did not receive HSTS header
@@ -6233,11 +6940,13 @@ goubi.me: did not receive HSTS header
goujianwen.com: did not receive HSTS header
goukon.ru: could not connect to host
gourmettia.com: did not receive HSTS header
-gouthro-goteborg.se: did not receive HSTS header
+gouthro-goteborg.se: could not connect to host
gouv.ovh: did not receive HSTS header
gov.ax: could not connect to host
goverage.org: could not connect to host
govillemo.ca: did not receive HSTS header
+gowin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+gowin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
gozadentro.com: could not connect to host
gozel.com.tr: did not receive HSTS header
gpalabs.com: could not connect to host
@@ -6245,6 +6954,7 @@ gparent.org: did not receive HSTS header
gpga.cf: could not connect to host
gplintegratedit.com: could not connect to host
gpo.gov: did not receive HSTS header
+gps.com.br: could not connect to host
gpstuner.com: did not receive HSTS header
graavaapi.elasticbeanstalk.com: could not connect to host
grabi.ga: could not connect to host
@@ -6258,21 +6968,24 @@ gradenotify.com: could not connect to host
grads360.org: could not connect to host
gradsm-ci.net: could not connect to host
grafitec.ru: did not receive HSTS header
+grafmurr.de: could not connect to host
graftworld.pw: could not connect to host
+grahamofthewheels.com: did not receive HSTS header
+grana.com: did not receive HSTS header
grandchamproofing.com: did not receive HSTS header
-grande.coffee: could not connect to host
grandlinecsk.ru: did not receive HSTS header
grandmascookieblog.com: did not receive HSTS header
grandmasfridge.org: did not receive HSTS header
grandwailea.com: did not receive HSTS header
+granian.pro: could not connect to host
grantedby.me: max-age too low: 0
granth.io: could not connect to host
graph.no: did not receive HSTS header
+graphified.nl: did not receive HSTS header
graphite.org.uk: could not connect to host
graphsearchengine.com: could not connect to host
gratis-app.com: did not receive HSTS header
gratisonlinesex.com: could not connect to host
-gravitation.pro: did not receive HSTS header
gravito.nl: did not receive HSTS header
gravity-net.de: could not connect to host
graycell.net: could not connect to host
@@ -6282,6 +6995,7 @@ great.nagoya: could not connect to host
greatergoodoffers.com: did not receive HSTS header
greatfire.kr: could not connect to host
greatideahub.com: did not receive HSTS header
+greatlengthshairextensionssalon.com: did not receive HSTS header
greatnet.de: did not receive HSTS header
greatsong.net: did not receive HSTS header
greencardtalent.com: could not connect to host
@@ -6299,6 +7013,8 @@ greenvpn.ltd: could not connect to host
greenvpn.pro: did not receive HSTS header
greggsfoundation.org.uk: could not connect to host
gregmartyn.com: could not connect to host
+gregmarziomedia.co.za: did not receive HSTS header
+gregmilton.org: could not connect to host
gregorytlee.me: could not connect to host
grekland.guide: could not connect to host
gremots.com: could not connect to host
@@ -6309,6 +7025,7 @@ grettogeek.com: did not receive HSTS header
greuel.online: could not connect to host
greve.xyz: could not connect to host
grevesgarten.de: could not connect to host
+greyhash.se: could not connect to host
greyline.se: could not connect to host
grian-bam.at: did not receive HSTS header
gribani.com: could not connect to host
@@ -6317,10 +7034,12 @@ gridle.io: did not receive HSTS header
grifomarchetti.com: did not receive HSTS header
grigalanzsoftware.com: could not connect to host
grillinfools.com: did not receive HSTS header
+gripnijmegen.rip: could not connect to host
gripopgriep.net: could not connect to host
gritte.net: could not connect to host
griyo.online: could not connect to host
groben-itsolutions.de: could not connect to host
+groenders.nl: could not connect to host
groenewoud.run: could not connect to host
groenteclub.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
groentefruitzeep.com: could not connect to host
@@ -6337,21 +7056,20 @@ grow-shop.lt: could not connect to host
grow-shop.lv: could not connect to host
growingmetrics.com: could not connect to host
grozip.com: did not receive HSTS header
-grozter.se: did not receive HSTS header
gruelang.org: could not connect to host
gruenderwoche-dresden.de: did not receive HSTS header
grumples.biz: did not receive HSTS header
grunex.com: did not receive HSTS header
grupopgn.com.br: could not connect to host
-grusig-geil.ch: could not connect to host
+gruppoipl.it: did not receive HSTS header
gryffin.ga: could not connect to host
gryffin.ml: could not connect to host
gryffin.tk: could not connect to host
+grytics.com: did not receive HSTS header
gs-net.at: could not connect to host
gsm-map.com: could not connect to host
gsmkungen.com: could not connect to host
gsnort.com: did not receive HSTS header
-gsoc.se: could not connect to host
gtamodshop.org: could not connect to host
gtanda.tk: could not connect to host
gtech.work: did not receive HSTS header
@@ -6365,7 +7083,6 @@ gudrun.ml: could not connect to host
guelphhydropool.com: could not connect to host
guendra.dedyn.io: could not connect to host
guentherhouse.com: did not receive HSTS header
-guenthernoack.de: could not connect to host
guffrits.com: could not connect to host
gugaltika-ipb.org: could not connect to host
guge.gq: could not connect to host
@@ -6377,17 +7094,16 @@ guidesetc.com: did not receive HSTS header
guilde-vindicta.fr: could not connect to host
guildgearscore.cf: could not connect to host
guillaume-leduc.fr: did not receive HSTS header
+guillaumecote.me: could not connect to host
guillaumematheron.fr: did not receive HSTS header
-guillaumeperrin.io: could not connect to host
guiltypleasuresroleplaying.com: did not receive HSTS header
-guinea-pig.co: could not connect to host
+guinea-pig.co: did not receive HSTS header
guineafruitcorp.com: could not connect to host
gulch.in.ua: could not connect to host
gulenet.com: could not connect to host
gulfcoast-sandbox.com: could not connect to host
gulitsky.me: could not connect to host
gulleyperformancecenter.com: did not receive HSTS header
-gulshankumar.net: did not receive HSTS header
gumannp.de: did not receive HSTS header
gummibande.noip.me: could not connect to host
gunhunter.com: could not connect to host
@@ -6396,6 +7112,7 @@ gunnarhafdal.com: did not receive HSTS header
gunnaro.com: could not connect to host
guntbert.net: could not connect to host
guoqiang.info: did not receive HSTS header
+guphi.net: did not receive HSTS header
gurochan.ch: could not connect to host
gurom.lv: could not connect to host
gurubetng.com: did not receive HSTS header
@@ -6409,6 +7126,7 @@ gussi.is: did not receive HSTS header
guthabenkarten-billiger.de: could not connect to host
guts.me: did not receive HSTS header
guts.moe: did not receive HSTS header
+guvernalternativa.ro: could not connect to host
guyot-tech.com: did not receive HSTS header
gvchannel.xyz: could not connect to host
gvi.be: did not receive HSTS header
@@ -6418,25 +7136,26 @@ gvt2.com: could not connect to host (error ignored - included regardless)
gvt3.com: could not connect to host (error ignored - included regardless)
gw2oracle.com: could not connect to host
gw2reload.eu: could not connect to host
-gwa-verwaltung.de: could not connect to host
gwijaya.com: could not connect to host
gwtest.us: could not connect to host
gxgx.org: could not connect to host
gxlrx.net: could not connect to host
gyboche.com: could not connect to host
gyboche.science: could not connect to host
+gycis.me: did not receive HSTS header
gylauto.fr: could not connect to host
-gymjp.com: did not receive HSTS header
gypsycatdreams.com: could not connect to host
gypthecat.com: did not receive HSTS header
gyz.io: did not receive HSTS header
+gzitech.com: could not connect to host
+gzitech.net: could not connect to host
+gzitech.org: could not connect to host
gzpblog.com: could not connect to host
h-og.com: could not connect to host
h-rickroll-n.pw: could not connect to host
h2cdn.cloud: could not connect to host
h2check.org: could not connect to host
h3x.jp: could not connect to host
-ha6.ru: could not connect to host
haarkliniek.com: did not receive HSTS header
habbixed.tk: could not connect to host
habbo.life: could not connect to host
@@ -6444,15 +7163,16 @@ habbotalk.nl: could not connect to host
habeo.si: could not connect to host
hablemosdetecnologia.com.ve: could not connect to host
hac30.com: could not connect to host
-hack.club: could not connect to host
+hack.cz: could not connect to host
hack.li: could not connect to host
+hackattack.com: did not receive HSTS header
hackbubble.me: could not connect to host
-hacker.club: could not connect to host
hacker.deals: could not connect to host
hacker8.cn: could not connect to host
hackercat.ninja: max-age too low: 2592000
-hackerforever.com: could not connect to host
-hackerlite.xyz: did not receive HSTS header
+hackerchai.com: could not connect to host
+hackerco.com: did not receive HSTS header
+hackerforever.com: did not receive HSTS header
hackerone-ext-adroll.com: could not connect to host
hackerspace-ntnu.no: did not receive HSTS header
hackest.org: did not receive HSTS header
@@ -6461,7 +7181,6 @@ hackit.im: could not connect to host
hackmeplz.com: could not connect to host
hackroyale.xyz: could not connect to host
hacksnack.io: could not connect to host
-hackthissite.org: could not connect to host
hackyourfaceoff.com: could not connect to host
hackzogtum-coburg.de: did not receive HSTS header
hadaf.pro: could not connect to host
@@ -6472,20 +7191,21 @@ haehnlein.at: could not connect to host
haemmerle.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
haf.gr: could not connect to host
hafoda.com: did not receive HSTS header
-haggeluring.su: could not connect to host
hahayidu.org: could not connect to host
hail2u.net: did not receive HSTS header
hainoni.com: did not receive HSTS header
-hairlossstop.net: did not receive HSTS header
+hairlossstop.net: could not connect to host
haitschi.com: could not connect to host
haitschi.de: did not receive HSTS header
haitschi.net: could not connect to host
haitschi.org: could not connect to host
+haizum.pro: could not connect to host
haktec.de: did not receive HSTS header
haku.moe: could not connect to host
hakugin.me: could not connect to host
hakugin.org: could not connect to host
hakurei.moe: could not connect to host
+hal-9th.space: could not connect to host
halcyonsbastion.com: could not connect to host
half-logic.eu.org: could not connect to host
halfwaythere.eu: could not connect to host
@@ -6499,7 +7219,6 @@ hamking.tk: could not connect to host
hammamsayad.com: could not connect to host
hamon.cc: did not receive HSTS header
hamu.blue: could not connect to host
-hanakaraku.com: could not connect to host
hancatemc.com: did not receive HSTS header
hancc.net: could not connect to host
handenafvanhetmedischdossier.nl: could not connect to host
@@ -6518,6 +7237,7 @@ hanksservice.com: could not connect to host
hannes-speelgoedencadeautjes.nl: did not receive HSTS header
hans-natur.de: did not receive HSTS header
hansch.ventures: could not connect to host
+hanxv.pw: did not receive HSTS header
hanys.xyz: could not connect to host
hanzcollection.online: could not connect to host
haobo111.com: could not connect to host
@@ -6529,8 +7249,10 @@ haobo5555.com: could not connect to host
haobo6666.com: could not connect to host
haobo7777.com: could not connect to host
haomwei.com: could not connect to host
-haoqi.men: could not connect to host
haoyugao.com: could not connect to host
+hapijs.cn: could not connect to host
+hapissl.com: could not connect to host
+hapivm.com: could not connect to host
happist.com: did not receive HSTS header
happix.nl: did not receive HSTS header
happyfabric.me: did not receive HSTS header
@@ -6539,20 +7261,20 @@ happyheartsabode.com: did not receive HSTS header
happytiger.eu: could not connect to host
hapsfordmill.co.uk: could not connect to host
hapvm.com: could not connect to host
-haqaza.com.br: did not receive HSTS header
+haqaza.com.br: could not connect to host
harambe.site: could not connect to host
-harbourweb.net: could not connect to host
-hardeman.nu: could not connect to host
+harbourweb.net: did not receive HSTS header
hardline.xyz: could not connect to host
hardtime.ru: could not connect to host
hardyboyplant.com: did not receive HSTS header
-harekaze.info: could not connect to host
haribosupermix.com: could not connect to host
hariome.com: did not receive HSTS header
+haritsa.co.id: could not connect to host
harlentimberproducts.co.uk: did not receive HSTS header
harmonycosmetic.com: max-age too low: 300
harrisonsdirect.co.uk: did not receive HSTS header
harristony.com: could not connect to host
+harry-baker.com: could not connect to host
harryharrison.co: did not receive HSTS header
harrypottereditor.com: could not connect to host
harrypottereditor.net: could not connect to host
@@ -6560,7 +7282,7 @@ harschnitz.nl: did not receive HSTS header
hartlep.eu: could not connect to host
hartmancpa.com: did not receive HSTS header
harvestrenewal.org: did not receive HSTS header
-harveymilton.com: did not receive HSTS header
+harveymilton.com: max-age too low: 0
harz.cloud: could not connect to host
has.vision: could not connect to host
hasabig.wang: could not connect to host
@@ -6569,7 +7291,6 @@ haschrebellen.de: could not connect to host
hash-list.com: could not connect to host
hashiconf.com: did not receive HSTS header
hashidays.com: did not receive HSTS header
-hashimah.ca: could not connect to host
hashplex.com: could not connect to host
hasinase.de: could not connect to host
haste.ch: could not connect to host
@@ -6579,16 +7300,16 @@ hatethe.uk: could not connect to host
hatoko.net: could not connect to host
haufschild.de: could not connect to host
haurumcraft.net: could not connect to host
-hausarzt-stader-str.de: did not receive HSTS header
+hausarzt-stader-str.de: could not connect to host
hauswarteam.com: could not connect to host
hav.com: could not connect to host
haveeruexaminer.com: could not connect to host
-haven-moon.com: could not connect to host
haven-staging.cloud: could not connect to host
haven.cloud: did not receive HSTS header
havenmoon.com: could not connect to host
havenswift-hosting.co.uk: did not receive HSTS header
hawk-la.com: could not connect to host
+hawkofgeorgia.com: could not connect to host
hawthornharpist.com: could not connect to host
haxoff.com: did not receive HSTS header
haxon.me: could not connect to host
@@ -6599,6 +7320,8 @@ hazcod.com: could not connect to host
haze-productions.com: could not connect to host
haze.network: did not receive HSTS header
haze.sucks: could not connect to host
+hazeltime.com: could not connect to host
+hazeltime.se: did not receive HSTS header
hazyrom.net: could not connect to host
hb1111.com: could not connect to host
hb3333.com: could not connect to host
@@ -6622,10 +7345,9 @@ hcs-company.com: did not receive HSTS header
hcs-company.nl: did not receive HSTS header
hcstr.com: did not receive HSTS header
hd1tj.org: did not receive HSTS header
-hda.me: could not connect to host
+hda.me: did not receive HSTS header
hdm.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
hdrboundless.com: could not connect to host
-hdritalyphotos.com: did not receive HSTS header
hdserver.info: did not receive HSTS header
hdsmigrationtool.com: could not connect to host
hduin.xyz: could not connect to host
@@ -6634,20 +7356,24 @@ hdy.nz: could not connect to host
head-shop.lt: could not connect to host
head-shop.lv: could not connect to host
headmates.xyz: could not connect to host
+health-match.com.au: could not connect to host
healthcare6.com: did not receive HSTS header
healthjoy.com: did not receive HSTS header
+healthlabs.com: did not receive HSTS header
+healthmatchapp.com: could not connect to host
healthyandnaturalliving.com: could not connect to host
healthycod.in: could not connect to host
-healtious.com: could not connect to host
+healtious.com: did not receive HSTS header
hearingshofar.com: could not connect to host
-heart.ge: did not receive HSTS header
+heart.ge: could not connect to host
heartlandrentals.com: did not receive HSTS header
+heartsucker.com: could not connect to host
hearty.cf: did not receive HSTS header
hearty.ink: could not connect to host
hearty.space: could not connect to host
hearty.tech: could not connect to host
-hearty.tw: did not receive HSTS header
heartyapp.com: could not connect to host
+heartyapp.tw: could not connect to host
heartyme.net: could not connect to host
heathmanners.com: could not connect to host
heavenlyseals.com: could not connect to host
@@ -6655,13 +7381,17 @@ heavenlysmokenc.com: could not connect to host
heavystresser.com: could not connect to host
heayao.com: could not connect to host
hebaus.com: could not connect to host
+hebriff.com: could not connect to host
hectorj.net: could not connect to host
hedweb.com: could not connect to host
+heeler.blue: could not connect to host
+heeler.red: could not connect to host
heidilein.info: did not receive HSTS header
heimnetze.org: could not connect to host
heisenberg.co: could not connect to host
hejsupport.se: could not connect to host
hekeki.com: could not connect to host
+helber-it-services.de: could not connect to host
hele.cz: did not receive HSTS header
helgakristoffer.com: could not connect to host
helgakristoffer.wedding: could not connect to host
@@ -6671,11 +7401,11 @@ hellenicaward.com: did not receive HSTS header
hello-nestor.com: did not receive HSTS header
helloanselm.com: did not receive HSTS header
hellofilters.com: could not connect to host
-hellomouse.cf: could not connect to host
+hellomouse.cf: did not receive HSTS header
+hellomouse.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
hellomouse.tk: could not connect to host
hellotandem.com: could not connect to host
hellothought.net: could not connect to host
-helloworldhost.com: did not receive HSTS header
hellscanyonraft.com: did not receive HSTS header
helpadmin.net: could not connect to host
helpantiaging.com: could not connect to host
@@ -6686,25 +7416,27 @@ helpfixe.com: did not receive HSTS header
helpflux.com: did not receive HSTS header
helpfute.com: did not receive HSTS header
helpgerer.com: did not receive HSTS header
-helpium.de: could not connect to host
+helpium.de: did not receive HSTS header
helpmebuild.com: did not receive HSTS header
helppresta.com: did not receive HSTS header
helpverif.com: did not receive HSTS header
helpwithmybank.gov: did not receive HSTS header
helsingfors.guide: could not connect to host
+helup.com: did not receive HSTS header
hemlockhillscabinrentals.com: did not receive HSTS header
hencagon.com: could not connect to host
hendersonrealestatepros.com: did not receive HSTS header
-hendric.us: did not receive HSTS header
henhenlu.com: could not connect to host
+henkbrink.com: did not receive HSTS header
henningkerstan.org: did not receive HSTS header
henriknoerr.com: could not connect to host
+henrock.net: could not connect to host
hentai.design: did not receive HSTS header
hentaimaster.net: could not connect to host
hentaiz.net: could not connect to host
hepteract.us: could not connect to host
heptner24.de: could not connect to host
-her25.com: did not receive HSTS header
+herbandpat.org: could not connect to host
herbertmouwen.nl: could not connect to host
here.ml: could not connect to host
here4funpartysolutions.ie: did not receive HSTS header
@@ -6712,27 +7444,28 @@ heribe-maruo.com: did not receive HSTS header
heritagedentistry.ca: did not receive HSTS header
hermes-servizi.it: could not connect to host
heroin.org.uk: could not connect to host
-herpaderp.net: did not receive HSTS header
+herpaderp.net: could not connect to host
+herr-webdesign.de: could not connect to host
herramientasbazarot.com: did not receive HSTS header
herrenfahrt.com: did not receive HSTS header
+herrtxbias.org: could not connect to host
hetmeisjeachterpauw.nl: could not connect to host
hetmer.com: did not receive HSTS header
hetmer.cz: did not receive HSTS header
-hetmer.net: did not receive HSTS header
+hetmer.net: could not connect to host
heutger.net: did not receive HSTS header
-heverhagen.rocks: could not connect to host
hex2013.com: did not receive HSTS header
hexacon.io: could not connect to host
hexadecimal.tech: could not connect to host
hexe.net: did not receive HSTS header
hexhu.com: could not connect to host
-hexo.io: did not receive HSTS header
hexobind.com: could not connect to host
-hexstream.net: did not receive HSTS header
+heyfringe.com: could not connect to host
heyguevara.com: did not receive HSTS header
+heyjournal.com: could not connect to host
heywoodtown.co.uk: did not receive HSTS header
hfbg.nl: did not receive HSTS header
-hfcbank.com.gh: could not connect to host
+hfcbank.com.gh: did not receive HSTS header
hfi.me: did not receive HSTS header
hflsdev.org: could not connect to host
hfu.io: could not connect to host
@@ -6740,6 +7473,7 @@ hg525.com: max-age too low: 86400
hg71839.com: could not connect to host
hg881.com: could not connect to host
hgfa.fi: could not connect to host
+hgvnet.de: could not connect to host
hi808.net: did not receive HSTS header
hialatv.com: could not connect to host
hibilog.com: could not connect to host
@@ -6751,9 +7485,10 @@ hidedd.com: could not connect to host
hideftv.deals: could not connect to host
hideout.agency: could not connect to host
hidrofire.com: did not receive HSTS header
-hiexmerida-mailing.com: did not receive HSTS header
+hiexmerida-mailing.com: could not connect to host
hig.gov: could not connect to host
highgrove.org.uk: could not connect to host
+highland-webcams.com: could not connect to host
highlandparkcog.org: did not receive HSTS header
highperformancehvac.com: did not receive HSTS header
highseer.com: did not receive HSTS header
@@ -6765,12 +7500,11 @@ highvelocitydesign.com: could not connect to host
higp.de: did not receive HSTS header
hiisukun.com: could not connect to host
hiitcentre.com: did not receive HSTS header
-hijoan.com: could not connect to host
hik-cloud.com: did not receive HSTS header
hikagestudios.com: did not receive HSTS header
hikariempire.com: could not connect to host
-hikinggearlab.com: did not receive HSTS header
hilaolu.com: could not connect to host
+hilaolu.studio: did not receive HSTS header
hilariousbeer.com.mx: could not connect to host
hilinemerchandising.com: did not receive HSTS header
hill.selfip.net: could not connect to host
@@ -6784,30 +7518,35 @@ hinkel-sohn.de: did not receive HSTS header
hinrich.de: did not receive HSTS header
hintergedanken.com: could not connect to host
hintermeier-rae.at: did not receive HSTS header
+hiojbk.com: could not connect to host
hipercultura.com: did not receive HSTS header
-hiphop.ren: could not connect to host
hiphopconvention.nl: could not connect to host
+hipi.jp: could not connect to host
hipnos.net: did not receive HSTS header
hipnoseinstitute.org: did not receive HSTS header
hiraku.me: did not receive HSTS header
+hirefitness.co.uk: did not receive HSTS header
hireprofs.com: could not connect to host
hiresuccessstaffing.com: did not receive HSTS header
hiretech.com: did not receive HSTS header
hirevets.gov: did not receive HSTS header
hirokilog.com: could not connect to host
hisingenrunt.se: did not receive HSTS header
+hisnet.de: could not connect to host
histoire-theatre.com: did not receive HSTS header
history.pe: could not connect to host
hitchunion.org: could not connect to host
-hitoy.org: did not receive HSTS header
+hitoy.org: could not connect to host
+hitrek.ml: could not connect to host
hittipps.com: could not connect to host
hivatal-info.hu: could not connect to host
-hiyuki2578.net: could not connect to host
+hj2999.com: did not receive HSTS header
hjes.com.ve: could not connect to host
hjf-immobilien.de: did not receive HSTS header
hjkhs.cn: did not receive HSTS header
hknet.at: did not receive HSTS header
hlacosedora.com: max-age too low: 7889238
+hloe0xff.ru: could not connect to host
hlpublicidad.com: could not connect to host
hlyue.com: did not receive HSTS header
hm1ch.com: could not connect to host
@@ -6819,20 +7558,19 @@ hobaugh.social: could not connect to host
hobby-gamerz-community.de: did not receive HSTS header
hocassian.cn: did not receive HSTS header
hochzeitshelferlein.de: did not receive HSTS header
+hockey.academy: did not receive HSTS header
hodamakade.com: could not connect to host
hodne.io: could not connect to host
hoekwoningverkopen.nl: could not connect to host
hoelty.network: could not connect to host
hoerbuecher-und-hoerspiele.de: could not connect to host
-hoeveiligismijn.nl: did not receive HSTS header
hoffens.se: could not connect to host
hofiprojekt.cz: did not receive HSTS header
hogar123.es: could not connect to host
+hogepad.com: could not connect to host
hoiku-map.tokyo: could not connect to host
hoiku-navi.com: did not receive HSTS header
-hoikuen-now.top: did not receive HSTS header
hokepon.com: did not receive HSTS header
-hokioisecurity.com: did not receive HSTS header
holgerlehner.com: could not connect to host
holidayincotswolds.co.uk: could not connect to host
holifestival-freyung.de: could not connect to host
@@ -6851,15 +7589,19 @@ home-craft.de: could not connect to host
home-v.ind.in: could not connect to host
home-work-jobs.com: did not receive HSTS header
homeandyarddetailing.com: could not connect to host
+homecarpetcleaning.co.uk: could not connect to host
homeclouding.de: could not connect to host
homecoming.city: could not connect to host
homedna.com: did not receive HSTS header
homeexx.com: did not receive HSTS header
+homehunting.pt: did not receive HSTS header
+homeoesp.org: did not receive HSTS header
homeownersassociationmanagementla.com: did not receive HSTS header
homeremodelingcontractorsca.com: did not receive HSTS header
homesandal.com: did not receive HSTS header
homeseller.co.uk: could not connect to host
homesfordinner.ca: could not connect to host
+homestay.id: did not receive HSTS header
homeyantra.com: did not receive HSTS header
homezhi.com.tw: could not connect to host
homoglyph.net: could not connect to host
@@ -6871,7 +7613,7 @@ hongzu.cc: could not connect to host
hongzuwang.com: could not connect to host
hongzuzhibo.com: could not connect to host
honkhonk.net: could not connect to host
-honkion.net: could not connect to host
+honoka.tech: could not connect to host
honoo.com: could not connect to host
hoodiecrow.com: could not connect to host
hoodoo.io: could not connect to host
@@ -6879,21 +7621,19 @@ hoodoo.tech: could not connect to host
hookandloom.com: did not receive HSTS header
hookbin.com: could not connect to host
hoopsacademyusa.com: could not connect to host
-hooray.beer: could not connect to host
-hoovism.com: did not receive HSTS header
hopesb.org: did not receive HSTS header
hopewellproperties.co.uk: did not receive HSTS header
hopglass.eu: could not connect to host
hopglass.net: could not connect to host
-hoponmedia.de: could not connect to host
hopzone.net: could not connect to host
horace.li: did not receive HSTS header
+horackova.info: could not connect to host
horisonttimedia.fi: did not receive HSTS header
horizonmoto.fr: did not receive HSTS header
+horkel.cf: could not connect to host
horning.co: did not receive HSTS header
horosho.in: could not connect to host
horrendous-servers.com: could not connect to host
-horror-forum.de: could not connect to host
horrorserv.com: could not connect to host
horseboners.xxx: could not connect to host
hortifarm.ro: did not receive HSTS header
@@ -6911,7 +7651,6 @@ hostinaus.com.au: did not receive HSTS header
hostingfirst.nl: could not connect to host
hostingfj.com: could not connect to host
hostisan.com: could not connect to host
-hostworkz.com: could not connect to host
hosyaku.gr.jp: did not receive HSTS header
hot-spa.ch: did not receive HSTS header
hotartup.com: could not connect to host
@@ -6921,9 +7660,11 @@ hotel-huberhof.at: did not receive HSTS header
hotel-tongruben.de: max-age too low: 0
hotelaustria-wien.at: did not receive HSTS header
hotelmadhuwanvihar.com: could not connect to host
-hotelvictoriaoax-mailing.com: did not receive HSTS header
-hotelvillahermosa-mailing.com: did not receive HSTS header
+hotelvictoriaoax-mailing.com: could not connect to host
+hotelvillahermosa-mailing.com: could not connect to host
hotelvue.nl: could not connect to host
+hotesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hotesb.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
hotjuice.com: could not connect to host
hotornot.com: could not connect to host
hotpoint-training.com: did not receive HSTS header
@@ -6938,11 +7679,12 @@ howfargames.com: could not connect to host
howrandom.org: could not connect to host
howtocuremysciatica.com: could not connect to host
howtofreelance.com: did not receive HSTS header
+howtoinstall.co: did not receive HSTS header
hozinga.de: could not connect to host
hpctecnologias.com: did not receive HSTS header
hpeditor.tk: could not connect to host
-hpepub.asia: did not receive HSTS header
-hpepub.org: could not connect to host
+hpepub.asia: could not connect to host
+hpepub.org: did not receive HSTS header
hppub.info: could not connect to host
hppub.org: could not connect to host
hppub.site: could not connect to host
@@ -6954,8 +7696,11 @@ hr-tech.store: could not connect to host
hr98.tk: could not connect to host
hrackydomino.cz: did not receive HSTS header
hrfhomelottery.com: did not receive HSTS header
+hrk.io: did not receive HSTS header
+hrobert.hu: could not connect to host
hrtech.store: could not connect to host
hrtraining.com.au: did not receive HSTS header
+hru.gov: could not connect to host
hschen.top: could not connect to host
hserver.top: could not connect to host
hsir.me: could not connect to host
@@ -6972,37 +7717,47 @@ https.ps: could not connect to host
https.ren: could not connect to host
httpstatuscode418.xyz: could not connect to host
httptest.net: could not connect to host
-hu8hu8.com: could not connect to host
-huang-haitao.com: did not receive HSTS header
+hua-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hua-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hua-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hua-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
huang.nu: could not connect to host
huangguancq.com: could not connect to host
huangh.com: could not connect to host
+huangting.me: did not receive HSTS header
huangzenghao.com: could not connect to host
huarongdao.com: did not receive HSTS header
+huaxueba.com: could not connect to host
hubert.systems: did not receive HSTS header
-hubertmoszka.pl: could not connect to host
+hubertmoszka.pl: max-age too low: 0
+hubrecht.at: could not connect to host
hubrick.com: could not connect to host
hudhaifahgoga.co.za: could not connect to host
hudingyuan.cn: could not connect to host
hugocollignon.fr: could not connect to host
+hui-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hui-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+huihui.moe: did not receive HSTS header
huiser.nl: could not connect to host
hukaloh.com: could not connect to host
hukkatavara.com: could not connect to host
+hulsoft.co.uk: could not connect to host
humanexperiments.com: could not connect to host
+humankode.com: did not receive HSTS header
+humblebee.es: could not connect to host
humblefinances.com: could not connect to host
humeurs.net: could not connect to host
-humorce.com: did not receive HSTS header
humortuga.pt: did not receive HSTS header
hump.dk: could not connect to host
humpi.at: could not connect to host
humpteedumptee.in: did not receive HSTS header
-hunger.im: could not connect to host
hunqz.com: could not connect to host
-huntshomeinspections.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hunter-read.com: could not connect to host
huodongweb.com: could not connect to host
huoduan.com: did not receive HSTS header
huongquynh.com: could not connect to host
hup.blue: could not connect to host
+hurricanelabs.com: did not receive HSTS header
huskybutt.dog: could not connect to host
huskyduvercors.com: did not receive HSTS header
hustle.com: did not receive HSTS header
@@ -7010,32 +7765,34 @@ hustle.life: did not receive HSTS header
huwjones.me: could not connect to host
huzu.com: did not receive HSTS header
huzurmetal.net: could not connect to host
-hwcine.com: did not receive HSTS header
+hwcine.com: could not connect to host
hwpkasse.de: max-age too low: 2592000
hyakumachi.com: did not receive HSTS header
hyatt.com: did not receive HSTS header
hybridiyhdistys.fi: could not connect to host
hybridklubben.fi: could not connect to host
+hybridragon.net: could not connect to host
hybula.nl: could not connect to host
hydai.co: could not connect to host
hydra.ws: could not connect to host
hydra.zone: could not connect to host
hydrabit.nl: did not receive HSTS header
hydrante.ch: could not connect to host
+hydrocloud.net: could not connect to host
hydrodipcenter.nl: did not receive HSTS header
hydronium.cf: could not connect to host
hydronium.ga: could not connect to host
hydronium.me: could not connect to host
hydronium.ml: could not connect to host
hydronium.tk: could not connect to host
-hydronyx.me: could not connect to host
+hydronyx.me: did not receive HSTS header
hydrosight.com: did not receive HSTS header
hyeok.org: did not receive HSTS header
+hylians.com: could not connect to host
hymerscollege.co.uk: max-age too low: 43200
hypa.net.au: did not receive HSTS header
hyper-matrix.org: could not connect to host
hyper69.com: could not connect to host
-hyperactive.am: could not connect to host
hyperporn.net: could not connect to host
hyperreal.info: could not connect to host
hypnoresults.com.au: did not receive HSTS header
@@ -7044,7 +7801,6 @@ hypotheques24.ch: could not connect to host
hysg.me: could not connect to host
hyvive.com: could not connect to host
hzh.pub: did not receive HSTS header
-hztgzz.com: could not connect to host
i--b.com: did not receive HSTS header
i-jp.net: could not connect to host
i-partners.sk: could not connect to host
@@ -7054,20 +7810,21 @@ i10z.com: could not connect to host
i28s.com: did not receive HSTS header
i496.eu: could not connect to host
i4m1k0su.com: could not connect to host
-i95.me: could not connect to host
i9multiequipamentos.com.br: did not receive HSTS header
ia1000.com: could not connect to host
-iacono.com.br: did not receive HSTS header
iadttaveras.com: could not connect to host
iain.tech: did not receive HSTS header
iamokay.nl: did not receive HSTS header
iamreubin.co.uk: did not receive HSTS header
iamsoareyou.se: could not connect to host
iamveto.com: did not receive HSTS header
+ian.sh: did not receive HSTS header
+ianvisits.co.uk: did not receive HSTS header
iapws.com: did not receive HSTS header
iban.is: could not connect to host
ibarf.nl: did not receive HSTS header
ibase.com: did not receive HSTS header
+ibeep.com: could not connect to host
ibenchu.com: did not receive HSTS header
ibestreview.com: did not receive HSTS header
ibizatopcharter.com: did not receive HSTS header
@@ -7075,11 +7832,13 @@ ibna.online: could not connect to host
ibnuwebhost.com: could not connect to host
ibnw.de: did not receive HSTS header
ibox.ovh: did not receive HSTS header
+ibpegasus.tk: could not connect to host
ibps.blog: did not receive HSTS header
ibpsrecruitment.co.in: could not connect to host
ibron.co: could not connect to host
ibsafrica.co.za: could not connect to host
ibsglobal.co.za: could not connect to host
+icabanken.se: did not receive HSTS header
icaforsakring.se: did not receive HSTS header
icasnetwork.com: did not receive HSTS header
ice.yt: could not connect to host
@@ -7092,18 +7851,20 @@ icepink.com.br: could not connect to host
icewoman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
icfl.com.br: could not connect to host
ich-find-den-g.net: could not connect to host
+ich-hab-die-schnauze-voll-von-der-suche-nach-ner-kurzen-domain.de: could not connect to host
ich-mach-druck.eu: did not receive HSTS header
ichnichtskaufmann.de: could not connect to host
ichoosebtec.com: did not receive HSTS header
ichronos.net: did not receive HSTS header
icity.ly: did not receive HSTS header
+ickerseashop.com: could not connect to host
icloud.net: could not connect to host
-icmshoptrend.com: did not receive HSTS header
icnsoft.ga: did not receive HSTS header
+icnsoft.me: did not receive HSTS header
+icnsoft.org: could not connect to host
icntorrent.download: could not connect to host
ico500.com: did not receive HSTS header
-icondoom.nl: did not receive HSTS header
-icowhitepapers.co: did not receive HSTS header
+icondoom.nl: could not connect to host
icpc2016.in.th: could not connect to host
icreative.nl: did not receive HSTS header
ictinforensics.org: could not connect to host
@@ -7124,15 +7885,14 @@ idealmykonos.com: did not receive HSTS header
idealvenir.com: did not receive HSTS header
ideapaisajistas.es: did not receive HSTS header
ideaplus.me: could not connect to host
-ideasenfoto.com: max-age too low: 604800
ideasmeetingpoint.com: could not connect to host
ideation-inc.co.jp: could not connect to host
idedr.com: could not connect to host
+ideiasefinancas.com.br: could not connect to host
idemo.in: could not connect to host
identity-hash.online: could not connect to host
identitylabs.uk: could not connect to host
identitysandbox.gov: could not connect to host
-identitytheft.gov: did not receive HSTS header
idgsupply.com: did not receive HSTS header
idid.tk: could not connect to host
idinby.dk: did not receive HSTS header
@@ -7152,6 +7912,7 @@ ievgenialehner.com: did not receive HSTS header
iexpert9.com: did not receive HSTS header
if0.ru: could not connect to host
ifad.org: did not receive HSTS header
+ifamily.top: did not receive HSTS header
ifan.ch: could not connect to host
ifastuniversity.com: did not receive HSTS header
ifcfg.me: could not connect to host
@@ -7161,17 +7922,18 @@ ifreetion.cn: did not receive HSTS header
ifx.ee: could not connect to host
ifxnet.com: could not connect to host
ifxor.com: could not connect to host
-iga-semi.jp: could not connect to host
igamingforums.com: could not connect to host
-igd.chat: did not receive HSTS header
+igaryhe.io: did not receive HSTS header
+igd.chat: could not connect to host
igforums.com: could not connect to host
igi.codes: did not receive HSTS header
igiftcards.nl: did not receive HSTS header
ignatisd.gr: did not receive HSTS header
igule.net: could not connect to host
iha6.com: could not connect to host
+ihc.im: did not receive HSTS header
+ihls.xyz: did not receive HSTS header
ihongzu.com: could not connect to host
-ihotel.io: did not receive HSTS header
ihrlotto.de: could not connect to host
ihrnationalrat.ch: could not connect to host
ihsbsd.me: could not connect to host
@@ -7183,46 +7945,43 @@ iilin.com: did not receive HSTS header
iispeed.com: did not receive HSTS header
ijn-dd.nl: could not connect to host
ijoda.com: could not connect to host
-ik-life.com: did not receive HSTS header
-ike.io: did not receive HSTS header
+ike.io: could not connect to host
ikenmeyer.com: could not connect to host
ikenmeyer.eu: could not connect to host
ikocik.sk: could not connect to host
ikon.name: could not connect to host
-ikraenglish.com: could not connect to host
+ikudo.top: could not connect to host
ikwilguidobellen.nl: could not connect to host
ikzoekeengoedkopeauto.nl: could not connect to host
ikzoekjeugdhulp.nl: did not receive HSTS header
ilbuongiorno.it: did not receive HSTS header
ildomani.it: did not receive HSTS header
ileat.com: could not connect to host
+ilemonrain.com: could not connect to host
ilgi.work: could not connect to host
ilii.me: could not connect to host
-ilikerainbows.co: could not connect to host
+ilikerainbows.co: did not receive HSTS header
ilikerainbows.co.uk: could not connect to host
ilikfreshweedstores.com: did not receive HSTS header
ilmconpm.de: could not connect to host
iloilofit.org: did not receive HSTS header
ilona.graphics: did not receive HSTS header
-iltec-prom.ru: could not connect to host
-iltec.ru: could not connect to host
+iltisim.ch: did not receive HSTS header
iluvscotland.co.uk: did not receive HSTS header
im-design.com.ua: did not receive HSTS header
+imadalin.ro: could not connect to host
image.tf: could not connect to host
imagecurl.com: could not connect to host
imagecurl.org: could not connect to host
imaginarymakings.me: could not connect to host
imakepoems.net: could not connect to host
imanhearts.com: did not receive HSTS header
-imanolbarba.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
imanudin.net: did not receive HSTS header
imbrian.org: could not connect to host
-ime.moe: could not connect to host
imed.com.pt: did not receive HSTS header
imed.pt: did not receive HSTS header
imedi.it: could not connect to host
imfromthefuture.com: did not receive HSTS header
-img.ovh: could not connect to host
imgencrypt.com: could not connect to host
imgul.net: could not connect to host
imguoguo.com: could not connect to host
@@ -7236,6 +7995,7 @@ immanuel60.hu: did not receive HSTS header
immaternity.com: could not connect to host
immersionwealth.com: could not connect to host
immo-vk.de: did not receive HSTS header
+immobiliarecapitani.com: did not receive HSTS header
immobilien-wallat.de: could not connect to host
immoprotect.ca: did not receive HSTS header
immortals-co.com: did not receive HSTS header
@@ -7249,7 +8009,7 @@ immunicity.info: could not connect to host
immunicity.online: could not connect to host
immunicity.press: could not connect to host
immunicity.rocks: could not connect to host
-immunicity.st: did not receive HSTS header
+immunicity.st: could not connect to host
immunicity.today: could not connect to host
immunicity.top: could not connect to host
immunicity.win: could not connect to host
@@ -7264,7 +8024,6 @@ imoto.me: could not connect to host
imperdintechnologies.com: could not connect to host
imperialonlinestore.com: did not receive HSTS header
imperialwebsolutions.com: did not receive HSTS header
-implicitdenial.com: could not connect to host
imprenta-es.com: did not receive HSTS header
improvingwp.com: could not connect to host
impulse-clan.de: could not connect to host
@@ -7278,16 +8037,23 @@ inbox.li: did not receive HSTS header
inboxen.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
incendiary-arts.com: could not connect to host
inceptionradionetwork.com: could not connect to host
+incestporn.tv: could not connect to host
inchomatic.com: did not receive HSTS header
+incompliance.de: did not receive HSTS header
increasetestosteronelevels.org: could not connect to host
inderagamono.net: could not connect to host
indesit-training.com: did not receive HSTS header
+indexyz.me: could not connect to host
+indianaantlersupply.com: could not connect to host
+indiawise.co.uk: could not connect to host
indiecert.net: did not receive HSTS header
indieethos.com: did not receive HSTS header
indiemods.com: could not connect to host
indien.guide: could not connect to host
indilens.com: did not receive HSTS header
+indiraactive.com: could not connect to host
indiroyunu.com: did not receive HSTS header
+indochina.io: could not connect to host
indoorskiassen.nl: did not receive HSTS header
indostar303.com: did not receive HSTS header
indredouglas.me: could not connect to host
@@ -7296,6 +8062,7 @@ industreiler.com.br: could not connect to host
industriasrenova.com: could not connect to host
industrybazar.com: max-age too low: 2592000
ineed.com.mt: could not connect to host
+inetpub.cn: could not connect to host
inexlog.fr: could not connect to host
inexpensivecomputers.net: could not connect to host
infcof.com: did not receive HSTS header
@@ -7325,13 +8092,14 @@ infos-generation.com: did not receive HSTS header
infosec.rip: could not connect to host
infosoph.org: could not connect to host
infotics.es: did not receive HSTS header
-infovae-idf.com: did not receive HSTS header
+infovae-idf.com: could not connect to host
infoworm.org: could not connect to host
infradio.am: could not connect to host
infranix.eu: max-age too low: 7360000
-infrarank.com: could not connect to host
infruction.com: could not connect to host
infura.co.th: could not connect to host
+ing89.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ing89.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ingalabs.hu: could not connect to host
ingalls.run: could not connect to host
ingesol.fr: did not receive HSTS header
@@ -7351,12 +8119,12 @@ injust.tk: could not connect to host
inkbunny.net: could not connect to host
inked-guy.de: could not connect to host
inkedguy.de: could not connect to host
-inkhor.se: could not connect to host
inkstory.gr: did not receive HSTS header
inksupply.com: did not receive HSTS header
inku.ovh: did not receive HSTS header
inkvisual.tk: could not connect to host
inleaked.com: could not connect to host
+inme.ga: did not receive HSTS header
innerform.com: could not connect to host
innit.be: could not connect to host
innobatics.com: did not receive HSTS header
@@ -7364,10 +8132,10 @@ innophate-security.nl: could not connect to host
innovamag.ca: did not receive HSTS header
innovativebuildingsolutions.co.za: could not connect to host
innovativeideaz.org: could not connect to host
-innoventure.de: did not receive HSTS header
-inobun.jp: could not connect to host
+innoventure.de: could not connect to host
inondation.ch: could not connect to host
inorder.website: could not connect to host
+inovatec.com: did not receive HSTS header
inox.io: did not receive HSTS header
inoxio.com: did not receive HSTS header
inoxio.de: did not receive HSTS header
@@ -7377,10 +8145,10 @@ insane-bullets.com: could not connect to host
insane.zone: could not connect to host
inschrijfformulier.com: could not connect to host
inscript.pl: did not receive HSTS header
-insho.fashion: did not receive HSTS header
insideofgaming.de: could not connect to host
insite-feedback.com: could not connect to host
insouciant.org: could not connect to host
+inspirationalquotesuk.co.uk: could not connect to host
inspirationconcepts.nl: did not receive HSTS header
inspire-av.com: did not receive HSTS header
inspiroinc.com: could not connect to host
@@ -7392,23 +8160,28 @@ instantdev.io: could not connect to host
instantsubs.de: did not receive HSTS header
instaquiz.ru: could not connect to host
instasex.ch: could not connect to host
+instawi.com: could not connect to host
institutoflordelavida.com: could not connect to host
institutulcultural.ro: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
instruktor.io: could not connect to host
insurance: could not connect to host
insurethebox.tk: could not connect to host
int-ext-design.fr: could not connect to host
+int-ma.in: did not receive HSTS header
integrationinc.com: did not receive HSTS header
+integraxor.com.tw: did not receive HSTS header
integrityingovernmentidaho.com: could not connect to host
intel.gov: did not receive HSTS header
intel.li: could not connect to host
intelbet.es: did not receive HSTS header
intelbet.ro: did not receive HSTS header
+intelhost.net: max-age too low: 0
intelldynamics.com: could not connect to host
-intensifyrsvp.com.au: could not connect to host
+intelliance.eu: could not connect to host
interboursegeneva.ch: did not receive HSTS header
+interchanges.io: max-age too low: 0
interference.io: did not receive HSTS header
-interfug.de: did not receive HSTS header
+interfloraservices.co.uk: could not connect to host
intergenx.co.uk: could not connect to host
intergenx.com: could not connect to host
intergenx.org: could not connect to host
@@ -7416,7 +8189,6 @@ intergenx.org.uk: could not connect to host
interhosts.co.za: could not connect to host
interim-cto.de: could not connect to host
interiorcheapo.com: could not connect to host
-interiorprofesional.com.ar: max-age too low: 604800
interiortradingco.com.au: could not connect to host
interleucina.org: did not receive HSTS header
interlocal.co.uk: could not connect to host
@@ -7426,7 +8198,6 @@ intermezzo-emmerich.nl: did not receive HSTS header
internacao.com: did not receive HSTS header
internaldh.com: could not connect to host
internaut.co.za: did not receive HSTS header
-internet-pornografie.de: did not receive HSTS header
internetbugbounty.org: did not receive HSTS header
internetcasinos.de: could not connect to host
internetcensus.org: could not connect to host
@@ -7439,15 +8210,16 @@ intersectraven.net: did not receive HSTS header
interspot.nl: could not connect to host
interstellarhyperdrive.com: did not receive HSTS header
interviewpipeline.co.uk: could not connect to host
-intervisteperstrada.com: could not connect to host
+intervisteperstrada.com: did not receive HSTS header
intexplore.org: could not connect to host
intim-uslugi-kazan.net: could not connect to host
intimateperrierjouet.com: could not connect to host
intimici.com.br: could not connect to host
intimtoy.com.ua: could not connect to host
intranetsec.fr: could not connect to host
+intreaba.xyz: max-age too low: 2592000
introvertedtravel.space: max-age too low: 0
-intrp.net: could not connect to host
+intrp.net: did not receive HSTS header
invenio.software: could not connect to host
inverselink.com: could not connect to host
investcountry.com: could not connect to host
@@ -7467,9 +8239,9 @@ ioiart.eu: could not connect to host
iolife.dk: could not connect to host
ionas-law.ro: did not receive HSTS header
ionc.ca: could not connect to host
+ionote.me: did not receive HSTS header
iop.intuit.com: max-age too low: 86400
iora.fr: could not connect to host
-iosmods.com: did not receive HSTS header
iostips.ru: could not connect to host
iotfen.com: could not connect to host
iotsms.io: could not connect to host
@@ -7480,14 +8252,13 @@ ipbill.org.uk: could not connect to host
ipcfg.me: could not connect to host
ipfp.pl: did not receive HSTS header
iphonechina.net: could not connect to host
-iplantom.com: could not connect to host
+ipid.me: could not connect to host
iplife.cn: could not connect to host
iplog.info: could not connect to host
ipmimagazine.com: did not receive HSTS header
ipmotion.ca: could not connect to host
ipnetworking.net: could not connect to host
ipo-times.com: could not connect to host
-ipop.gr: did not receive HSTS header
iprice.co.id: did not receive HSTS header
iprice.hk: did not receive HSTS header
iprice.my: did not receive HSTS header
@@ -7495,7 +8266,7 @@ iprice.ph: did not receive HSTS header
iprice.sg: did not receive HSTS header
iprice.vn: did not receive HSTS header
ipricethailand.com: did not receive HSTS header
-iprody.com: did not receive HSTS header
+iprody.com: could not connect to host
ipsilon-project.org: did not receive HSTS header
iptel.ro: could not connect to host
ipuservicedesign.com: could not connect to host
@@ -7507,11 +8278,14 @@ ipvsec.nl: could not connect to host
iqcn.co: could not connect to host
iqualtech.com: max-age too low: 7889238
ir-saitama.com: could not connect to host
-iran-poll.org: could not connect to host
+iran-poll.org: max-age too low: 0
+irandp.net: did not receive HSTS header
iranianlawschool.com: could not connect to host
iraqidinar.org: did not receive HSTS header
-irazimina.ru: could not connect to host
+irasandi.com: could not connect to host
+irazimina.ru: did not receive HSTS header
irccloud.com: did not receive HSTS header
+iready.ro: could not connect to host
irelandesign.com: could not connect to host
irinkeby.nu: could not connect to host
irische-segenswuensche.info: could not connect to host
@@ -7522,6 +8296,7 @@ irmag.ru: did not receive HSTS header
irmtrudjurke.de: did not receive HSTS header
irodorinet.com: max-age too low: 0
iron-guard.net: did not receive HSTS header
+irondaleirregulars.com: did not receive HSTS header
irstaxforumsonline.com: did not receive HSTS header
irugs.ch: did not receive HSTS header
irugs.co.uk: did not receive HSTS header
@@ -7530,12 +8305,13 @@ irukandjilabs.com: could not connect to host
irun-telecom.co.uk: could not connect to host
irvinepa.org: max-age too low: 10540800
is-a-furry.org: did not receive HSTS header
+isaackabel.cf: could not connect to host
+isastylish.com: could not connect to host
ischool.co.jp: did not receive HSTS header
isdf.me: could not connect to host
isdown.cz: could not connect to host
isef-eg.com: did not receive HSTS header
iserv.fr: did not receive HSTS header
-iseulde.com: did not receive HSTS header
isfriday.com: could not connect to host
ishadowsocks.ltd: could not connect to host
ishillaryclintoninprisonyet.com: could not connect to host
@@ -7546,57 +8322,66 @@ isisfighters.info: could not connect to host
isitamor.pm: could not connect to host
isitnuclearwaryet.com: could not connect to host
iskai.net: did not receive HSTS header
-islam.si: could not connect to host
+iskkk.com: could not connect to host
+iskkk.net: could not connect to host
islandinthenet.com: did not receive HSTS header
islandoilsupply.com: max-age too low: 300
islandpumpandtank.com: did not receive HSTS header
islandzero.net: did not receive HSTS header
-islazia.fr: could not connect to host
+islazia.fr: did not receive HSTS header
+islief.com: could not connect to host
isntall.us: did not receive HSTS header
-isocom.eu: could not connect to host
isoface33.fr: did not receive HSTS header
isogen5.com: could not connect to host
isogram.nl: did not receive HSTS header
isoroc-nidzica.pl: could not connect to host
ispringcloud.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ispweb.es: did not receive HSTS header
+israkurort.com: could not connect to host
issala.org: did not receive HSTS header
isscouncil.com: could not connect to host
isslshop.com: could not connect to host
-istanbul.systems: could not connect to host
istanbultravelguide.info: could not connect to host
istaspirtslietas.lv: did not receive HSTS header
istgame.com: did not receive HSTS header
isthefieldcontrolsystemdown.com: could not connect to host
istherrienstillcoach.com: could not connect to host
isv.online: did not receive HSTS header
+isyu.xyz: could not connect to host
+iszy.me: could not connect to host
it-cave.com: could not connect to host
+it-enthusiasts.tech: could not connect to host
it-go.net: did not receive HSTS header
it-labor.info: did not receive HSTS header
it-schwerin.de: could not connect to host
-it-sysoft.com: could not connect to host
itad.top: could not connect to host
itbrief.co.nz: did not receive HSTS header
itbrief.com.au: did not receive HSTS header
itchimes.com: did not receive HSTS header
itchybrainscentral.com: could not connect to host
+itds-consulting.com: could not connect to host
+itds-consulting.cz: could not connect to host
+itds-consulting.eu: could not connect to host
itechgeek.com: max-age too low: 0
items.lv: did not receive HSTS header
itemton.com: could not connect to host
itfaq.nl: did not receive HSTS header
itfensi.net: max-age too low: 6307200
itforcc.com: did not receive HSTS header
+ithakama.com: could not connect to host
itilo.de: did not receive HSTS header
itinsight.hu: did not receive HSTS header
itiomassagem.com.br: did not receive HSTS header
itisjustnot.cricket: could not connect to host
itmanie.cz: could not connect to host
itnews-bg.com: could not connect to host
+itogoyomi.com: did not receive HSTS header
itos.asia: did not receive HSTS header
itos.pl: did not receive HSTS header
itpol.dk: did not receive HSTS header
itpro-mg.de: could not connect to host
itproject.guru: did not receive HSTS header
-itrack.in.th: could not connect to host
+itrack.in.th: did not receive HSTS header
itriskltd.com: did not receive HSTS header
its-schindler.de: could not connect to host
its-v.de: could not connect to host
@@ -7614,14 +8399,13 @@ ittop-gabon.com: could not connect to host
itu2015.de: could not connect to host
ius.io: did not receive HSTS header
iuscommunity.org: did not receive HSTS header
-ivanboi.com: could not connect to host
-ivanilla.org: could not connect to host
ivanpolchenko.com: could not connect to host
ivi-co.com: max-age too low: 0
ivi-fertility.com: max-age too low: 0
ivi.es: max-age too low: 0
ivk.website: could not connect to host
ivklombard.ru: did not receive HSTS header
+ivxv.ee: could not connect to host
ivyshop.com.br: could not connect to host
iwannarefill.com: could not connect to host
iwex.swiss: could not connect to host
@@ -7632,7 +8416,7 @@ iww.mx: could not connect to host
ix8.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ixec2.tk: could not connect to host
ixh.me: did not receive HSTS header
-iyinolaashafa.com: could not connect to host
+ixio.cz: could not connect to host
izdiwho.com: could not connect to host
izolight.ch: could not connect to host
izonemart.com: did not receive HSTS header
@@ -7643,20 +8427,24 @@ j-lsolutions.com: could not connect to host
j-rickroll-a.pw: could not connect to host
j0ng.xyz: could not connect to host
j15t98j.co.uk: did not receive HSTS header
+j2ee.cz: could not connect to host
j8y.de: did not receive HSTS header
+ja-publications.agency: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ja-publications.com: did not receive HSTS header
jaan.su: could not connect to host
jaaxypro.com: could not connect to host
+jability.ovh: did not receive HSTS header
jackalworks.com: could not connect to host
-jackdoan.com: did not receive HSTS header
+jackdoan.com: could not connect to host
jackfahnestock.com: could not connect to host
jackops.com: could not connect to host
+jackrusselterrier.com.br: could not connect to host
+jackyyf.com: could not connect to host
jacobparry.ca: max-age too low: 0
-jacobsenarquitetura.com: max-age too low: 5184000
-jadopado.com: could not connect to host
+jadara.info: could not connect to host
jaepinformatica.com: did not receive HSTS header
jagido.de: did not receive HSTS header
-jahliveradio.com: could not connect to host
+jahliveradio.com: did not receive HSTS header
jaimechanaga.com: could not connect to host
jaion.ml: could not connect to host
jak-na-les.cz: could not connect to host
@@ -7665,13 +8453,12 @@ jakewalker.xyz: did not receive HSTS header
jakincode.army: could not connect to host
jaksel.id: could not connect to host
jaksi.io: did not receive HSTS header
-jakubtopic.cz: could not connect to host
jamanji.com.ng: could not connect to host
jamaware.org: did not receive HSTS header
+jamberry.com.mx: could not connect to host
james-parker.com: did not receive HSTS header
james.je: could not connect to host
jamesandanneke.com: did not receive HSTS header
-jamesandpame.la: could not connect to host
jamesbradach.com: did not receive HSTS header
jamesburton.london: could not connect to host
jamesbywater.co.uk: could not connect to host
@@ -7688,11 +8475,12 @@ jamesf.xyz: could not connect to host
jamesforman.co.nz: did not receive HSTS header
jameshale.me: did not receive HSTS header
jamesheald.com: could not connect to host
-jamesl.ml: could not connect to host
+jamesl.ml: did not receive HSTS header
jamesmaurer.com: did not receive HSTS header
jamesrains.com: could not connect to host
jameswarp.com: could not connect to host
jami.am: max-age too low: 0
+jamie-read-photography.com: could not connect to host
jamourtney.com: could not connect to host
jamyeprice.com: did not receive HSTS header
jan-cermak.cz: did not receive HSTS header
@@ -7706,19 +8494,17 @@ janheidler.dynv6.net: could not connect to host
janhermann.cz: did not receive HSTS header
janking.de: could not connect to host
janmachynka.cz: could not connect to host
+janmg.com: could not connect to host
janosh.com: did not receive HSTS header
janssen.fm: could not connect to host
janus-engineering.de: did not receive HSTS header
-janvari.com: could not connect to host
-janvaribalint.com: could not connect to host
janverlaan.nl: did not receive HSTS header
jap-nope.de: did not receive HSTS header
-japan4you.org: could not connect to host
+japan4you.org: did not receive HSTS header
japanbaths.com: could not connect to host
japaneseemoticons.org: did not receive HSTS header
japanesenames.biz: did not receive HSTS header
japangids.nl: could not connect to host
-japanphilosophy.com: did not receive HSTS header
japansm.com: could not connect to host
japanwide.net: could not connect to host
japaripark.com: could not connect to host
@@ -7727,20 +8513,24 @@ japlex.com: could not connect to host
jaqen.ch: could not connect to host
jardins-utopie.net: could not connect to host
jaredbates.net: did not receive HSTS header
+jaredfraser.com: could not connect to host
+jarivisual.com: did not receive HSTS header
jarl.ninja: could not connect to host
jarnail.ca: could not connect to host
jaroslavtrsek.cz: did not receive HSTS header
jarrodcastaing.com: did not receive HSTS header
jarrodcastaing.com.au: did not receive HSTS header
-jarsater.com: could not connect to host
+jarsater.com: did not receive HSTS header
jartza.org: could not connect to host
jasmineconseil.com: did not receive HSTS header
jasoncosper.com: did not receive HSTS header
+jasonian-photo.com: could not connect to host
jasonradin.com: did not receive HSTS header
jasonrobinson.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jasonroe.me: did not receive HSTS header
jasonwindholz.com: could not connect to host
jastoria.pl: did not receive HSTS header
+jastrow.me: did not receive HSTS header
jateng.press: could not connect to host
jav-collective.com: could not connect to host
java-board.com: could not connect to host
@@ -7755,7 +8545,6 @@ jawn.ca: could not connect to host
jawnelodzkie.org.pl: could not connect to host
jaxageto.de: did not receive HSTS header
jayblock.com: did not receive HSTS header
-jayf.de: could not connect to host
jayharris.ca: could not connect to host
jaylen.com.ar: did not receive HSTS header
jayna.design: did not receive HSTS header
@@ -7766,7 +8555,7 @@ jazzinutrecht.info: could not connect to host
jballelectronics.com: did not receive HSTS header
jbelien.be: did not receive HSTS header
jbelien.photography: did not receive HSTS header
-jbfp.dk: could not connect to host
+jbfp.dk: did not receive HSTS header
jbj.co.uk: did not receive HSTS header
jbn.mx: could not connect to host
jbrowndesign.me: did not receive HSTS header
@@ -7779,7 +8568,7 @@ jcolideles.com: could not connect to host
jcom-communication-system.biz: could not connect to host
jcor.me: could not connect to host
jcoscia.com: could not connect to host
-jcraft.us: could not connect to host
+jcraft.us: did not receive HSTS header
jctf.io: could not connect to host
jcyz.cf: could not connect to host
jdav-leipzig.de: could not connect to host
@@ -7791,19 +8580,18 @@ jdsf.tk: did not receive HSTS header
jean-remy.ch: could not connect to host
jebengotai.com: did not receive HSTS header
jecho.cn: could not connect to host
-jeepeg.com: did not receive HSTS header
+jeepmafia.com: did not receive HSTS header
jeff.forsale: could not connect to host
jeff.is: did not receive HSTS header
jeff393.com: could not connect to host
jeffersonregan.org: could not connect to host
jeffhuxley.com: could not connect to host
jeffreymagee.com: did not receive HSTS header
-jehovahsays.net: could not connect to host
jeil-makes.co.kr: could not connect to host
-jekkt.com: max-age too low: 604800
jellow.nl: did not receive HSTS header
jemoticons.com: did not receive HSTS header
jenjoit.de: could not connect to host
+jennedebleser.com: did not receive HSTS header
jenniferchan.id.au: could not connect to host
jennifercherniack.com: did not receive HSTS header
jennybeaned.com: did not receive HSTS header
@@ -7814,9 +8602,9 @@ jenssen.org: did not receive HSTS header
jeremyc.ca: could not connect to host
jeremye77.com: did not receive HSTS header
jeremymade.com: did not receive HSTS header
-jeremyness.com: could not connect to host
jeremywagner.me: did not receive HSTS header
jermann.biz: did not receive HSTS header
+jeroenensanne.wedding: could not connect to host
jeroenvanderwal.nl: did not receive HSTS header
jeroldirvin.com: did not receive HSTS header
jerrypau.ca: could not connect to host
@@ -7825,8 +8613,11 @@ jessevictors.com: could not connect to host
jessicah.org: could not connect to host
jesuisformidable.nl: could not connect to host
jesuslucas.com: did not receive HSTS header
-jet-code.com: could not connect to host
+jet-code.com: did not receive HSTS header
+jetbrains.pw: could not connect to host
+jetflex.de: did not receive HSTS header
jetlagphotography.com: could not connect to host
+jetmirshatri.com: did not receive HSTS header
jeton.com: did not receive HSTS header
jetsetcharge.com: could not connect to host
jetsetpay.com: could not connect to host
@@ -7838,8 +8629,8 @@ jewellerydesignstore.com: could not connect to host
jewellerymarvels.com: did not receive HSTS header
jez.nl: could not connect to host
jfmel.com: did not receive HSTS header
-jfmhero.me: could not connect to host
-jfnllc.com: did not receive HSTS header
+jfnllc.com: could not connect to host
+jfr.im: did not receive HSTS header
jfx.space: did not receive HSTS header
jh-media.eu: could not connect to host
jhburton.co.uk: could not connect to host
@@ -7847,6 +8638,7 @@ jhburton.uk: could not connect to host
jhcommunitysports.co.uk: could not connect to host
jhejderup.me: could not connect to host
jhermsmeier.de: could not connect to host
+jhw-profiles.de: did not receive HSTS header
jia1hao.com: could not connect to host
jiaidu.com: could not connect to host
jiangzequn.com: could not connect to host
@@ -7862,8 +8654,10 @@ jimas.eu: did not receive HSTS header
jimenacocina.com: did not receive HSTS header
jimgao.tk: did not receive HSTS header
jimmehcai.com: could not connect to host
-jimmycai.org: could not connect to host
jimmynelson.com: did not receive HSTS header
+jinancy.fr: could not connect to host
+jing-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+jing-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jingyuesi.com: could not connect to host
jinliming.ml: could not connect to host
jinmaguoji.com: could not connect to host
@@ -7873,6 +8667,7 @@ jirav.io: could not connect to host
jisaku-homepage.com: did not receive HSTS header
jitlab.org: could not connect to host
jitsi.org: did not receive HSTS header
+jiveiaktivno.bg: did not receive HSTS header
jiyue.com: did not receive HSTS header
jiyuu-ni.com: could not connect to host
jiyuu-ni.net: could not connect to host
@@ -7880,15 +8675,17 @@ jjf.org.au: did not receive HSTS header
jka.io: did not receive HSTS header
jkb.pics: could not connect to host
jkbuster.com: could not connect to host
+jkinteriorspa.com: could not connect to host
jkng.eu: could not connect to host
jko.works: could not connect to host
jkuvw.xyz: could not connect to host
+jldp.org: did not receive HSTS header
jlhmedia.com: did not receive HSTS header
jm06.com: did not receive HSTS header
jm22.com: could not connect to host
jmb.lc: could not connect to host
-jmdekker.it: could not connect to host
-jmssg.jp: could not connect to host
+jmotion.co.uk: did not receive HSTS header
+jmpmotorsport.co.uk: did not receive HSTS header
jmvbmx.ch: could not connect to host
jn1.me: did not receive HSTS header
jncde.de: did not receive HSTS header
@@ -7897,10 +8694,10 @@ jncie.eu: did not receive HSTS header
jncip.de: did not receive HSTS header
joakimalgroy.com: could not connect to host
joaquimgoliveira.pt: could not connect to host
-job-offer.de: could not connect to host
jobers.ch: did not receive HSTS header
jobers.pt: did not receive HSTS header
jobflyapp.com: could not connect to host
+joblab.com.ua: did not receive HSTS header
jobmedic.com: could not connect to host
jobshq.com: did not receive HSTS header
jobss.co.uk: did not receive HSTS header
@@ -7914,10 +8711,11 @@ jodel.ninja: could not connect to host
joe-pagan.com: did not receive HSTS header
joearodriguez.com: could not connect to host
joecod.es: could not connect to host
+joefixit.co.uk: could not connect to host
joelgonewild.com: did not receive HSTS header
-joepitt.co.uk: could not connect to host
joerg-wellpott.de: did not receive HSTS header
joetyson.io: could not connect to host
+johand.io: could not connect to host
johannaojanen.com: could not connect to host
johannes-bugenhagen.de: did not receive HSTS header
johannes-sprink.de: could not connect to host
@@ -7926,13 +8724,15 @@ johncardell.com: did not receive HSTS header
johners.me: could not connect to host
johngaltgroup.com: did not receive HSTS header
johnhgaunt.com: did not receive HSTS header
+johnmorganpartnership.co.uk: did not receive HSTS header
johnrom.com: could not connect to host
-johnsanchez.io: could not connect to host
+johnsiu.com: did not receive HSTS header
johntomasowa.com: could not connect to host
johnverkerk.com: could not connect to host
joinamericacorps.gov: could not connect to host
jointoweb.com: could not connect to host
-jomp16.tk: could not connect to host
+jomp16.tk: did not receive HSTS header
+jonarcher.info: did not receive HSTS header
jonas-keidel.de: did not receive HSTS header
jonasgroth.se: did not receive HSTS header
jonathan.ir: could not connect to host
@@ -7940,19 +8740,17 @@ jonathandowning.uk: did not receive HSTS header
jonathanmassacand.ch: could not connect to host
jonathanreyes.com: did not receive HSTS header
jonathansanchez.pro: could not connect to host
-jonathanselea.se: did not receive HSTS header
+jonesopolis.xyz: could not connect to host
jonfor.net: could not connect to host
jongha.me: could not connect to host
jonn.me: could not connect to host
jonnichols.info: could not connect to host
-jons.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jonsno.ws: could not connect to host
joostbovee.nl: did not receive HSTS header
jooto.com: did not receive HSTS header
jopl.org: did not receive HSTS header
jordankirby.co.uk: could not connect to host
jordanp.engineer: could not connect to host
-jordanscorporatelaw.com: could not connect to host
jordanstrustcompany.cn: could not connect to host
jordanstrustcompany.ru: could not connect to host
jordikroon.nl: could not connect to host
@@ -7962,23 +8760,24 @@ jornadasciberdefensa2016.es: could not connect to host
jorovik.com: did not receive HSTS header
jorrit.info: max-age too low: 0
josahrens.me: could not connect to host
-josc.com.au: could not connect to host
+jose.eti.br: did not receive HSTS header
joseaveleira.es: did not receive HSTS header
josecage.com: could not connect to host
-josephre.es: did not receive HSTS header
+josericaurte.com: could not connect to host
joshi.su: could not connect to host
joshplant.co.uk: could not connect to host
joshstroup.me: could not connect to host
joto.de: did not receive HSTS header
jotpics.com: could not connect to host
jottit.com: could not connect to host
+jouetspetitechanson.com: could not connect to host
journalof.tech: could not connect to host
joworld.net: could not connect to host
joyceclerkx.com: could not connect to host
joyjohnston.ca: did not receive HSTS header
joyqi.com: did not receive HSTS header
jpaglier.com: could not connect to host
-jpbike.cz: did not receive HSTS header
+jpbike.cz: could not connect to host
jpcrochetapparel.com: could not connect to host
jpeaches.xyz: could not connect to host
jpgangbang.com: could not connect to host
@@ -7987,30 +8786,30 @@ jptun.com: could not connect to host
jrgold.me: could not connect to host
jrmd.io: could not connect to host
jrvar.com: did not receive HSTS header
-js88.sg: did not receive HSTS header
+js88.sg: could not connect to host
jsanders.us: did not receive HSTS header
jsbentertainment.nl: could not connect to host
jsbevents.nl: could not connect to host
jsblights.nl: could not connect to host
-jsc7776.com: did not receive HSTS header
+jsc7776.com: could not connect to host
+jsdelivr.net: could not connect to host
jsg-technologies.de: did not receive HSTS header
jsjyhzy.cc: could not connect to host
+jslidong.top: did not receive HSTS header
json-viewer.com: did not receive HSTS header
jstelecom.com.br: did not receive HSTS header
+jsuse.xyz: did not receive HSTS header
jsvr.tk: could not connect to host
+jsxc.ch: could not connect to host
ju1ro.de: did not receive HSTS header
jualautoclave.com: did not receive HSTS header
jualssh.com: could not connect to host
juandesouza.com: did not receive HSTS header
juanhub.com: did not receive HSTS header
juchheim-methode.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-judge2020.com: did not receive HSTS header
juiced.gs: did not receive HSTS header
juka.pp.ua: could not connect to host
-juku-info.top: did not receive HSTS header
-juku-wing.jp: could not connect to host
julegoerke.de: did not receive HSTS header
-julenlanda.com: could not connect to host
juliamweber.de: could not connect to host
julian-kipka.de: did not receive HSTS header
julian-witusch.de: could not connect to host
@@ -8037,23 +8836,25 @@ junglegoat.xyz: did not receive HSTS header
juniwalk.cz: could not connect to host
junjung.me: could not connect to host
junqtion.com: could not connect to host
-jupp0r.de: could not connect to host
+jupp0r.de: did not receive HSTS header
juridiqueo.com: did not receive HSTS header
juristeo.com: did not receive HSTS header
jurke.com: did not receive HSTS header
jurko.cz: could not connect to host
+jurriaan.ninja: could not connect to host
just-english.online: did not receive HSTS header
just-pools.co.za: could not connect to host
just2trade.com: did not receive HSTS header
+justbelieverecovery.com: did not receive HSTS header
justiceforfathers.com: did not receive HSTS header
justiceo.org: did not receive HSTS header
+justinellingwood.com: could not connect to host
justinlemay.com: could not connect to host
justinrudio.com: did not receive HSTS header
justlikethat.hosting: did not receive HSTS header
justmy.website: did not receive HSTS header
justnaw.co.uk: could not connect to host
justonce.net: could not connect to host
-justsome.info: did not receive HSTS header
justudin.com: did not receive HSTS header
justwood.cz: did not receive HSTS header
justzz.xyz: could not connect to host
@@ -8062,45 +8863,45 @@ juul.xyz: could not connect to host
juventusclublugano.ch: could not connect to host
juventusmania1897.com: could not connect to host
juwairen.cn: could not connect to host
+juzgalo.com: did not receive HSTS header
jvn.com: did not receive HSTS header
jvoice.net: did not receive HSTS header
jwilsson.me: could not connect to host
jwolt-lx.com: could not connect to host
jxir.de: could not connect to host
-jxm.in: could not connect to host
jysperm.me: did not receive HSTS header
jznet.org: could not connect to host
k-dev.de: could not connect to host
k-rickroll-g.pw: could not connect to host
-k-wallet.com: did not receive HSTS header
+k-wallet.com: could not connect to host
k1cp.com: could not connect to host
-k33k00.com: could not connect to host
+k33k00.com: did not receive HSTS header
k38.cc: max-age too low: 3600
ka-clan.com: could not connect to host
kaanduman.com: could not connect to host
kaasbijwijn.nl: did not receive HSTS header
-kabarlinux.id: could not connect to host
-kabat-fans.cz: did not receive HSTS header
kabinapp.com: did not receive HSTS header
kabuabc.com: could not connect to host
-kabus.org: could not connect to host
kackscharf.de: could not connect to host
kadioglumakina.com.tr: did not receive HSTS header
kadmec.com: did not receive HSTS header
kaela.design: could not connect to host
kahopoon.net: could not connect to host
kai.cool: did not receive HSTS header
+kaibol.com: could not connect to host
kaika-facilitymanagement.de: could not connect to host
kaika-hms.de: did not receive HSTS header
kainetsoft.com: could not connect to host
kainz.bayern: could not connect to host
kainz.be: could not connect to host
-kaisers.de: did not receive HSTS header
+kaisers.de: could not connect to host
kaiyuewu.com: could not connect to host
kajlovo.cz: could not connect to host
kakaomilchkuh.de: did not receive HSTS header
kaketalk.com: did not receive HSTS header
-kakie-gobocha.jp: could not connect to host
+kakoo-media.nl: could not connect to host
+kakoo.nl: could not connect to host
+kakoomedia.nl: could not connect to host
kalami.nl: could not connect to host
kaleidomarketing.com: did not receive HSTS header
kaleidoskop-freiburg.de: did not receive HSTS header
@@ -8108,17 +8909,17 @@ kalender.goip.de: could not connect to host
kalilinux.tech: could not connect to host
kaloix.de: could not connect to host
kamalame.co: could not connect to host
+kamatajisyaku.tokyo.jp: did not receive HSTS header
kambodja.guide: could not connect to host
kamcvicit.sk: could not connect to host
kamikano.com: could not connect to host
-kamikatse.net: could not connect to host
kamitech.ch: could not connect to host
-kanaanonline.org: max-age too low: 86400
kanada.guide: could not connect to host
kanagawachuo-hospital.jp: did not receive HSTS header
kanar.nl: could not connect to host
kancolle.me: could not connect to host
kandec.co.jp: did not receive HSTS header
+kaneisdi.com: did not receive HSTS header
kaneo-gmbh.de: did not receive HSTS header
kanganer.com: could not connect to host
kangzaber.com: could not connect to host
@@ -8129,27 +8930,29 @@ kanr.in: could not connect to host
kanscooking.org: could not connect to host
kantorad.io: could not connect to host
kantv1.com: could not connect to host
-kanuvu.de: did not receive HSTS header
+kanzakiranko.jp: could not connect to host
kanzlei-wirtschaftsrecht.berlin: max-age too low: 600000
+kanzshop.com: could not connect to host
kaohub.com: could not connect to host
kaomojis.net: did not receive HSTS header
-kaotik4266.com: could not connect to host
+kapiorr.duckdns.org: could not connect to host
kaplatz.is: could not connect to host
kapo.info: could not connect to host
kappit.dk: could not connect to host
kapucini.si: max-age too low: 0
kaputt.com: could not connect to host
kapverde.guide: could not connect to host
+karaface.com: could not connect to host
karamna.com: could not connect to host
-karamomo.net: did not receive HSTS header
karanastic.com: did not receive HSTS header
+karanlyons.com: could not connect to host
karaoketonight.com: could not connect to host
-karatekit.co.uk: did not receive HSTS header
-karatorian.org: did not receive HSTS header
+karatekit.co.uk: could not connect to host
+karatorian.org: could not connect to host
karjala-ski.ru: could not connect to host
+karlis-kavacis.id.lv: did not receive HSTS header
karloskontana.tk: could not connect to host
karlproctor.co.uk: could not connect to host
-karmaflux.com: did not receive HSTS header
karpanhellas.com: could not connect to host
kars.ooo: could not connect to host
karting34.com: did not receive HSTS header
@@ -8158,7 +8961,7 @@ kashdash.ca: could not connect to host
kashis.com.au: max-age too low: 0
kat.al: max-age too low: 0
katalogakci.cz: did not receive HSTS header
-katata-kango.ac.jp: could not connect to host
+kathrinbaumannphotography.com: did not receive HSTS header
kati0.com: could not connect to host
katiaetdavid.fr: could not connect to host
katja-nikolic-design.de: could not connect to host
@@ -8173,23 +8976,28 @@ kattenfun.be: did not receive HSTS header
kattenfun.nl: did not receive HSTS header
katthewaffle.fr: could not connect to host
katzen.me: could not connect to host
+katzspeech.com: did not receive HSTS header
kaufkraftkiel.de: could not connect to host
kauperwood.ovh: could not connect to host
kauplusprofesional.com: did not receive HSTS header
kausch.at: could not connect to host
kausta.me: could not connect to host
+kavik.no: could not connect to host
kavinvin.me: could not connect to host
-kawaiii.link: did not receive HSTS header
kawaiiku.com: could not connect to host
kawaiiku.de: could not connect to host
kaydan.io: could not connect to host
kayipmurekkep.com: could not connect to host
+kayleen.net: could not connect to host
kayon.cf: could not connect to host
-kazamasion.com: did not receive HSTS header
+kaysis.gov.tr: did not receive HSTS header
+kazamasion.com: could not connect to host
kazanasolutions.de: could not connect to host
kazenojiyu.fr: did not receive HSTS header
+kb3.net: did not receive HSTS header
kbfl.org: could not connect to host
kcluster.io: could not connect to host
+kcptun.com: could not connect to host
kd-plus.pp.ua: could not connect to host
kdata.it: did not receive HSTS header
kdbx.online: could not connect to host
@@ -8207,6 +9015,7 @@ keepflow.io: could not connect to host
keepmanager.org: could not connect to host
keeprubyweird.com: did not receive HSTS header
kefaloniatoday.com: did not receive HSTS header
+keifel.de: could not connect to host
keihin-chaplin.jp: did not receive HSTS header
kein-fidget-spinner-werden.de: could not connect to host
kejibot.com: could not connect to host
@@ -8223,19 +9032,21 @@ kenderhaz-magyarorszag.hu: did not receive HSTS header
kenderhazmagyarorszag.hu: did not receive HSTS header
kenkoelectric.com: did not receive HSTS header
kenman.dk: max-age too low: 2592000
+kennedy.ie: could not connect to host
kennynet.co.uk: could not connect to host
-kensparkesphotography.com: did not receive HSTS header
kentacademiestrust.org.uk: did not receive HSTS header
kepler-seminar.de: did not receive HSTS header
+keralit.nl: did not receive HSTS header
kerangalam.com: did not receive HSTS header
kerksanders.nl: could not connect to host
kermadec.blog: could not connect to host
kermadec.com: did not receive HSTS header
-kermadec.net: could not connect to host
+kermadec.net: did not receive HSTS header
kernelmode.io: did not receive HSTS header
kernl.us: did not receive HSTS header
keshausconsulting.com: could not connect to host
keskeces.com: did not receive HSTS header
+kessel-runners.com: could not connect to host
kesteren.com: could not connect to host
kevindekoninck.com: could not connect to host
kevinfoley.cc: could not connect to host
@@ -8245,7 +9056,6 @@ kevinroebert.de: did not receive HSTS header
kevlar.pw: did not receive HSTS header
kewego.co.uk: could not connect to host
keymaster.lookout.com: did not receive HSTS header
-keys.jp: could not connect to host
keyserver.sexy: could not connect to host
kfbrussels.be: could not connect to host
kg-rating.com: could not connect to host
@@ -8258,22 +9068,25 @@ khosla.uk: could not connect to host
ki-on.net: did not receive HSTS header
kiaka.co: could not connect to host
kialo.com: did not receive HSTS header
+kiapps.ovh: could not connect to host
kickass-proxies.org: could not connect to host
kickass.al: could not connect to host
kickasstorrents.gq: could not connect to host
kickerplaza.nl: did not receive HSTS header
-kid-dachau.de: did not receive HSTS header
+kid-dachau.de: max-age too low: 600000
kidbacker.com: could not connect to host
kidkat.cn: could not connect to host
-kiehls.pt: could not connect to host
+kidswallstickers.com.au: could not connect to host
kiel-media.de: did not receive HSTS header
kielderweather.org.uk: did not receive HSTS header
+kielwi.gov: could not connect to host
kienlen.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kieranweightman.me: could not connect to host
kiesuwcursus.nl: did not receive HSTS header
kievradio.com: could not connect to host
kikuzuki.org: could not connect to host
kiladera.be: did not receive HSTS header
+kilerd.me: did not receive HSTS header
kill-paff.com: did not receive HSTS header
kimana.pe: could not connect to host
kimberg.co.uk: did not receive HSTS header
@@ -8282,7 +9095,7 @@ kimpost.org: could not connect to host
kimscrazeecastles.co.uk: did not receive HSTS header
kina.guide: could not connect to host
kinderbuecher-kostenlos.de: did not receive HSTS header
-kinderjugendfreizeitverein.de: could not connect to host
+kinderjugendfreizeitverein.de: did not receive HSTS header
kinderly.co.uk: did not receive HSTS header
kinderopvangengeltjes.nl: did not receive HSTS header
kinderopvangzevenbergen.nl: did not receive HSTS header
@@ -8291,6 +9104,7 @@ kindlyfire.com: could not connect to host
kindof.ninja: could not connect to host
kinepolis-studio.ga: could not connect to host
kineto.space: could not connect to host
+king-henris-castles.co.uk: did not receive HSTS header
kingclass.cn: could not connect to host
kingdomcrc.org: did not receive HSTS header
kingmanhall.org: could not connect to host
@@ -8298,7 +9112,9 @@ kingpincages.com: could not connect to host
kingqueen.org.uk: did not receive HSTS header
kinkdr.com: could not connect to host
kinmunity.com: did not receive HSTS header
+kinnettmemorial.org: did not receive HSTS header
kinnon.enterprises: could not connect to host
+kinomoto.me: could not connect to host
kinow.com: did not receive HSTS header
kinsmenhomelottery.com: did not receive HSTS header
kintoandar.com: max-age too low: 0
@@ -8308,17 +9124,16 @@ kionetworks.com: did not receive HSTS header
kipin.fr: did not receive HSTS header
kipira.com: could not connect to host
kiraboshi.xyz: could not connect to host
-kirainmoe.com: did not receive HSTS header
kirara.eu: could not connect to host
-kirill.ws: could not connect to host
-kirito.kr: could not connect to host
+kircp.com: could not connect to host
+kirito.kr: did not receive HSTS header
kirkforsenate.com: could not connect to host
kirkpatrickdavis.com: could not connect to host
-kirstin-peters.de: could not connect to host
kisa.io: could not connect to host
-kisalt.im: could not connect to host
kiss-register.org: could not connect to host
kissart.net: could not connect to host
+kissesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+kissesb.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kisskiss.ch: could not connect to host
kisstyle.ru: did not receive HSTS header
kisun.co.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -8329,6 +9144,7 @@ kitashop.com.br: could not connect to host
kitatec.com.br: could not connect to host
kitchenaccessories.pro: did not receive HSTS header
kitchenchaos.de: could not connect to host
+kitegarage.eu: did not receive HSTS header
kiteschoolamsterdam.nl: could not connect to host
kitestar.co.uk: did not receive HSTS header
kitk.at: could not connect to host
@@ -8339,11 +9155,11 @@ kiwiirc.com: max-age too low: 5256000
kiwipayment.com: could not connect to host
kiwipayments.com: could not connect to host
kiwiplace.com: could not connect to host
-kix.moe: did not receive HSTS header
kiyo.space: could not connect to host
kizil.net: could not connect to host
kj1391.com: did not receive HSTS header
kjaermaxi.me: did not receive HSTS header
+kjellvn.net: could not connect to host
kjg-bachrain.de: could not connect to host
kjoglum.me: could not connect to host
kkull.tv: could not connect to host
@@ -8369,6 +9185,7 @@ klingsundet.no: did not receive HSTS header
kliqsd.com: could not connect to host
kloentrup.de: max-age too low: 604800
klunkergarten.org: could not connect to host
+km-net.pl: did not receive HSTS header
kmdev.me: did not receive HSTS header
knapen.io: max-age too low: 604800
knccloud.com: could not connect to host
@@ -8376,29 +9193,30 @@ kngk-azs.ru: could not connect to host
knigadel.com: did not receive HSTS header
knightsbridgegroup.org: could not connect to host
knightsweep.com: could not connect to host
+kniwweler.com: could not connect to host
knnet.ch: could not connect to host
knowdebt.org: did not receive HSTS header
knowledgehook.com: did not receive HSTS header
knowledgesnap.com: could not connect to host
knowledgesnapsites.com: could not connect to host
knownsec.cf: could not connect to host
+knuckles.tk: could not connect to host
kobieta.guru: could not connect to host
-kobolya.hu: did not receive HSTS header
koddsson.com: did not receive HSTS header
kodexplorer.ml: could not connect to host
kodiaklabs.org: could not connect to host
kodokushi.fr: could not connect to host
koen.io: max-age too low: 86400
-koenrouwhorst.nl: did not receive HSTS header
koenvdheuvel.me: could not connect to host
+koerper-wie-seele.de: did not receive HSTS header
koerperimpuls.ch: did not receive HSTS header
koez-mangal.ch: could not connect to host
koezmangal.ch: could not connect to host
koik.io: could not connect to host
koirala.net: could not connect to host
kokenmetaanbiedingen.nl: could not connect to host
+kokoiroworks.com: could not connect to host
kola-entertainments.de: did not receive HSTS header
-kolaykaydet.com: could not connect to host
kolbeck.tk: could not connect to host
kollawat.me: could not connect to host
kolozsvaricsuhe.hu: did not receive HSTS header
@@ -8407,7 +9225,7 @@ kompetenzwerft.de: did not receive HSTS header
konata.us: could not connect to host
kongbaofang.com: could not connect to host
konicaprinterdriver.com: could not connect to host
-koningskwartiertje.nl: could not connect to host
+konings.it: could not connect to host
konkurs.ba: could not connect to host
kontakthuman.hu: did not receive HSTS header
kontaxis.network: could not connect to host
@@ -8415,10 +9233,10 @@ konventseliten.se: could not connect to host
koop-bremen.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
koopjesnel.nl: could not connect to host
koordinate.net: could not connect to host
+kopio.jp: did not receive HSTS header
koppelvlak.net: could not connect to host
kopular.com: could not connect to host
kori.ml: did not receive HSTS header
-korinar.com: could not connect to host
koriyoukai.net: did not receive HSTS header
kornersafe.com: did not receive HSTS header
korni22.org: could not connect to host
@@ -8430,22 +9248,28 @@ kotomei.moe: could not connect to host
kotonehoko.net: could not connect to host
kotorimusic.ga: could not connect to host
kotovstyle.ru: could not connect to host
+kottur.is: could not connect to host
koukni.cz: did not receive HSTS header
kourpe.online: could not connect to host
kousaku.jp: could not connect to host
-kouten-jp.com: could not connect to host
kozmik.co: could not connect to host
kpdyer.com: did not receive HSTS header
kpebetka.net: did not receive HSTS header
kpn-dnssec.com: could not connect to host
kprog.net: did not receive HSTS header
kpvpn.com: could not connect to host
+kradalby.no: could not connect to host
kraigwalker.com: could not connect to host
+kraiwan.com: did not receive HSTS header
+krampus-fischamend.at: could not connect to host
krasavchik.by: could not connect to host
krasota.ru: did not receive HSTS header
-krausen.ca: did not receive HSTS header
+krausen.ca: could not connect to host
+krausoft.hu: could not connect to host
kravelindo-adventure.com: could not connect to host
+kraynik.com: could not connect to host
krayx.com: could not connect to host
+krc.link: could not connect to host
kream.io: did not receive HSTS header
kreavis.com: did not receive HSTS header
kreb.io: could not connect to host
@@ -8464,6 +9288,9 @@ krizek.cc: did not receive HSTS header
krizevackapajdasija.hr: could not connect to host
krmela.com: did not receive HSTS header
kroetenfuchs.de: could not connect to host
+krokodent.de: did not receive HSTS header
+kromonos.net: could not connect to host
+kronych.cz: could not connect to host
kroodle.nl: did not receive HSTS header
krouzkyliduska.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kruegerrand-wert.de: did not receive HSTS header
@@ -8471,24 +9298,21 @@ krunut.com: did not receive HSTS header
kryha.io: did not receive HSTS header
krypteia.org: could not connect to host
kryptomech.com: could not connect to host
+ks88.com: could not connect to host
ksfh-mail.de: could not connect to host
-ksham.net: could not connect to host
ksk-agentur.de: did not receive HSTS header
kstan.me: could not connect to host
kswcosmetics.com: could not connect to host
kswriter.com: could not connect to host
kteen.info: did not receive HSTS header
ktube.yt: could not connect to host
-ku.io: did not receive HSTS header
kuba.guide: could not connect to host
kubiwa.net: could not connect to host
kubusadvocaten.nl: could not connect to host
-kuchenfeelisa.de: did not receive HSTS header
kuchenschock.de: did not receive HSTS header
-kucheryavenkovn.ru: could not connect to host
+kucheryavenkovn.ru: did not receive HSTS header
kucom.it: did not receive HSTS header
kuechenplan.online: could not connect to host
-kuehnel.org: max-age too low: 604800
kueulangtahunanak.net: could not connect to host
kuko-crews.org: could not connect to host
kultmobil.se: did not receive HSTS header
@@ -8496,6 +9320,7 @@ kum.com: could not connect to host
kummerlaender.eu: did not receive HSTS header
kundenerreichen.com: did not receive HSTS header
kundenerreichen.de: did not receive HSTS header
+kundo.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kunstschule-krabax.de: did not receive HSTS header
kuops.com: did not receive HSTS header
kupdokuchyne.cz: could not connect to host
@@ -8507,17 +9332,20 @@ kuro346.moe: could not connect to host
kuroisalva.xyz: did not receive HSTS header
kursprogramisty.pl: could not connect to host
kurtmclester.com: could not connect to host
+kurumi.io: did not receive HSTS header
kurz.pw: could not connect to host
kurzonline.com.br: could not connect to host
kuwago.io: could not connect to host
+kuzdrowiu24.pl: did not receive HSTS header
kvt.berlin: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-kweddingplanning.com: max-age too low: 0
kwidz.fr: did not receive HSTS header
kwikmed.eu: could not connect to host
+kwiknews.com: did not receive HSTS header
kwipi.com: did not receive HSTS header
+kwmr.me: did not receive HSTS header
kwok.tv: could not connect to host
kwondratsch.com: could not connect to host
-kxind.cn: did not receive HSTS header
+kxind.cn: could not connect to host
kyanite.co: could not connect to host
kyberna.xyz: could not connect to host
kykoonn.net: did not receive HSTS header
@@ -8525,12 +9353,13 @@ kylapps.com: did not receive HSTS header
kyle.place: could not connect to host
kylebaldw.in: did not receive HSTS header
kylerwood.com: could not connect to host
+kyliehunt.com: did not receive HSTS header
kylling.io: could not connect to host
kymo.org: did not receive HSTS header
+kynaston.org.uk: could not connect to host
kyochon.fr: could not connect to host
kyonagashima.com: did not receive HSTS header
-kyoto-k9.com: could not connect to host
-kyoto-tomoshibi.jp: could not connect to host
+kyoto-k9.com: did not receive HSTS header
kyouko.nl: could not connect to host
kyujin-office.net: could not connect to host
kzjnet.com: could not connect to host
@@ -8543,12 +9372,12 @@ la-grande-jaugue.fr: did not receive HSTS header
la-retraite-info.com: did not receive HSTS header
la-serendipite.fr: did not receive HSTS header
labaia.info: could not connect to host
+laballoons.com: max-age too low: 7889238
labella-umbrella.com: did not receive HSTS header
labelleza.com.br: could not connect to host
labfox.de: did not receive HSTS header
labiblioafronebrulepas.com: could not connect to host
labina.com.tr: did not receive HSTS header
-labms.com.au: could not connect to host
laboiteanem.fr: could not connect to host
laboiteapc.fr: did not receive HSTS header
labordata.io: could not connect to host
@@ -8558,7 +9387,7 @@ laboutiquemarocaineduconvoyeur.ma: could not connect to host
labrador-retrievers.com.au: did not receive HSTS header
labrasaq8.com: did not receive HSTS header
labs.directory: could not connect to host
-labs.moscow: could not connect to host
+labs.moscow: did not receive HSTS header
lacarpesaintaubinoise.fr: did not receive HSTS header
lacasa.fr: could not connect to host
lacasseroy.com: could not connect to host
@@ -8567,16 +9396,20 @@ lacentral.com: did not receive HSTS header
lacledeslan.ninja: could not connect to host
lacuevadechauvet.com: did not receive HSTS header
ladadate.com: could not connect to host
+ladybugjam.com: could not connect to host
ladylikeit.com: could not connect to host
ladylucks.co.uk: could not connect to host
laemen.com: did not receive HSTS header
laemen.nl: could not connect to host
laf.in.net: could not connect to host
lafamillemusique.fr: did not receive HSTS header
+lafeemam.fr: could not connect to host
laforetenchantee.ch: could not connect to host
lafr4nc3.xyz: could not connect to host
lagalerievirtuelle.fr: did not receive HSTS header
lagier.xyz: could not connect to host
+laglab.org: could not connect to host
+lagodny.eu: could not connect to host
lagoza.name: could not connect to host
laharilais.fr: did not receive HSTS header
lainchan.org: did not receive HSTS header
@@ -8588,6 +9421,7 @@ lakehavasuhouserentals.com: could not connect to host
lakewoodcomputerservices.com: could not connect to host
lalajj.com: could not connect to host
laltroweb.it: did not receive HSTS header
+lamafioso.com: could not connect to host
lamaland.ru: did not receive HSTS header
lambda-complex.org: could not connect to host
lambdafive.co.uk: could not connect to host
@@ -8595,7 +9429,6 @@ lamomebijou.paris: did not receive HSTS header
lampl.info: could not connect to host
lamtv.com.mx: could not connect to host
lan2k.org: max-age too low: 86400
-lana.swedbank.se: did not receive HSTS header
lanauzedesigns.com: did not receive HSTS header
lanboll.com: could not connect to host
lanbyte.se: did not receive HSTS header
@@ -8608,7 +9441,6 @@ landgoedverkopen.nl: could not connect to host
landhuisverkopen.nl: could not connect to host
landscape.canonical.com: max-age too low: 2592000
landscapingmedic.com: did not receive HSTS header
-langatang.com: could not connect to host
langenbach.rocks: could not connect to host
langendorf-ernaehrung-training.de: could not connect to host
langendries.eu: did not receive HSTS header
@@ -8620,11 +9452,14 @@ lanzainc.xyz: could not connect to host
laobox.fr: could not connect to host
laohei.org: could not connect to host
laospage.com: did not receive HSTS header
+lapakus.com: could not connect to host
+laperfumista.es: could not connect to host
lapetition.be: could not connect to host
laplaceduvillage.net: could not connect to host
laquack.com: could not connect to host
lared.ovh: did not receive HSTS header
laredsemanario.com: could not connect to host
+larky.top: could not connect to host
larsgujord.no: did not receive HSTS header
larsmerke.de: did not receive HSTS header
lasepiataca.com: did not receive HSTS header
@@ -8632,6 +9467,7 @@ lasercloud.ml: could not connect to host
lashstuff.com: did not receive HSTS header
lasnaves.com: did not receive HSTS header
lasst-uns-beten.de: could not connect to host
+lastharo.com: could not connect to host
latable-bowling-vire.fr: did not receive HSTS header
latabledebry.be: could not connect to host
latamarissiere.eu: could not connect to host
@@ -8643,7 +9479,7 @@ lathamlabs.com: could not connect to host
lathamlabs.net: could not connect to host
lathamlabs.org: could not connect to host
lathen-wahn.de: did not receive HSTS header
-latinred.com: could not connect to host
+latinred.com: did not receive HSTS header
latitude42technology.com: did not receive HSTS header
latour-managedcare.ch: could not connect to host
latus.xyz: could not connect to host
@@ -8655,16 +9491,17 @@ laurelspaandlash.com: did not receive HSTS header
laureltv.org: did not receive HSTS header
laurent-e-levy.com: did not receive HSTS header
lausitzer-widerstand.de: could not connect to host
-lavabit.no: could not connect to host
lavapot.com: did not receive HSTS header
laventainnhotel-mailing.com: could not connect to host
lavine.ch: did not receive HSTS header
lavito.cz: could not connect to host
+lavval.com: could not connect to host
lawly.org: could not connect to host
lawrence-institute.com: could not connect to host
laxatus.com: could not connect to host
laxiongames.es: did not receive HSTS header
layer8.tk: could not connect to host
+layfully.me: could not connect to host
laymans911.info: could not connect to host
lazapateriahandmade.pe: did not receive HSTS header
lazerus.net: could not connect to host
@@ -8682,17 +9519,19 @@ ldcraft.pw: could not connect to host
leadbook.ru: max-age too low: 604800
leadership9.com: could not connect to host
leadgenie.me: could not connect to host
+leadinfo.com: did not receive HSTS header
+leadstart.org: did not receive HSTS header
leakedminecraft.net: could not connect to host
leakreporter.net: could not connect to host
leaks.directory: could not connect to host
leanclub.org: could not connect to host
leaodarodesia.com.br: could not connect to host
leardev.de: did not receive HSTS header
-learn-smart.uk: did not receive HSTS header
learnedhacker.com: could not connect to host
learnedovo.com: did not receive HSTS header
learnfrenchfluently.com: could not connect to host
learningorder.com: could not connect to host
+learntale.com: could not connect to host
lebal.se: could not connect to host
lebosse.me: could not connect to host
lebrun.org: could not connect to host
@@ -8703,9 +9542,13 @@ ledgerscope.net: could not connect to host
ledhouse.sk: did not receive HSTS header
ledlampor365.se: could not connect to host
ledshop.mx: did not receive HSTS header
+leebiblestudycenter.co.uk: could not connect to host
+leebiblestudycenter.com: could not connect to host
+leebiblestudycentre.com: could not connect to host
leebiblestudycentre.net: could not connect to host
leebiblestudycentre.org: could not connect to host
leefindlow.com: could not connect to host
+leegyuho.com: could not connect to host
leelou.wedding: could not connect to host
leen.io: could not connect to host
leerkotte.eu: could not connect to host
@@ -8715,22 +9558,27 @@ legalcontrol.info: could not connect to host
legaleus.co.uk: could not connect to host
legalisepeacebloom.com: could not connect to host
legalrobot-uat.com: could not connect to host
+legalsen.com: did not receive HSTS header
legaltip.eu: could not connect to host
legarage.org: did not receive HSTS header
+legatofmrc.fr: could not connect to host
legavenue.com.br: did not receive HSTS header
legendary.camera: did not receive HSTS header
legitaxi.com: did not receive HSTS header
legymnase.eu: did not receive HSTS header
lehtinen.xyz: could not connect to host
+leigh.life: did not receive HSTS header
leighneithardt.com: could not connect to host
+leiming.co: could not connect to host
leinir.dk: did not receive HSTS header
+leition.com: did not receive HSTS header
+leitionusercontent.com: did not receive HSTS header
leitner.com.au: did not receive HSTS header
lelehei.com: could not connect to host
lellyboi.ml: could not connect to host
lelongbank.com: did not receive HSTS header
lelubre.info: did not receive HSTS header
lemon.co: could not connect to host
-lemonrockbiketours.com: did not receive HSTS header
lemp.io: did not receive HSTS header
lenders.direct: could not connect to host
lengyelnyelvoktatas.hu: could not connect to host
@@ -8745,18 +9593,19 @@ lenovogaming.com: could not connect to host
lentri.com: did not receive HSTS header
lenzw.de: did not receive HSTS header
leob.in: could not connect to host
+leochedibracchio.com: did not receive HSTS header
leon-jaekel.com: could not connect to host
leonardcamacho.me: could not connect to host
+leonhooijer.nl: could not connect to host
leonmahler.consulting: did not receive HSTS header
leopold.email: could not connect to host
-leopoldina.net: did not receive HSTS header
leopotamgroup.com: could not connect to host
leovanna.co.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
lepiquillo.fr: did not receive HSTS header
lepont.pl: could not connect to host
lerasenglish.com: max-age too low: 0
lerlivros.online: could not connect to host
-lerner.moscow: could not connect to host
+lerner.moscow: did not receive HSTS header
les-corsaires.net: could not connect to host
les-voitures-electriques.com: max-age too low: 2592000
lesbiansslaves.com: could not connect to host
@@ -8764,15 +9613,15 @@ lesbofight.com: could not connect to host
lescomptoirsdepierrot.com: could not connect to host
lesdouceursdeliyana.com: could not connect to host
lesecuadors.com: did not receive HSTS header
-lesformations.net: did not receive HSTS header
+lesformations.net: could not connect to host
lesh.eu: could not connect to host
+lesharris.com: could not connect to host
lesjardinsdubanchet.fr: could not connect to host
lesliekearney.com: did not receive HSTS header
lesperlesdunet.fr: could not connect to host
lesquatredauphins.fr: did not receive HSTS header
lesquerda.cat: did not receive HSTS header
lessing.consulting: did not receive HSTS header
-let-go.cc: could not connect to host
letempsdunefleur.be: could not connect to host
leter.io: did not receive HSTS header
lethbridgecoffee.com: did not receive HSTS header
@@ -8799,15 +9648,15 @@ lexpartsofac.com: could not connect to host
lez-cuties.com: could not connect to host
lezdomsm.com: could not connect to host
lfaz.org: could not connect to host
-lfullerdesign.com: could not connect to host
lg21.co: could not connect to host
-lgbtqventures.com: could not connect to host
+lgbtqventures.com: did not receive HSTS header
+lgbtventures.com: did not receive HSTS header
lgiswa.com.au: did not receive HSTS header
lgrs.com.au: did not receive HSTS header
lgsg.us: could not connect to host
lgts.se: could not connect to host
lhasaapso.com.br: could not connect to host
-lheinrich.com: could not connect to host
+lheinrich.com: did not receive HSTS header
lheinrich.de: did not receive HSTS header
lheinrich.org: could not connect to host
lhsj28.com: could not connect to host
@@ -8817,6 +9666,10 @@ liaillustr.at: did not receive HSTS header
liam-is-a-nig.ga: could not connect to host
liam-w.com: could not connect to host
liamjack.fr: could not connect to host
+lian-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+lian-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+liang-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+liang-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
liangbp.com: could not connect to host
lianwen.kim: could not connect to host
lianye.in: could not connect to host
@@ -8834,6 +9687,7 @@ libfte.org: did not receive HSTS header
librairie-asie.com: did not receive HSTS header
library.linode.com: did not receive HSTS header
librechan.net: could not connect to host
+librends.org: could not connect to host
libricks.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
librisulibri.it: did not receive HSTS header
licence-registry.com: could not connect to host
@@ -8848,7 +9702,6 @@ liebach.me: did not receive HSTS header
liebestarot.at: did not receive HSTS header
lied8.eu: could not connect to host
liehuojun.com: could not connect to host
-liemen.net: did not receive HSTS header
lietaer.eu: did not receive HSTS header
life-time.nl: did not receive HSTS header
lifecoach.tw: did not receive HSTS header
@@ -8859,41 +9712,51 @@ lifeinsurances.pro: did not receive HSTS header
lifeinsurances24.com: did not receive HSTS header
lifemarque.co.uk: did not receive HSTS header
lifenexto.com: could not connect to host
-lifeng.us: did not receive HSTS header
+lifeng.us: could not connect to host
+lifequotes-uk.co.uk: could not connect to host
lifeskillsdirect.com: did not receive HSTS header
lifestyler.me: could not connect to host
lifetimemoneymachine.com: did not receive HSTS header
lifeventure.co.uk: did not receive HSTS header
lightarmory.com: could not connect to host
lightcloud.com: did not receive HSTS header
+lightdark.xyz: could not connect to host
+lighthouseinstruments.com: did not receive HSTS header
lightning-ashe.com: did not receive HSTS header
lightnovelsekai.com: could not connect to host
lightpaste.com: could not connect to host
lighttherapydevice.com: did not receive HSTS header
+lighttp.com: could not connect to host
lightworx.io: could not connect to host
lignemalin.com: could not connect to host
lignemax.com: did not receive HSTS header
lignenet.com: did not receive HSTS header
+lijero.co: could not connect to host
like.lgbt: could not connect to host
+likenewhearing.com.au: could not connect to host
likenosis.com: could not connect to host
lila.pink: did not receive HSTS header
-lilapmedia.com: could not connect to host
-liliang13.com: could not connect to host
+lilapmedia.com: did not receive HSTS header
lilismartinis.com: could not connect to host
lillpopp.eu: max-age too low: 10
lilpwny.com: could not connect to host
lilycms.com: could not connect to host
lilygreen.co.za: did not receive HSTS header
limalama.eu: max-age too low: 1
+limeres.com: could not connect to host
limeyeti.com: could not connect to host
limiteddata.co.uk: could not connect to host
limitget.com: did not receive HSTS header
limodo-shop.de: did not receive HSTS header
limpens.net: did not receive HSTS header
limpido.it: could not connect to host
+limunana.com: could not connect to host
lincsbouncycastlehire.co.uk: did not receive HSTS header
lindberg.io: did not receive HSTS header
+linden.me: did not receive HSTS header
+lindnerhof.info: did not receive HSTS header
lineauniformes.com.br: could not connect to host
+linernotekids.com: did not receive HSTS header
linext.cn: could not connect to host
lingerie.net.br: did not receive HSTS header
lingerielovers.com.br: did not receive HSTS header
@@ -8925,6 +9788,7 @@ linuxeyecandy.com: could not connect to host
linuxfixed.it: could not connect to host
linuxforyou.com: could not connect to host
linuxgeek.ro: could not connect to host
+linuxincluded.com: did not receive HSTS header
linuxmint.cz: could not connect to host
linuxmonitoring.net: could not connect to host
linvx.org: did not receive HSTS header
@@ -8938,6 +9802,7 @@ liquorsanthe.in: could not connect to host
lisaco.de: could not connect to host
lisbongold.com: did not receive HSTS header
lisgade.dk: could not connect to host
+lisieuxarquitetura.com.br: could not connect to host
lisowski-photography.com: could not connect to host
lissabon.guide: could not connect to host
listafirmelor.com: could not connect to host
@@ -8969,14 +9834,12 @@ livrariahugodesaovitor.com.br: could not connect to host
lixiang.one: could not connect to host
lixiaojiang.ga: could not connect to host
lixingcong.com: could not connect to host
-liyang.pro: did not receive HSTS header
+liyinjia.com: could not connect to host
lizzythepooch.com: did not receive HSTS header
lkiserver.com: could not connect to host
llamasweet.tech: could not connect to host
lll.st: could not connect to host
-llslb.com: could not connect to host
llvm.us: could not connect to host
-lmcm.io: could not connect to host
lmrcouncil.gov: could not connect to host
ln.io: could not connect to host
lnbeauty.ru: max-age too low: 0
@@ -8984,6 +9847,7 @@ lnoldan.com: could not connect to host
loacg.com: did not receive HSTS header
loadingdeck.com: did not receive HSTS header
loadso.me: could not connect to host
+loadtraining.com: did not receive HSTS header
loafbox.com: could not connect to host
loafhead.me: could not connect to host
loanmatch.sg: could not connect to host
@@ -8994,6 +9858,7 @@ lobosdomain.ddns.net: could not connect to host
lobosdomain.no-ip.info: could not connect to host
lobste.rs: did not receive HSTS header
locais.org: could not connect to host
+localblitz.com: did not receive HSTS header
localchum.com: could not connect to host
localdata.us: did not receive HSTS header
localdrive.me: could not connect to host
@@ -9009,12 +9874,15 @@ locationvoiturepaysbas.com: could not connect to host
locationvoituresuede.com: could not connect to host
locchat.com: could not connect to host
locker3.com: could not connect to host
+locksmith-durbannorth.co.za: could not connect to host
+locksmithdearborn.com: did not receive HSTS header
+locksmithhillcrest.co.za: could not connect to host
locksmithrandburg24-7.co.za: could not connect to host
+locksmithsbluff.com: could not connect to host
locksport.org.nz: could not connect to host
locktheirphone.com: could not connect to host
lockyourcomputer.pw: could not connect to host
locomotive.ca: did not receive HSTS header
-locomotive.net.br: could not connect to host
locvis.ru: did not receive HSTS header
lode.li: could not connect to host
lodgesdureynou.fr: did not receive HSTS header
@@ -9023,10 +9891,10 @@ loftboard.eu: could not connect to host
log2n.uk: could not connect to host
logario.com.br: could not connect to host
logcat.info: could not connect to host
-logfile.ch: did not receive HSTS header
+logfro.de: max-age too low: 0
logic8.ml: could not connect to host
logicaladvertising.com: could not connect to host
-logicoma.com: could not connect to host
+logicchen.com: could not connect to host
logicsale.com: did not receive HSTS header
logicsale.de: did not receive HSTS header
logicsale.fr: did not receive HSTS header
@@ -9039,29 +9907,32 @@ loginseite.com: could not connect to host
logistify.com.mx: did not receive HSTS header
lognot.net: could not connect to host
logymedia.com: could not connect to host
+lohl1kohl.de: could not connect to host
loisircreatif.net: did not receive HSTS header
-lojadocristaozinho.com.br: did not receive HSTS header
+lojadocristaozinho.com.br: could not connect to host
lojadoprazer.com.br: could not connect to host
lojahunamarcenaria.com.br: could not connect to host
+lojamulticapmais.com.br: did not receive HSTS header
lojashowdecozinha.com.br: could not connect to host
lojasviavento.com.br: could not connect to host
lojavalcapelli.com.br: could not connect to host
-loli.bz: did not receive HSTS header
-loli.vip: could not connect to host
+lolhax.org: could not connect to host
+loli.bz: could not connect to host
+loli.com: could not connect to host
+loli.vip: did not receive HSTS header
lolicon.info: could not connect to host
lolicore.ch: could not connect to host
lolidunno.com: could not connect to host
lolis.stream: could not connect to host
lollaconcept.com.br: could not connect to host
-lonal.com: could not connect to host
lonasdigital.com: did not receive HSTS header
lonbali.com: did not receive HSTS header
londoncalling.co: did not receive HSTS header
-londonkan.jp: could not connect to host
londonlanguageexchange.com: could not connect to host
londonseedcentre.co.uk: could not connect to host
lonerwolf.com: did not receive HSTS header
longboarding-ulm.de: could not connect to host
+longma.pw: could not connect to host
longtaitouwang.com: did not receive HSTS header
look-at-my.site: could not connect to host
lookout.com: did not receive HSTS header
@@ -9070,11 +9941,11 @@ lookupclose.com: did not receive HSTS header
looneymooney.com: could not connect to host
loongsg.xyz: could not connect to host
loperetti.ch: could not connect to host
-loposchokk.com: could not connect to host
loqyu.co: could not connect to host
lordgun.com: could not connect to host
lordjevington.co.uk: did not receive HSTS header
losebellyfat.pro: could not connect to host
+losrascadoresparagatos.com: did not receive HSTS header
loss.no: could not connect to host
lostandcash.com: could not connect to host
lostarq.com: could not connect to host
@@ -9092,10 +9963,15 @@ lotuscloud.de: did not receive HSTS header
lotuscloud.org: could not connect to host
louduniverse.net: did not receive HSTS header
louiewatch.com: could not connect to host
+louisvillevmug.info: could not connect to host
love-schna.jp: could not connect to host
love4taylor.eu.org: could not connect to host
loveable.de: could not connect to host
+loveamber.me: could not connect to host
loveandloyalty.se: could not connect to host
+lovebo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+lovebo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+lovelens.ch: could not connect to host
lovelifelovelive.com: could not connect to host
lovelive-anime.tk: could not connect to host
lovelive-anime.tokyo: could not connect to host
@@ -9112,8 +9988,8 @@ lovingpenguin.com: did not receive HSTS header
lowhangingfruitgrabber.com: could not connect to host
lowt.us: could not connect to host
lowtherpavilion.co.uk: did not receive HSTS header
+loxal.org: could not connect to host
loxis.be: did not receive HSTS header
-loyaleco.it: could not connect to host
loyaltech.ch: could not connect to host
lpacademy.com.br: could not connect to host
lpak.nl: could not connect to host
@@ -9129,10 +10005,12 @@ lsp-sports.de: did not receive HSTS header
lstma.com: could not connect to host
lsvih.com: did not receive HSTS header
lswim.com: did not receive HSTS header
+lsws.de: could not connect to host
+lsys.ac: could not connect to host
lszj.com: could not connect to host
ltba.org: could not connect to host
ltbytes.com: could not connect to host
-ltechnologygroup.com: did not receive HSTS header
+ltechnologygroup.com: could not connect to host
ltransferts.com: could not connect to host
ltu.social: could not connect to host
luan.ma: did not receive HSTS header
@@ -9146,10 +10024,9 @@ lucidlogs.com: could not connect to host
luckydog.pw: could not connect to host
luckystarfishing.com: did not receive HSTS header
luclu7.pw: could not connect to host
-lucysan.net: could not connect to host
-ludum.pl: could not connect to host
ludwig.click: did not receive HSTS header
lufthansaexperts.com: max-age too low: 2592000
+luganskservers.net: could not connect to host
luis-checa.com: could not connect to host
luisv.me: could not connect to host
luk.photo: could not connect to host
@@ -9184,32 +10061,34 @@ luripump.se: could not connect to host
lusis.fr: did not receive HSTS header
lusis.net: could not connect to host
lustrumxi.nl: could not connect to host
+luteijn.biz: did not receive HSTS header
luther.fi: could not connect to host
luxe-it.co.uk: could not connect to host
luxinmo.com: did not receive HSTS header
+luxofit.de: did not receive HSTS header
luxonetwork.com: could not connect to host
luxus-russen.de: could not connect to host
luzeshomologadas.com.br: could not connect to host
-luzfaltex.com: did not receive HSTS header
lwhate.com: could not connect to host
+lycly.me: could not connect to host
lycly.top: could not connect to host
lydia-und-simon.de: could not connect to host
lydiagorstein.com: did not receive HSTS header
lylares.com: did not receive HSTS header
lynkos.com: did not receive HSTS header
lyonelkaufmann.ch: did not receive HSTS header
-lyonl.com: did not receive HSTS header
+lyonl.com: could not connect to host
lyscnd.com: could not connect to host
lysergion.com: could not connect to host
lyuba.fr: could not connect to host
+lyuly.com: did not receive HSTS header
lz.sb: could not connect to host
lzahq.tech: did not receive HSTS header
lzkill.com: did not receive HSTS header
lzqii.cn: could not connect to host
-lzzr.me: did not receive HSTS header
m-ali.xyz: did not receive HSTS header
+m-edmondson.co.uk: did not receive HSTS header
m-generator.com: could not connect to host
-m-idea.jp: could not connect to host
m-rickroll-v.pw: could not connect to host
m-warrior.tk: could not connect to host
m.gparent.org: could not connect to host
@@ -9226,7 +10105,7 @@ maartenprovo.be: did not receive HSTS header
maartenterpstra.xyz: could not connect to host
mac-torrents.me: did not receive HSTS header
mac-world.pl: did not receive HSTS header
-macandtonic.com: did not receive HSTS header
+macandtonic.com: could not connect to host
macbolo.com: could not connect to host
macchaberrycream.com: could not connect to host
macchedil.com: did not receive HSTS header
@@ -9234,22 +10113,23 @@ macdj.tk: could not connect to host
macedopesca.com.br: did not receive HSTS header
macgeneral.de: did not receive HSTS header
mach1club.com: did not receive HSTS header
+machbach.net: could not connect to host
machinelearningjavascript.com: could not connect to host
mack.space: could not connect to host
macleodnc.com: did not receive HSTS header
macsandcheesedreams.com: could not connect to host
-macstore.pe: did not receive HSTS header
macustar.eu: did not receive HSTS header
-madandpissedoff.com: did not receive HSTS header
+madandpissedoff.com: could not connect to host
madcatdesign.de: did not receive HSTS header
maddin.ga: could not connect to host
madebyfalcon.co.uk: did not receive HSTS header
madebymagnitude.com: did not receive HSTS header
madeglobal.com: did not receive HSTS header
-madeinorder.com: did not receive HSTS header
+madeinorder.com: could not connect to host
madeintucson.org: could not connect to host
mademoiselle-emma.be: could not connect to host
mademoiselle-emma.fr: could not connect to host
+maderasbrown.com: could not connect to host
maderwin.com: did not receive HSTS header
madesoftware.com.br: could not connect to host
madnetwork.org: could not connect to host
@@ -9257,17 +10137,19 @@ madokami.net: could not connect to host
madpeople.net: max-age too low: 2592000
madrants.net: could not connect to host
madweb.design: did not receive HSTS header
+maerzpa.de: did not receive HSTS header
mafamane.com: could not connect to host
mafiareturns.com: max-age too low: 2592000
magazinedabeleza.net: could not connect to host
magebankin.com: did not receive HSTS header
magenx.com: did not receive HSTS header
-magi.systems: could not connect to host
magia360.com: did not receive HSTS header
magicball.co: could not connect to host
+magieamour.com: did not receive HSTS header
magieblanche.fr: did not receive HSTS header
magnacumlaude.co: could not connect to host
magneticanvil.com: did not receive HSTS header
+magosmedellin.com: could not connect to host
magyarokegyhelyen.hu: did not receive HSTS header
mahamed91.pw: could not connect to host
mahansexcavating.com: did not receive HSTS header
@@ -9283,6 +10165,7 @@ mailgarant.nl: could not connect to host
mailhost.it: could not connect to host
mailing-femprendedores.com: did not receive HSTS header
mailing-jbgg.com: could not connect to host
+maillink.store: did not receive HSTS header
mailon.ga: could not connect to host
mailpenny.com: could not connect to host
main-street-seo.com: did not receive HSTS header
@@ -9290,8 +10173,6 @@ main-unit.com: could not connect to host
maintainerheaven.ch: could not connect to host
maisalto.ind.br: could not connect to host
maitriser-son-stress.com: could not connect to host
-majkl.xyz: could not connect to host
-majkl578.cz: could not connect to host
majncloud.tk: could not connect to host
make-pizza.info: could not connect to host
makedonien.guide: could not connect to host
@@ -9300,10 +10181,10 @@ makeitdynamic.com: could not connect to host
makemejob.com: could not connect to host
makemyvape.co.uk: max-age too low: 7889238
makerstuff.net: did not receive HSTS header
-makeshiftco.de: did not receive HSTS header
+makeshiftco.de: could not connect to host
makeuplove.nl: could not connect to host
-makeyourlaws.org: could not connect to host
-makinen.ru: could not connect to host
+makeyourlaws.org: did not receive HSTS header
+makino.games: could not connect to host
malamutedoalasca.com.br: could not connect to host
maldiverna.guide: could not connect to host
maleexcel.com: did not receive HSTS header
@@ -9315,21 +10196,18 @@ malgraph.net: could not connect to host
malibubeachrecoverycenter.com: could not connect to host
maljaars-media.nl: could not connect to host
malkaso.com.ua: could not connect to host
-mallner.me: could not connect to host
malmstroms-co.se: could not connect to host
malone.link: could not connect to host
-malte-kiefer.de: did not receive HSTS header
maltes.website: could not connect to host
malvy.kiev.ua: could not connect to host
+malwareverse.us: did not receive HSTS header
malwre.io: could not connect to host
maly.io: did not receive HSTS header
malya.fr: could not connect to host
-mamacobaby.com: could not connect to host
-mamadoma.com.ua: could not connect to host
+mamacobaby.com: did not receive HSTS header
mamaison.io: could not connect to host
mamastore.eu: could not connect to host
mamaxi.org: did not receive HSTS header
-mammeitalianeavienna.com: could not connect to host
mammothmail.com: could not connect to host
mammothmail.net: could not connect to host
mammothmail.org: could not connect to host
@@ -9349,8 +10227,10 @@ manalu.cz: could not connect to host
manantial.mx: could not connect to host
manav-it.de: could not connect to host
mandala-ausmalbilder.de: did not receive HSTS header
+mandanudes.ae: could not connect to host
mandm.servebeer.com: could not connect to host
mandpress.com: did not receive HSTS header
+mangapoi.com: could not connect to host
mangazuki.co: could not connect to host
maniadeprazer.com.br: could not connect to host
manifestbin.com: did not receive HSTS header
@@ -9362,6 +10242,7 @@ manns-solutions.com: did not receive HSTS header
manns-solutions.ru: did not receive HSTS header
mannsolutions.co.uk: did not receive HSTS header
manojsharan.me: could not connect to host
+manonamission.de: did not receive HSTS header
manova.cz: could not connect to host
mansfieldplacevt.com: did not receive HSTS header
manshop24.com: could not connect to host
@@ -9374,36 +10255,35 @@ maomaobt.com: did not receive HSTS header
maomaofuli.vip: could not connect to host
maosi.xin: could not connect to host
maple5.com: did not receive HSTS header
-maplenorth.co: did not receive HSTS header
+maplenorth.co: could not connect to host
mapresidentielle.fr: did not receive HSTS header
+mapservices.nl: did not receive HSTS header
maquillage-permanent-tatoo.com: did not receive HSTS header
maranatha.pl: did not receive HSTS header
marbinvest.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-marc-schlagenhauf.de: could not connect to host
marcaixala.me: could not connect to host
-marcberman.co: could not connect to host
+marcaudefroy.com: could not connect to host
+marcberman.co: did not receive HSTS header
marcbuehlmann.com: did not receive HSTS header
marcelmarnitz.com: could not connect to host
marcelparra.com: could not connect to host
-marcelwiedemeier.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
marchagen.nl: did not receive HSTS header
marche-nordic-jorat.ch: could not connect to host
-marchhappy.tech: did not receive HSTS header
-marcianoandtopazio.com: could not connect to host
marco-kretz.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
marco01809.net: could not connect to host
marcoececilia.it: did not receive HSTS header
marcofinke.de: could not connect to host
+marcohager.de: could not connect to host
marcontrol.com: did not receive HSTS header
-marcoslater.com: did not receive HSTS header
marcosteixeira.tk: could not connect to host
marcschlagenhauf.de: could not connect to host
marcus-scheffler.com: did not receive HSTS header
marcush.de: could not connect to host
-marcusserver.synology.me: could not connect to host
+marcusserver.synology.me: did not receive HSTS header
mardelcupon.com: could not connect to host
mare92.cz: could not connect to host
mareklecian.cz: did not receive HSTS header
+margan.ch: could not connect to host
margaretrosefashions.co.uk: could not connect to host
mariacristinadoces.com.br: did not receive HSTS header
mariannematthew.com: could not connect to host
@@ -9411,10 +10291,11 @@ marianwehlus.de: did not receive HSTS header
mariaolesen.dk: could not connect to host
marie-curie.fr: could not connect to host
marie-elisabeth.dk: did not receive HSTS header
-marie-en-provence.com: did not receive HSTS header
+marie-en-provence.com: could not connect to host
marie.club: could not connect to host
marienschule-sundern.de: did not receive HSTS header
mariusschulte.de: did not receive HSTS header
+marix.ro: could not connect to host
mark-a-hydrant.com: did not receive HSTS header
mark-armstrong-gaming.com: could not connect to host
markayapilandirma.com: could not connect to host
@@ -9439,10 +10320,13 @@ markusueberallconsulting.de: could not connect to host
markusweimar.de: did not receive HSTS header
marlen.cz: did not receive HSTS header
marleyresort.com: did not receive HSTS header
+marlonschultz.de: did not receive HSTS header
marqperso.ch: could not connect to host
marquepersonnelle.ch: could not connect to host
marriottvetcareers.com: could not connect to host
marsatapp.com: could not connect to host
+marsble.com: did not receive HSTS header
+marshallford.me: could not connect to host
marshut.net: could not connect to host
martialc.be: could not connect to host
martiert.com: could not connect to host
@@ -9456,18 +10340,19 @@ martinkup.cz: did not receive HSTS header
martinp.no: could not connect to host
martinrogalla.com: did not receive HSTS header
martins.im: could not connect to host
-marumagic.com: did not receive HSTS header
-marvinkeller.de: could not connect to host
+marumagic.com: could not connect to host
+marvinkeller.de: did not receive HSTS header
marxist.party: could not connect to host
marykshoup.com: could not connect to host
masa-hou.com: did not receive HSTS header
masa-yoga.com: did not receive HSTS header
masa.li: could not connect to host
masaze-hanka.cz: could not connect to host
-maservant.net: could not connect to host
+mascorazon.com: could not connect to host
mashek.net: could not connect to host
mashnew.com: could not connect to host
masjidtawheed.net: did not receive HSTS header
+maskice.hr: did not receive HSTS header
maskinkultur.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
maskt.pw: could not connect to host
massagelimaperu.com: did not receive HSTS header
@@ -9475,7 +10360,8 @@ massivum.de: did not receive HSTS header
massot.eu: did not receive HSTS header
mastd.fr: could not connect to host
mastd.onl: could not connect to host
-masteragenasia.com: did not receive HSTS header
+mastepinnelaand.nl: did not receive HSTS header
+masteragenasia.com: could not connect to host
masteragenasia.net: did not receive HSTS header
masterapi.ninja: did not receive HSTS header
masterhaus.bg: did not receive HSTS header
@@ -9494,47 +10380,41 @@ mastodon.fun: could not connect to host
mastodon.my: could not connect to host
mastodon.org.uk: did not receive HSTS header
mastodon.pl: did not receive HSTS header
-mastodon.top: did not receive HSTS header
mastodones.club: could not connect to host
masty.nl: could not connect to host
masumreza.tk: could not connect to host
mat99.dk: could not connect to host
matarrosabierzo.com: could not connect to host
-matatall.com: did not receive HSTS header
-maternalsafety.org: did not receive HSTS header
mateusmeyer.com.br: could not connect to host
mateuszpilszek.pl: could not connect to host
mathers.ovh: did not receive HSTS header
mathias.re: did not receive HSTS header
-mathieui.net: could not connect to host
mathijskingma.nl: could not connect to host
-mathis.com.tr: did not receive HSTS header
matillat.ovh: did not receive HSTS header
matlabjo.ir: could not connect to host
matomeplus.co: could not connect to host
-matratzentester.com: did not receive HSTS header
matrict.com: could not connect to host
matrip.de: could not connect to host
matrix.ac: could not connect to host
matrixcheats.net: could not connect to host
matsuz.com: did not receive HSTS header
-matt-brooks.com: could not connect to host
matt.tf: did not receive HSTS header
mattandreko.com: did not receive HSTS header
mattberryman.com: did not receive HSTS header
matterconcern.com: could not connect to host
matthew-carson.info: could not connect to host
matthewemes.com: did not receive HSTS header
-matthewgrow.com: did not receive HSTS header
matthewprenger.com: could not connect to host
matthewtester.com: did not receive HSTS header
matthiassteen.be: could not connect to host
matthiasweiler.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-mattia98.org: could not connect to host
+mattia98.org: did not receive HSTS header
mattisam.com: did not receive HSTS header
mattressinsider.com: max-age too low: 3153600
mattwb65.com: did not receive HSTS header
+mattwservices.co.uk: max-age too low: 2592000
matty.digital: did not receive HSTS header
+matze.co: did not receive HSTS header
matze.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
maultrom.ml: could not connect to host
maupiknik.com: did not receive HSTS header
@@ -9543,25 +10423,26 @@ maurus-automation.de: did not receive HSTS header
mausi.co: did not receive HSTS header
mavisang.cf: could not connect to host
mawe.red: could not connect to host
-maxhoechtl.at: could not connect to host
+max-mad.com: could not connect to host
+maxfox.me: could not connect to host
maxhorvath.com: could not connect to host
maxibanki.ovh: could not connect to host
maxicore.co.za: could not connect to host
maxima.at: did not receive HSTS header
maximelouet.me: did not receive HSTS header
-maximov.space: did not receive HSTS header
+maximov.space: could not connect to host
maxkeller.io: did not receive HSTS header
maxmachine.ind.br: could not connect to host
+maxr1998.de: could not connect to host
maxserver.com: did not receive HSTS header
+maya-ro.com: could not connect to host
maya.mg: could not connect to host
maybeul.com: could not connect to host
+maydex.info: could not connect to host
maynardnetworks.com: could not connect to host
mayoristassexshop.com: did not receive HSTS header
-maze.design: did not receive HSTS header
-mazurlabs.tk: could not connect to host
mazyun.com: did not receive HSTS header
mazz-tech.com: could not connect to host
-mbanq.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mbconsultancy.nu: did not receive HSTS header
mbdrogenbos-usedcars.be: could not connect to host
mbwemmel-usedcars.be: could not connect to host
@@ -9571,7 +10452,6 @@ mcadmin.net: could not connect to host
mcard.vn: did not receive HSTS header
mcb-bank.com: did not receive HSTS header
mcc.re: could not connect to host
-mccarty.io: could not connect to host
mccordworks.com: did not receive HSTS header
mcdanieldevelopmentservices.com: could not connect to host
mcdonalds.ru: did not receive HSTS header
@@ -9582,8 +10462,10 @@ mcideas.tk: could not connect to host
mcjackk77.com: could not connect to host
mckinley1.com: could not connect to host
mckinleytk.com: could not connect to host
+mcl.gg: did not receive HSTS header
mclab.su: max-age too low: 2592000
mclist.it: could not connect to host
+mclyr.com: could not connect to host
mcnoobs.pro: could not connect to host
mcooperlaw.com: did not receive HSTS header
mcqyy.com: could not connect to host
@@ -9598,10 +10480,9 @@ mdfnet.se: did not receive HSTS header
mdscomp.net: did not receive HSTS header
mdwftw.com: could not connect to host
me-dc.com: could not connect to host
-meadowfenfarm.com: could not connect to host
meadowviewfarms.org: could not connect to host
mealz.com: did not receive HSTS header
-meanevo.com: could not connect to host
+meanevo.com: did not receive HSTS header
measuretwice.com: did not receive HSTS header
meat-education.com: could not connect to host
meathealth.com: could not connect to host
@@ -9610,9 +10491,10 @@ mecanicadom.com: could not connect to host
mecenat-cassous.com: did not receive HSTS header
mechok.ru: could not connect to host
medallia.io: could not connect to host
+meddatix.com: could not connect to host
media-access.online: did not receive HSTS header
media-courses.com: could not connect to host
-mediacru.sh: could not connect to host
+mediacru.sh: max-age too low: 0
mediadandy.com: could not connect to host
mediafinancelab.org: could not connect to host
mediamag.am: max-age too low: 0
@@ -9622,7 +10504,7 @@ medicinskavranje.edu.rs: could not connect to host
medienservice-fritz.de: did not receive HSTS header
medifab.online: did not receive HSTS header
medirich.co: could not connect to host
-meditek-dv.ru: could not connect to host
+meditek-dv.ru: did not receive HSTS header
mediter-simplement.com: did not receive HSTS header
mediterenopmaandag.nl: did not receive HSTS header
mediumraw.org: did not receive HSTS header
@@ -9631,27 +10513,24 @@ medm-test.com: could not connect to host
medpot.net: did not receive HSTS header
medsindex.com: max-age too low: 2592000
medstreaming.com: did not receive HSTS header
+medtankers.management: did not receive HSTS header
medy-me.com: could not connect to host
medzinenews.com: did not receive HSTS header
meedoenzaanstad.nl: did not receive HSTS header
meetfinch.com: could not connect to host
-meetmibaby.co.uk: could not connect to host
-meetscompany.jp: could not connect to host
megadrol.com: could not connect to host
+megaflix.nl: could not connect to host
megakiste.de: could not connect to host
megam.host: could not connect to host
megashur.se: did not receive HSTS header
-megasystem.cl: did not receive HSTS header
+megasystem.cl: could not connect to host
meghudson.com: could not connect to host
-mego.cloud: could not connect to host
meifrench.com: could not connect to host
-meiju.video: could not connect to host
meincloudspeicher.de: could not connect to host
meine-reise-gut-versichert.de: did not receive HSTS header
meinebo.it: could not connect to host
meisterritter.de: did not receive HSTS header
meizufans.eu: could not connect to host
-mekongeye.com: could not connect to host
melakaltenegger.at: did not receive HSTS header
melangebrasil.com: could not connect to host
melaniebilodeau.com: did not receive HSTS header
@@ -9670,23 +10549,29 @@ melvinlammerts.nl: could not connect to host
melvinlow.com: did not receive HSTS header
memberpress.com: did not receive HSTS header
members.mayfirst.org: did not receive HSTS header
+membersonline.org: did not receive HSTS header
memdoc.org: could not connect to host
memeblast.ninja: could not connect to host
memepasmal.org: could not connect to host
-memes.nz: could not connect to host
+memes.nz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
memetrash.co.uk: could not connect to host
+memind.net: could not connect to host
memory-plus-180.com: could not connect to host
memorygame.io: did not receive HSTS header
memorytrace.space: could not connect to host
menaraannonces.com: could not connect to host
menchez.me: could not connect to host
-mennace.com: did not receive HSTS header
+menhera.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
menotag.com: did not receive HSTS header
mensachterdepatient.nl: max-age too low: 2592000
mensmaximus.de: did not receive HSTS header
+mentalhealth.gov: did not receive HSTS header
mentax.net: did not receive HSTS header
+mentesemprendedoras.net: could not connect to host
menthix.net: could not connect to host
+menu.fyi: could not connect to host
menudrivetest.com: could not connect to host
+menuel.me: did not receive HSTS header
menuiserie-berard.com: did not receive HSTS header
menzaijia.com: could not connect to host
meo.de: could not connect to host
@@ -9699,10 +10584,11 @@ mercedes-benz-usedcars.be: could not connect to host
mercury-studio.com: did not receive HSTS header
mereckas.com: could not connect to host
meredithkm.info: did not receive HSTS header
-meremobil.dk: did not receive HSTS header
+merenita.eu: did not receive HSTS header
mergozzo.com: did not receive HSTS header
merimatka.fi: could not connect to host
meritz.rocks: could not connect to host
+merloat.club: could not connect to host
mersinunivercity.com: could not connect to host
merson.me: could not connect to host
mertak.cz: did not receive HSTS header
@@ -9710,16 +10596,14 @@ meshlab.co: could not connect to host
meshotes.com: max-age too low: 8640000
meskdeals.com: could not connect to host
mesmoque.com: could not connect to host
+messagescelestes-archives.ca: did not receive HSTS header
messagescelestes.ca: did not receive HSTS header
-meta-word.com: could not connect to host
metadistribution.com: did not receive HSTS header
-metaether.net: could not connect to host
metagrader.com: could not connect to host
metalsculpture.co.uk: max-age too low: 0
+metanic.org: did not receive HSTS header
+metaregistrar.com: max-age too low: 0
metasyntactic.xyz: could not connect to host
-metaword.com: could not connect to host
-metaword.net: could not connect to host
-metaword.org: could not connect to host
metebalci.com: did not receive HSTS header
meteosky.net: could not connect to host
meter.md: could not connect to host
@@ -9735,20 +10619,22 @@ metzgerei-birkenhof.de: could not connect to host
meu-smartphone.com: did not receive HSTS header
meucosmetico.com.br: could not connect to host
meuemail.pro: could not connect to host
-meupedido.online: could not connect to host
+meupedido.online: did not receive HSTS header
meusigno.com: could not connect to host
mexbt.com: could not connect to host
mexicanbusinessweb.mx: did not receive HSTS header
-mexicansbook.ru: could not connect to host
+mexicansbook.ru: did not receive HSTS header
mexior.nl: could not connect to host
meyeraviation.com: could not connect to host
mfcatalin.com: could not connect to host
mfedderke.com: could not connect to host
mfgod.com: did not receive HSTS header
mfiles.pl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+mfpccprod.com: could not connect to host
mfrsgb45.org: did not receive HSTS header
mft.global: could not connect to host
mfxer.com: could not connect to host
+mgcraft.net: did not receive HSTS header
mgdigital.fr: did not receive HSTS header
mgiay.com: did not receive HSTS header
mgoessel.de: did not receive HSTS header
@@ -9764,15 +10650,18 @@ mia.to: could not connect to host
miamicityballet.org: did not receive HSTS header
mianfei-vpn.com: could not connect to host
miboulot.com: could not connect to host
-michael-schilling.de: did not receive HSTS header
+micaiahparker.com: could not connect to host
+micasamgmt.com: did not receive HSTS header
michaeldemuth.com: could not connect to host
michaelfitzpatrickruth.com: did not receive HSTS header
+michaelizquierdo.com: max-age too low: 0
michaelklos.nl: could not connect to host
michaelmorpurgo.com: did not receive HSTS header
michaeln.net: could not connect to host
+michaels-homepage-service.de: could not connect to host
michaelscrivo.com: did not receive HSTS header
-michaelsulzer.com: did not receive HSTS header
-michaelsulzer.eu: did not receive HSTS header
+michaelsulzer.com: could not connect to host
+michaelsulzer.eu: could not connect to host
michaelwaite.org: could not connect to host
michal-kral.cz: could not connect to host
michalborka.cz: could not connect to host
@@ -9780,13 +10669,13 @@ michalkral.tk: could not connect to host
michalvasicek.cz: did not receive HSTS header
michasfahrschule.com: could not connect to host
michel.pt: did not receive HSTS header
+michele.ml: could not connect to host
michelledonelan.co.uk: did not receive HSTS header
michiganmetalartwork.com: max-age too low: 7889238
mico.world: could not connect to host
miconware.de: could not connect to host
micro-dv.ru: could not connect to host
micro-rain-systems.com: did not receive HSTS header
-microbiote-insectes-vecteurs.group: did not receive HSTS header
microblading.pe: could not connect to host
microdesic.com: could not connect to host
microme.ga: could not connect to host
@@ -9812,9 +10701,10 @@ miguksaram.com: could not connect to host
mijn-email.org: could not connect to host
mijndiad.nl: did not receive HSTS header
mijnkredietpaspoort.nl: could not connect to host
+mijnsite.ovh: could not connect to host
mika.cat: could not connect to host
mikadesign.se: did not receive HSTS header
-mikaela.info: did not receive HSTS header
+mikaela.info: max-age too low: 0
mikaelemilsson.net: did not receive HSTS header
mikeburns.com: could not connect to host
mikedugan.org: did not receive HSTS header
@@ -9826,11 +10716,10 @@ mikes.tk: could not connect to host
mikeybot.com: could not connect to host
mikii.club: could not connect to host
mikk.cz: could not connect to host
-mikkelscheike.com: could not connect to host
-mikkelvej.dk: could not connect to host
+mikori.sk: did not receive HSTS header
mikro-inwestycje.co.uk: did not receive HSTS header
miku.be: could not connect to host
-miku.hatsune.my: could not connect to host
+miku.hatsune.my: did not receive HSTS header
mikusinec.com: could not connect to host
milahendri.com: did not receive HSTS header
milang.xyz: could not connect to host
@@ -9840,13 +10729,17 @@ milesgeek.com: did not receive HSTS header
military-portal.cz: did not receive HSTS header
militarycarlot.com: did not receive HSTS header
militaryconsumer.gov: did not receive HSTS header
+milkingit.net: could not connect to host
millibitcoin.jp: could not connect to host
millionairessecrets.com: could not connect to host
+millions25.com: could not connect to host
+millions26.com: could not connect to host
+millions27.com: could not connect to host
millstep.de: did not receive HSTS header
milonga.tips: could not connect to host
mim.properties: could not connect to host
mimbeim.com: did not receive HSTS header
-mimm.gov: could not connect to host
+mimm.gov: did not receive HSTS header
mimoderoupa.pt: could not connect to host
min.kiwi: could not connect to host
minacssas.com: could not connect to host
@@ -9855,7 +10748,7 @@ mind.sh: did not receive HSTS header
mindbodycontinuum.com: could not connect to host
mindcell.no: could not connect to host
mindcraft.ga: could not connect to host
-mindturbo.com: did not receive HSTS header
+mindwork.space: could not connect to host
mine.world: could not connect to host
minecraft-forum.cf: could not connect to host
minecraft-forum.ga: could not connect to host
@@ -9877,7 +10770,6 @@ mingkyaa.com: could not connect to host
mingo.nl: max-age too low: 2592000
mingy.ddns.net: could not connect to host
mingyueli.com: could not connect to host
-minh.at: did not receive HSTS header
minhanossasenhora.com.br: could not connect to host
mini-piraten.de: did not receive HSTS header
minikneet.nl: did not receive HSTS header
@@ -9891,8 +10783,8 @@ minnesotadata.com: could not connect to host
minor.news: could not connect to host
minora.io: could not connect to host
minoris.se: did not receive HSTS header
+minorshadows.net: did not receive HSTS header
mintea-noua.ro: could not connect to host
-minu.link: could not connect to host
mipiaci.co.nz: did not receive HSTS header
mipiaci.com.au: did not receive HSTS header
miragrow.com: could not connect to host
@@ -9907,31 +10799,33 @@ miruc.co: did not receive HSTS header
mirucon.com: did not receive HSTS header
misconfigured.io: could not connect to host
miscreant.me: could not connect to host
-misericordiasegrate.org: could not connect to host
+misericordiasegrate.org: did not receive HSTS header
misgluteosperfectos.com: did not receive HSTS header
-misiondelosangeles-mailing.com: did not receive HSTS header
+misiondelosangeles-mailing.com: could not connect to host
misiru.jp: could not connect to host
-missguidedus.com: did not receive HSTS header
missrain.tw: could not connect to host
missycosmeticos.com.br: could not connect to host
mist.ink: could not connect to host
-mister.hosting: could not connect to host
+mister.hosting: did not receive HSTS header
misterl.net: did not receive HSTS header
misuzu.moe: could not connect to host
mitarbeiter-pc.de: did not receive HSTS header
mitchellrenouf.ca: could not connect to host
mitior.net: could not connect to host
mitm-software.badssl.com: could not connect to host
+mitsign.com: could not connect to host
mittenhacks.com: could not connect to host
+mityinc.com: did not receive HSTS header
miukimodafeminina.com: could not connect to host
mivcon.net: could not connect to host
-mixer.cash: did not receive HSTS header
+mixer.cash: could not connect to host
miya.io: could not connect to host
miyako-kyoto.jp: could not connect to host
miyoshi-kikaku.co.jp: could not connect to host
mizd.at: could not connect to host
mizi.name: could not connect to host
-mjcaffarattilaw.com: could not connect to host
+mjcaffarattilaw.com: did not receive HSTS header
+mjec.net: could not connect to host
mjhsc.nl: did not receive HSTS header
mk-dizajn.com: could not connect to host
mkacg.com: could not connect to host
@@ -9939,9 +10833,10 @@ mkakh.xyz: could not connect to host
mkfs.be: could not connect to host
mkfs.fr: could not connect to host
mkg-palais-hanau.de: did not receive HSTS header
-mkg-wiebelskirchen.de: could not connect to host
+mkie.cf: could not connect to host
mkp-deutschland.de: did not receive HSTS header
mkplay.io: could not connect to host
+mkuznets.com: could not connect to host
mkw.st: could not connect to host
mlcambiental.com.br: did not receive HSTS header
mlcdn.co: could not connect to host
@@ -9952,21 +10847,25 @@ mlpvc-rr.ml: did not receive HSTS header
mlrslateroofing.com.au: did not receive HSTS header
mlsrv.de: could not connect to host
mm-wife.com: could not connect to host
+mmaps.ddns.net: could not connect to host
mmarnitz.de: could not connect to host
mmcc.pe: did not receive HSTS header
mmgazhomeloans.com: did not receive HSTS header
mmilog.hu: could not connect to host
mmmm.com: could not connect to host
mmstick.tk: could not connect to host
+mnd.sc: could not connect to host
mnec.io: could not connect to host
mneeb.de: could not connect to host
mnemotiv.com: could not connect to host
mnetworkingsolutions.co.uk: could not connect to host
mnmt.no: did not receive HSTS header
mnwt.nl: could not connect to host
+mo3.club: could not connect to host
moar.so: did not receive HSTS header
moas.design: did not receive HSTS header
moas.photos: did not receive HSTS header
+mobag.ru: did not receive HSTS header
mobaircon.com: did not receive HSTS header
mobile-gesundheit.org: could not connect to host
mobile.eti.br: could not connect to host
@@ -9991,6 +10890,7 @@ mockmyapp.com: could not connect to host
mocloud.eu: could not connect to host
mocloud.win: could not connect to host
mocsuite.club: could not connect to host
+mocurio.com: could not connect to host
modalrakyat.com: could not connect to host
modalrakyat.id: did not receive HSTS header
modaperuimport.com: could not connect to host
@@ -9999,8 +10899,8 @@ modded-minecraft-server-list.com: could not connect to host
moddedark.com: could not connect to host
mode-marine.com: could not connect to host
modecaso.com: could not connect to host
-modehaus-marionk.de: could not connect to host
model9.io: did not receive HSTS header
+modeldimension.com: could not connect to host
modelsclub.org.ua: could not connect to host
modemagazines.co.uk: could not connect to host
moderatortv.de: did not receive HSTS header
@@ -10010,19 +10910,17 @@ mododo.de: could not connect to host
modx.by: max-age too low: 31536
modx.io: could not connect to host
modydev.club: could not connect to host
-moe-max.jp: could not connect to host
moe.pe: could not connect to host
+moe.wtf: could not connect to host
moe4sale.in: did not receive HSTS header
moebel-nagel.de: did not receive HSTS header
moebel-vergleichen.com: did not receive HSTS header
moefi.xyz: could not connect to host
moegirl.org: did not receive HSTS header
-moehrke.cc: could not connect to host
moellers.it: could not connect to host
moeloli.pw: did not receive HSTS header
moelord.org: could not connect to host
moen.io: did not receive HSTS header
-moeqing.net: could not connect to host
moevenpick-cafe.com: did not receive HSTS header
moeyun.net: could not connect to host
mogry.net: did not receive HSTS header
@@ -10033,10 +10931,8 @@ moitur.com: did not receive HSTS header
mojapraca.sk: did not receive HSTS header
mojefilmy.xyz: could not connect to host
mojizuri.jp: max-age too low: 86400
-mojnet.eu: could not connect to host
-mojnet.net: could not connect to host
-mojoco.co.za: could not connect to host
mokadev.com: did not receive HSTS header
+mokken-fabriek.nl: did not receive HSTS header
molokai.org: could not connect to host
mols.me: could not connect to host
momento.co.id: did not receive HSTS header
@@ -10046,14 +10942,12 @@ mommelonline.de: could not connect to host
momoka.moe: could not connect to host
mon-a-lisa.com: did not receive HSTS header
mon-mobile.com: did not receive HSTS header
-mona-antenna.com: did not receive HSTS header
mona.lu: could not connect to host
monalisa.wtf: could not connect to host
monarca.systems: could not connect to host
monasterialis.eu: could not connect to host
monautoneuve.fr: did not receive HSTS header
mondar.io: could not connect to host
-mondedie.fr: could not connect to host
mondopoint.com: did not receive HSTS header
mondwandler.de: could not connect to host
moneoci.com.br: could not connect to host
@@ -10062,18 +10956,17 @@ moneycrownmedia.com: could not connect to host
moneyfactory.gov: did not receive HSTS header
mongla168.net: could not connect to host
mongla88.net: could not connect to host
-monicabeckstrom.no: could not connect to host
+monicabeckstrom.no: did not receive HSTS header
monika-sokol.de: did not receive HSTS header
+monique.io: could not connect to host
monitaure.io: could not connect to host
-monitman.com: did not receive HSTS header
monitman.solutions: could not connect to host
monitorchain.com: did not receive HSTS header
monitori.ng: could not connect to host
-monkieteel.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+monkieteel.nl: max-age too low: 2592000
monochrometoys.com: could not connect to host
-monodukuri.cafe: did not receive HSTS header
-monodzukuri.cafe: did not receive HSTS header
-monokoo.com: could not connect to host
+monodukuri.cafe: could not connect to host
+monodzukuri.cafe: could not connect to host
monotsuku.com: could not connect to host
monozukuri.cafe: did not receive HSTS header
montanacures.org: could not connect to host
@@ -10081,18 +10974,18 @@ montanana.com: did not receive HSTS header
montand.com: did not receive HSTS header
monteurzimmerfrei.de: could not connect to host
montonicms.com: could not connect to host
-moo.pet: did not receive HSTS header
+moo.pet: could not connect to host
moobo.xyz: did not receive HSTS header
moodifiers.com: could not connect to host
moon.lc: could not connect to host
-moonchart.co.uk: did not receive HSTS header
+moonagic.io: could not connect to host
moonless.net: could not connect to host
moonloupe.com: could not connect to host
+moonrhythm.info: could not connect to host
moonrhythm.io: did not receive HSTS header
moonysbouncycastles.co.uk: could not connect to host
moosemanstudios.com: could not connect to host
moov.is: could not connect to host
-moovablestorage.com: could not connect to host
moparcraft.com: could not connect to host
moparcraft.org: could not connect to host
moparisthebest.biz: could not connect to host
@@ -10102,29 +10995,33 @@ mopsuite.club: could not connect to host
mor.cloud: could not connect to host
mor.gl: could not connect to host
mordrum.com: could not connect to host
+morenci.ch: could not connect to host
+morepopcorn.co.nz: did not receive HSTS header
moreserviceleads.com: did not receive HSTS header
+morespacestorage.com.au: did not receive HSTS header
morethanadream.lv: could not connect to host
morfitronik.pl: could not connect to host
morganestes.com: max-age too low: 0
morganino.eu: could not connect to host
morningcalculation.com: could not connect to host
morninglory.com: did not receive HSTS header
-mornings.com: could not connect to host
+mornings.com: did not receive HSTS header
morotech.com.br: did not receive HSTS header
morpheusx.at: could not connect to host
morpheusxaut.net: could not connect to host
morpork.xyz: could not connect to host
+morrodafumacanoticias.com.br: did not receive HSTS header
morz.org: max-age too low: 0
mosaique-lachenaie.fr: could not connect to host
moskva.guide: did not receive HSTS header
moso.io: did not receive HSTS header
mostlyharmless.at: could not connect to host
+mostlyinfinite.com: did not receive HSTS header
mostwuat.com: could not connect to host
motherbase.io: could not connect to host
motherboard.services: could not connect to host
motionfreight.com: could not connect to host
motionpicturesolutions.com: did not receive HSTS header
-motocollection.pl: did not receive HSTS header
motocyklovedily.cz: did not receive HSTS header
motomorgen.com: could not connect to host
motorbiketourhanoi.com: could not connect to host
@@ -10136,26 +11033,28 @@ motovio.de: did not receive HSTS header
motransportinfo.com: did not receive HSTS header
mottvd.com: could not connect to host
moube.fr: could not connect to host
+moucloud.cn: did not receive HSTS header
moudicat.com: max-age too low: 6307200
moula.com.au: did not receive HSTS header
moumaobuchiyu.com: could not connect to host
mountainadventureseminars.com: did not receive HSTS header
mountainmusicpromotions.com: did not receive HSTS header
movabletype.net: max-age too low: 3600
+moveek.com: did not receive HSTS header
moveltix.net: could not connect to host
movepin.com: could not connect to host
-movie4k.fyi: could not connect to host
+movie4k.fyi: max-age too low: 0
movie4k.life: could not connect to host
movie4kto.site: could not connect to host
moviedollars.com: could not connect to host
movienang.com: max-age too low: 0
moviesabout.net: could not connect to host
-moviespur.info: did not receive HSTS header
moving-pixtures.de: could not connect to host
movingoklahoma.org: could not connect to host
movio.ga: could not connect to host
mowalls.net: could not connect to host
moy-gorod.od.ua: did not receive HSTS header
+moysovet.info: did not receive HSTS header
moyu.host: did not receive HSTS header
mozart-game.cz: could not connect to host
mozartgame.cz: could not connect to host
@@ -10167,10 +11066,14 @@ mp3donusturucu.com: did not receive HSTS header
mp3donusturucu.net: did not receive HSTS header
mp3gratuiti.com: could not connect to host
mp3juices.is: could not connect to host
+mpe.org: did not receive HSTS header
mpi-sa.fr: did not receive HSTS header
mpkossen.com: did not receive HSTS header
mpn.poker: did not receive HSTS header
+mpreserver.com: could not connect to host
mpserver12.org: could not connect to host
+mpu-giessen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+mqas.net: could not connect to host
mr-coffee.net: could not connect to host
mr-hosting.com: could not connect to host
mrafrohead.com: could not connect to host
@@ -10181,17 +11084,16 @@ mrdleisure.co.uk: did not receive HSTS header
mredsanders.net: did not receive HSTS header
mrettich.org: did not receive HSTS header
mrhc.ru: could not connect to host
-mrhee.com: did not receive HSTS header
mrizzio.com: could not connect to host
mrksk.com: could not connect to host
mrleonardo.com: did not receive HSTS header
mrliu.me: could not connect to host
+mrmoregame.de: could not connect to host
mrnh.tk: could not connect to host
mrnonz.com: max-age too low: 0
mrparker.pw: did not receive HSTS header
mrpopat.in: did not receive HSTS header
mrpropop.com: max-age too low: 0
-mrs-shop.com: did not receive HSTS header
mruganiepodspacja.pl: could not connect to host
msc-seereisen.net: could not connect to host
msgallery.tk: could not connect to host
@@ -10205,6 +11107,7 @@ mszaki.com: did not receive HSTS header
mt.me.uk: could not connect to host
mtamaki.com: could not connect to host
mtau.com: max-age too low: 2592000
+mtb.wtf: could not connect to host
mtcgf.com: did not receive HSTS header
mtd.ovh: could not connect to host
mtdn.jp: could not connect to host
@@ -10212,6 +11115,8 @@ mtfgnettoyage.fr: could not connect to host
mtg-esport.de: did not receive HSTS header
mtirc.co: could not connect to host
mtn.cc: could not connect to host
+mtr.md: could not connect to host
+mtravelers.net: could not connect to host
mu3on.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
muchohentai.com: could not connect to host
muffet.pw: could not connect to host
@@ -10221,19 +11126,18 @@ mujadin.se: did not receive HSTS header
mulenvo.com: did not receive HSTS header
mulheres18.com: could not connect to host
mullen.net.au: did not receive HSTS header
-multiterm.org: did not receive HSTS header
+multiterm.org: could not connect to host
multivpn.cn.com: could not connect to host
multivpn.com.de: could not connect to host
multivpn.com.ua: could not connect to host
multivpn.fr: could not connect to host
multiworldsoftware.com: did not receive HSTS header
+multizone.games: could not connect to host
mumei.space: did not receive HSTS header
mundoadulto.com.br: did not receive HSTS header
mundoalpha.com.br: did not receive HSTS header
-mundodapoesia.com: did not receive HSTS header
munecoscabezones.com: did not receive HSTS header
-munich-rage.de: did not receive HSTS header
-munirajiwa.com: could not connect to host
+munich-rage.de: could not connect to host
munkiepus.com: did not receive HSTS header
munpanel.com: could not connect to host
munrabi.com: could not connect to host
@@ -10250,14 +11154,16 @@ murraycolin.org: could not connect to host
murrayrun.com: did not receive HSTS header
mursu.directory: could not connect to host
murz.tv: could not connect to host
-murzik.space: could not connect to host
muscleangels.com: could not connect to host
+musearchengine.com: could not connect to host
museminder2.com: did not receive HSTS header
-museumstreak.com: did not receive HSTS header
+museumstreak.com: could not connect to host
musewearflipflops.com: could not connect to host
mushman.tk: could not connect to host
mushroomandfern.com: could not connect to host
musi.cx: could not connect to host
+musicaconleali.it: did not receive HSTS header
+musiccitycats.com: did not receive HSTS header
musikkfondene.no: did not receive HSTS header
musikzug-bookholzberg.de: did not receive HSTS header
muslimbanter.co.za: could not connect to host
@@ -10271,6 +11177,7 @@ mvanmarketing.nl: did not receive HSTS header
mvnet.com.br: did not receive HSTS header
mvsecurity.nl: could not connect to host
mwalz.com: could not connect to host
+mwohlfarth.de: did not receive HSTS header
mxawei.cn: could not connect to host
mxlife.org: could not connect to host
my-demo.co: could not connect to host
@@ -10290,13 +11197,13 @@ mybboard.pl: could not connect to host
mybudget.xyz: could not connect to host
mybuilderinlondon.co.uk: did not receive HSTS header
mybusiness.cm: did not receive HSTS header
-mycamda.com: could not connect to host
mychocolateweightloss.com: could not connect to host
myclientsplus.com: did not receive HSTS header
mycollab.net: could not connect to host
mycolorado.gov: could not connect to host
mycontrolmonitor.com: could not connect to host
mycoted.com: did not receive HSTS header
+mycuco.it: did not receive HSTS header
myday.eu.com: did not receive HSTS header
mydeos.com: could not connect to host
mydigipass.com: did not receive HSTS header
@@ -10306,11 +11213,12 @@ mydnatest.com: did not receive HSTS header
mydriversedge.com: did not receive HSTS header
myepass.bg: could not connect to host
myepass.de: could not connect to host
+myessaygeek.com: could not connect to host
myfappening.org: could not connect to host
myfdic.gov: could not connect to host
+myfishpalace.at: could not connect to host
myfunworld.de: could not connect to host
-mygalgame.com: could not connect to host
-mygate.at: did not receive HSTS header
+mygalgame.com: did not receive HSTS header
mygaysitges.com: could not connect to host
mygivingcircle.org: did not receive HSTS header
mygooder.com: did not receive HSTS header
@@ -10319,25 +11227,22 @@ mygpsite.com: did not receive HSTS header
mygreatjob.eu: could not connect to host
myhair.asia: did not receive HSTS header
myhloli.com: did not receive HSTS header
-myhostname.net: did not receive HSTS header
myicare.org: did not receive HSTS header
myiocc.org: did not receive HSTS header
myip.tech: max-age too low: 2592000
-myipaddr.de: did not receive HSTS header
+myjumpsuit.de: did not receive HSTS header
mykolab.com: did not receive HSTS header
mykreuzfahrt.de: could not connect to host
mylene-chandelier.me: did not receive HSTS header
mylighthost.com: did not receive HSTS header
mylocalsearch.co.uk: did not receive HSTS header
mylotto.co.nz: could not connect to host
-mymadina.com: could not connect to host
mymp3singer.co: could not connect to host
mymp3singer.net: could not connect to host
mymp3singer.site: could not connect to host
mymsr.de: did not receive HSTS header
myndcommunication.com: could not connect to host
mynetblog.com: did not receive HSTS header
-mynetworkingbuddy.com: could not connect to host
mynewleaf.co: did not receive HSTS header
mynewselfbariatrics.com: did not receive HSTS header
myni.io: could not connect to host
@@ -10355,6 +11260,7 @@ mypanier.com: max-age too low: 7889238
mypaperwriter.com: could not connect to host
myparfumerie.at: did not receive HSTS header
mypension.ca: could not connect to host
+myperfumecollection.com: did not receive HSTS header
myphonebox.de: could not connect to host
myptsite.com: could not connect to host
myqdu.cn: could not connect to host
@@ -10365,25 +11271,30 @@ myrig.ru: did not receive HSTS header
myrsa.in: did not receive HSTS header
myruststats.com: could not connect to host
mysa.is: could not connect to host
+mysber.ru: did not receive HSTS header
mysecretrewards.com: could not connect to host
+mysongbird.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
myspa.asia: did not receive HSTS header
mystery-science-theater-3000.de: did not receive HSTS header
mysteryblog.de: did not receive HSTS header
+mysterysear.ch: could not connect to host
mystown.org: could not connect to host
mystudy.me: could not connect to host
mytc.fr: could not connect to host
-mythemeshop.com: did not receive HSTS header
mythlogic.com: did not receive HSTS header
mythslegendscollection.com: did not receive HSTS header
mytravelblog.de: could not connect to host
mywallets.io: could not connect to host
myweb360.de: did not receive HSTS header
+mywebinar.io: could not connect to host
+mywebpanel.nl: did not receive HSTS header
myxbox.gr: max-age too low: 0
-myzone.com: did not receive HSTS header
+myzone.com: max-age too low: 0
+mziulu.me: could not connect to host
mzlog.win: could not connect to host
mzorn.photography: could not connect to host
n-rickroll-e.pw: could not connect to host
-n-x.info: did not receive HSTS header
+n-x.info: could not connect to host
n0099.cf: did not receive HSTS header
n0rm.ru: could not connect to host
n0s.de: did not receive HSTS header
@@ -10392,32 +11303,29 @@ n2x.in: could not connect to host
n3twork.net: could not connect to host
n4l.pw: could not connect to host
n64chan.me: did not receive HSTS header
-n8ch.net: could not connect to host
+n7.education: did not receive HSTS header
na.hn: did not receive HSTS header
naano.org: could not connect to host
nabru.co.uk: did not receive HSTS header
nabu-bad-nauheim.de: did not receive HSTS header
nabytko.cz: could not connect to host
-nacktetatsachen.at: did not receive HSTS header
nadia.pt: could not connect to host
nagaragem.com.br: did not receive HSTS header
nagios.by: did not receive HSTS header
nagoya-kyuyo.com: could not connect to host
naiaspa.fr: did not receive HSTS header
naiharngym.com: did not receive HSTS header
-nailedithomebuilders.com: could not connect to host
+nailedithomebuilders.com: max-age too low: 300
nais.me: did not receive HSTS header
najedlo.sk: could not connect to host
-nakada4610.com: could not connect to host
nakamastreamingcommunity.com: could not connect to host
-nakanishi-paint.com: could not connect to host
nakhonidc.com: could not connect to host
nakitbonus2.com: could not connect to host
nakliyatsirketi.biz: could not connect to host
nakuro.de: could not connect to host
nalao-company.com: did not receive HSTS header
nalifornia.com: could not connect to host
-nalinux.cz: did not receive HSTS header
+nalinux.cz: could not connect to host
nallon.com.br: could not connect to host
nalukfitness.com.br: could not connect to host
namacindia.com: did not receive HSTS header
@@ -10427,14 +11335,15 @@ nameme.xyz: could not connect to host
nametaken-cloud.duckdns.org: could not connect to host
namethatbone.com: could not connect to host
namethatporn.com: could not connect to host
+nami.exchange: could not connect to host
namikawatetsuji.jp: could not connect to host
-namorico.me: could not connect to host
+namorico.me: max-age too low: 0
+namuwikiusercontent.com: could not connect to host
nan.ci: did not receive HSTS header
nan.zone: could not connect to host
nanami.moe: could not connect to host
nanderson.me: could not connect to host
nanfangstone.com: could not connect to host
-nani.io: did not receive HSTS header
naniki.co.uk: could not connect to host
nanogeneinc.com: could not connect to host
nanokamo.com: did not receive HSTS header
@@ -10445,27 +11354,32 @@ naoar.com: could not connect to host
naphex.rocks: could not connect to host
napisynapomniky.cz: did not receive HSTS header
narach.com: did not receive HSTS header
-nargele.eu: could not connect to host
+nargele.eu: did not receive HSTS header
narko.space: could not connect to host
narodniki.com: did not receive HSTS header
narviz.com: did not receive HSTS header
nasarawanewsonline.com: could not connect to host
+nasme.tk: could not connect to host
nasmocopati.com: did not receive HSTS header
-nasralmabrooka.com: could not connect to host
+nasralmabrooka.com: did not receive HSTS header
nastysclaw.com: could not connect to host
natalia-fadeeva.ru: could not connect to host
natalia.io: did not receive HSTS header
natalieandjoshua.com: could not connect to host
natalt.org: did not receive HSTS header
natalydanilova.com: max-age too low: 300
+natanaelys.com: could not connect to host
nataniel-perissier.fr: could not connect to host
nate.sh: could not connect to host
natenom.com: max-age too low: 7200
natenom.de: max-age too low: 7200
natenom.name: max-age too low: 7200
nathanmfarrugia.com: did not receive HSTS header
+nationalbank.gov: did not receive HSTS header
+nationalbanknet.gov: did not receive HSTS header
nationalmall.gov: could not connect to host
nationwidevehiclecontracts.co.uk: did not receive HSTS header
+natropie.pl: could not connect to host
natur-udvar.hu: could not connect to host
natural-progesterone.net: could not connect to host
naturalcommission.com: could not connect to host
@@ -10475,16 +11389,20 @@ natuterra.com.br: could not connect to host
natuurbehangnederland.nl: could not connect to host
nauck.org: did not receive HSTS header
naudles.me: could not connect to host
+naughty.audio: could not connect to host
nav.jobs: could not connect to host
naval.tf: could not connect to host
+navegos.net: did not receive HSTS header
naviaddress.io: did not receive HSTS header
-navigate-it-services.de: did not receive HSTS header
naviteq.eu: could not connect to host
+navitime.me: did not receive HSTS header
navjobs.com: could not connect to host
nawroth.info: could not connect to host
nax.io: did not receive HSTS header
nay.moe: did not receive HSTS header
nba2kqq.com: could not connect to host
+nba669.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+nba686.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
nbb.io: could not connect to host
nbg-ha.de: could not connect to host
nbis.gov: could not connect to host
@@ -10492,36 +11410,40 @@ nbl.org.tw: could not connect to host
nbrown.us: could not connect to host
nbtparse.org: could not connect to host
nc2c.com: could not connect to host
-nc99.co: could not connect to host
ncc60205.info: could not connect to host
ncdesigns-studio.com: could not connect to host
nchristo.com: did not receive HSTS header
ncloud.freeddns.org: could not connect to host
+nclvle.co.uk: did not receive HSTS header
ncpc.gov: could not connect to host
ncpw.gov: did not receive HSTS header
ncrmnt.org: did not receive HSTS header
nct.org.uk: did not receive HSTS header
-nctx.co.uk: did not receive HSTS header
ndmath.club: could not connect to host
ndtblog.com: could not connect to host
ndtmarket.place: could not connect to host
-ne1home.dyndns.org: could not connect to host
+ne1home.dyndns.org: did not receive HSTS header
neap.io: could not connect to host
near.st: did not receive HSTS header
nearbiwa.com: did not receive HSTS header
nearon.nl: could not connect to host
neavision.de: did not receive HSTS header
+nebula.exchange: did not receive HSTS header
nebulousenhanced.com: could not connect to host
necesitodinero.org: could not connect to host
necio.ca: could not connect to host
nedcf.org.uk: could not connect to host
nediyor.com: did not receive HSTS header
nedwave.com: did not receive HSTS header
-nedzad.me: could not connect to host
-neels.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+nedzad.me: max-age too low: 0
+needle.net.nz: could not connect to host
+needle.nz: could not connect to host
+neels.ch: did not receive HSTS header
neer.io: could not connect to host
+neet-investor.biz: could not connect to host
neftaly.com: did not receive HSTS header
neftebitum-kngk.ru: did not receive HSTS header
+negativecurvature.net: could not connect to host
negativzinsen.info: did not receive HSTS header
negraelinda.com: did not receive HSTS header
neilgreen.net: did not receive HSTS header
@@ -10535,15 +11457,16 @@ nellen.it: did not receive HSTS header
nemanja.top: did not receive HSTS header
nemno.de: could not connect to host
nemovement.org: could not connect to host
-nemplex.win: could not connect to host
neoani.me: did not receive HSTS header
+neocoding.com: did not receive HSTS header
neocyd.com: could not connect to host
+neodrive.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
neofelhz.space: could not connect to host
neojames.me: could not connect to host
neonisi.com: could not connect to host
neonnuke.tech: did not receive HSTS header
neosolution.ca: did not receive HSTS header
-nephy.jp: could not connect to host
+nephos.xyz: could not connect to host
nercp.org.uk: did not receive HSTS header
nerd42.de: could not connect to host
nerdbox.cc: did not receive HSTS header
@@ -10552,6 +11475,8 @@ nerfroute.com: could not connect to host
neris.io: could not connect to host
neriumhcp.com: did not receive HSTS header
nesantuoka.lt: could not connect to host
+nesbase.com: could not connect to host
+nestedquotes.ca: could not connect to host
nestone.ru: could not connect to host
net-navi.cc: did not receive HSTS header
net-rencontre.com: did not receive HSTS header
@@ -10559,9 +11484,9 @@ net2o.com: did not receive HSTS header
net2o.de: did not receive HSTS header
net2o.net: did not receive HSTS header
net4it.de: did not receive HSTS header
+netba.net: could not connect to host
netbox.cc: could not connect to host
-netbrief.ml: did not receive HSTS header
-netbuzz.ru: could not connect to host
+netbrief.ml: could not connect to host
netde.jp: could not connect to host
netdego.jp: could not connect to host
netfs.pl: did not receive HSTS header
@@ -10569,6 +11494,7 @@ netguide.co.nz: did not receive HSTS header
netherwind.eu: did not receive HSTS header
netlilo.com: could not connect to host
netloanusa.com: could not connect to host
+netlocal.ru: could not connect to host
netmagik.com: did not receive HSTS header
netprofile.com.au: did not receive HSTS header
netresourcedesign.com: could not connect to host
@@ -10579,19 +11505,20 @@ netsparkercloud.com: did not receive HSTS header
netsystems.pro: could not connect to host
nettacompany.com.tr: did not receive HSTS header
nettefoundation.com: could not connect to host
+nettplusultra-rhone.fr: did not receive HSTS header
+networkmon.net: could not connect to host
networx-online.de: could not connect to host
netzbit.de: could not connect to host
netzpolitik.org: max-age too low: 2592000
netztest.at: did not receive HSTS header
netzvieh.de: could not connect to host
-netzzwerg4u.de: did not receive HSTS header
+netzzwerg4u.de: could not connect to host
neuch.info: did not receive HSTS header
neueonlinecasino2016.com: could not connect to host
neuralgic.net: could not connect to host
neuro-plus-100.com: could not connect to host
neuronfactor.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
neutralvehicle.com: did not receive HSTS header
-neva.li: could not connect to host
nevadafiber.net: could not connect to host
never-afk.de: did not receive HSTS header
neveta.com: could not connect to host
@@ -10601,6 +11528,7 @@ newbieboss.com: did not receive HSTS header
newbownerton.xyz: could not connect to host
newchance.store: could not connect to host
newcityinfo.info: could not connect to host
+newcreamforface.com: could not connect to host
newdeveloper.download: could not connect to host
newedivideo.it: could not connect to host
newfacialbeautycream.com: could not connect to host
@@ -10608,11 +11536,13 @@ newgenerationplus.org: could not connect to host
newhdmovies.io: could not connect to host
newline.online: did not receive HSTS header
newlooknow.com: did not receive HSTS header
-newmelalife.com: did not receive HSTS header
newparadigmventures.net: did not receive HSTS header
-newpoke.net: did not receive HSTS header
+newpathintegratedtherapy.com: did not receive HSTS header
+newpoke.net: could not connect to host
newportpropertygroup.com: could not connect to host
news4c.com: did not receive HSTS header
+newsaboutgames.de: could not connect to host
+newserumforskin.com: could not connect to host
newsquantified.com: max-age too low: 0
newstarnootropics.com: could not connect to host
newtnote.com: could not connect to host
@@ -10621,24 +11551,27 @@ newtonwarp.com: could not connect to host
nexgeneration-solutions.com: could not connect to host
nexlab.org: did not receive HSTS header
next-taxi.ru: could not connect to host
-next176.sk: did not receive HSTS header
next47.com: did not receive HSTS header
nextcloud.li: could not connect to host
nextcloud.org: could not connect to host
-nextend.org: could not connect to host
+nextend.net: could not connect to host
+nextend.org: did not receive HSTS header
nexth.de: could not connect to host
nexth.net: did not receive HSTS header
nexth.us: could not connect to host
nexthop.co.jp: could not connect to host
nexthop.co.th: did not receive HSTS header
+nextlevel-it.co.uk: could not connect to host
nextpages.de: could not connect to host
nextproject.us: could not connect to host
nextshutter.com: did not receive HSTS header
nexusbyte.de: could not connect to host
-nexuscorporation.in: could not connect to host
+nexuscorporation.in: did not receive HSTS header
nfhome.be: did not receive HSTS header
+nfls.io: did not receive HSTS header
nfluence.org: could not connect to host
nfo.so: could not connect to host
+nfrost.me: could not connect to host
ng-firewall.com: did not receive HSTS header
ng-security.com: could not connect to host
ngiemboon.net: could not connect to host
@@ -10655,7 +11588,8 @@ nhus.de: max-age too low: 172800
niallator.com: could not connect to host
nibiisclaim.com: could not connect to host
nicestresser.fr: could not connect to host
-nicholasperkins.io: could not connect to host
+nickcleans.co.uk: could not connect to host
+nicktheitguy.com: could not connect to host
nicky.io: did not receive HSTS header
nico.one: could not connect to host
nicoborghuis.nl: could not connect to host
@@ -10666,10 +11600,11 @@ nicolasdutour.com: did not receive HSTS header
nicolasklotz.de: did not receive HSTS header
nicoleoquendo.com: max-age too low: 2592000
niconiconi.xyz: could not connect to host
+nicoobook.com: did not receive HSTS header
+nicoobook.net: did not receive HSTS header
nicorevin.ru: could not connect to host
nidux.com: did not receive HSTS header
-niduxcomercial.com: could not connect to host
-niedersetz.de: did not receive HSTS header
+niedersetz.de: could not connect to host
nien.chat: could not connect to host
nien.com.tw: could not connect to host
nienfun.com: could not connect to host
@@ -10679,10 +11614,13 @@ nifpnet.nl: could not connect to host
nifume.com: could not connect to host
niggo.eu: could not connect to host
nightsnack.cf: could not connect to host
+nightwinds.tk: could not connect to host
niho.jp: did not receive HSTS header
-nikcub.com: could not connect to host
+nikcub.com: did not receive HSTS header
+niki.ai: did not receive HSTS header
nikksno.io: could not connect to host
niklas.host: could not connect to host
+niklasanderson.com: could not connect to host
niklaslindblad.se: did not receive HSTS header
nikobradshaw.com: could not connect to host
nikolaichik.photo: did not receive HSTS header
@@ -10697,13 +11635,15 @@ ninhs.org: could not connect to host
ninjan.co: did not receive HSTS header
ninjaspiders.com: could not connect to host
ninofink.com: could not connect to host
+ninreiei.jp: could not connect to host
+ninverse.com: did not receive HSTS header
niouininon.eu: could not connect to host
nippler.org: could not connect to host
nippombashi.net: did not receive HSTS header
nippon.fr: could not connect to host
-nipponcareers.com: did not receive HSTS header
+nipponcareers.com: could not connect to host
nirada.info: could not connect to host
-nirjharstudio.com: could not connect to host
+nirjharstudio.com: did not receive HSTS header
nirna.io: did not receive HSTS header
nirvanashop.com: could not connect to host
nishaswonderland.be: did not receive HSTS header
@@ -10711,6 +11651,7 @@ nishaswonderland.nl: did not receive HSTS header
nishikino-maki.com: could not connect to host
nishisbma.com: could not connect to host
nitaonline.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+niva.synology.me: could not connect to host
niveldron.com: could not connect to host
nixien.fr: could not connect to host
nixmag.net: could not connect to host
@@ -10720,13 +11661,15 @@ nkautoservice.nl: did not receive HSTS header
nkb.in.th: could not connect to host
nlegall.fr: did not receive HSTS header
nll.fi: could not connect to host
+nlrb.gov: did not receive HSTS header
nmadda.com: did not receive HSTS header
nmctest.net: could not connect to host
nmgb.ga: could not connect to host
nmgb.ml: could not connect to host
nmsnj.com: did not receive HSTS header
nmueller.at: could not connect to host
-nnote.net: could not connect to host
+nn78.com: did not receive HSTS header
+nnote.net: did not receive HSTS header
nnya.cat: could not connect to host
no17sifangjie.cc: could not connect to host
noc.wang: could not connect to host
@@ -10736,13 +11679,15 @@ noctinus.tk: could not connect to host
node-core-app.com: could not connect to host
nodebrewery.com: could not connect to host
nodechate.xyz: could not connect to host
-nodecompat.com: could not connect to host
+nodecompat.com: did not receive HSTS header
nodefiles.com: could not connect to host
nodefoo.com: could not connect to host
+nodelab-it.de: did not receive HSTS header
nodepanel.net: did not receive HSTS header
nodepositcasinouk.com: did not receive HSTS header
nodeselect.com: could not connect to host
nodespin.com: did not receive HSTS header
+nodesturut.cl: did not receive HSTS header
nodetemple.com: could not connect to host
nodi.at: did not receive HSTS header
nodum.io: did not receive HSTS header
@@ -10759,9 +11704,11 @@ nolberg.net: did not receive HSTS header
nolimits.net.nz: could not connect to host
nolimitsbook.de: did not receive HSTS header
nolte.work: could not connect to host
-nomagic.software: did not receive HSTS header
+nomagic.software: could not connect to host
+nomoondev.azurewebsites.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
nomorebytes.de: could not connect to host
nonemu.ninja: could not connect to host
+noobunbox.net: did not receive HSTS header
noodlecrave.com: did not receive HSTS header
noodlesandwich.com: did not receive HSTS header
noodleyum.com: did not receive HSTS header
@@ -10770,25 +11717,26 @@ nootropicsource.com: did not receive HSTS header
nope.website: could not connect to host
nopex.no: could not connect to host
nopol.de: could not connect to host
-norad.sytes.net: could not connect to host
norandom.com: could not connect to host
norb.at: could not connect to host
norden.eu.org: could not connect to host
nordic-survival.de: did not receive HSTS header
nordiccasinocommunity.com: did not receive HSTS header
nordlicht.photography: did not receive HSTS header
-nordseeblicke.de: did not receive HSTS header
noref.tk: could not connect to host
norge.guide: could not connect to host
normalady.com: could not connect to host
normanschwaneberg.de: did not receive HSTS header
+norrkemi.se: could not connect to host
north.supply: could not connect to host
northcutt.com: did not receive HSTS header
northernmuscle.ca: could not connect to host
northpennvwparts.com: max-age too low: 604800
+northwest-events.co.uk: could not connect to host
northwoodsfish.com: could not connect to host
nosbenevolesontdutalent.com: could not connect to host
nosecretshop.com: could not connect to host
+nosproduitsdequalite.fr: did not receive HSTS header
nossasenhoradaconceicao.com.br: did not receive HSTS header
nostraspace.com: could not connect to host
nosx.tk: could not connect to host
@@ -10797,6 +11745,7 @@ nota-web.com: could not connect to host
notablog.xyz: did not receive HSTS header
notadd.io: could not connect to host
notadd.store: could not connect to host
+notalone.gov: could not connect to host
notarankastojkovic.me: could not connect to host
notarobot.fr: did not receive HSTS header
notboring.co.uk: could not connect to host
@@ -10813,6 +11762,7 @@ notjustbitchy.com: could not connect to host
notonprem.com: could not connect to host
nottheonion.net: did not receive HSTS header
nottori.com: could not connect to host
+nottres.com: did not receive HSTS header
notypiesni.sk: did not receive HSTS header
nou.si: did not receive HSTS header
nouma.fr: did not receive HSTS header
@@ -10823,7 +11773,6 @@ novaco.in: max-age too low: 3600
novacraft.me: could not connect to host
novaopcaofestas.com.br: could not connect to host
novaorbis.org: could not connect to host
-novascan.net: could not connect to host
novatrucking.de: could not connect to host
novavoidhowl.com: did not receive HSTS header
novelabs.de: could not connect to host
@@ -10831,21 +11780,22 @@ novelabs.eu: could not connect to host
novelshouse.com: could not connect to host
novfishing.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
novinhabucetuda.com: could not connect to host
-novinivo.com: did not receive HSTS header
novtest.ru: did not receive HSTS header
nowcost.com: could not connect to host
noworrywp.com: could not connect to host
nowprotein.com: did not receive HSTS header
nowremindme.com: could not connect to host
+noxi.ga: could not connect to host
nozoe.jp: could not connect to host
-npm.li: did not receive HSTS header
-npol.de: could not connect to host
+npm.li: could not connect to host
+npol.de: did not receive HSTS header
npool.org: could not connect to host
nq7.pl: could not connect to host
+nqesh.com: could not connect to host
nrc-gateway.gov: could not connect to host
nrechn.de: could not connect to host
nrizzio.me: could not connect to host
-nrnjn.xyz: could not connect to host
+nrnjn.xyz: did not receive HSTS header
nrvn.cc: did not receive HSTS header
nrvnastudios.com: could not connect to host
nsbfalconacademy.org: could not connect to host
@@ -10858,8 +11808,8 @@ nstyleintl.ca: did not receive HSTS header
nsure.us: could not connect to host
nsweb.solutions: could not connect to host
ntbs.pro: could not connect to host
-ntia.gov: could not connect to host
ntse.xyz: could not connect to host
+nu-pogodi.net: could not connect to host
nu3.at: did not receive HSTS header
nu3.ch: did not receive HSTS header
nu3.co.uk: could not connect to host
@@ -10887,8 +11837,9 @@ nullpro.com: could not connect to host
numericacu.com: did not receive HSTS header
numero-di-telefono.it: could not connect to host
numista.com: did not receive HSTS header
+numm.fr: did not receive HSTS header
nuovamoda.al: could not connect to host
-nup.pw: could not connect to host
+nup.pw: max-age too low: 0
nupef.org.br: did not receive HSTS header
nurserybook.co: did not receive HSTS header
nurture.be: did not receive HSTS header
@@ -10924,19 +11875,17 @@ nyuusannkinn.com: did not receive HSTS header
nz.search.yahoo.com: max-age too low: 172800
nzbs.io: could not connect to host
nzmk.cz: could not connect to host
-nzquakes.maori.nz: could not connect to host
+nzquakes.maori.nz: did not receive HSTS header
o-rickroll-y.pw: could not connect to host
o0o.one: did not receive HSTS header
oaksbloom.com: could not connect to host
oasis-conference.org.nz: could not connect to host
-oasis.mobi: could not connect to host
-oasisim.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+oasis.mobi: did not receive HSTS header
obdolbacca.ru: could not connect to host
oben.pl: did not receive HSTS header
oberam.de: could not connect to host
oberhof.co: could not connect to host
oberhofjuice.com: could not connect to host
-oberoi.de: max-age too low: 600000
objectif-leger.com: did not receive HSTS header
oblikdom.pro: did not receive HSTS header
oblikdom.ru: did not receive HSTS header
@@ -10948,18 +11897,17 @@ obsydian.org: could not connect to host
oc-minecraft.com: could not connect to host
ocad.com.au: did not receive HSTS header
ocapic.com: could not connect to host
-occ.gov: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+occ.gov: did not receive HSTS header
occasion-impro.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
occupymedia.org: could not connect to host
ochaken.cf: could not connect to host
ocmeulebeke.be: did not receive HSTS header
ocrami.us: did not receive HSTS header
-octal.es: could not connect to host
octanio.com: could not connect to host
octo.im: could not connect to host
octocat.ninja: could not connect to host
octod.tk: could not connect to host
-octofox.de: did not receive HSTS header
+octohost.net: did not receive HSTS header
oddmouse.com: could not connect to host
odin.xxx: could not connect to host
odinkapital.no: did not receive HSTS header
@@ -10979,24 +11927,24 @@ offerstone.cl: could not connect to host
offgames.pro: could not connect to host
office-ruru.com: could not connect to host
officeclub.com.mx: did not receive HSTS header
+officeprint.co.th: could not connect to host
offshore-firma.org: could not connect to host
offshore-unternehmen.com: could not connect to host
offshorefirma-gruenden.com: could not connect to host
-offshoremarineparts.com: did not receive HSTS header
offtherails.ie: could not connect to host
-ofggolf.com: could not connect to host
oficinadocelular.com.br: could not connect to host
ofo2.com: could not connect to host
oganek.ie: could not connect to host
-oganime.com: did not receive HSTS header
+oganime.com: could not connect to host
oggw.us: could not connect to host
-ogkw.de: could not connect to host
+ogkw.de: did not receive HSTS header
ogogoshop.com: could not connect to host
ogrodywstudniach.pl: did not receive HSTS header
ohayosoro.me: could not connect to host
+ohhdeertrade.com: did not receive HSTS header
ohm2013.org: did not receive HSTS header
ohma.ga: did not receive HSTS header
-ohnemusik.com: could not connect to host
+ohnemusik.com: max-age too low: 0
ohohrazi.com: did not receive HSTS header
ohreally.de: could not connect to host
ohsocool.org: did not receive HSTS header
@@ -11004,14 +11952,14 @@ oiepoie.nl: could not connect to host
oinky.ddns.net: could not connect to host
oishioffice.com: did not receive HSTS header
ojbk.eu: could not connect to host
-ojeremy.com: could not connect to host
+ojeremy.com: did not receive HSTS header
ojls.co: could not connect to host
-okad-center.de: could not connect to host
-okad.de: could not connect to host
-okad.eu: could not connect to host
+okad-center.de: did not receive HSTS header
+okad.de: did not receive HSTS header
+okad.eu: did not receive HSTS header
okane.love: could not connect to host
okashi.me: could not connect to host
-okaz.de: could not connect to host
+okaz.de: did not receive HSTS header
oklahomamoversassociation.org: could not connect to host
oklahomanotepro.com: could not connect to host
okok-rent.com: could not connect to host
@@ -11022,16 +11970,18 @@ olcso-vps-szerver.hu: could not connect to host
oldandyounglesbians.us: could not connect to host
oldschool-criminal.com: did not receive HSTS header
oldtimer-trifft-flugplatz.de: did not receive HSTS header
+olifant.fr: did not receive HSTS header
oliverdunk.com: did not receive HSTS header
+olivlabs.com: could not connect to host
ollehbizev.co.kr: could not connect to host
ols.io: did not receive HSTS header
olswangtrainees.com: could not connect to host
olympe-transport.fr: did not receive HSTS header
omacostudio.com: could not connect to host
-omar.yt: could not connect to host
-omarh.net: could not connect to host
+omarsuniagamusic.ga: did not receive HSTS header
omeuanimal.com: did not receive HSTS header
omgaanmetidealen.com: could not connect to host
+omifind.com: did not receive HSTS header
ominto.com: did not receive HSTS header
omise.co: did not receive HSTS header
ommahpost.com: did not receive HSTS header
@@ -11043,6 +11993,7 @@ omquote.gq: could not connect to host
omskit.ru: did not receive HSTS header
omyogarishikesh.com: did not receive HSTS header
on-te.ch: did not receive HSTS header
+onahonavi.com: could not connect to host
one-pe.com: did not receive HSTS header
onearth.one: did not receive HSTS header
oneb4nk.com: could not connect to host
@@ -11060,7 +12011,6 @@ onepluscamps.com: did not receive HSTS header
onepopstore.com: could not connect to host
onespiritinc.com: did not receive HSTS header
onet.space: could not connect to host
-onetech.it: did not receive HSTS header
onetly.com: could not connect to host
onetwentyseven001.com: did not receive HSTS header
onewebdev.info: could not connect to host
@@ -11070,15 +12020,16 @@ onguardonline.gov: did not receive HSTS header
oniichan.us: did not receive HSTS header
onionbot.ga: could not connect to host
onioncloud.org: could not connect to host
+onionplay.live: could not connect to host
onionsburg.com: could not connect to host
online-casino.eu: did not receive HSTS header
online-scene.com: did not receive HSTS header
-online-wetten.de: did not receive HSTS header
-online.swedbank.se: did not receive HSTS header
+online-wetten.de: could not connect to host
onlinebiller.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
onlinebillingform.com: could not connect to host
onlinecasinobluebook.com: could not connect to host
onlinecompliance.org: did not receive HSTS header
+onlinecorners.com: did not receive HSTS header
onlinedemo.hu: could not connect to host
onlinedeposit.us: could not connect to host
onlinekasino.de: did not receive HSTS header
@@ -11089,11 +12040,14 @@ onlinespielothek.com: did not receive HSTS header
onlinewetten.de: could not connect to host
only-roses.co.uk: did not receive HSTS header
only-roses.com: max-age too low: 2592000
+onlyesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+onlyesb.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
onlyshopstation.com: did not receive HSTS header
onlyzero.net: could not connect to host
onmuvo.com: could not connect to host
onmyoji.biz: could not connect to host
onnee.ch: could not connect to host
+onnext.cc: did not receive HSTS header
ononpay.com: did not receive HSTS header
onovlena.dn.ua: could not connect to host
onpatient.com: did not receive HSTS header
@@ -11106,33 +12060,37 @@ ontheboard.com: did not receive HSTS header
onthecheap.store: could not connect to host
ontheten.org: did not receive HSTS header
ontimestamp.com: did not receive HSTS header
-onviga.de: could not connect to host
onwie.com: could not connect to host
onwie.fr: could not connect to host
onyxwall.com: could not connect to host
onyxwall.link: could not connect to host
onyxwall.net: could not connect to host
-oo.edu.rs: did not receive HSTS header
+oo.edu.rs: could not connect to host
ooeste.com: could not connect to host
ookjesprookje.nl: could not connect to host
ooooush.co.uk: could not connect to host
oopsmycase.com: could not connect to host
oopsorup.com: could not connect to host
+oosoo.org: could not connect to host
oost.io: could not connect to host
opatut.de: did not receive HSTS header
opcaobolsas.com.br: could not connect to host
-open-domotics.info: could not connect to host
open-future.be: did not receive HSTS header
open-mx.de: could not connect to host
open-to-repair.fr: max-age too low: 86400
+openacademies.com: could not connect to host
+openas.org: did not receive HSTS header
+openbankproject.com: did not receive HSTS header
openclub24.ru: could not connect to host
openconcept.no: did not receive HSTS header
openconnect.com.au: could not connect to host
opendesk.cc: did not receive HSTS header
openevic.info: could not connect to host
opengateway.fr: did not receive HSTS header
+openiocdb.com: could not connect to host
openmetals.com: could not connect to host
openmind-shop.de: did not receive HSTS header
+openmirrors.cf: could not connect to host
openpriv.pw: could not connect to host
openprovider.nl: did not receive HSTS header
openrainbow.org: could not connect to host
@@ -11147,12 +12105,13 @@ opentexon.com: did not receive HSTS header
openxmpp.com: could not connect to host
operad.fr: could not connect to host
opiates.net: did not receive HSTS header
-opic.gov: could not connect to host
opim.ca: did not receive HSTS header
opinion8td.com: did not receive HSTS header
opinionicentrifuga.it: could not connect to host
opinionipannolini.it: could not connect to host
opioids.com: could not connect to host
+oportunidadesemfoco.com.br: could not connect to host
+opp.ag: did not receive HSTS header
oppag.com.br: did not receive HSTS header
opperwall.net: could not connect to host
opposer.me: could not connect to host
@@ -11170,9 +12129,7 @@ optumrxhealthstore.com: could not connect to host
opunch.org: did not receive HSTS header
oracaodocredo.com.br: could not connect to host
orangekey.tk: could not connect to host
-orangenuts.in: could not connect to host
oranges.tokyo: could not connect to host
-orangetravel.eu: could not connect to host
oranic.com: did not receive HSTS header
orbiosales.com: could not connect to host
orbitcom.de: did not receive HSTS header
@@ -11182,11 +12139,12 @@ orcahq.com: did not receive HSTS header
order.one: could not connect to host
ordereat.fr: could not connect to host
orderlounge.de: did not receive HSTS header
-oref-idf.com: did not receive HSTS header
-oref-idf.net: did not receive HSTS header
-oref-idf.org: did not receive HSTS header
+oref-idf.com: could not connect to host
+oref-idf.net: could not connect to host
+oref-idf.org: could not connect to host
oregonmu.org: did not receive HSTS header
-orelavtomaster.ru: did not receive HSTS header
+oreka.online: could not connect to host
+orelavtomaster.ru: could not connect to host
orfeo-engineering.ch: could not connect to host
organic-superfood.net: could not connect to host
organicae.com: did not receive HSTS header
@@ -11198,22 +12156,26 @@ orionfcu.com: did not receive HSTS header
orionrebellion.com: did not receive HSTS header
orleika.ml: could not connect to host
oroweatorganic.com: could not connect to host
+ortho-graz.at: max-age too low: 86400
orthodoxy.lt: did not receive HSTS header
+ortodonciaian.com: did not receive HSTS header
orui.com.br: could not connect to host
-orum.in: could not connect to host
osaiyuwu.com: could not connect to host
oscarmashauri.com: did not receive HSTS header
oscillation-services.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
oscloud.com.ua: could not connect to host
oscreen.me: could not connect to host
oscreen.org: could not connect to host
-oscsdp.cz: could not connect to host
+oscsdp.cz: did not receive HSTS header
osdls.gov: did not receive HSTS header
+osereso.tn: could not connect to host
osha-kimi.com: did not receive HSTS header
oshanko.de: could not connect to host
oshinagaki.jp: could not connect to host
oslfoundation.org: did not receive HSTS header
+osmestres.com: did not receive HSTS header
osp.cx: could not connect to host
+osquery.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ossan-kobe-gourmet.com: did not receive HSTS header
ossbinaries.com: could not connect to host
osteammate.com: could not connect to host
@@ -11221,35 +12183,41 @@ ostendorf.com: did not receive HSTS header
osticketawesome.com: did not receive HSTS header
ostrov8.com: could not connect to host
oswaldmattgroup.com: did not receive HSTS header
+otako.pl: did not receive HSTS header
otakuworld.de: could not connect to host
-other98.com: did not receive HSTS header
+otakuyun.com: did not receive HSTS header
+otchecker.com: could not connect to host
othercode.nl: could not connect to host
otherkinforum.com: could not connect to host
-othermedia.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-otherstuff.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+othermedia.cc: could not connect to host
+otherstuff.nl: could not connect to host
otichi.com: did not receive HSTS header
otinane.eu: could not connect to host
otmns.net: could not connect to host
+otmo7.com: could not connect to host
otokonna.com: could not connect to host
otrsdemo.hu: did not receive HSTS header
+ottoproject.io: max-age too low: 900
ottospora.nl: could not connect to host
ourbank.com: max-age too low: 2592000
ourchoice2016.com: could not connect to host
-ourls.win: could not connect to host
-ourmaster.org: did not receive HSTS header
outdooradventures.pro: could not connect to host
outdoorproducts.com: max-age too low: 7889238
outreachbuddy.com: could not connect to host
outsider.im: could not connect to host
-outurnate.com: could not connect to host
+outurnate.com: did not receive HSTS header
ouvirmusica.com.br: did not receive HSTS header
ovenapp.io: did not receive HSTS header
over25tips.com: did not receive HSTS header
override.io: could not connect to host
-overrustle.com: could not connect to host
+overrustle.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
oversight.io: could not connect to host
+overstappen.nl: did not receive HSTS header
+overture.london: did not receive HSTS header
+ovpn.to: could not connect to host
ovuscloud.de: could not connect to host
ovwane.com: could not connect to host
+owall.ml: did not receive HSTS header
owennelson.me: max-age too low: 2592000
owensmith.website: could not connect to host
owlscrap.ru: could not connect to host
@@ -11260,7 +12228,8 @@ ownspec.com: could not connect to host
owothisdiz.pw: could not connect to host
oxanababy.com: could not connect to host
oxro.co: did not receive HSTS header
-oxro.io: did not receive HSTS header
+oxro.io: could not connect to host
+oxygaming.com: could not connect to host
oxygenabsorbers.com: did not receive HSTS header
oxymc.com: did not receive HSTS header
oxynux.fr: could not connect to host
@@ -11271,53 +12240,54 @@ ozoz.cc: could not connect to host
p-pc.de: could not connect to host
p-rickroll-o.pw: could not connect to host
p.linode.com: could not connect to host
+p1984.nl: could not connect to host
p1c.pw: could not connect to host
-p22.co: did not receive HSTS header
p2av.com: could not connect to host
p3.marketing: did not receive HSTS header
p3in.com: could not connect to host
p3ter.fr: did not receive HSTS header
p8r.de: did not receive HSTS header
paavolastudio.com: did not receive HSTS header
-pablo.im: could not connect to host
-pablo.scot: could not connect to host
-pablo.sh: could not connect to host
-pabloarteaga.co.uk: could not connect to host
-pabloarteaga.com: could not connect to host
-pabloarteaga.com.es: could not connect to host
-pabloarteaga.es: could not connect to host
-pabloarteaga.eu: could not connect to host
-pabloarteaga.info: could not connect to host
-pabloarteaga.me: could not connect to host
-pabloarteaga.name: could not connect to host
-pabloarteaga.net: could not connect to host
-pabloarteaga.nom.es: could not connect to host
-pabloarteaga.org: could not connect to host
-pabloarteaga.science: could not connect to host
-pabloarteaga.tech: could not connect to host
-pabloarteaga.uk: could not connect to host
-pabloarteaga.xyz: could not connect to host
+pablo.im: did not receive HSTS header
+pablo.scot: did not receive HSTS header
+pablo.sh: did not receive HSTS header
+pabloarteaga.co.uk: did not receive HSTS header
+pabloarteaga.com: did not receive HSTS header
+pabloarteaga.com.es: did not receive HSTS header
+pabloarteaga.es: did not receive HSTS header
+pabloarteaga.eu: did not receive HSTS header
+pabloarteaga.info: did not receive HSTS header
+pabloarteaga.me: did not receive HSTS header
+pabloarteaga.name: did not receive HSTS header
+pabloarteaga.net: did not receive HSTS header
+pabloarteaga.nom.es: did not receive HSTS header
+pabloarteaga.org: did not receive HSTS header
+pabloarteaga.science: did not receive HSTS header
+pabloarteaga.tech: did not receive HSTS header
+pabloarteaga.uk: did not receive HSTS header
+pabloarteaga.xyz: did not receive HSTS header
pablocamino.tk: could not connect to host
-pablofain.com: did not receive HSTS header
pablorey-art.com: did not receive HSTS header
pachaiyappas.org: did not receive HSTS header
packair.com: did not receive HSTS header
+packer.io: did not receive HSTS header
packetapp.ru: could not connect to host
packetcrash.net: could not connect to host
packlane.com: did not receive HSTS header
+packshot-creator.com: did not receive HSTS header
pacnetwork.io: could not connect to host
pacoda.de: could not connect to host
pactf-flag-4boxdpa21ogonzkcrs9p.com: could not connect to host
pactocore.org: could not connect to host
padeoe.com: did not receive HSTS header
pader-deko.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-padovani.de: could not connect to host
paestbin.com: could not connect to host
page: could not connect to host
+pagedesignshop.com: did not receive HSTS header
pagerate.io: could not connect to host
pages-tocaven.com: could not connect to host
pagetoimage.com: could not connect to host
-paginapolitica.ro: could not connect to host
+paginapolitica.ro: did not receive HSTS header
pagure.org: could not connect to host
pahnid.com: could not connect to host
paigeglass.com: did not receive HSTS header
@@ -11333,12 +12303,12 @@ paket.io: could not connect to host
paket.ml: did not receive HSTS header
paketkreditsuzuki.com: could not connect to host
paku.me: could not connect to host
-palariviera.com: could not connect to host
palationtrade.com: could not connect to host
palawan.jp: could not connect to host
palazzotalamo.it: did not receive HSTS header
+paleolowcarb.de: did not receive HSTS header
paleosquawk.com: could not connect to host
-pallet.io: did not receive HSTS header
+pallet.io: could not connect to host
palmer.im: could not connect to host
pammbook.com: did not receive HSTS header
pamplona.tv: could not connect to host
@@ -11348,10 +12318,14 @@ panama-gbs.com: did not receive HSTS header
panamaequity.com: did not receive HSTS header
panamateakforestry.com: did not receive HSTS header
panascais.io: could not connect to host
+panascais.net: did not receive HSTS header
pandapsy.com: could not connect to host
panelomix.net: did not receive HSTS header
pangci.xyz: could not connect to host
panicparts.com: max-age too low: 10540800
+panjee.com: did not receive HSTS header
+panjee.fr: did not receive HSTS header
+panlex.org: did not receive HSTS header
panni.me: could not connect to host
panoranordic.net: could not connect to host
panos.io: did not receive HSTS header
@@ -11367,20 +12341,23 @@ papercrunch.io: could not connect to host
paperhaven.com.au: max-age too low: 7889238
papermasters.com: could not connect to host
papersmart.net: could not connect to host
+paperwallets.io: could not connect to host
paperwork.co.za: could not connect to host
papierniak.net: could not connect to host
+papotage.net: could not connect to host
papygeek.com: could not connect to host
parabhairavayoga.com: did not receive HSTS header
paradiesgirls.ch: could not connect to host
paradise-engineers.com: could not connect to host
-paragon.edu: did not receive HSTS header
+paragon.edu: could not connect to host
parakranov.ru: did not receive HSTS header
paranormalweirdo.com: could not connect to host
+paranoxer.hu: could not connect to host
parav.xyz: did not receive HSTS header
pardnoy.com: could not connect to host
parent5446.us: could not connect to host
parentmail.co.uk: did not receive HSTS header
-parfum-baza.ru: could not connect to host
+parfum-baza.ru: did not receive HSTS header
paris-cyber.fr: did not receive HSTS header
parisdimanche.com: did not receive HSTS header
parishome.jp: could not connect to host
@@ -11394,11 +12371,18 @@ parksubaruoemparts.com: could not connect to host
parkwithark.com: could not connect to host
parodybit.net: did not receive HSTS header
parpaing-paillette.net: could not connect to host
-parteaga.com: could not connect to host
-parteaga.net: could not connect to host
+parquet-lascazes.fr: did not receive HSTS header
+partage.ovh: did not receive HSTS header
+parteaga.com: did not receive HSTS header
+parteaga.net: did not receive HSTS header
+parthkolekar.me: could not connect to host
+participatorybudgeting.de: did not receive HSTS header
+participatorybudgeting.info: did not receive HSTS header
particonpsplus.it: could not connect to host
partirkyoto.jp: did not receive HSTS header
-partnercardservices.com: could not connect to host
+partiwatch.com: could not connect to host
+partnerbeam.com: could not connect to host
+partnercardservices.com: did not receive HSTS header
partnerwerk.de: did not receive HSTS header
partyhaus.ovh: could not connect to host
partyhireformby.co.uk: did not receive HSTS header
@@ -11410,15 +12394,13 @@ partyvan.moe: could not connect to host
partyvan.nl: could not connect to host
partyvan.se: could not connect to host
pascalchristen.ch: did not receive HSTS header
-pasportaservo.org: did not receive HSTS header
+pasportaservo.org: could not connect to host
passpilot.co.uk: did not receive HSTS header
-passumpsicbank.com: did not receive HSTS header
passwd.io: did not receive HSTS header
password.codes: could not connect to host
passwordbox.com: did not receive HSTS header
passwordrevelator.net: did not receive HSTS header
passwordscon.com: could not connect to host
-pasta-factory.co.il: could not connect to host
pastaf.com: could not connect to host
pastdream.xyz: could not connect to host
paste.linode.com: could not connect to host
@@ -11434,6 +12416,7 @@ patfs.com: did not receive HSTS header
pathwaytofaith.com: could not connect to host
patientinsight.net: could not connect to host
patriaco.net: did not receive HSTS header
+patric-lenhart.de: could not connect to host
patrick.dark.name: could not connect to host
patrickbusch.net: could not connect to host
patrickneuro.de: could not connect to host
@@ -11444,7 +12427,6 @@ patterson.mp: could not connect to host
paul-kerebel.pro: could not connect to host
paul-schmidt.de: max-age too low: 0
paulbunyanmls.com: did not receive HSTS header
-paulchen.at: did not receive HSTS header
paulproell.at: did not receive HSTS header
paulrudge.codes: could not connect to host
paulshir.com: could not connect to host
@@ -11452,7 +12434,6 @@ paulshir.is: could not connect to host
paulyang.cn: did not receive HSTS header
paveljanda.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pavelkahouseforcisco.com: did not receive HSTS header
-pavelstriz.cz: could not connect to host
pawsru.org: could not connect to host
paxdei.com.br: could not connect to host
paxwinkel.nl: could not connect to host
@@ -11468,6 +12449,7 @@ paymon.tj: could not connect to host
paypod.org: could not connect to host
payroll.ch: could not connect to host
paytwopay.com: could not connect to host
+payzwin.com: did not receive HSTS header
pb-design.ch: could not connect to host
pbapp.net: did not receive HSTS header
pbbr.com: did not receive HSTS header
@@ -11479,9 +12461,11 @@ pbytes.com: could not connect to host
pc-nf.de: did not receive HSTS header
pc-tweak.de: did not receive HSTS header
pcat.io: could not connect to host
+pcbricole.fr: could not connect to host
pcfun.net: did not receive HSTS header
pchax.net: could not connect to host
pchospital.cc: could not connect to host
+pcmedia.co.nz: did not receive HSTS header
pcvirusclear.com: could not connect to host
pdamsidoarjo.co.id: could not connect to host
pdevio.com: could not connect to host
@@ -11494,15 +12478,18 @@ peakapp.nl: could not connect to host
pebblesdemo.com: could not connect to host
pecot.fr: did not receive HSTS header
peekops.com: could not connect to host
+peen.ch: could not connect to host
peerherrmann.de: could not connect to host
-peerless.ae: could not connect to host
+peerless.ae: did not receive HSTS header
peinard.net: did not receive HSTS header
+peintrenomade.com: did not receive HSTS header
peirong.me: could not connect to host
peissen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pekkapikkarainen.fi: did not receive HSTS header
pekkarik.ru: could not connect to host
peliculasaudiolatinoonline.com: could not connect to host
peliseries24.com: could not connect to host
+peliweb.com: did not receive HSTS header
pemagrid.org: could not connect to host
pemberton.at: did not receive HSTS header
penablog.com: did not receive HSTS header
@@ -11520,11 +12507,13 @@ pensiunealido.ro: could not connect to host
pentagram.me: max-age too low: 2592000
pentano.net: could not connect to host
people-mozilla.org: could not connect to host
+peoplerange.com: did not receive HSTS header
+peoplesbankal.com: did not receive HSTS header
peperiot.com: did not receive HSTS header
pepper.dog: could not connect to host
pepperhead.com: did not receive HSTS header
pepperworldhotshop.de: did not receive HSTS header
-pepsicoemployeepreferencesurvey.com: could not connect to host
+pepsicoemployeepreferencesurvey.com: did not receive HSTS header
per-pedes.at: did not receive HSTS header
perdel.cn: could not connect to host
pereuda.com: could not connect to host
@@ -11533,13 +12522,14 @@ perfect-radiant-wrinkles.com: could not connect to host
perfectionis.me: could not connect to host
perfectionunite.com: could not connect to host
perfectseourl.com: did not receive HSTS header
+performancesantafe.org: did not receive HSTS header
performaride.com.au: did not receive HSTS header
performaterm.ro: could not connect to host
performous.org: did not receive HSTS header
perfumista.vn: did not receive HSTS header
periodismoactual.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
periscopeliveweb.com: could not connect to host
-perlwork.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+perlwork.nl: could not connect to host
pernatie.ru: could not connect to host
peromsik.com: did not receive HSTS header
perplex.nl: did not receive HSTS header
@@ -11557,11 +12547,13 @@ persson.im: could not connect to host
perthdevicelab.com: did not receive HSTS header
pestalozzishop.com.br: could not connect to host
pesto.video: could not connect to host
-pet-life.top: did not receive HSTS header
+pesyun.cn: max-age too low: 3600
pet-nsk.ru: could not connect to host
petangen.se: could not connect to host
petchart.net: could not connect to host
+peteboc.com: max-age too low: 0
peterfolta.net: could not connect to host
+peterkshultz.com: could not connect to host
petermazur.com: did not receive HSTS header
peternagy.ie: did not receive HSTS header
peters.consulting: could not connect to host
@@ -11571,10 +12563,7 @@ pethub.com: did not receive HSTS header
petit.site: could not connect to host
petlife.od.ua: could not connect to host
petplum.com: could not connect to host
-petrachuk.ru: could not connect to host
-petravdbos.nl: could not connect to host
petrkrapek.cz: did not receive HSTS header
-petrolplus.ru: max-age too low: 7776000
petrovsky.pro: could not connect to host
petsittersservices.com: could not connect to host
pettsy.com: did not receive HSTS header
@@ -11595,34 +12584,34 @@ pgpm.io: could not connect to host
pgregg.com: did not receive HSTS header
pgtb.be: could not connect to host
phalconist.com: could not connect to host
-pharmacie-fr.org: did not receive HSTS header
pharmgkb.org: could not connect to host
+pharynx.nl: could not connect to host
phcmembers.com: did not receive HSTS header
phcnetworks.net: did not receive HSTS header
phdsupply.com: could not connect to host
phdwuda.com: could not connect to host
-phelx.de: could not connect to host
-phenomeno-porto.com: could not connect to host
-phenomeno.nl: could not connect to host
-phenomenoporto.com: could not connect to host
-phenomenoporto.nl: could not connect to host
+phenomeno-porto.com: did not receive HSTS header
+phenomeno.nl: did not receive HSTS header
+phenomenoporto.com: did not receive HSTS header
+phenomenoporto.nl: did not receive HSTS header
philadelphiacandies.com: did not receive HSTS header
philadelphiadancefoundation.org: could not connect to host
philipmordue.co.uk: could not connect to host
philippa.cool: could not connect to host
phillippi.me: could not connect to host
phillmoore.com: did not receive HSTS header
-phillprice.com: could not connect to host
+phillprice.com: did not receive HSTS header
philonas.net: did not receive HSTS header
philpropertygroup.com: could not connect to host
phippsreporting.com: did not receive HSTS header
-phishing.rs: did not receive HSTS header
phoebe.co.nz: did not receive HSTS header
phoenicis.com.ua: did not receive HSTS header
phoenix.dj: did not receive HSTS header
+phoenixlogan.com: could not connect to host
phonenumberinfo.co.uk: could not connect to host
phongmay24h.com: could not connect to host
phood.be: could not connect to host
+photo.org.il: could not connect to host
photoblogverona.com: could not connect to host
photoboothpartyhire.co.uk: did not receive HSTS header
photographyforchange.com: could not connect to host
@@ -11631,11 +12620,12 @@ photops.fr: could not connect to host
photosoftware.nl: could not connect to host
phototag.org: did not receive HSTS header
php-bach.org: could not connect to host
+phpdistribution.com: did not receive HSTS header
phperformances.fr: did not receive HSTS header
phpfashion.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-phpinfo.in.th: could not connect to host
phr34kz.pw: did not receive HSTS header
phrasing.me: could not connect to host
+phryneas.de: did not receive HSTS header
phumin.in.th: did not receive HSTS header
phuong.faith: could not connect to host
pi-eng.fr: did not receive HSTS header
@@ -11643,11 +12633,12 @@ pianetaottica.eu: could not connect to host
pianetaottica.info: could not connect to host
pianetaottica.net: could not connect to host
pianetaottica.org: could not connect to host
-pias-button.net: did not receive HSTS header
+pias-button.net: could not connect to host
piasto.com.cy: could not connect to host
-piatanoua.md: could not connect to host
+piatanoua.md: did not receive HSTS header
picallo.es: could not connect to host
picardiascr.com: could not connect to host
+pickersurvey.org: could not connect to host
pickr.co: could not connect to host
picone.com.au: could not connect to host
picotronic.biz: could not connect to host
@@ -11657,17 +12648,18 @@ picshare.nz: could not connect to host
pidatacenters.com: did not receive HSTS header
pidomex.com: did not receive HSTS header
piedfeed.com: did not receive HSTS header
+pieinsurance.com: did not receive HSTS header
piekacz.co.uk: could not connect to host
+pieperhome.de: did not receive HSTS header
pierrejeansuau.fr: could not connect to host
pieterjangeeroms.me: could not connect to host
piggott.me.uk: did not receive HSTS header
-pigritia.de: could not connect to host
piils.fr: did not receive HSTS header
+pikalongwar.com: did not receive HSTS header
pikmy.com: could not connect to host
pilgermaske.org: did not receive HSTS header
piligrimname.com: could not connect to host
pillowandpepper.com: did not receive HSTS header
-pilotandy.com: could not connect to host
pilotcrowd.nl: did not receive HSTS header
pimpmymac.ru: did not receive HSTS header
pimpmypaper.com: could not connect to host
@@ -11677,31 +12669,35 @@ pin.net.au: did not receive HSTS header
pineapplesapp.com: did not receive HSTS header
pinebaylibrary.org: could not connect to host
pinesandneedles.com: max-age too low: 7889238
+pinigseu.xyz: could not connect to host
+pinkcasino.co.uk: did not receive HSTS header
pinkfis.ch: did not receive HSTS header
pinkhq.com: did not receive HSTS header
pinkinked.com: could not connect to host
-pinkyf.com: did not receive HSTS header
pinoylinux.org: did not receive HSTS header
+pinpointengineer.co.uk: could not connect to host
pintoselectrician.co.za: did not receive HSTS header
pioche.ovh: did not receive HSTS header
pippen.io: could not connect to host
pips.rocks: could not connect to host
pir9.com: did not receive HSTS header
+piranil.com: did not receive HSTS header
pirata.ga: did not receive HSTS header
pirateahoy.eu: could not connect to host
+piratebay.ml: could not connect to host
piratebit.tech: could not connect to host
piratedb.com: could not connect to host
piratedot.com: could not connect to host
piratelist.online: could not connect to host
piratenlogin.de: could not connect to host
piratepay.io: could not connect to host
-piratepay.ir: did not receive HSTS header
-pirateproxy.pe: could not connect to host
+piratepay.ir: could not connect to host
+pirateproxy.pe: max-age too low: 0
pirateproxy.sx: did not receive HSTS header
pirateproxy.vip: could not connect to host
pirati.cz: max-age too low: 604800
piratte.net: did not receive HSTS header
-pirganj24.com: did not receive HSTS header
+pirganj24.com: could not connect to host
pirlitu.com: did not receive HSTS header
pisexy.me: did not receive HSTS header
pisidia.de: could not connect to host
@@ -11719,17 +12715,19 @@ pixelesque.uk: could not connect to host
pixelgliders.de: could not connect to host
pixelhero.co.uk: did not receive HSTS header
pixelpoint.io: did not receive HSTS header
+pixelrain.info: could not connect to host
pixi.chat: could not connect to host
pixi.me: did not receive HSTS header
-pixlfox.com: could not connect to host
+pizala.de: could not connect to host
pizzadoc.ch: could not connect to host
-pj00100.com: did not receive HSTS header
+pj00100.com: could not connect to host
pj00200.com: did not receive HSTS header
pj00300.com: did not receive HSTS header
pj00400.com: did not receive HSTS header
pj00600.com: did not receive HSTS header
pj00700.com: did not receive HSTS header
-pj00800.com: could not connect to host
+pj00800.com: did not receive HSTS header
+pj009.com: did not receive HSTS header
pj00900.com: did not receive HSTS header
pj02.com: did not receive HSTS header
pj83.duckdns.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -11738,33 +12736,42 @@ pjbet.mg: could not connect to host
pjsec.tk: could not connect to host
pkautodesign.com: did not receive HSTS header
pkbjateng.or.id: could not connect to host
-pko.ch: could not connect to host
+pko.ch: did not receive HSTS header
pkschat.com: could not connect to host
+pksps.com: could not connect to host
plaasprodukte.com: could not connect to host
placefade.com: could not connect to host
placehold.co: did not receive HSTS header
placollection.org: could not connect to host
plaettliaktion.ch: did not receive HSTS header
plagiarismcheck.org: max-age too low: 604800
+plaintech.net.au: could not connect to host
+plaintray.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
plakbak.nl: could not connect to host
planbox.info: could not connect to host
planeexplanation.com: could not connect to host
+planetbeauty.com: did not receive HSTS header
planete-secu.com: could not connect to host
planetromeo.com: could not connect to host
+planformation.com: did not receive HSTS header
planktonholland.com: did not receive HSTS header
planpharmacy.com: could not connect to host
plant.ml: could not connect to host
plantroon.com: did not receive HSTS header
plass.hamburg: could not connect to host
+plasti-pac.ch: did not receive HSTS header
+plasticsurgeryservices.com: did not receive HSTS header
plasvilledescartaveis.com.br: could not connect to host
platform.lookout.com: could not connect to host
+platinumpeek.com: did not receive HSTS header
platomania.eu: did not receive HSTS header
play: could not connect to host
play.google.com: did not receive HSTS header (error ignored - included regardless)
playdreamcraft.com.br: did not receive HSTS header
playerhunter.com: did not receive HSTS header
-playflick.com: did not receive HSTS header
+playflick.com: could not connect to host
playkh.com: did not receive HSTS header
+playkinder.com: did not receive HSTS header
playmaker.io: did not receive HSTS header
playmaza.live: did not receive HSTS header
playmfe.com: could not connect to host
@@ -11772,8 +12779,8 @@ playsoundevents.be: could not connect to host
playsource.co: could not connect to host
playwhyyza.com: could not connect to host
playyou.be: could not connect to host
-please-deny.me: did not receive HSTS header
-pleasure-science.com: could not connect to host
+please-deny.me: could not connect to host
+pleaseuseansnisupportedbrowser.ml: could not connect to host
pleasure.forsale: could not connect to host
plen.io: could not connect to host
plexpy13.ddns.net: could not connect to host
@@ -11791,8 +12798,9 @@ ploup.net: could not connect to host
pluff.nl: did not receive HSTS header
plugboard.xyz: could not connect to host
pluggedhead.com: did not receive HSTS header
-plumbingboksburg.co.za: could not connect to host
+plumbingboksburg.co.za: did not receive HSTS header
plumbingman.com.au: did not receive HSTS header
+plumplat.com: did not receive HSTS header
plus-digital.net: did not receive HSTS header
plus-u.com.au: did not receive HSTS header
plus.sandbox.google.com: did not receive HSTS header (error ignored - included regardless)
@@ -11800,11 +12808,12 @@ plus1s.tk: could not connect to host
plushev.com: did not receive HSTS header
plussizereviews.com: could not connect to host
plut.org: did not receive HSTS header
-pluth.org: did not receive HSTS header
+plymouthglassgallery.com: did not receive HSTS header
plymouthsoftplay.co.uk: could not connect to host
pm13-media.cz: could not connect to host
pmac.pt: could not connect to host
pmbremer.de: could not connect to host
+pmbtf.com: could not connect to host
pmctire.com: did not receive HSTS header
pmemanager.fr: did not receive HSTS header
pmessage.ch: could not connect to host
@@ -11822,6 +12831,8 @@ pocloud.homelinux.net: could not connect to host
pocobelli.ch: did not receive HSTS header
podcast.style: could not connect to host
podiumsdiskussion.org: did not receive HSTS header
+poed.com.au: could not connect to host
+poeg.cz: did not receive HSTS header
pogoswine.com: could not connect to host
pogs.us: could not connect to host
poiema.com.sg: did not receive HSTS header
@@ -11836,6 +12847,7 @@ pokomichi.com: did not receive HSTS header
pol-expo.ru: could not connect to host
pol.in.th: could not connect to host
polandb2b.directory: could not connect to host
+polar-baer.com: could not connect to host
polarityschule.com: did not receive HSTS header
pole.net.nz: did not receive HSTS header
poleartschool.com: could not connect to host
@@ -11853,12 +12865,12 @@ polsport.live: did not receive HSTS header
polycoise.com: could not connect to host
polycrypt.us: could not connect to host
polypho.nyc: could not connect to host
-polysage.org: could not connect to host
+polysage.org: did not receive HSTS header
polytechecosystem.vc: could not connect to host
pomardaserra.com: could not connect to host
pomfe.co: could not connect to host
pompefunebrilariviera.it: could not connect to host
-pompompoes.com: did not receive HSTS header
+pompompoes.com: could not connect to host
pondof.fish: could not connect to host
poneytelecom.org: could not connect to host
ponteencima.com: could not connect to host
@@ -11876,21 +12888,29 @@ popi.se: did not receive HSTS header
popkins.cf: could not connect to host
popkins.ga: could not connect to host
popkins.gq: could not connect to host
-popkins.ml: could not connect to host
+popkins.ml: did not receive HSTS header
popkins.tk: could not connect to host
popupsoftplay.com: could not connect to host
poris.web.id: could not connect to host
porn77.info: could not connect to host
+pornalpha.com: could not connect to host
pornbay.org: could not connect to host
pornblog.org: could not connect to host
-porncandi.com: could not connect to host
+pornimg.net: could not connect to host
+pornless.biz: could not connect to host
+pornmax.net: could not connect to host
porno-gif.ru: could not connect to host
pornohub.su: could not connect to host
pornolab-net.appspot.com: could not connect to host
pornoserver.eu: could not connect to host
+pornport.org: could not connect to host
+pornsocket.com: could not connect to host
pornstars.me: did not receive HSTS header
+pornteddy.com: could not connect to host
+pornultra.net: could not connect to host
porschen.fr: could not connect to host
port.social: could not connect to host
+portalcarapicuiba.com: did not receive HSTS header
portale-randkowe.pl: did not receive HSTS header
portalhubnuti.cz: did not receive HSTS header
portalisapres.cl: could not connect to host
@@ -11899,9 +12919,12 @@ portalmundo.xyz: could not connect to host
portalplatform.net: could not connect to host
portaluniversalista.org: did not receive HSTS header
portalveneza.com.br: did not receive HSTS header
+portalzine.de: did not receive HSTS header
portefeuillesignalen.nl: did not receive HSTS header
+portraitsystem.biz: did not receive HSTS header
poshpak.com: max-age too low: 86400
positivesobrietyinstitute.com: did not receive HSTS header
+post.we.bs: did not receive HSTS header
post4me.at: could not connect to host
postback.io: did not receive HSTS header
postcardpayment.com: could not connect to host
@@ -11910,6 +12933,7 @@ posters.win: could not connect to host
postscheduler.org: could not connect to host
posylka.de: did not receive HSTS header
potatoheads.net: could not connect to host
+potatron.tech: could not connect to host
potbar.com: could not connect to host
potbox.com: could not connect to host
potenzmittelblog.info: could not connect to host
@@ -11920,16 +12944,17 @@ potsky.com: did not receive HSTS header
pouet.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pouets.ovh: could not connect to host
poupatempo.org: did not receive HSTS header
+pour-la-culture-aulnay.fr: could not connect to host
pourmesloisirs.com: could not connect to host
pourout.org: did not receive HSTS header
poussinooz.fr: could not connect to host
povitria.net: could not connect to host
powaclub.com: max-age too low: 86400
-powdersnow.top: did not receive HSTS header
power-l.ch: did not receive HSTS header
power-of-interest.com: did not receive HSTS header
power99press.com: could not connect to host
powerb.ch: did not receive HSTS header
+powerdent.net.br: could not connect to host
powerentertainment.tv: could not connect to host
poweroff.win: could not connect to host
powerplannerapp.com: could not connect to host
@@ -11937,24 +12962,27 @@ powersergunited.com: could not connect to host
powersergunited.org: could not connect to host
powershellmagic.com: could not connect to host
powershift.ne.jp: did not receive HSTS header
+powertothebuilder.com: could not connect to host
powerxequality.com: did not receive HSTS header
poy-tech.com: could not connect to host
pozniak.at: did not receive HSTS header
pozyczka-bez-zaswiadczen.pl: did not receive HSTS header
pozytywnyplan.pl: could not connect to host
+pozzitiv.ro: could not connect to host
pozzo-balbi.com: did not receive HSTS header
ppembed.com: did not receive HSTS header
+ppoou.co.uk: could not connect to host
+ppoozl.com: could not connect to host
pppo.gov: could not connect to host
ppr-truby.ru: could not connect to host
ppsvcs2.com: did not receive HSTS header
ppuu.org: did not receive HSTS header
ppy3.com: did not receive HSTS header
-practicallabs.com: could not connect to host
-practicalprogrammer.tech: could not connect to host
practodev.com: could not connect to host
pratinav.xyz: could not connect to host
prattpokemon.com: could not connect to host
-praxis-research.info: did not receive HSTS header
+praxis-research.info: could not connect to host
+prazeresdavida.com.br: could not connect to host
precedecaritas.com.br: could not connect to host
precisionaeroimaging.com: did not receive HSTS header
prediksisydney.com: could not connect to host
@@ -11966,7 +12994,6 @@ prego-shop.de: could not connect to host
preio.cn: could not connect to host
preisser-it.de: did not receive HSTS header
preisser.it: did not receive HSTS header
-preissler.co.uk: could not connect to host
prekladysanca.cz: could not connect to host
prelist.org: did not receive HSTS header
premaritalsex.info: could not connect to host
@@ -11974,43 +13001,47 @@ premioambiente.it: did not receive HSTS header
premiumzweirad.de: max-age too low: 7776000
prepaidgirl.com: could not connect to host
prepandgo-euro.com: could not connect to host
+preposted.com: could not connect to host
preppertactics.com: did not receive HSTS header
preprodfan.gov: could not connect to host
prescriptionrex.com: did not receive HSTS header
+presentesdegrife.com.br: could not connect to host
presidentials2016.com: could not connect to host
press-anime-nenkan.com: did not receive HSTS header
press-presse.ca: did not receive HSTS header
-pressenews.net: did not receive HSTS header
+pressakey.de: did not receive HSTS header
+pressenews.net: could not connect to host
pressfreedomfoundation.org: did not receive HSTS header
+prestburyscouts.org.uk: did not receive HSTS header
prestigeeventshire.co.uk: could not connect to host
prestonapp.com: could not connect to host
prettygrouse.com: did not receive HSTS header
prettyphotoart.de: did not receive HSTS header
prettytunesapp.com: could not connect to host
+pretwolk.nl: could not connect to host
pretzlaff.info: did not receive HSTS header
preworkout.me: could not connect to host
prgslab.net: could not connect to host
priceholic.com: could not connect to host
-pridetechdesign.com: did not receive HSTS header
pridoc.se: did not receive HSTS header
prifo.se: could not connect to host
prijsvergelijken.ml: could not connect to host
prilock.com: did not receive HSTS header
primecaplending.com: could not connect to host
+primewho.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
primordialsnooze.com: could not connect to host
primotiles.co.uk: did not receive HSTS header
-prinbanat.ngo: did not receive HSTS header
-princeofwhales.com: did not receive HSTS header
-princesparktouch.com: did not receive HSTS header
+prinbanat.ngo: could not connect to host
+princeagency.com: could not connect to host
princessbackpack.de: could not connect to host
princessmargaretlotto.com: did not receive HSTS header
+principalsexam.com: could not connect to host
+principalstest.ph: could not connect to host
prinesdoma.at: did not receive HSTS header
printerest.io: could not connect to host
printersonline.be: did not receive HSTS header
printery.be: could not connect to host
printexpress.cloud: could not connect to host
-printfn.com: did not receive HSTS header
-printler.com: did not receive HSTS header
priolkar.com: could not connect to host
prism-communication.com: could not connect to host
pristineevents.co.uk: did not receive HSTS header
@@ -12021,20 +13052,29 @@ privacynow.eu: did not receive HSTS header
privacyrup.net: could not connect to host
privategiant.com: could not connect to host
privatstunden.express: could not connect to host
+privcloud.cc: could not connect to host
privcloud.org: could not connect to host
privilegevisa.fr: could not connect to host
+privu.me: could not connect to host
privytime.com: could not connect to host
-prmte.com: max-age too low: 2592000
+prmte.com: did not receive HSTS header
prnt.li: did not receive HSTS header
+pro-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+pro-esb.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pro-image.de: did not receive HSTS header
pro-zone.com: could not connect to host
proact-it.co.uk: could not connect to host
proactive.run: could not connect to host
+procens.us: could not connect to host
procode.gq: could not connect to host
+procrastinatingengineer.co.uk: could not connect to host
prodpad.com: did not receive HSTS header
produccioneskm.cl: did not receive HSTS header
-productgap.com: could not connect to host
+productgap.com: did not receive HSTS header
+productived.net: did not receive HSTS header
producto8.com: did not receive HSTS header
+proesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+proesb.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
profi-durchgangsmelder.de: did not receive HSTS header
profinetz.de: could not connect to host
profivps.com: could not connect to host
@@ -12045,7 +13085,6 @@ profusion.io: could not connect to host
progblog.net: max-age too low: 0
progolfjourney.com: could not connect to host
program-and.work: could not connect to host
-programmaticmagic.com: could not connect to host
programmingstudent.com: could not connect to host
progress-technologies.com: could not connect to host
progressivecfo.co.nz: could not connect to host
@@ -12058,17 +13097,19 @@ project-splash.com: max-age too low: 0
project-stats.com: could not connect to host
projectascension.io: could not connect to host
projectasterk.com: could not connect to host
+projectcastle.tech: did not receive HSTS header
projectdp.net: could not connect to host
projectherogames.xyz: could not connect to host
projectl1b1t1na.tk: could not connect to host
projectmercury.space: could not connect to host
projectte.ch: could not connect to host
projectvault.ovh: did not receive HSTS header
-projectx.top: did not receive HSTS header
+projectx.top: could not connect to host
projekt-umbriel.de: could not connect to host
projektik.cz: did not receive HSTS header
projektzentrisch.de: could not connect to host
projetoresecia.com: could not connect to host
+prok.pw: did not receive HSTS header
prokop.ovh: could not connect to host
promarketer.net: did not receive HSTS header
promecon-gmbh.de: did not receive HSTS header
@@ -12082,6 +13123,7 @@ prontocleaners.co.uk: could not connect to host
prontolight.com: did not receive HSTS header
prontomovers.co.uk: could not connect to host
propactrading.com: could not connect to host
+propagandism.org: did not receive HSTS header
propershave.com: could not connect to host
proplan.co.il: did not receive HSTS header
propmag.co: could not connect to host
@@ -12107,13 +13149,14 @@ proxbox.net: did not receive HSTS header
proxi.cf: could not connect to host
proximato.com: could not connect to host
proxybay.al: could not connect to host
-proxybay.club: could not connect to host
+proxybay.club: max-age too low: 0
proxybay.info: did not receive HSTS header
proxybay.top: could not connect to host
proxydesk.eu: could not connect to host
proxydesk.net: could not connect to host
proxyowl.pw: could not connect to host
proxyportal.me: could not connect to host
+proxyportal.net: could not connect to host
proxyportal.org: did not receive HSTS header
proxyrox.com: could not connect to host
proxyweb.us: did not receive HSTS header
@@ -12123,6 +13166,7 @@ prstatic.com: could not connect to host
pruikshop.nl: could not connect to host
prxio.date: could not connect to host
prxio.site: could not connect to host
+prytkov.com: could not connect to host
ps-qa.com: could not connect to host
ps-x.ru: could not connect to host
pscleaningsolutions.co.uk: could not connect to host
@@ -12135,20 +13179,21 @@ psncardplus.com: could not connect to host
psncardplus.dk: could not connect to host
psncardplus.nl: could not connect to host
psncardplus.se: could not connect to host
+pstrozniak.com: could not connect to host
pstudio.me: max-age too low: 0
psw.academy: could not connect to host
psw.consulting: could not connect to host
psychiatrie-betreuung.ch: did not receive HSTS header
-psylab.re: could not connect to host
-psylab.vip: could not connect to host
psynapse.net.au: could not connect to host
ptn.moscow: could not connect to host
ptonet.com: could not connect to host
ptrujillo.com: did not receive HSTS header
pub-online.ro: could not connect to host
+pubi.me: could not connect to host
pubkey.is: could not connect to host
publications.qld.gov.au: did not receive HSTS header
publicidadnovagrass.com.mx: could not connect to host
+publick.net: did not receive HSTS header
publicspeakingcamps.com: could not connect to host
publimepa.it: could not connect to host
publishingshack.com: did not receive HSTS header
@@ -12170,13 +13215,13 @@ punchr-kamikazee.rhcloud.com: could not connect to host
punchunique.com: did not receive HSTS header
punkdns.top: could not connect to host
puppydns.com: did not receive HSTS header
-purahealthyliving.com: could not connect to host
+purahealthyliving.com: did not receive HSTS header
purbd.com: did not receive HSTS header
pureessentialoil.biz: max-age too low: 300
pureholisticliving.me: could not connect to host
purewebmasters.com: could not connect to host
+purikore.com: could not connect to host
purplehippie.in: did not receive HSTS header
-purplez.pw: did not receive HSTS header
purpoz.com.br: could not connect to host
purpspc.com: could not connect to host
purrfectcams.com: did not receive HSTS header
@@ -12210,11 +13255,14 @@ q2.si: did not receive HSTS header
q8mp3.me: did not receive HSTS header
qadmium.tk: could not connect to host
qamrulhaque.com: could not connect to host
+qaz.cloud: did not receive HSTS header
qazcloud.com: could not connect to host
+qbeing.info: could not connect to host
qbik.de: did not receive HSTS header
qbin.io: did not receive HSTS header
qbnt.ca: could not connect to host
-qccqld.org.au: could not connect to host
+qbus.pl: could not connect to host
+qccqld.org.au: did not receive HSTS header
qe2homelottery.com: did not receive HSTS header
qensio.com: did not receive HSTS header
qforum.org: could not connect to host
@@ -12222,22 +13270,26 @@ qi0.de: did not receive HSTS header
qiannews.net: could not connect to host
qifu.org.cn: could not connect to host
qimiao.io: did not receive HSTS header
-qingxuan.info: could not connect to host
+qingpat.com: could not connect to host
+qingxuan.info: did not receive HSTS header
qinxi1992.com: could not connect to host
qionglu.pw: could not connect to host
qipp.com: did not receive HSTS header
qirinus.com: did not receive HSTS header
qiuxian.ddns.net: could not connect to host
qixxit.de: did not receive HSTS header
+qkka.org: did not receive HSTS header
qldconservation.org: could not connect to host
qnatek.org: could not connect to host
qonqa.de: did not receive HSTS header
qoohoot.com: did not receive HSTS header
-qop.io: could not connect to host
+qop.io: did not receive HSTS header
qoqo.us: did not receive HSTS header
qorm.co.uk: could not connect to host
qqj.net: could not connect to host
qqq.gg: could not connect to host
+qqrss.com: could not connect to host
+qqvips.com: could not connect to host
qqvrsmart.cn: could not connect to host
qrara.net: did not receive HSTS header
qredo.com: did not receive HSTS header
@@ -12245,13 +13297,17 @@ qrforex.com: did not receive HSTS header
qrlending.com: could not connect to host
qrlfinancial.com: could not connect to host
qswoo.org: could not connect to host
+qto.com: could not connect to host
+qto.net: could not connect to host
+qto.org: could not connect to host
+quaedam.org: could not connect to host
quail.solutions: could not connect to host
quakerlens.com: did not receive HSTS header
quality1.com.br: did not receive HSTS header
qualityology.com: did not receive HSTS header
quanglepro.com: could not connect to host
quangngaimedia.com: did not receive HSTS header
-quanjinlong.cn: did not receive HSTS header
+quanjinlong.cn: could not connect to host
quantacloud.ch: could not connect to host
quantenteranik.eu: could not connect to host
quantor.dk: did not receive HSTS header
@@ -12261,13 +13317,17 @@ quantum-lviv.pp.ua: could not connect to host
quantumcore.cn: could not connect to host
quantumcourse.org: did not receive HSTS header
quanwuji.com: could not connect to host
+quanyin.eu.org: could not connect to host
quarryhillrentals.com: did not receive HSTS header
+quarus.net: could not connect to host
quebecmailbox.com: could not connect to host
queenbrownie.com.br: could not connect to host
queenshaflo.com: could not connect to host
quelmandataire.fr: did not receive HSTS header
+querkommentar.de: could not connect to host
queroreceitasoberana.com.br: did not receive HSTS header
queryplayground.com: could not connect to host
+questionable.host: could not connect to host
questions-admin.com: did not receive HSTS header
questionyu.com: did not receive HSTS header
questsandrewards.com: could not connect to host
@@ -12275,20 +13335,21 @@ quic.fr: did not receive HSTS header
quickandroid.tools: could not connect to host
quickpayservice.com: could not connect to host
quietus.gq: could not connect to host
+quikrmovies.to: could not connect to host
quikstorhawaii.com: max-age too low: 300
quimsertek.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
quizionic.com: could not connect to host
quizl.io: did not receive HSTS header
quizmemes.org: could not connect to host
-quizstore.net: could not connect to host
quotehex.com: could not connect to host
quotemaster.co.za: could not connect to host
quranserver.net: could not connect to host
qwallet.ca: did not receive HSTS header
qwaser.fr: could not connect to host
+qweepi.de: could not connect to host
qwertyatom100.me: could not connect to host
qwilink.me: did not receive HSTS header
-qybot.cc: could not connect to host
+qybot.cc: did not receive HSTS header
r-ay.club: did not receive HSTS header
r-core.org: could not connect to host
r-core.ru: could not connect to host
@@ -12296,7 +13357,7 @@ r-cut.fr: could not connect to host
r-rickroll-u.pw: could not connect to host
r10n.com: did not receive HSTS header
r15.me: did not receive HSTS header
-r18.moe: did not receive HSTS header
+r18.moe: could not connect to host
raajheshkannaa.com: could not connect to host
rabbitvcactus.eu: did not receive HSTS header
rabota-x.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -12307,7 +13368,8 @@ raconteur.net: did not receive HSTS header
rad-route.de: could not connect to host
raddavarden.nu: could not connect to host
radicaleducation.net: could not connect to host
-radioheteroglossia.com: did not receive HSTS header
+radioafibra.com.br: could not connect to host
+radiocomsaocarlos.com.br: could not connect to host
radtke.bayern: did not receive HSTS header
rafaelcz.de: could not connect to host
ragingserenity.com: did not receive HSTS header
@@ -12316,32 +13378,29 @@ rahadiana.com: could not connect to host
rahamasin.eu: could not connect to host
rai-co.net: did not receive HSTS header
raiblockscommunity.net: could not connect to host
-raidensnakesden.co.uk: could not connect to host
-raidensnakesden.com: could not connect to host
-raidensnakesden.net: could not connect to host
raidstone.com: could not connect to host
raidstone.rocks: could not connect to host
raiffeisen-kosovo.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-railgun.com.cn: could not connect to host
+railjob.cn: could not connect to host
railyardurgentcare.com: did not receive HSTS header
rainbin.com: could not connect to host
rainbowbarracuda.com: could not connect to host
-rainel.at: could not connect to host
+raipet.no-ip.biz: could not connect to host
raisecorp.com: could not connect to host
raitza.de: could not connect to host
-rajkapoordas.com: could not connect to host
rakugaki.cn: could not connect to host
+ralfs-zusizone.de: could not connect to host
ramarka.de: could not connect to host
ramatola.uk: could not connect to host
rambii.de: could not connect to host
ramblingrf.tech: could not connect to host
ramezanloo.com: did not receive HSTS header
+ramitmittal.com: could not connect to host
ramon-c.nl: could not connect to host
ramonj.nl: could not connect to host
randomcage.com: did not receive HSTS header
randomcloud.net: could not connect to host
randomhero.cloud: could not connect to host
-randomquotesapp.com: could not connect to host
randomwinpicker.de: could not connect to host
randy.pw: could not connect to host
ranegroup.hosting: could not connect to host
@@ -12360,6 +13419,7 @@ rapidthunder.io: could not connect to host
rasing.me: could not connect to host
raspass.me: did not receive HSTS header
raspberry.us: could not connect to host
+raspberryultradrops.com: did not receive HSTS header
rastreador.com.es: did not receive HSTS header
rastreie.net: did not receive HSTS header
ratajczak.fr: could not connect to host
@@ -12369,26 +13429,28 @@ rationem.nl: did not receive HSTS header
ratuseks.com: could not connect to host
ratuseks.net: could not connect to host
ratuseks.us: could not connect to host
-rauchenwald.net: could not connect to host
raucris.ro: could not connect to host
raulfraile.net: could not connect to host
+rautermods.net: could not connect to host
ravage.fm: did not receive HSTS header
raven.lipetsk.ru: could not connect to host
ravengergaming.ga: could not connect to host
ravengergaming.net: could not connect to host
ravenx.me: could not connect to host
-ravkr.duckdns.org: did not receive HSTS header
ravse.dk: could not connect to host
-raw-diets.com: did not receive HSTS header
+raw-diets.com: could not connect to host
rawet.se: could not connect to host
rawoil.com: could not connect to host
rawr.sexy: could not connect to host
rawstorieslondon.com: could not connect to host
-rayanitco.com: did not receive HSTS header
raycarruthersphotography.co.uk: could not connect to host
raydan.space: could not connect to host
raydobe.me: could not connect to host
raytron.org: could not connect to host
+raywin168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+raywin168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+raywin88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+razberry.kr: could not connect to host
razlaw.name: did not receive HSTS header
razzolini.com.br: could not connect to host
rb-china.net: could not connect to host
@@ -12396,17 +13458,20 @@ rbhighinc.org: could not connect to host
rbose.org: could not connect to host
rbqcloud.com: could not connect to host
rbti.me: could not connect to host
+rbtvshitstorm.is: did not receive HSTS header
rbxcatalog.com: could not connect to host
rc4.io: could not connect to host
rc7.ch: could not connect to host
rcafox.com: could not connect to host
rcoliveira.com: could not connect to host
+rcorporation.be: did not receive HSTS header
rcpcbd.com: could not connect to host
+rcraigmurphy.net: could not connect to host
rcvd.io: did not receive HSTS header
rcx.io: could not connect to host
rdfz.tech: could not connect to host
-rdh.asia: did not receive HSTS header
rdns.im: did not receive HSTS header
+rdplumbingsolutions.com.au: did not receive HSTS header
rdyrda.fr: could not connect to host
re-customer.net: could not connect to host
re-wilding.com: could not connect to host
@@ -12414,6 +13479,7 @@ reachr.com: could not connect to host
reactdatepicker.com: did not receive HSTS header
reactor92.com: could not connect to host
reader.ga: could not connect to host
+readify.com.au: did not receive HSTS header
readism.io: could not connect to host
readityourself.net: could not connect to host
readmeeatmedrinkme.com: did not receive HSTS header
@@ -12427,14 +13493,14 @@ real-bits.com: could not connect to host
real-compare.com: did not receive HSTS header
realcli.com: could not connect to host
realfamilyincest.com: could not connect to host
+realgarant-shop.de: did not receive HSTS header
realhost.name: could not connect to host
-realloc.me: could not connect to host
-really.io: could not connect to host
+realincest.tv: could not connect to host
+really.io: did not receive HSTS header
reallyreally.io: did not receive HSTS header
realmic.net: could not connect to host
realmofespionage.com: could not connect to host
realnewhomes.com: could not connect to host
-realoteam.ddns.net: could not connect to host
realraghavgupta.com: could not connect to host
realwoo.com: did not receive HSTS header
reapdrive.net: did not receive HSTS header
@@ -12442,14 +13508,16 @@ reaper.rip: could not connect to host
reardenporn.com: could not connect to host
rebekaesgabor.online: could not connect to host
rebootmc.com: could not connect to host
-receitas-de-bolos.pt: did not receive HSTS header
+receitas-de-bolos.pt: could not connect to host
receitasdebacalhau.pt: could not connect to host
+recetasdecocinaideal.com: did not receive HSTS header
recetasfacilesdehacer.com: did not receive HSTS header
rechat.com: did not receive HSTS header
rechenwerk.net: could not connect to host
recht-freundlich.de: did not receive HSTS header
rechtenliteratuurleiden.nl: could not connect to host
recompiled.org: max-age too low: 7776000
+recreation.gov: did not receive HSTS header
recruitsecuritytraining.co.uk: could not connect to host
recruitsecuritytraining.com: could not connect to host
rectoraudiparts.com: could not connect to host
@@ -12467,7 +13535,6 @@ redirectman.com: could not connect to host
redizoo.com: did not receive HSTS header
redlatam.org: did not receive HSTS header
redmbk.com: did not receive HSTS header
-redmind.se: could not connect to host
redneck-gaming.de: did not receive HSTS header
redner.cc: did not receive HSTS header
rednertv.de: did not receive HSTS header
@@ -12477,21 +13544,19 @@ redperegrine.com: did not receive HSTS header
redporno.cz: could not connect to host
redports.org: could not connect to host
redra.ws: did not receive HSTS header
-redsquirrelcampsite.co.uk: could not connect to host
redstarsurf.com: did not receive HSTS header
reducerin.ro: did not receive HSTS header
redy.host: did not receive HSTS header
-reedyforkfarm.com: did not receive HSTS header
+reepay.com: did not receive HSTS header
reeson.at: could not connect to host
reeson.de: could not connect to host
reeson.info: could not connect to host
reeson.org: could not connect to host
+reevoo.com: did not receive HSTS header
ref1oct.nl: could not connect to host
-refactor.zone: did not receive HSTS header
referenten.org: did not receive HSTS header
refitplanner.com: did not receive HSTS header
reflecton.io: could not connect to host
-reforesttheplanet.com: could not connect to host
reformatreality.com: could not connect to host
refreshingserum.com: could not connect to host
reg.ru: did not receive HSTS header
@@ -12507,10 +13572,11 @@ regionalcoalition.org: did not receive HSTS header
regionale.org: did not receive HSTS header
register.gov.uk: did not receive HSTS header
registertovoteflorida.gov: did not receive HSTS header
+registryplus.nl: did not receive HSTS header
regoul.com: did not receive HSTS header
regsec.com: could not connect to host
rehabthailand.nl: could not connect to host
-rei.ki: did not receive HSTS header
+rei.codes: did not receive HSTS header
reic.me: could not connect to host
reidascuecas.com.br: could not connect to host
reignsphere.net: could not connect to host
@@ -12518,8 +13584,9 @@ reikiqueen.uk: could not connect to host
reinaertvandecruys.com: could not connect to host
reinaertvandecruys.me: could not connect to host
reineberthe.ch: could not connect to host
+reinoldus.ddns.net: could not connect to host
reismil.ch: could not connect to host
-reisyukaku.org: did not receive HSTS header
+reisyukaku.org: could not connect to host
reithguard-it.de: did not receive HSTS header
rejo.in: could not connect to host
rejushiiplotter.ru: could not connect to host
@@ -12528,13 +13595,14 @@ relatic.net: could not connect to host
relayawards.com: could not connect to host
reldoc.com.mx: did not receive HSTS header
reliable-mail.de: could not connect to host
+reliant3sixty.com: could not connect to host
religiousforums.com: did not receive HSTS header
relisten.nl: did not receive HSTS header
-relsak.cz: could not connect to host
rem.pe: did not receive HSTS header
rema.site: did not receive HSTS header
remain.london: could not connect to host
remedica.fr: could not connect to host
+remedioskaseros.com: did not receive HSTS header
remedium.de: could not connect to host
remedyrehab.com: did not receive HSTS header
rememberthis.co.za: could not connect to host
@@ -12542,15 +13610,16 @@ remodela.com.ve: could not connect to host
remodelwithlegacy.com: did not receive HSTS header
remonttitekniikka.fi: could not connect to host
remotestance.com: did not receive HSTS header
-remrol.ru: could not connect to host
rencaijia.com: did not receive HSTS header
rencontres-erotiques.com: did not receive HSTS header
+reneclemens.nl: max-age too low: 300
rengarenkblog.com: could not connect to host
renideo.fr: could not connect to host
renkhosting.com: could not connect to host
renlong.org: did not receive HSTS header
rennfire.org: could not connect to host
renrenss.com: could not connect to host
+rent-a-c.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
rentacarcluj.xyz: did not receive HSTS header
rentalmed.com.br: did not receive HSTS header
rentbrowser.com: could not connect to host
@@ -12558,8 +13627,6 @@ rentbrowsertrain.me: could not connect to host
rentcarassist.com: could not connect to host
renteater.com: could not connect to host
rentex.com: did not receive HSTS header
-renxinge.cn: did not receive HSTS header
-reparo.pe: did not receive HSTS header
repex.co.il: could not connect to host
replaceits.me: could not connect to host
replacemychina.com: could not connect to host
@@ -12577,12 +13644,14 @@ reporturl.com: did not receive HSTS header
reporturl.io: did not receive HSTS header
reposaarenkuva.fi: could not connect to host
reprolife.co.uk: did not receive HSTS header
-reptilauksjonen.no: did not receive HSTS header
+reptilauksjonen.no: could not connect to host
republicmo.gov: could not connect to host
repustate.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
reqognize.com: could not connect to host
+request-trent.com: could not connect to host
res-rheingau.de: did not receive HSTS header
res42.com: could not connect to host
+resc.la: could not connect to host
research.md: could not connect to host
reseponline.info: did not receive HSTS header
reserve-online.net: did not receive HSTS header
@@ -12591,7 +13660,6 @@ residentsinsurance.co.uk: did not receive HSTS header
resl20.servehttp.com: could not connect to host
resoundpro.ca: could not connect to host
respice.xyz: could not connect to host
-ressl.ch: could not connect to host
ressos.com: did not receive HSTS header
restaurace-klokocka.cz: did not receive HSTS header
restaurant-mangal.ch: could not connect to host
@@ -12601,10 +13669,10 @@ restaurantmangal.ch: could not connect to host
restchart.com: did not receive HSTS header
restioson.me: could not connect to host
restopro.nyc: did not receive HSTS header
-restoreresearchstudy.com: did not receive HSTS header
+restoreresearchstudy.com: could not connect to host
resultsdate.news: could not connect to host
reth.ch: could not connect to host
-reto.io: could not connect to host
+retireyourpassword.org: did not receive HSTS header
retogroup.com: could not connect to host
retropage.co: did not receive HSTS header
retrowave.eu: could not connect to host
@@ -12620,6 +13688,7 @@ reverie.pw: could not connect to host
review.info: did not receive HSTS header
reviewbestseller.com: did not receive HSTS header
reviewjust.com: did not receive HSTS header
+reviewspedia.org: did not receive HSTS header
revistapequenosolhares.com.br: could not connect to host
revolutionhive.com: could not connect to host
revtut.net: could not connect to host
@@ -12629,11 +13698,12 @@ rexhockingkelpies.com.au: did not receive HSTS header
reykjavik.guide: could not connect to host
rezun.cloud: did not receive HSTS header
rf.tn: could not connect to host
-rfxanalyst.com: could not connect to host
+rfeif.org: could not connect to host
rgservers.com: did not receive HSTS header
rhapsodhy.hu: could not connect to host
rhdigital.pro: could not connect to host
rhering.de: could not connect to host
+rhetthenckel.com: max-age too low: 0
rhiskiapril.com: did not receive HSTS header
rhodes.ml: could not connect to host
rhodesianridgeback.com.br: could not connect to host
@@ -12643,6 +13713,7 @@ ribopierre.fr: could not connect to host
riceglue.com: could not connect to host
richamorindonesia.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
richardb.me: could not connect to host
+richardcrosby.co.uk: did not receive HSTS header
richardhicks.us: could not connect to host
richeza.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
richie.link: did not receive HSTS header
@@ -12653,6 +13724,7 @@ richsiciliano.com: did not receive HSTS header
richterphilipp.com: could not connect to host
rickmartensen.nl: did not receive HSTS header
ricknox.com: did not receive HSTS header
+ricky.capital: did not receive HSTS header
rid-wan.com: could not connect to host
rideaudiscount.com: did not receive HSTS header
rideforwade.com: could not connect to host
@@ -12663,6 +13735,7 @@ ridingoklahoma.com: could not connect to host
ridwan.co: could not connect to host
rienasemettre.fr: did not receive HSTS header
riesenmagnete.de: could not connect to host
+riester.pl: did not receive HSTS header
rievo.net: did not receive HSTS header
right-to-love.name: did not receive HSTS header
right2.org: could not connect to host
@@ -12674,10 +13747,10 @@ rika.me: could not connect to host
rincon-nsn.gov: could not connect to host
ring0.xyz: did not receive HSTS header
ringh.am: could not connect to host
-rinj.se: could not connect to host
+rinj.se: did not receive HSTS header
rionewyork.com.br: could not connect to host
-rioshop.com.br: could not connect to host
ripa.io: did not receive HSTS header
+ripple.com: did not receive HSTS header
rippleunion.com: could not connect to host
risi-china.com: could not connect to host
risingsun.red: could not connect to host
@@ -12704,54 +13777,58 @@ rme.li: did not receive HSTS header
rmit.me: could not connect to host
rmk.si: could not connect to host
rmsides.com: did not receive HSTS header
+rmstudio.tw: could not connect to host
roadfeast.com: could not connect to host
roan24.pl: did not receive HSTS header
-rob.uk.com: could not connect to host
+rob.uk.com: did not receive HSTS header
robertabittle.com: could not connect to host
-roberto-webhosting.nl: did not receive HSTS header
+roberto-webhosting.nl: could not connect to host
robertocasares.no-ip.biz: could not connect to host
robi-net.it: could not connect to host
-robigalia.org: did not receive HSTS header
robinvdmarkt.nl: could not connect to host
-robjager-fotografie.nl: could not connect to host
robomonkey.org: could not connect to host
robteix.com: did not receive HSTS header
robtex.com: did not receive HSTS header
robtex.net: did not receive HSTS header
robtex.org: did not receive HSTS header
robust.ga: could not connect to host
+roc.net.au: could not connect to host
rochman.id: did not receive HSTS header
+rocket-wars.de: did not receive HSTS header
rocketnet.ml: could not connect to host
rockeyscrivo.com: did not receive HSTS header
rocksberg.net: could not connect to host
rockz.io: did not receive HSTS header
rodarion.pl: could not connect to host
rodehutskors.net: could not connect to host
+rodinneodpoledne2018.cz: did not receive HSTS header
rodney.id.au: did not receive HSTS header
rodneybrooksjr.com: did not receive HSTS header
-rodomonte.org: did not receive HSTS header
rodosto.com: did not receive HSTS header
+rody-design.com: could not connect to host
roelbazuin.com: did not receive HSTS header
roelf.org: did not receive HSTS header
roeper.party: could not connect to host
roesemann.email: could not connect to host
+roffe.nu: did not receive HSTS header
rofrank.space: could not connect to host
rogeiro.net: could not connect to host
+roger101.com: could not connect to host
rogerdat.ovh: could not connect to host
roguefortgame.com: could not connect to host
rohanbassett.com: could not connect to host
rohankrishnadev.in: could not connect to host
+rohlik.cz: did not receive HSTS header
+roiscroll.com: did not receive HSTS header
roketix.co.uk: did not receive HSTS header
rolandkolodziej.com: max-age too low: 86400
-rolandreed.cn: did not receive HSTS header
rolandslate.com: did not receive HSTS header
rolemaster.net: could not connect to host
rolroer.co.za: could not connect to host
romaimperator.com: did not receive HSTS header
-romainmuller.xyz: did not receive HSTS header
romans-place.me.uk: could not connect to host
+romantic-quotes.co.uk: could not connect to host
romanticschemermovie.com: could not connect to host
-romar-bos.nl: did not receive HSTS header
romeoferraris.com: did not receive HSTS header
romleg.cf: could not connect to host
roms.fun: could not connect to host
@@ -12762,11 +13839,12 @@ rondreis-planner.nl: could not connect to host
ronghexx.com: could not connect to host
ronvandordt.info: did not receive HSTS header
ronwo.de: max-age too low: 1
-roo.ie: could not connect to host
+roo.ie: did not receive HSTS header
rool.me: did not receive HSTS header
roolevoi.ru: could not connect to host
room-checkin24.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
roosteroriginals.com: could not connect to host
+roosterpgplus.nl: did not receive HSTS header
rootbsd.at: could not connect to host
rootforum.org: did not receive HSTS header
rootrelativity.com: could not connect to host
@@ -12774,7 +13852,10 @@ rootservice.org: did not receive HSTS header
rootwpn.com: could not connect to host
rop.io: did not receive HSTS header
roquecenter.org: did not receive HSTS header
+roromendut.online: could not connect to host
rorymcdaniel.com: did not receive HSTS header
+rosetiger.life: could not connect to host
+rosevillefacialplasticsurgery.com: did not receive HSTS header
rosewoodranch.com: did not receive HSTS header
rosi-royal.com: could not connect to host
rospa100.com: did not receive HSTS header
@@ -12798,23 +13879,26 @@ royal876.com: could not connect to host
royalhop.co: could not connect to host
royalpub.net: did not receive HSTS header
royalsignaturecruise.com: could not connect to host
+royaltube.net: could not connect to host
roychan.org: max-age too low: 0
royzez.com: could not connect to host
rozalisbengal.ro: could not connect to host
-rozalynne-dawn.ga: could not connect to host
rozeapp.nl: could not connect to host
rpasafrica.com: could not connect to host
rr.in.th: could not connect to host
+rring.me: could not connect to host
+rritv.com: could not connect to host
rrke.cc: did not receive HSTS header
rrom.me: did not receive HSTS header
rs-devdemo.host: could not connect to host
rsajeey.info: could not connect to host
rsampaio.info: did not receive HSTS header
rsf.io: could not connect to host
-rsi.im: did not receive HSTS header
+rsi.im: could not connect to host
rskuipers.com: did not receive HSTS header
rsldb.com: could not connect to host
rsmaps.org: could not connect to host
+rsmmail.com: did not receive HSTS header
rsships.com: could not connect to host
rstraining.co.uk: did not receive HSTS header
rstsecuritygroup.co.uk: could not connect to host
@@ -12822,18 +13906,21 @@ rtc.fun: could not connect to host
rtho.me: did not receive HSTS header
rtvi.com: did not receive HSTS header
ru-music.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ruarua.ml: could not connect to host
rubbereggs.ca: could not connect to host
rubbix.net: could not connect to host
rubecodeberg.com: could not connect to host
rubendv.be: did not receive HSTS header
rubens.cloud: did not receive HSTS header
-rubenschulz.nl: could not connect to host
+rubenschulz.nl: did not receive HSTS header
rubi-ka.net: max-age too low: 0
ruborr.se: did not receive HSTS header
rubysecurity.org: did not receive HSTS header
rubyshop.nl: could not connect to host
+rudelune.fr: could not connect to host
rudeotter.com: did not receive HSTS header
-rue-de-la-vieille.fr: max-age too low: 0
+ruderverein-gelsenkirchen.de: did not receive HSTS header
+rue-de-la-vieille.fr: did not receive HSTS header
ruflay.ru: could not connect to host
rugirlfriend.com: could not connect to host
rugs.ca: did not receive HSTS header
@@ -12844,16 +13931,17 @@ ruitershoponline.nl: did not receive HSTS header
ruja.dk: did not receive HSTS header
rukhaiyar.com: could not connect to host
rullzer.com: did not receive HSTS header
-rumlager.de: max-age too low: 600000
rummel-platz.de: could not connect to host
rumoterra.com.br: could not connect to host
run-forrest.run: could not connect to host
runawebinar.nl: could not connect to host
runcarina.com: could not connect to host
rundumcolumn.xyz: could not connect to host
+runefake.com: could not connect to host
runhardt.eu: did not receive HSTS header
runtl.com: did not receive HSTS header
runtondev.com: did not receive HSTS header
+ruobiyi.com: could not connect to host
ruqu.nl: could not connect to host
rusadmin.biz: did not receive HSTS header
rushball.net: could not connect to host
@@ -12861,16 +13949,20 @@ rusl.me: could not connect to host
russmarshall.com: could not connect to host
rustbyexample.com: did not receive HSTS header
rustfanatic.com: did not receive HSTS header
+rustralasia.net: max-age too low: 0
+rusxakep.com: could not connect to host
ruurdboomsma.nl: could not connect to host
ruxit.com: did not receive HSTS header
+rva.gov: could not connect to host
rvg.zone: could not connect to host
rvolve.net: could not connect to host
rw-solutions.tech: could not connect to host
rwanderlust.com: did not receive HSTS header
-rxgroup.io: could not connect to host
+rxbn.de: could not connect to host
rxprep.com: did not receive HSTS header
rxt.social: could not connect to host
rxv.cc: could not connect to host
+ryanroberts.co.uk: could not connect to host
ryanteck.uk: did not receive HSTS header
rybox.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ryejuice.sytes.net: could not connect to host
@@ -12888,14 +13980,17 @@ s1mplescripts.de: could not connect to host
s1ris.org: did not receive HSTS header
s3cases.com: did not receive HSTS header
s3n.se: could not connect to host
+s4media.org: did not receive HSTS header
saabwa.org: could not connect to host
-saba-piserver.info: could not connect to host
sabatek.pl: did not receive HSTS header
sac-shop.com: did not receive HSTS header
sachk.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
saco-ceso.com: could not connect to host
sadiejanehair.com: could not connect to host
+sadsu.com: did not receive HSTS header
+saenforcement.agency: could not connect to host
safari-afrique.com: did not receive HSTS header
+safe.space: could not connect to host
safedevice.net: did not receive HSTS header
safelist.eu: did not receive HSTS header
safemovescheme.co.uk: could not connect to host
@@ -12903,18 +13998,18 @@ safemt.gov: could not connect to host
safepay.io: could not connect to host
saferedirect.link: could not connect to host
saferedirectlink.com: could not connect to host
-safersurfing.eu: did not receive HSTS header
safesecret.info: did not receive HSTS header
-safetyrisk.net: did not receive HSTS header
safewings-nh.nl: could not connect to host
safing.me: could not connect to host
safnah.com: did not receive HSTS header
sagarhandicraft.com: could not connect to host
+sagemontchurch.org: did not receive HSTS header
sageth.com: could not connect to host
sah3.net: could not connect to host
sail-nyc.com: did not receive HSTS header
saint-astier-triathlon.com: did not receive HSTS header
saintjohnlutheran.church: did not receive HSTS header
+saintmichelqud.com: did not receive HSTS header
saintw.com: could not connect to host
sairai.bid: could not connect to host
saiyasu-search.com: did not receive HSTS header
@@ -12923,29 +14018,33 @@ sakib.ninja: did not receive HSTS header
sakurabuff.com: could not connect to host
salaervergleich.com: did not receive HSTS header
sale.sh: could not connect to host
+saleaks.org: could not connect to host
salearnership.co.za: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-saleslift.pl: did not receive HSTS header
+saleslift.pl: could not connect to host
salishseawhalewatching.ca: could not connect to host
+salixcode.com: could not connect to host
sallysubs.com: could not connect to host
salmo23.com.br: could not connect to host
salon-claudia.ch: could not connect to host
salonestella.it: could not connect to host
-salrosadohimalaia.com: did not receive HSTS header
salserocafe.com: did not receive HSTS header
salserototal.com: could not connect to host
saltedskies.com: could not connect to host
saltra.online: could not connect to host
+saltro.nl: did not receive HSTS header
salvaalocombia.com: could not connect to host
salverainha.org: could not connect to host
salzamt.tk: could not connect to host
samanthahumphreysstudio.com: did not receive HSTS header
samaritan.tech: could not connect to host
samaritansnet.org: did not receive HSTS header
-samenwerkingsportaal.tk: did not receive HSTS header
+samel.de: could not connect to host
sametovymesic.cz: could not connect to host
+samin.tk: could not connect to host
saml2.com: could not connect to host
samlamac.com: could not connect to host
samm.com.au: did not receive HSTS header
+sammenlignakasser.dk: did not receive HSTS header
sammyjohnson.com: could not connect to host
samp.im: could not connect to host
sampcup.com: could not connect to host
@@ -12955,20 +14054,22 @@ samsen.club: could not connect to host
samsonova.de: could not connect to host
samsungxoa.com: could not connect to host
samvanderkris.com: could not connect to host
-samvanderkris.xyz: did not receive HSTS header
sanael.net: could not connect to host
+sanalbayrak.com: could not connect to host
sanandreasstories.com: did not receive HSTS header
sanasalud.org: could not connect to host
sanatfilan.com: did not receive HSTS header
+sanatorionosti.com.ar: could not connect to host
sanatrans.com: could not connect to host
-sand-islets.de: did not receive HSTS header
+sanchez.adv.br: could not connect to host
sanderknape.com: did not receive HSTS header
sandviks.com: did not receive HSTS header
sanguoxiu.com: could not connect to host
sanhei.ch: did not receive HSTS header
-sanik.my: could not connect to host
+sanik.my: did not receive HSTS header
+sanmuding.com: could not connect to host
sanradon.by: did not receive HSTS header
-sansage.com.br: could not connect to host
+sansage.com.br: did not receive HSTS header
sansdev.com: could not connect to host
sansemea.com: did not receive HSTS header
santi.eu: did not receive HSTS header
@@ -12979,11 +14080,13 @@ santmark.fi: could not connect to host
santmark.info: could not connect to host
santmark.net: could not connect to host
santmark.org: could not connect to host
-santodomingocg.org: could not connect to host
+santodomingocg.org: did not receive HSTS header
santorinibbs.com: did not receive HSTS header
santouri.be: could not connect to host
+saol.eu: could not connect to host
saotn.org: did not receive HSTS header
sapereaude.com.pl: did not receive HSTS header
+sapphireblue.me: could not connect to host
sapporobeer.com: could not connect to host
sapuncheta.com: could not connect to host
saq.com: could not connect to host
@@ -13001,10 +14104,9 @@ sarkarikhoj.com: could not connect to host
sarkarischeme.in: could not connect to host
sarkisozleri.us: could not connect to host
sarndipity.com: could not connect to host
-saro.me: did not receive HSTS header
saruwebshop.co.za: could not connect to host
+sasanika.org: did not receive HSTS header
sat.rent: did not receive HSTS header
-sat7a-riyadh.com: did not receive HSTS header
satanichia.moe: could not connect to host
sativatunja.com: could not connect to host
satmep.com: did not receive HSTS header
@@ -13012,21 +14114,21 @@ satoshicrypt.com: did not receive HSTS header
satragreen.com: did not receive HSTS header
satrent.com: did not receive HSTS header
satrent.se: did not receive HSTS header
-satriyowibowo.my.id: did not receive HSTS header
+satriyowibowo.my.id: could not connect to host
satsang-uwe.de: did not receive HSTS header
satsukii.moe: did not receive HSTS header
sattamatkadpboss.mobi: could not connect to host
saturne.tk: could not connect to host
-saturngames.co.uk: could not connect to host
saucyfox.net: did not receive HSTS header
saudeeconforto.com.br: did not receive HSTS header
sauenytt.no: could not connect to host
-sauerbrey.eu: did not receive HSTS header
saumon.io: did not receive HSTS header
saumon.xyz: could not connect to host
saunasandstuff.ca: did not receive HSTS header
saunasandstuff.com: did not receive HSTS header
+saurel.me: could not connect to host
savacloud.com: did not receive HSTS header
+savannahtasteexperience.com: did not receive HSTS header
save.gov: could not connect to host
saveaward.gov: could not connect to host
savecashindia.com: did not receive HSTS header
@@ -13048,8 +14150,12 @@ sbobetfun.com: did not receive HSTS header
sbox-archives.com: could not connect to host
sby.de: did not receive HSTS header
sc4le.com: could not connect to host
+scaffoldhirefourways.co.za: did not receive HSTS header
+scaffoldhirerandburg.co.za: did not receive HSTS header
+scaffoldhiresandton.co.za: did not receive HSTS header
scala.click: did not receive HSTS header
scannabi.com: could not connect to host
+sceptique.eu: did not receive HSTS header
sch44r0n.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
schaafenstrasse.koeln: could not connect to host
schachburg.de: did not receive HSTS header
@@ -13059,24 +14165,24 @@ schau-rein.co.at: did not receive HSTS header
schauer.so: could not connect to host
schd.io: did not receive HSTS header
schermreparatierotterdam.nl: did not receive HSTS header
+schippers-it.nl: did not receive HSTS header
schlabbi.com: did not receive HSTS header
-schlagenhauf.info: could not connect to host
-schlagma.de: could not connect to host
+schmelzle.io: could not connect to host
schmidttulskie.de: could not connect to host
schmitt.ovh: could not connect to host
schmitt.ws: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-schnapke.name: could not connect to host
-schneider-electric.tg: could not connect to host
+schmitz.link: could not connect to host
+schneider-electric.tg: did not receive HSTS header
schnell-abnehmen.tips: did not receive HSTS header
-schnell-gold.com: did not receive HSTS header
+schnell-gold.com: could not connect to host
scholl.io: could not connect to host
+school.in.th: could not connect to host
schooli.io: could not connect to host
schooltrends.co.uk: did not receive HSTS header
schoolze.com: did not receive HSTS header
schoop.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
schorel.ovh: could not connect to host
schraebanowicz.net: did not receive HSTS header
-schreck-thomas.de: could not connect to host
schreiber-netzwerk.eu: did not receive HSTS header
schreibnacht.de: did not receive HSTS header
schreinerei-wortmann.de: did not receive HSTS header
@@ -13089,8 +14195,10 @@ schulterglatzen-altenwalde.de: could not connect to host
schur-it.de: could not connect to host
schwarzkopfforyou.de: did not receive HSTS header
schwarzwaldcon.de: could not connect to host
+schwedenhaus.ag: did not receive HSTS header
schweiz.guide: could not connect to host
-schweizerbolzonello.net: could not connect to host
+schweizerbolzonello.net: did not receive HSTS header
+schwerkraftlabor.de: did not receive HSTS header
schwetz.net: could not connect to host
sci-internet.tk: could not connect to host
scib.tk: could not connect to host
@@ -13098,7 +14206,6 @@ scicasts.com: max-age too low: 7776000
science-anatomie.com: did not receive HSTS header
scienceathome.org: did not receive HSTS header
sciencemonster.co.uk: could not connect to host
-scintillating.stream: could not connect to host
scionasset.com: did not receive HSTS header
scivillage.com: did not receive HSTS header
sclgroup.cc: did not receive HSTS header
@@ -13107,6 +14214,7 @@ scooshonline.co.uk: did not receive HSTS header
scopea.fr: max-age too low: 0
score-savers.com: max-age too low: 10540800
scores4schools.com: could not connect to host
+scorobudem.ru: could not connect to host
scotbirchfield.com: did not receive HSTS header
scottainslie.me.uk: could not connect to host
scottdial.com: did not receive HSTS header
@@ -13139,12 +14247,12 @@ sdhmanagementgroup.com: could not connect to host
sdia.ru: could not connect to host
sdl-corporatesite-staging.azurewebsites.net: did not receive HSTS header
sdmoscow.ru: could not connect to host
+sdocast.com: could not connect to host
sdrobs.com: did not receive HSTS header
sdsl-speedtest.de: could not connect to host
se7ensins.com: did not receive HSTS header
sea-godzilla.com: could not connect to host
-seadus.ee: could not connect to host
-seanationals.org: did not receive HSTS header
+seanationals.org: max-age too low: 1
seanchaidh.org: could not connect to host
seans.cc: did not receive HSTS header
seanstrout.com: did not receive HSTS header
@@ -13153,17 +14261,19 @@ searchgov.gov.il: did not receive HSTS header
searchshops.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
searx.pw: could not connect to host
sebastian-bair.de: could not connect to host
+sebastian-lutsch.de: could not connect to host
sebastian-schmidt.me: did not receive HSTS header
sebastianhampl.de: could not connect to host
sebastianpedersen.com: did not receive HSTS header
sebastiensenechal.com: did not receive HSTS header
-sebi.cf: could not connect to host
sebster.com: did not receive HSTS header
sec44.com: could not connect to host
sec44.net: could not connect to host
sec44.org: could not connect to host
+sec4share.me: did not receive HSTS header
secandtech.com: could not connect to host
secanje.nl: did not receive HSTS header
+secboom.com: could not connect to host
seccomp.ru: did not receive HSTS header
seceye.cn: could not connect to host
secitem.at: did not receive HSTS header
@@ -13184,7 +14294,7 @@ secretnation.net: did not receive HSTS header
secretofanah.com: could not connect to host
secretpanties.com: could not connect to host
sectest.ml: could not connect to host
-sectia22.ro: did not receive HSTS header
+sectia22.ro: could not connect to host
secur3.us: did not receive HSTS header
secure-automotive-cloud.com: could not connect to host
secure-automotive-cloud.org: could not connect to host
@@ -13202,13 +14312,14 @@ securita.eu: did not receive HSTS header
security-carpet.com: could not connect to host
security-thoughts.org: could not connect to host
security.google.com: did not receive HSTS header (error ignored - included regardless)
+security.love: could not connect to host
security.xn--q9jyb4c: could not connect to host
securityarena.com: could not connect to host
securitybrief.asia: did not receive HSTS header
securitybrief.co.nz: did not receive HSTS header
securitybrief.com.au: did not receive HSTS header
securitybrief.eu: did not receive HSTS header
-securitybsides.pl: did not receive HSTS header
+securitybsides.pl: could not connect to host
securityglance.com: could not connect to host
securityinet.biz: did not receive HSTS header
securityinet.net: did not receive HSTS header
@@ -13221,6 +14332,7 @@ securitywatch.co.nz: did not receive HSTS header
securiviera.ch: did not receive HSTS header
securon.io: could not connect to host
securoswiss.ch: could not connect to host
+secwise.nl: did not receive HSTS header
sedoexpert.nl: could not connect to host
sedoexperts.nl: could not connect to host
sedrubal.de: could not connect to host
@@ -13233,9 +14345,11 @@ seehimnaked.com: could not connect to host
seehimnude.com: could not connect to host
seehisnudes.com: could not connect to host
seele.ca: could not connect to host
+seemeasaperson.com: did not receive HSTS header
seen.life: could not connect to host
sehenderson.com: did not receive HSTS header
seida.at: could not connect to host
+seiko-dojo.com: could not connect to host
seiler-bad.de: did not receive HSTS header
seizoushokoyuubangou.com: did not receive HSTS header
sektor.team: could not connect to host
@@ -13258,13 +14372,11 @@ semantheme.fr: did not receive HSTS header
semen3325.xyz: could not connect to host
semenkovich.com: did not receive HSTS header
sementes.gratis: could not connect to host
-semjonov.de: could not connect to host
semps-servers.de: could not connect to host
sendash.com: did not receive HSTS header
sendmeback.de: did not receive HSTS header
senedirect.com: could not connect to host
-senmonsyoku.top: did not receive HSTS header
-sens2lavie.com: did not receive HSTS header
+senemusique.com: did not receive HSTS header
senseofnumber.co.uk: did not receive HSTS header
senseye.io: did not receive HSTS header
sensiblemn.org: could not connect to host
@@ -13275,13 +14387,13 @@ seo-lagniappe.com: did not receive HSTS header
seoarchive.org: could not connect to host
seobot.com.au: could not connect to host
seohochschule.de: could not connect to host
+seokay.com: did not receive HSTS header
seolaba.io: could not connect to host
seomarketingdeals.com: did not receive HSTS header
seomen.biz: could not connect to host
seomobo.com: could not connect to host
seosanantonioinc.com: did not receive HSTS header
seoscribe.net: could not connect to host
-seosec.xyz: did not receive HSTS header
seotronix.net: did not receive HSTS header
seowarp.net: did not receive HSTS header
sep23.ru: could not connect to host
@@ -13289,13 +14401,13 @@ sepakbola.win: could not connect to host
sephr.com: did not receive HSTS header
sepie.gob.es: did not receive HSTS header
seq.tf: did not receive HSTS header
-sequatchiecounty-tn.gov: could not connect to host
+sequatchiecountytn.gov: could not connect to host
serafin.tech: could not connect to host
serathius.ovh: could not connect to host
serbien.guide: could not connect to host
serenitycreams.com: did not receive HSTS header
serfdom.io: did not receive HSTS header
-sergeyreznikov.com: could not connect to host
+sergivb01.me: did not receive HSTS header
serized.pw: could not connect to host
serkaneles.com: did not receive HSTS header
servecrypt.com: could not connect to host
@@ -13308,10 +14420,9 @@ servercode.ca: did not receive HSTS header
serverdensity.io: did not receive HSTS header
servergno.me: did not receive HSTS header
serverlauget.no: could not connect to host
-serverlog.net: could not connect to host
servermonkey.nl: could not connect to host
servfefe.com: could not connect to host
-service.gov.uk: could not connect to host
+service-wueste-vodafone.tk: could not connect to host
servicevie.com: did not receive HSTS header
servpanel.de: did not receive HSTS header
servu.de: did not receive HSTS header
@@ -13324,8 +14435,10 @@ sesha.co.za: could not connect to host
sethoedjo.com: could not connect to host
setkit.net: could not connect to host
setuid.de: could not connect to host
-setuid.io: did not receive HSTS header
+sevenet.pl: did not receive HSTS header
sevenhearts.online: could not connect to host
+sevsey.ru: could not connect to host
+sevsopr.ru: could not connect to host
sex-education.com: could not connect to host
sexgarage.de: could not connect to host
sexocomgravidas.com: could not connect to host
@@ -13333,6 +14446,7 @@ sexoyrelax.com: could not connect to host
sexpay.net: could not connect to host
sexplicit.co.uk: did not receive HSTS header
sexshopfacil.com.br: could not connect to host
+sexshopnet.com.br: could not connect to host
sexshopsgay.com: did not receive HSTS header
sexwork.net: could not connect to host
sexymassageoil.com: could not connect to host
@@ -13345,9 +14459,11 @@ sfhobbies.com.br: could not connect to host
sfsltd.com: did not receive HSTS header
sgovaard.nl: did not receive HSTS header
sgthotshot.com: could not connect to host
+sgtsnookums.net: could not connect to host
sh11.pp.ua: did not receive HSTS header
sh4y.com: could not connect to host
sha2017.org: did not receive HSTS header
+shaaaaaaaaaaaaa.com: did not receive HSTS header
shaamrelief.org: did not receive HSTS header
shadiku.com: could not connect to host
shadow-socks.net: could not connect to host
@@ -13356,6 +14472,7 @@ shadow-socks.pro: could not connect to host
shadowguardian507-irl.tk: did not receive HSTS header
shadowguardian507.tk: did not receive HSTS header
shadowmorph.info: did not receive HSTS header
+shadowping.com: could not connect to host
shadowplus.net: could not connect to host
shadowrocket.net: could not connect to host
shadowroket.com: did not receive HSTS header
@@ -13375,18 +14492,16 @@ shagi29.ru: did not receive HSTS header
shahbeat.com: could not connect to host
shaitan.eu: could not connect to host
shakebox.de: could not connect to host
-shaken-kyoto.jp: could not connect to host
-shamka.ru: could not connect to host
shandonsg.co.uk: could not connect to host
shanekoster.net: did not receive HSTS header
-shanesage.com: could not connect to host
+shanesage.com: did not receive HSTS header
shang-yu.cn: could not connect to host
shanxiapark.com: could not connect to host
shanyhs.com: did not receive HSTS header
shapesedinburgh.co.uk: did not receive HSTS header
shardsoft.com: could not connect to host
+shareeri.com: could not connect to host
shareimg.xyz: could not connect to host
-sharejoy.cn: did not receive HSTS header
sharemessage.net: could not connect to host
shareoine.com: did not receive HSTS header
sharepass.pw: could not connect to host
@@ -13394,10 +14509,16 @@ sharepic.xyz: could not connect to host
sharesplitter.com: could not connect to host
shareworx.net: could not connect to host
sharezen.de: could not connect to host
+shariahlawcenter.com: could not connect to host
+shariahlawcenter.org: could not connect to host
+sharialawcenter.com: could not connect to host
+sharialawcenter.org: could not connect to host
sharingcode.com: did not receive HSTS header
sharpe-practice.co.uk: could not connect to host
-sharvey.ca: could not connect to host
-shatorin.com: could not connect to host
+sharperedge.pw: could not connect to host
+sharperedgecomputers.com: could not connect to host
+shasso.com: did not receive HSTS header
+shatorin.com: did not receive HSTS header
shauncrowley.co.uk: could not connect to host
shaunwheelhou.se: could not connect to host
shavingks.com: could not connect to host
@@ -13405,20 +14526,19 @@ shawnbsmith.me: did not receive HSTS header
shawnh.net: could not connect to host
shawnstarrcustomhomes.com: did not receive HSTS header
shawnwilson.info: could not connect to host
-shellj.me: did not receive HSTS header
+shazbots.org: could not connect to host
shellsec.pw: did not receive HSTS header
shemissed.me: did not receive HSTS header
+shena.co.uk: could not connect to host
shentengtu.idv.tw: could not connect to host
shep.co.il: did not receive HSTS header
sheratan.web.id: could not connect to host
-shereallyheals.com: could not connect to host
+shereallyheals.com: did not receive HSTS header
shermantank.biz: did not receive HSTS header
shervik.ga: could not connect to host
shethbox.com: could not connect to host
shevronpatriot.ru: did not receive HSTS header
sheying.tm: could not connect to host
-shg-pornographieabhaengigkeit.de: did not receive HSTS header
-shh.sh: could not connect to host
shiatsu-institut.ch: could not connect to host
shibainu.com.br: could not connect to host
shibe.club: could not connect to host
@@ -13428,11 +14548,9 @@ shiftnrg.org: did not receive HSTS header
shiftplanning.com: did not receive HSTS header
shiinko.com: could not connect to host
shikinobi.com: did not receive HSTS header
-shimo.im: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
shindorei.fr: could not connect to host
shinebijoux.com.br: could not connect to host
shinju.moe: could not connect to host
-shinko-osaka.jp: could not connect to host
shinobi-fansub.ro: could not connect to host
shiona.xyz: could not connect to host
shipinsight.com: did not receive HSTS header
@@ -13441,7 +14559,6 @@ shipping24h.com: could not connect to host
shippingbo.com: did not receive HSTS header
shiroki-k.net: could not connect to host
shirosaki.org: could not connect to host
-shiseki.top: did not receive HSTS header
shishkin.link: did not receive HSTS header
shitfest.info: did not receive HSTS header
shitposting.life: could not connect to host
@@ -13450,8 +14567,10 @@ shlemenkov.by: could not connect to host
shm-forum.org.uk: could not connect to host
sho-tanaka.jp: did not receive HSTS header
shocksrv.com: did not receive HSTS header
+shoemuse.com: did not receive HSTS header
shooshosha.com: could not connect to host
shootpooloklahoma.com: could not connect to host
+shop.fr: max-age too low: 0
shopdopastor.com.br: could not connect to host
shopherbal.co.za: could not connect to host
shopods.com: did not receive HSTS header
@@ -13464,24 +14583,24 @@ shops.neonisi.com: could not connect to host
shortpath.com: could not connect to host
shortr.li: could not connect to host
shota.party: could not connect to host
+shota.vip: could not connect to host
shotpixonline.com.br: did not receive HSTS header
show-stream.tv: could not connect to host
showdepiscinas.com.br: did not receive HSTS header
shower.im: did not receive HSTS header
showkeeper.tv: did not receive HSTS header
showroom.de: did not receive HSTS header
-showroom113.ru: could not connect to host
-shoxmusic.net: did not receive HSTS header
shred.ch: could not connect to host
shredoptics.ch: could not connect to host
-shrug.ml: could not connect to host
shtorku.com: could not connect to host
shu-kin.net: did not receive HSTS header
shukatsu-note.com: could not connect to host
shurita.org: could not connect to host
+shuvo.rocks: did not receive HSTS header
shuzicai.cn: could not connect to host
shv25.se: could not connect to host
shwongacc.com: could not connect to host
+shybynature.com: did not receive HSTS header
shymeck.pw: could not connect to host
shypp.it: could not connect to host
shyrydan.es: could not connect to host
@@ -13490,27 +14609,29 @@ siammedia.co: could not connect to host
siamojo.com: could not connect to host
sianimacion.com: could not connect to host
siao-mei.com: did not receive HSTS header
+siberkulupler.com: could not connect to host
sichere-kartenakzeptanz.de: could not connect to host
siciliadigitale.pro: could not connect to host
sicklepod.com: could not connect to host
sictame-tigf.org: did not receive HSTS header
-sidpod.ru: could not connect to host
+sideropolisnoticias.com.br: did not receive HSTS header
siebens.net: could not connect to host
sieh.es: did not receive HSTS header
+sieulog.com: could not connect to host
sifls.com: could not connect to host
sifreuret.com: could not connect to host
signere.com: could not connect to host
signere.no: did not receive HSTS header
signoracle.com: could not connect to host
signosquecombinam.com.br: could not connect to host
+signsdance.uk: could not connect to host
sigsegv.run: did not receive HSTS header
sihaizixun.net: could not connect to host
siikarantacamping.fi: did not receive HSTS header
sijimi.cn: could not connect to host
-sijmenschoon.nl: could not connect to host
+sijmenschoon.nl: did not receive HSTS header
sikatehtaat.fi: could not connect to host
siku.pro: could not connect to host
-silent.live: could not connect to host
silentcircle.com: did not receive HSTS header
silentcircle.org: could not connect to host
silentexplosion.de: could not connect to host
@@ -13519,9 +14640,12 @@ silentmode.com: max-age too low: 0
silicagelpackets.ca: did not receive HSTS header
silke-hunde.de: did not receive HSTS header
silqueskineyeserum.com: could not connect to host
+silvacor-ziegel.de: max-age too low: 604800
silver-drachenkrieger.de: did not receive HSTS header
+silverartcollector.com: did not receive HSTS header
silverback.is: did not receive HSTS header
silvergoldbull.ba: could not connect to host
+silvergoldbull.lt: could not connect to host
silvergoldbull.md: could not connect to host
silvergoldbull.ph: could not connect to host
silverhome.ninja: could not connect to host
@@ -13529,11 +14653,13 @@ silverpvp.com: could not connect to host
silverstartup.sk: could not connect to host
silviamacallister.com: did not receive HSTS header
silvistefi.com: could not connect to host
+sim-sim.appspot.com: did not receive HSTS header
+sim4seed.org: could not connect to host
simbast.com: could not connect to host
simbihaiti.com: max-age too low: 7889238
simbol.id: could not connect to host
simbolo.co.uk: could not connect to host
-simccorp.com: did not receive HSTS header
+simccorp.com: could not connect to host
simeon.us: max-age too low: 2592000
simfri.com: could not connect to host
simha.online: could not connect to host
@@ -13545,6 +14671,7 @@ simon-pokorny.com: did not receive HSTS header
simon.butcher.name: max-age too low: 2629743
simon.lc: did not receive HSTS header
simongong.net: did not receive HSTS header
+simonkjellberg.se: did not receive HSTS header
simonsaxon.com: did not receive HSTS header
simonschmitt.ch: could not connect to host
simonsmh.cc: did not receive HSTS header
@@ -13552,7 +14679,6 @@ simpan.id: could not connect to host
simpeo.fr: did not receive HSTS header
simpeo.org: did not receive HSTS header
simpleai.net: max-age too low: 600
-simplecoding.click: did not receive HSTS header
simplefraud.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
simplelearner.com: could not connect to host
simplepractice.com: did not receive HSTS header
@@ -13579,11 +14705,10 @@ sinneserweiterung.de: could not connect to host
sinon.org: did not receive HSTS header
sinoscandinavia.se: could not connect to host
sinosky.org: did not receive HSTS header
-sinsojb.me: did not receive HSTS header
+sinsojb.me: could not connect to host
sintesysglobal.com: did not receive HSTS header
sinusbot.online: did not receive HSTS header
sion.moe: did not receive HSTS header
-sipc.org: did not receive HSTS header
sipsik.net: did not receive HSTS header
siqi.wang: could not connect to host
sirburton.com: did not receive HSTS header
@@ -13611,20 +14736,22 @@ sittinginoblivion.com: did not receive HSTS header
sizingservers.be: did not receive HSTS header
sizzle.co.uk: did not receive HSTS header
sja-se-training.com: could not connect to host
-sjdaws.com: could not connect to host
sjdtaxi.com: did not receive HSTS header
sjhyl11.com: could not connect to host
sjsc.fr: did not receive HSTS header
+sjsmith.id.au: did not receive HSTS header
+sjzebs.com: did not receive HSTS header
+sjzget.com: did not receive HSTS header
+sjzybs.com: did not receive HSTS header
skandiabanken.no: did not receive HSTS header
skaraborgsassistans.com: did not receive HSTS header
skarox.com: could not connect to host
-skarox.ee: could not connect to host
skarox.eu: could not connect to host
skarox.net: could not connect to host
skarox.ru: could not connect to host
skates.guru: did not receive HSTS header
skday.com: did not receive HSTS header
-sketchywebsite.net: max-age too low: 0
+sketchywebsite.net: did not receive HSTS header
ski-insurance.com.au: did not receive HSTS header
skidstresser.com: could not connect to host
skiinstructor.services: did not receive HSTS header
@@ -13632,6 +14759,8 @@ skilldetector.com: could not connect to host
skillproxy.com: could not connect to host
skillproxy.net: could not connect to host
skillproxy.org: could not connect to host
+skills2services.com: did not receive HSTS header
+skimming.net: did not receive HSTS header
skinbet.co: could not connect to host
skinmarket.co: could not connect to host
skischuleulm.de: did not receive HSTS header
@@ -13646,10 +14775,10 @@ skotty.io: did not receive HSTS header
skpdev.net: could not connect to host
skrimix.tk: could not connect to host
skrivande.co: could not connect to host
-skullhouse.nyc: did not receive HSTS header
+skullhouse.nyc: could not connect to host
sky-aroma.com: could not connect to host
skyasker.cn: could not connect to host
-skyasker.com: did not receive HSTS header
+skyasker.com: could not connect to host
skybloom.com: could not connect to host
skybound.link: did not receive HSTS header
skyflix.me: could not connect to host
@@ -13660,6 +14789,7 @@ skylocker.nl: could not connect to host
skyoy.com: did not receive HSTS header
skypeassets.com: could not connect to host
skypoker.com: could not connect to host
+skyris.co: could not connect to host
skyrunners.ch: could not connect to host
skytec.host: did not receive HSTS header
skyvault.io: could not connect to host
@@ -13667,7 +14797,6 @@ skyveo.ml: did not receive HSTS header
skyway.capital: did not receive HSTS header
skyworldserver.ddns.net: could not connect to host
sl1pkn07.wtf: max-age too low: 2592000
-slapen17.nl: could not connect to host
slaps.be: could not connect to host
slash-dev.de: did not receive HSTS header
slash64.co.uk: could not connect to host
@@ -13685,32 +14814,32 @@ sleep10.com: could not connect to host
sleepstar.com.mt: did not receive HSTS header
sliceone.com: could not connect to host
slicketl.com: did not receive HSTS header
+slicss.com: could not connect to host
slightfuture.click: could not connect to host
slightfuture.com: did not receive HSTS header
+slimk1nd.nl: could not connect to host
slimmerbouwen.be: did not receive HSTS header
slingo.com: did not receive HSTS header
slix.io: could not connect to host
sln.cloud: could not connect to host
-slo-net.net: could not connect to host
slope.haus: could not connect to host
+slotboss.co.uk: did not receive HSTS header
slovakiana.sk: did not receive HSTS header
slovenskycestovatel.sk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
slovoice.org: could not connect to host
slowfood.es: did not receive HSTS header
slowsociety.org: could not connect to host
slse.ca: max-age too low: 0
-sluimann.de: could not connect to host
sluplift.com: did not receive HSTS header
slycurity.de: could not connect to host
slytech.ch: could not connect to host
smallcdn.rocks: could not connect to host
smallchat.nl: could not connect to host
-smalldata.tech: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-smallpath.me: could not connect to host
smallplanet.ch: did not receive HSTS header
smallshopit.com: did not receive HSTS header
smart-mirror.de: did not receive HSTS header
smart-ov.nl: could not connect to host
+smartass.space: could not connect to host
smartbiz.vn: could not connect to host
smartboleta.com: did not receive HSTS header
smartbuyelectric.com: could not connect to host
@@ -13723,21 +14852,22 @@ smartlend.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERR
smartofficesandsmarthomes.com: did not receive HSTS header
smartofficeusa.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
smartphone.continental.com: could not connect to host
+smartrade.tech: did not receive HSTS header
smartrak.co.nz: did not receive HSTS header
smartshoppers.es: did not receive HSTS header
+smartwank.com: could not connect to host
smartwritingservice.com: could not connect to host
smcbox.com: did not receive HSTS header
smdev.fr: could not connect to host
smet.us: could not connect to host
smexpt.com: did not receive HSTS header
smi-a.me: could not connect to host
-smiatek.name: could not connect to host
smileawei.com: could not connect to host
-smimea.com: could not connect to host
+smimea.com: did not receive HSTS header
smirkingwhorefromhighgarden.pro: could not connect to host
-smith.is: did not receive HSTS header
+smithchow.com: could not connect to host
smittix.co.uk: did not receive HSTS header
-smkn1lengkong.sch.id: could not connect to host
+smkn1lengkong.sch.id: did not receive HSTS header
smksi2.com: could not connect to host
smksultanismail2.com: could not connect to host
sml.lc: could not connect to host
@@ -13752,19 +14882,18 @@ smsben.cn: did not receive HSTS header
smsben.com: did not receive HSTS header
smspodmena.ru: could not connect to host
smtp.bz: did not receive HSTS header
+smtpdev.com: could not connect to host
smuhelper.cn: could not connect to host
smusg.com: could not connect to host
snafarms.com: did not receive HSTS header
snailing.org: could not connect to host
snake.dog: could not connect to host
snakehosting.dk: did not receive HSTS header
-snapappts.com: could not connect to host
-snaptools.io: could not connect to host
snapworks.net: did not receive HSTS header
snarf.in: could not connect to host
-sneak.berlin: did not receive HSTS header
sneaker.date: could not connect to host
sneed.company: could not connect to host
+sneezry.com: did not receive HSTS header
snekchat.moe: could not connect to host
snelwerk.be: could not connect to host
sng.my: could not connect to host
@@ -13774,20 +14903,18 @@ sniderman.xyz: could not connect to host
snip.host: could not connect to host
snippet.host: could not connect to host
snod.land: did not receive HSTS header
+snoot.club: did not receive HSTS header
snoozedds.com: max-age too low: 600
snoqualmiefiber.org: could not connect to host
snovey.com: could not connect to host
+snow-online.de: could not connect to host
snowdy.eu: could not connect to host
snowdy.link: could not connect to host
-snowplane.net: did not receive HSTS header
-snowraven.de: did not receive HSTS header
snowyluma.com: could not connect to host
-snrat.com: did not receive HSTS header
so-healthy.co.uk: did not receive HSTS header
sobabox.ru: could not connect to host
sobinski.pl: did not receive HSTS header
soboleva-pr.com.ua: could not connect to host
-sobreporcentagem.com: did not receive HSTS header
socal-babes.com: could not connect to host
soccergif.com: could not connect to host
soci.ml: could not connect to host
@@ -13799,20 +14926,20 @@ socialfacecook.com: could not connect to host
socialgrowing.cl: did not receive HSTS header
socialhead.io: could not connect to host
socialhub.com: did not receive HSTS header
-socialprize.com: could not connect to host
+socialprize.com: did not receive HSTS header
socialspirit.com.br: did not receive HSTS header
socialworkout.com: could not connect to host
socialworkout.net: could not connect to host
socialworkout.org: could not connect to host
socialworkout.tv: could not connect to host
-socketize.com: could not connect to host
+socketize.com: did not receive HSTS header
sockeye.cc: could not connect to host
socomponents.co.uk: could not connect to host
sodacore.com: could not connect to host
soe-server.com: could not connect to host
softballsavings.com: did not receive HSTS header
softclean.pt: did not receive HSTS header
-softplaynation.co.uk: could not connect to host
+softplaynation.co.uk: did not receive HSTS header
sogeek.me: could not connect to host
sogravatas.net.br: could not connect to host
sojingle.net: could not connect to host
@@ -13825,7 +14952,6 @@ soldbygold.net: did not receive HSTS header
solentes.com.br: could not connect to host
solidfuelappliancespares.co.uk: did not receive HSTS header
solidimage.com.br: could not connect to host
-solidtuesday.com: could not connect to host
solidus.systems: did not receive HSTS header
solidwebnetworks.co.uk: did not receive HSTS header
solinter.com.br: did not receive HSTS header
@@ -13834,10 +14960,12 @@ soljem.com: did not receive HSTS header
soll-i.ch: did not receive HSTS header
solosmusic.xyz: could not connect to host
solsystems.ru: did not receive HSTS header
+solus-project.com: could not connect to host
solutive.fi: did not receive HSTS header
solymar.co: could not connect to host
some.rip: max-age too low: 6307200
somebodycares.org: did not receive HSTS header
+somepills.com: did not receive HSTS header
someshit.xyz: could not connect to host
something-else.cf: could not connect to host
somethingnew.xyz: could not connect to host
@@ -13848,18 +14976,17 @@ sonerezh.bzh: did not receive HSTS header
sonialive.com: did not receive HSTS header
sonic.network: did not receive HSTS header
sonicrainboom.rocks: could not connect to host
+sonix.dk: could not connect to host
sonja-daniels.com: could not connect to host
sonja-kowa.de: could not connect to host
sonyforum.no: did not receive HSTS header
soobi.org: did not receive HSTS header
soondy.com: did not receive HSTS header
-soontm.de: could not connect to host
soply.com: could not connect to host
soporte.cc: could not connect to host
sorenam.com: could not connect to host
sorensen-online.com: could not connect to host
-sorex.photo: max-age too low: 0
-sorincocorada.ro: could not connect to host
+sorex.photo: did not receive HSTS header
sorinmuntean.ro: did not receive HSTS header
sortaweird.net: could not connect to host
sortingwizard.com: could not connect to host
@@ -13867,21 +14994,20 @@ soruly.moe: did not receive HSTS header
sos.de: did not receive HSTS header
sosaka.ml: could not connect to host
sosecu.red: could not connect to host
-sosiolog.com: could not connect to host
+sosiolog.com: did not receive HSTS header
sosko.in.rs: could not connect to host
sotiran.com: did not receive HSTS header
sotor.de: did not receive HSTS header
soucorneteiro.com.br: could not connect to host
-sougi-review.top: did not receive HSTS header
soulcraft.bz: could not connect to host
soulema.com: could not connect to host
soulfulglamour.uk: could not connect to host
soulsteer.com: could not connect to host
soundbytemedia.com: did not receive HSTS header
+soundedj.com.br: could not connect to host
soundforsound.co.uk: did not receive HSTS header
soundgasm.net: could not connect to host
soundsecurity.io: could not connect to host
-souqtajmeel.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
sourcecode.love: could not connect to host
sourcelair.com: did not receive HSTS header
sourcitec.com: did not receive HSTS header
@@ -13889,6 +15015,7 @@ sous-surveillance.net: could not connect to host
southcoastkitesurf.co.uk: did not receive HSTS header
southcoastswords.com: did not receive HSTS header
southernjamusa.com: did not receive HSTS header
+southernlights.xyz: could not connect to host
southgale.condos: could not connect to host
southside-crew.club: could not connect to host
southworcestershiregpservices.co.uk: could not connect to host
@@ -13900,7 +15027,6 @@ souyar.us: could not connect to host
sovereignshare.com: could not connect to host
sown.dyndns.org: could not connect to host
sowncloud.de: could not connect to host
-soz6.com: did not receive HSTS header
sp.rw: could not connect to host
spacecafe.org: did not receive HSTS header
spacedust.xyz: could not connect to host
@@ -13918,6 +15044,8 @@ sparelib.com: max-age too low: 3650
spark.team: could not connect to host
sparkbase.cn: could not connect to host
sparklingsparklers.com: did not receive HSTS header
+sparkresearch.net: could not connect to host
+sparkreviewcenter.com: could not connect to host
sparkwood.org: could not connect to host
sparmedo.de: did not receive HSTS header
sparsa.army: could not connect to host
@@ -13925,13 +15053,12 @@ sparta-trade.com: could not connect to host
spartantheatre.org: could not connect to host
spauted.com: could not connect to host
spawn.cz: could not connect to host
-spcx.eu: did not receive HSTS header
+spcx.eu: could not connect to host
spdysync.com: could not connect to host
specialedesigns.com: could not connect to host
specialistnow.com.au: did not receive HSTS header
spectreattack.com: did not receive HSTS header
speculor.net: could not connect to host
-spedition-transport-umzug.de: could not connect to host
spedplus.com.br: did not receive HSTS header
speed-mailer.com: could not connect to host
speedcounter.net: could not connect to host
@@ -13942,6 +15069,7 @@ speedyprep.com: did not receive HSTS header
speidel.com.tr: did not receive HSTS header
spencerbaer.com: could not connect to host
spendwise.com.au: could not connect to host
+sperohub.com: could not connect to host
sperohub.io: could not connect to host
sperohub.lt: did not receive HSTS header
sphinx.network: could not connect to host
@@ -13949,19 +15077,23 @@ spicydog.tk: could not connect to host
spicywombat.com: could not connect to host
spiegels.nl: did not receive HSTS header
spielcasinos.com: did not receive HSTS header
-spikeykc.me: did not receive HSTS header
+spikeykc.me: could not connect to host
+spillersfamily.net: could not connect to host
+spillmaker.no: did not receive HSTS header
spilsbury.io: could not connect to host
spineandscoliosis.com: did not receive HSTS header
spinner.dnshome.de: could not connect to host
+spinor.im: could not connect to host
spirit-dev.net: max-age too low: 0
spirit-hunters-germany.de: did not receive HSTS header
spiritbionic.ro: could not connect to host
spiritfanfics.com: did not receive HSTS header
-spisoggrin.dk: did not receive HSTS header
+spisoggrin.dk: could not connect to host
spitefultowel.com: did not receive HSTS header
spitfireuav.com: could not connect to host
spititout.it: could not connect to host
split.is: could not connect to host
+splunk.zone: could not connect to host
spokonline.com: could not connect to host
spon.cz: did not receive HSTS header
sponsorowani.pl: did not receive HSTS header
@@ -13969,6 +15101,7 @@ sponsortobias.com: could not connect to host
spontex.org: did not receive HSTS header
spookyinternet.com: could not connect to host
sporara.com: did not receive HSTS header
+sport-socken.net: did not receive HSTS header
sport247.bet: max-age too low: 2592000
sportchirp-internal.azurewebsites.net: did not receive HSTS header
sportflash.info: did not receive HSTS header
@@ -13978,19 +15111,19 @@ sportingoods.com.br: could not connect to host
sportressofblogitude.com: did not receive HSTS header
sportscollection.com.br: could not connect to host
sportsmanadvisor.com: could not connect to host
-sportwette.eu: did not receive HSTS header
spot-events.com: could not connect to host
spotifyripper.tk: could not connect to host
spotlightsrule.com: could not connect to host
spotlightsrule.ddns.net: could not connect to host
+spr.id.au: could not connect to host
spreadsheets.google.com: did not receive HSTS header (error ignored - included regardless)
spresso.me: did not receive HSTS header
+spricknet.de: could not connect to host
sprigings.com: did not receive HSTS header
springsoffthegrid.com: could not connect to host
sprint.ml: did not receive HSTS header
sprk.fitness: did not receive HSTS header
sproing.ca: max-age too low: 0
-spron.in: could not connect to host
sproutconnections.com: could not connect to host
sprueche-zum-valentinstag.de: could not connect to host
sprueche-zur-geburt.info: could not connect to host
@@ -13999,10 +15132,12 @@ sprueche-zur-konfirmation.de: did not receive HSTS header
sprutech.de: could not connect to host
spykedigital.com: could not connect to host
sqetsa.com: did not receive HSTS header
+sqkaccountancy.co.uk: did not receive HSTS header
sqshq.de: did not receive HSTS header
squaddraft.com: did not receive HSTS header
+squadlinx.com: did not receive HSTS header
square.gs: could not connect to host
-squarelab.it: did not receive HSTS header
+squareonebgc.com.ph: could not connect to host
squatldf.org: could not connect to host
squids.space: could not connect to host
squirtlesbians.net: could not connect to host
@@ -14020,36 +15155,36 @@ srvonfire.com: could not connect to host
ss-free.net: could not connect to host
ss-x.ru: could not connect to host
ss.wtf: could not connect to host
+ssc8689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ssc8689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ssco.xyz: did not receive HSTS header
ssconn.com: could not connect to host
ssh.nu: could not connect to host
sshool.at: could not connect to host
ssl.panoramio.com: could not connect to host
ssl.rip: could not connect to host
-sslpoint.com: did not receive HSTS header
sslzilla.de: did not receive HSTS header
ssn1.ru: did not receive HSTS header
-sspanda.com: could not connect to host
+sspanda.com: did not receive HSTS header
ssrvpn.tech: could not connect to host
sss3s.com: could not connect to host
+sstewartgallus.com: could not connect to host
ssworld.ga: could not connect to host
staack.com: could not connect to host
stabletoken.com: could not connect to host
staceyhankeinc.com: did not receive HSTS header
stackfiles.io: could not connect to host
stackhub.cc: could not connect to host
+stacktile.io: could not connect to host
stadionmanager.com: could not connect to host
stadjerspasonline.nl: could not connect to host
-stadtbauwerk.at: did not receive HSTS header
-stadtbuecherei-bad-wurzach.de: max-age too low: 0
stadtgartenla.com: could not connect to host
staffjoy.com: did not receive HSTS header
staffjoystaging.com: could not connect to host
-stagingjobshq.com: did not receive HSTS header
-stahl.xyz: could not connect to host
-stalder.work: could not connect to host
+stagingjobshq.com: could not connect to host
+stahl.xyz: did not receive HSTS header
+stakestrategy.com: could not connect to host
stalkerhispano.com: max-age too low: 0
-stalkerteam.pl: did not receive HSTS header
stalkthe.net: could not connect to host
stall-zur-linde.de: did not receive HSTS header
stalschermer.nl: could not connect to host
@@ -14061,17 +15196,20 @@ standingmist.com: did not receive HSTS header
standoutbooks.com: did not receive HSTS header
standuppaddlesports.com.au: did not receive HSTS header
stannahtrapliften.nl: did not receive HSTS header
+star-citizen.wiki: did not receive HSTS header
star-killer.net: could not connect to host
star-stuff.de: did not receive HSTS header
-star.do: did not receive HSTS header
+star.do: could not connect to host
starandshield.com: did not receive HSTS header
starapple.nl: did not receive HSTS header
starcafe.me: could not connect to host
stardeeps.net: max-age too low: 0
+stardust-entertainments.co.uk: did not receive HSTS header
starease.net: could not connect to host
starfeeling.net: could not connect to host
stargatepartners.com: did not receive HSTS header
starklane.com: max-age too low: 300
+starlightentertainmentdevon.co.uk: did not receive HSTS header
starmusic.ga: could not connect to host
starplatinum.jp: could not connect to host
starquake.nl: could not connect to host
@@ -14082,7 +15220,9 @@ startuplevel.com: could not connect to host
startuponcloud.com: max-age too low: 2678400
startuppeople.co.uk: could not connect to host
startupum.ru: could not connect to host
+starwatches.eu: could not connect to host
stash.ai: did not receive HSTS header
+stassi.ch: did not receive HSTS header
state-of-body-and-mind.com: could not connect to host
state-sponsored-actors.net: could not connect to host
statementinsertsforless.com: did not receive HSTS header
@@ -14101,7 +15241,7 @@ status-sprueche.de: could not connect to host
status.coffee: could not connect to host
statusbot.io: could not connect to host
statuschecks.net: could not connect to host
-stavebnice.net: did not receive HSTS header
+stavebnice.net: could not connect to host
staxflax.tk: could not connect to host
stayokhotelscdc-mailing.com: could not connect to host
stcable.net: did not receive HSTS header
@@ -14109,14 +15249,13 @@ stcomex.com: did not receive HSTS header
stdev.org: could not connect to host
steamhours.com: could not connect to host
steampunkrobot.com: did not receive HSTS header
-stedbg.net: could not connect to host
steelbea.ms: could not connect to host
steelrhino.co: could not connect to host
steem.io: did not receive HSTS header
steenackers.be: did not receive HSTS header
stefanweiser.de: did not receive HSTS header
-stefany.eu: could not connect to host
steffi-in-australien.com: could not connect to host
+stellarvale.net: could not connect to host
stem.is: did not receive HSTS header
stepbystep3d.com: did not receive HSTS header
steph-autoecole.ch: did not receive HSTS header
@@ -14131,25 +15270,26 @@ sterjoski.com: did not receive HSTS header
stesti.cz: could not connect to host
stevechekblain.win: could not connect to host
stevengoodpaster.com: could not connect to host
+stevenkwan.me: could not connect to host
stevensheffey.me: could not connect to host
stevensononthe.net: did not receive HSTS header
-steventruesdell.com: could not connect to host
stewartremodelingadvantage.com: could not connect to host
stewonet.nl: did not receive HSTS header
stge.uk: could not connect to host
sticklerjs.org: could not connect to host
stickmy.cn: could not connect to host
stickswag.cf: could not connect to host
+stickswag.eu: could not connect to host
+stiffordacademy.org.uk: could not connect to host
stig.io: did not receive HSTS header
stiger.me: could not connect to host
stigroom.com: could not connect to host
-stigviewer.com: did not receive HSTS header
stijnbelmans.be: max-age too low: 604800
+stikkie.me: could not connect to host
stilettomoda.com.br: could not connect to host
stillblackhat.id: could not connect to host
stillyarts.com: did not receive HSTS header
stinkytrashhound.com: could not connect to host
-stirling.co: could not connect to host
stirlingpoon.net: could not connect to host
stirlingpoon.xyz: could not connect to host
stitthappens.com: did not receive HSTS header
@@ -14159,8 +15299,10 @@ stkbn.com: could not connect to host
stkeverneparishcouncil.org.uk: did not receive HSTS header
stl.news: max-age too low: 0
stlucasmuseum.org: did not receive HSTS header
+stm32f4.jp: could not connect to host
stmbgr.com: could not connect to host
stn.me.uk: did not receive HSTS header
+stnl.de: could not connect to host
stockseyeserum.com: could not connect to host
stocktrade.de: could not connect to host
stoffe-monster.de: did not receive HSTS header
@@ -14170,12 +15312,16 @@ stoick.me: could not connect to host
stoinov.com: could not connect to host
stole-my.bike: could not connect to host
stole-my.tv: could not connect to host
+stolkschepen.nl: did not receive HSTS header
stomadental.com: did not receive HSTS header
stonecutterscommunity.com: could not connect to host
stonemain.eu: could not connect to host
stonemanbrasil.com.br: could not connect to host
+stonewuu.com: could not connect to host
stopakwardhandshakes.org: could not connect to host
+stopbreakupnow.org: could not connect to host
stopwoodfin.org: could not connect to host
+storageshedsnc.com: did not receive HSTS header
storbritannien.guide: could not connect to host
store-host.com: did not receive HSTS header
store10.de: could not connect to host
@@ -14186,20 +15332,23 @@ storiesofhealth.org: did not receive HSTS header
stormhub.org: could not connect to host
stormwatcher.org: could not connect to host
stormyyd.com: max-age too low: 0
+storytea.top: did not receive HSTS header
stpatricksguild.com: did not receive HSTS header
stqry.com: did not receive HSTS header
str0.at: did not receive HSTS header
strangeplace.net: did not receive HSTS header
-strangescout.me: did not receive HSTS header
+strangescout.me: could not connect to host
strasweb.fr: did not receive HSTS header
strbt.de: could not connect to host
strchr.com: did not receive HSTS header
stream-ing.xyz: could not connect to host
stream.pub: could not connect to host
+streamblur.net: could not connect to host
streamdesk.ca: did not receive HSTS header
streamer.tips: did not receive HSTS header
streamingeverywhere.com: could not connect to host
streamingmagazin.de: could not connect to host
+streamlineautogroup.com: could not connect to host
streampanel.net: did not receive HSTS header
streams.dyndns.org: could not connect to host
streamthemeeting.com: did not receive HSTS header
@@ -14207,16 +15356,18 @@ streamzilla.com: did not receive HSTS header
strehl.tk: could not connect to host
strelitzia02.com: could not connect to host
stressfreehousehold.com: could not connect to host
+stretchpc.com: could not connect to host
strictlysudo.com: could not connect to host
strife.tk: could not connect to host
strila.me: could not connect to host
striptizer.tk: could not connect to host
-strobeto.de: did not receive HSTS header
+strming.com: could not connect to host
stroeercrm.de: could not connect to host
strongest-privacy.com: could not connect to host
struxureon.com: did not receive HSTS header
stuartbaxter.co: could not connect to host
stubbings.eu: could not connect to host
+stucorweb.com: could not connect to host
student-scientist.org: did not receive HSTS header
student.andover.edu: could not connect to host
studentrdh.com: did not receive HSTS header
@@ -14229,23 +15380,26 @@ studio-panic.com: did not receive HSTS header
studiocn.cn: could not connect to host
studiodoprazer.com.br: could not connect to host
studiozelden.com: did not receive HSTS header
+studisys.net: could not connect to host
+studlan.no: could not connect to host
studport.rv.ua: max-age too low: 604800
studyabroadstation.com: could not connect to host
studybay.com: could not connect to host
studydrive.net: did not receive HSTS header
studyhub.cf: did not receive HSTS header
studying-neet.com: could not connect to host
+studytale.com: could not connect to host
stuff-fibre.co.nz: did not receive HSTS header
stugb.de: did not receive HSTS header
stumeta2018.de: could not connect to host
stupidstatetricks.com: could not connect to host
+sturbi.de: did not receive HSTS header
sturbock.me: did not receive HSTS header
sturdio.com.br: could not connect to host
sturge.co.uk: did not receive HSTS header
stuudium.life: could not connect to host
stylenda.com: could not connect to host
stylle.me: could not connect to host
-styloeart.com: could not connect to host
stytt.com: did not receive HSTS header
suaraangin.com: could not connect to host
suareforma.com: could not connect to host
@@ -14254,6 +15408,8 @@ subbing.work: could not connect to host
subdimension.org: could not connect to host
subeesu.com: could not connect to host
subhacker.net: could not connect to host
+subjektzentrisch.de: could not connect to host
+sublevel.net: did not receive HSTS header
subrain.com: did not receive HSTS header
subrosa.io: could not connect to host
subsys.no: did not receive HSTS header
@@ -14267,7 +15423,6 @@ succubus.xxx: could not connect to host
suche.org: could not connect to host
suchprogrammer.net: did not receive HSTS header
sudo.im: could not connect to host
-sudo.li: did not receive HSTS header
sudosu.fr: could not connect to host
suempresa.cloud: could not connect to host
suffts.de: could not connect to host
@@ -14281,6 +15436,7 @@ summer.ga: could not connect to host
summitbankofkc.com: did not receive HSTS header
summitmasters.net: did not receive HSTS header
sumoscout.de: did not receive HSTS header
+sun-wellness-online.com.vn: did not receive HSTS header
sun.re: could not connect to host
suncountrymarine.com: did not receive HSTS header
sundaycooks.com: max-age too low: 2592000
@@ -14290,6 +15446,7 @@ sunfireshop.com.br: could not connect to host
sunlandsg.vn: did not receive HSTS header
sunnyfruit.ru: could not connect to host
sunriseafricarelief.com: did not receive HSTS header
+sunset.im: did not receive HSTS header
sunshinepress.org: could not connect to host
sunxchina.com: could not connect to host
sunyanzi.tk: could not connect to host
@@ -14305,20 +15462,21 @@ super-ripped-power.com: could not connect to host
super-slim-coffee.com: could not connect to host
superbabysitting.ch: could not connect to host
superbike.tw: could not connect to host
+superbowlkneel.com: could not connect to host
superbshare.com: could not connect to host
supercastlessouthsydney.com.au: could not connect to host
supercreepsvideo.com: did not receive HSTS header
superiorfloridavacation.com: could not connect to host
superklima.ro: did not receive HSTS header
-superlandnetwork.de: did not receive HSTS header
+superlandnetwork.de: could not connect to host
superlentes.com.br: could not connect to host
+supermarx.nl: could not connect to host
supernovabrasil.com.br: did not receive HSTS header
supernt.lt: could not connect to host
superpase.com: could not connect to host
supersahnetorten.de: could not connect to host
supersalescontest.nl: did not receive HSTS header
superschnappchen.de: could not connect to host
-supersec.es: could not connect to host
supersecurefancydomain.com: could not connect to host
supertramp-dafonseca.com: did not receive HSTS header
superuser.fi: could not connect to host
@@ -14335,12 +15493,16 @@ surfeasy.com: did not receive HSTS header
surfone-leucate.com: did not receive HSTS header
surgiclinic.gr: did not receive HSTS header
surkatty.org: did not receive HSTS header
+surveyinstrumentsales.com: max-age too low: 84600
+survivalistplanet.com: could not connect to host
survivebox.fr: did not receive HSTS header
susastudentenjobs.de: could not connect to host
susconam.org: could not connect to host
suseasky.com: did not receive HSTS header
+sushi.roma.it: did not receive HSTS header
sushifrick.de: could not connect to host
sushiwereld.be: did not receive HSTS header
+susoccm.org: did not receive HSTS header
suspiciousdarknet.xyz: could not connect to host
sussexwebdesigns.com: could not connect to host
sussexwebsites.info: could not connect to host
@@ -14348,22 +15510,24 @@ sustainability.gov: did not receive HSTS header
suts.co.uk: could not connect to host
suttonbouncycastles.co.uk: could not connect to host
suvidhaapay.com: could not connect to host
-suzukikazuki.com: max-age too low: 0
+suzukikazuki.com: did not receive HSTS header
suzukikenichi.com: did not receive HSTS header
svadobkajuvi.sk: did not receive HSTS header
svarovani.tk: could not connect to host
svatba-frantovi.cz: could not connect to host
sve-hosting.nl: could not connect to host
-svenluijten.com: did not receive HSTS header
+svenbacia.me: could not connect to host
svenskacasino.com: did not receive HSTS header
svenskaservern.se: could not connect to host
svetdrzaku.cz: did not receive HSTS header
svetjakonadlani.cz: did not receive HSTS header
+svetzitrka.cz: did not receive HSTS header
sviz.pro: could not connect to host
svj-stochovska.cz: could not connect to host
svjvn.cz: could not connect to host
swacp.com: could not connect to host
swaggerdile.com: could not connect to host
+swagsocial.net: could not connect to host
swaleacademiestrust.org.uk: max-age too low: 2592000
swallsoft.co.uk: could not connect to host
swallsoft.com: could not connect to host
@@ -14382,7 +15546,9 @@ swiftcrypto.com: could not connect to host
swiftpk.net: could not connect to host
swiggy.com: did not receive HSTS header
swimming.ca: did not receive HSTS header
+swingular.com: could not connect to host
swissentreprises.ch: could not connect to host
+swissfreshaircan.com: could not connect to host
swisstranslate.ch: did not receive HSTS header
swisstranslate.fr: did not receive HSTS header
swisswebhelp.ch: could not connect to host
@@ -14393,22 +15559,21 @@ swordfighting.net: could not connect to host
swu.party: could not connect to host
sx3.no: could not connect to host
sxbk.pw: could not connect to host
-sy-anduril.de: did not receive HSTS header
syam.cc: could not connect to host
+syamuwatching.xyz: could not connect to host
sychov.pro: could not connect to host
sydgrabber.tk: could not connect to host
sykl.us: could not connect to host
sylvaincombe.net: could not connect to host
sylvangarden.org: could not connect to host
-sylvanorder.com: could not connect to host
+sylvanorder.com: did not receive HSTS header
symetria.io: max-age too low: 2592000
-synackr.com: did not receive HSTS header
+synackr.com: could not connect to host
synapticconsulting.co.uk: could not connect to host
syncaddict.net: could not connect to host
syncappate.com: could not connect to host
syncclinicalstudy.com: could not connect to host
syncer.jp: did not receive HSTS header
-synchrocube.com: could not connect to host
synchtu.be: could not connect to host
syncmylife.net: could not connect to host
syncserve.net: did not receive HSTS header
@@ -14431,7 +15596,9 @@ syss.de: did not receive HSTS header
systea.net: could not connect to host
system-online.cz: did not receive HSTS header
systemd.me: could not connect to host
+sytk.me: could not connect to host
syy.hk: did not receive HSTS header
+szagun.net: did not receive HSTS header
szaszm.tk: could not connect to host
szerbnyelvkonyv.hu: could not connect to host
szlovaknyelv.hu: could not connect to host
@@ -14450,7 +15617,7 @@ taabe.xyz: could not connect to host
taartenfeesies.nl: did not receive HSTS header
tab.watch: did not receive HSTS header
taberu-fujitsubo.com: did not receive HSTS header
-tabino.top: did not receive HSTS header
+tabhui.com: did not receive HSTS header
tabitatsu.jp: did not receive HSTS header
tabla-periodica.com: could not connect to host
tachyonapp.com: could not connect to host
@@ -14462,21 +15629,21 @@ tadigitalstore.com: could not connect to host
tafoma.com: did not receive HSTS header
tageau.com: could not connect to host
tagesmutter-in-bilm.de: did not receive HSTS header
+tagesmutter-zwitscherlinge.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tahakomat.cz: could not connect to host
tahf.net: could not connect to host
+tai-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+tai-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
taichi-jade.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
taidu.news: could not connect to host
tailandfur.com: did not receive HSTS header
tailify.com: did not receive HSTS header
-tailpuff.net: did not receive HSTS header
tails.com.ar: could not connect to host
taim.io: could not connect to host
takebackyourstate.com: could not connect to host
takebackyourstate.net: could not connect to host
takebackyourstate.org: could not connect to host
takebonus.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-takedownthissite.com: could not connect to host
-takemoto-ped.com: could not connect to host
takinet.kr: could not connect to host
takusan.ru: could not connect to host
talenthero.io: did not receive HSTS header
@@ -14492,10 +15659,10 @@ talktwincities.com: could not connect to host
tallr.se: could not connect to host
tallshoe.com: could not connect to host
talsi.eu: could not connect to host
-tam7t.com: did not receive HSTS header
-tamaraboutique.com: could not connect to host
+tam7t.com: could not connect to host
tamersunion.org: did not receive HSTS header
tamex.xyz: could not connect to host
+tamriel-rebuilt.org: could not connect to host
tandarts-haarlem.nl: did not receive HSTS header
tandblekningidag.com: could not connect to host
tangerine.ga: could not connect to host
@@ -14512,11 +15679,12 @@ tantotiempo.de: did not receive HSTS header
tanze-jetzt.de: could not connect to host
taotuba.net: did not receive HSTS header
taozj.org: did not receive HSTS header
+tapakgram.com: did not receive HSTS header
tapestries.tk: could not connect to host
tapfinder.ca: could not connect to host
tapka.cz: did not receive HSTS header
tappublisher.com: did not receive HSTS header
-taranis.re: could not connect to host
+tarantul.org.ua: could not connect to host
taravancil.com: did not receive HSTS header
tarek.link: could not connect to host
targaryen.house: could not connect to host
@@ -14526,7 +15694,7 @@ tartaros.fi: could not connect to host
taskstats.com: could not connect to host
tasmansecurity.com: could not connect to host
tassup.com: could not connect to host
-tasta.ro: did not receive HSTS header
+tasta.ro: could not connect to host
tasticfilm.com: did not receive HSTS header
tastyyy.co: could not connect to host
tasyacherry-anal.com: could not connect to host
@@ -14555,7 +15723,7 @@ tcao.info: could not connect to host
tcby45.xyz: could not connect to host
tcl.ath.cx: did not receive HSTS header
tcp.expert: did not receive HSTS header
-tcspartner.net: did not receive HSTS header
+tcptun.com: could not connect to host
tcwebvn.com: could not connect to host
tdelmas.eu: could not connect to host
tdelmas.ovh: could not connect to host
@@ -14579,14 +15747,14 @@ teambeoplay.co.uk: did not receive HSTS header
teamblueridge.org: could not connect to host
teamdaylo.xyz: could not connect to host
teamhood.io: did not receive HSTS header
+teamnetsol.com: did not receive HSTS header
teampoint.cz: could not connect to host
teams.microsoft.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
teamsocial.co: did not receive HSTS header
-teamup.rocks: did not receive HSTS header
teamx-gaming.de: could not connect to host
teamzeus.cz: could not connect to host
teaparty.id: could not connect to host
-tearoy.faith: did not receive HSTS header
+tearoy.faith: could not connect to host
teasenetwork.com: could not connect to host
tebieer.com: could not connect to host
tech-blog.fr: did not receive HSTS header
@@ -14611,25 +15779,30 @@ techmasters.andover.edu: could not connect to host
techmatehq.com: could not connect to host
technicalforensic.com: could not connect to host
technicalpenguins.com: did not receive HSTS header
+technicalsystemsprocessing.com: did not receive HSTS header
+techniclab.net: could not connect to host
techniclab.org: could not connect to host
techniclab.ru: could not connect to host
technikrom.org: did not receive HSTS header
technogroup.cz: did not receive HSTS header
technosavvyport.com: did not receive HSTS header
technosuport.com: did not receive HSTS header
+technoswag.ca: could not connect to host
technotonic.com.au: did not receive HSTS header
techpointed.com: could not connect to host
techpro.net.br: did not receive HSTS header
techproud.com: did not receive HSTS header
techreview.link: could not connect to host
-techtoy.store: could not connect to host
+techtoy.store: did not receive HSTS header
techtrackerpro.com: could not connect to host
techtraveller.com.au: did not receive HSTS header
+techtuts.info: could not connect to host
techunit.org: could not connect to host
tecit.ch: could not connect to host
tecnidev.com: could not connect to host
tecnimotos.com: did not receive HSTS header
tecnogaming.com: did not receive HSTS header
+tecnologino.com: could not connect to host
tecture.de: did not receive HSTS header
tedovo.com: could not connect to host
tedxkmitl.com: could not connect to host
@@ -14638,6 +15811,7 @@ teedb.de: could not connect to host
teehaus-shila.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
teenerotic.net: could not connect to host
teeplelaw.com: did not receive HSTS header
+teesypeesy.com: did not receive HSTS header
tefl.io: did not receive HSTS header
tegelsensanitaironline.nl: did not receive HSTS header
tehotuotanto.net: did not receive HSTS header
@@ -14648,9 +15822,9 @@ teknologi.or.id: max-age too low: 36000
teknotes.co.uk: could not connect to host
tekshrek.com: did not receive HSTS header
teksuperior.com: could not connect to host
-tektoria.de: could not connect to host
-tekuteku.jp: could not connect to host
+tektoria.de: did not receive HSTS header
tel-dithmarschen.de: did not receive HSTS header
+tele-assistance.ch: could not connect to host
teleallarme.ch: could not connect to host
telecharger-itunes.com: could not connect to host
telecharger-open-office.com: could not connect to host
@@ -14658,6 +15832,7 @@ telecharger-winrar.com: could not connect to host
telefisk.org: did not receive HSTS header
telefonnummer.online: could not connect to host
telefonogratuito.com: did not receive HSTS header
+telefonsinyalguclendirici.com: did not receive HSTS header
telefoonnummerinfo.nl: could not connect to host
telekollektiv.org: could not connect to host
telescam.com: could not connect to host
@@ -14665,7 +15840,7 @@ teleshop.be: could not connect to host
teletechnology.in: did not receive HSTS header
teletra.ru: could not connect to host
telfordwhitehouse.co.uk: did not receive HSTS header
-tellingua.com: did not receive HSTS header
+tellingua.com: could not connect to host
teltonica.com: did not receive HSTS header
telugu4u.net: could not connect to host
temasa.net: did not receive HSTS header
@@ -14676,25 +15851,24 @@ tempo.co: did not receive HSTS header
tempodecolheita.com.br: could not connect to host
tempus-aquilae.de: could not connect to host
ten-cafe.com: could not connect to host
-tenberg.com: could not connect to host
tendertool.nl: could not connect to host
tendoryu-aikido.org: did not receive HSTS header
-tenerife-villas.com: did not receive HSTS header
+tenerife-villas.com: max-age too low: 2592000
tengu.cloud: could not connect to host
tenispopular.com: could not connect to host
+tenma.pro: could not connect to host
tenni.xyz: could not connect to host
tennisapp.org: could not connect to host
tennispensacola.com: could not connect to host
tensei-slime.com: did not receive HSTS header
tensionup.com: could not connect to host
+tent.io: could not connect to host
tentins.com: could not connect to host
teodio.cl: did not receive HSTS header
-teoleonie.com: did not receive HSTS header
teos.online: could not connect to host
teoskanta.fi: could not connect to host
teranga.ch: did not receive HSTS header
tercerapuertoaysen.cl: could not connect to host
-termino.eu: did not receive HSTS header
terra-x.net: could not connect to host
terra.by: did not receive HSTS header
terrax.berlin: could not connect to host
@@ -14702,16 +15876,22 @@ terrax.info: did not receive HSTS header
terrax.net: could not connect to host
terrazoo.de: did not receive HSTS header
teru.com.br: could not connect to host
+test-aankoop.be: did not receive HSTS header
+test-achats.be: did not receive HSTS header
test-dns.eu: could not connect to host
test02.dk: did not receive HSTS header
+testadren.com: could not connect to host
testadron.com: could not connect to host
testandroid.xyz: could not connect to host
testbawks.com: could not connect to host
testbirds.cz: could not connect to host
testbirds.sk: could not connect to host
testdomain.ovh: could not connect to host
+testi.info: max-age too low: 10518975
testnode.xyz: could not connect to host
+testosterone-complex.com: could not connect to host
testovaci.ml: could not connect to host
+testpornsite.com: could not connect to host
tetrafinancial-commercial-business-equipment-financing.com: did not receive HSTS header
tetrafinancial-energy-mining-equipment-financing.com: did not receive HSTS header
tetrafinancial-healthcare-medical-equipment-financing.com: did not receive HSTS header
@@ -14719,13 +15899,14 @@ tetrafinancial-manufacturing-industrial-equipment-financing.com: did not receive
tetrafinancial-news.com: did not receive HSTS header
tetrafinancial-technology-equipment-software-financing.com: did not receive HSTS header
tetramax.eu: did not receive HSTS header
-tetrarch.co: could not connect to host
tetsai.com: could not connect to host
teufelsystem.de: could not connect to host
teuniz.nl: did not receive HSTS header
texte-zur-taufe.de: did not receive HSTS header
textoplano.xyz: could not connect to host
textracer.dk: could not connect to host
+tezcam.tk: could not connect to host
+tf-network.de: did not receive HSTS header
tf2stadium.com: did not receive HSTS header
tfcoms-sp-tracker-client.azurewebsites.net: could not connect to host
tffans.com: could not connect to host
@@ -14737,33 +15918,31 @@ th-bl.de: did not receive HSTS header
th3nd.com: could not connect to host
thackert.myfirewall.org: could not connect to host
thagki9.com: did not receive HSTS header
-thai.land: did not receive HSTS header
+thai.land: could not connect to host
thaianthro.com: max-age too low: 0
thaigirls.xyz: could not connect to host
thaihostcool.com: did not receive HSTS header
-thailandpropertylisting.com: did not receive HSTS header
thailandpropertylistings.com: did not receive HSTS header
thalmann.fr: did not receive HSTS header
thalskarth.com: did not receive HSTS header
thatgudstuff.com: could not connect to host
thatpodcast.io: did not receive HSTS header
-thatvizsla.life: did not receive HSTS header
+thatvizsla.life: could not connect to host
the-construct.com: could not connect to host
the-delta.net.eu.org: could not connect to host
the-digitale.com: did not receive HSTS header
the-earth-yui.net: could not connect to host
the-finance-blog.com: could not connect to host
the-gist.io: could not connect to host
-the-paddies.de: did not receive HSTS header
+the-paddies.de: could not connect to host
the-sky-of-valkyries.com: could not connect to host
the.ie: max-age too low: 0
the420vape.org: could not connect to host
theamateurs.net: did not receive HSTS header
-theamp.com: did not receive HSTS header
+theamp.com: could not connect to host
theater.cf: could not connect to host
theavenuegallery.com: did not receive HSTS header
thebakingclass.com: max-age too low: 60
-thebarneystyle.com: did not receive HSTS header
thebasementguys.com: could not connect to host
thebeautifulmusic.net: did not receive HSTS header
thebeginningisnye.com: could not connect to host
@@ -14776,7 +15955,7 @@ thebuffalotavern.com: could not connect to host
thecandidforum.com: could not connect to host
thecapitalbank.com: did not receive HSTS header
thecharlestonwaldorf.com: did not receive HSTS header
-theciderlink.com.au: did not receive HSTS header
+theciderlink.com.au: could not connect to host
thecitizens.com: did not receive HSTS header
theclementinebutchers.com: could not connect to host
theclimbingunit.com: did not receive HSTS header
@@ -14786,11 +15965,15 @@ theclubjersey.com: did not receive HSTS header
thecodeninja.net: did not receive HSTS header
thecoffeehouse.xyz: could not connect to host
thecoffeepod.co.uk: did not receive HSTS header
+thecozycastle.com: did not receive HSTS header
thecskr.in: did not receive HSTS header
thecsw.com: did not receive HSTS header
+thecuriousdev.com: did not receive HSTS header
thedailyupvote.com: could not connect to host
thedarkartsandcrafts.com: could not connect to host
+thedebug.life: did not receive HSTS header
thedevilwearswibra.nl: did not receive HSTS header
+thedom.site: could not connect to host
thedominatorsclan.com: did not receive HSTS header
thedrinks.co: did not receive HSTS header
thedrop.pw: did not receive HSTS header
@@ -14798,13 +15981,14 @@ thedrunkencabbage.com: could not connect to host
thedystance.com: could not connect to host
theel0ja.info: did not receive HSTS header
theelitebuzz.com: could not connect to host
-theendofzion.com: could not connect to host
+theendofzion.com: did not receive HSTS header
theepankar.com: could not connect to host
theescapistswiki.com: could not connect to host
theevergreen.me: could not connect to host
theexpatriate.de: could not connect to host
theeyeopener.com: did not receive HSTS header
thefarbeyond.com: could not connect to host
+thefasterweb.com: did not receive HSTS header
thefootballanalyst.com: did not receive HSTS header
thefox.co: did not receive HSTS header
thefox.com.fr: could not connect to host
@@ -14819,18 +16003,16 @@ thegoldregister.co.uk: could not connect to host
thegraciousgourmet.com: did not receive HSTS header
thegreens.us: could not connect to host
thegreenvpn.com: could not connect to host
+thegym.org: did not receive HSTS header
thehiddenbay.cc: could not connect to host
thehiddenbay.eu: max-age too low: 0
-thehiddenbay.me: could not connect to host
+thehiddenbay.me: max-age too low: 0
thehiddenbay.net: could not connect to host
thehighersideclothing.com: did not receive HSTS header
thehistory.me: could not connect to host
-thehonorguard.org: did not receive HSTS header
thehoopsarchive.com: could not connect to host
theimagesalon.com: max-age too low: 43200
theinvisibletrailer.com: could not connect to host
-theitsage.com: did not receive HSTS header
-thej0lt.com: could not connect to host
thejobauction.com: did not receive HSTS header
thejserver.de: could not connect to host
thekrewserver.com: did not receive HSTS header
@@ -14841,13 +16023,14 @@ thelostyankee.com: could not connect to host
themadmechanic.net: could not connect to host
themanufacturingmarketingagency.com: could not connect to host
themarble.co: could not connect to host
+themaster.site: did not receive HSTS header
themathbehindthe.science: could not connect to host
themathematician.uk: could not connect to host
themeaudit.com: could not connect to host
+themenzentrisch.de: could not connect to host
themerchandiser.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
themesurgeons.net: could not connect to host
themicrocapital.com: could not connect to host
-themilanlife.com: could not connect to host
themoderate.xyz: could not connect to host
thenextstep.events: could not connect to host
thenichecast.com: could not connect to host
@@ -14859,7 +16042,6 @@ theokonst.tk: did not receive HSTS header
theosblog.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
theosophie-afrique.org: could not connect to host
theoverfly.co: could not connect to host
-thepaffy.de: could not connect to host
thepartywarehouse.co.uk: did not receive HSTS header
thepcweb.tk: could not connect to host
thepiratebay.al: could not connect to host
@@ -14869,7 +16051,8 @@ theposhfudgecompany.co.uk: could not connect to host
theprincegame.com: could not connect to host
theprivacysolution.com: could not connect to host
thequillmagazine.org: could not connect to host
-therise.ca: max-age too low: 300
+therewill.be: could not connect to host
+therise.ca: could not connect to host
thermique.ch: could not connect to host
theroamingnotary.com: did not receive HSTS header
therockawaysny.com: did not receive HSTS header
@@ -14880,11 +16063,15 @@ thesehighsandlows.com: could not connect to host
theserver201.tk: could not connect to host
theshadestore.com: max-age too low: 10368000
thesled.net: could not connect to host
+thesnellvilledentist.com: did not receive HSTS header
thesplit.is: could not connect to host
thestack.xyz: could not connect to host
thestagchorleywood.co.uk: did not receive HSTS header
-thestonegroup.de: could not connect to host
+thesteins.org: could not connect to host
+thestonegroup.de: did not receive HSTS header
thestoritplace.com: max-age too low: 0
+thestral.pro: could not connect to host
+thestralbot.com: could not connect to host
thetapirsmouth.com: could not connect to host
thethirdroad.com: did not receive HSTS header
thetradinghall.com: could not connect to host
@@ -14895,17 +16082,22 @@ thevintagenews.com: did not receive HSTS header
thevoid.one: could not connect to host
thewallset.com: could not connect to host
thewaxhouse.shop: did not receive HSTS header
+thewayofthedojo.com: did not receive HSTS header
thewebfellas.com: did not receive HSTS header
thewego.com: could not connect to host
theweilai.com: could not connect to host
thewhiterabbit.space: could not connect to host
+thewindow.com: could not connect to host
theworkingeye.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-thewp.pro: could not connect to host
+theyachtteam.com: could not connect to host
+thezero.org: could not connect to host
thezonders.com: did not receive HSTS header
thgros.fr: could not connect to host
thibautcharles.net: did not receive HSTS header
thienteakee.com: did not receive HSTS header
thierfreund.de: did not receive HSTS header
+thijsbekke.nl: could not connect to host
+thingies.site: could not connect to host
thinkcash.nl: could not connect to host
thinkcoding.de: could not connect to host
thinkcoding.org: could not connect to host
@@ -14914,6 +16106,7 @@ thinklikeanentrepreneur.com: did not receive HSTS header
thinkswap.com: did not receive HSTS header
thinlyveiledcontempt.com: could not connect to host
thirdpartytrade.com: did not receive HSTS header
+thirdworld.moe: could not connect to host
thirty5.net: did not receive HSTS header
thirtyspot.com: could not connect to host
thisisacompletetest.ga: could not connect to host
@@ -14933,27 +16126,24 @@ thomasnet.fr: could not connect to host
thomasscholz.com: max-age too low: 2592000
thomasschweizer.net: could not connect to host
thomasvt.xyz: max-age too low: 2592000
-thompsonfamily.cloud: could not connect to host
+thomspooren.nl: could not connect to host
thorbis.com: could not connect to host
thorbiswebsitedesign.com: could not connect to host
thorgames.nl: did not receive HSTS header
thorncreek.net: did not receive HSTS header
thot.space: could not connect to host
-thoughtsynth.com: could not connect to host
-thoughtsynth.net: could not connect to host
-thoughtsynth.org: could not connect to host
+thoughtlessleaders.online: could not connect to host
threatcentral.io: could not connect to host
-threebrothersbrewing.com: max-age too low: 2592000
+threebrothersbrewing.com: could not connect to host
threebulls.be: did not receive HSTS header
-threit.de: did not receive HSTS header
thriveapproach.co.uk: did not receive HSTS header
thrivewellnesshub.co.za: did not receive HSTS header
throughthelookingglasslens.co.uk: could not connect to host
thrx.net: did not receive HSTS header
thumbtack.com: did not receive HSTS header
thundercampaign.com: could not connect to host
+thuviensoft.com: could not connect to host
thuviensoft.net: could not connect to host
-thuybich.com: did not receive HSTS header
thyrex.fr: could not connect to host
ti-js.com: could not connect to host
ti.blog.br: did not receive HSTS header
@@ -14971,24 +16161,28 @@ tickreport.com: did not receive HSTS header
ticktock.today: could not connect to host
tictactux.de: could not connect to host
tidmore.us: could not connect to host
-tie-online.org: did not receive HSTS header
+tie-online.org: could not connect to host
tiendafetichista.com: could not connect to host
tiendschuurstraat.nl: could not connect to host
tiensnet.com: could not connect to host
tierarztpraxis-illerwinkel.de: did not receive HSTS header
+tiernanx.com: could not connect to host
+tierraprohibida.net: did not receive HSTS header
tierrarp.com: could not connect to host
tiffanytravels.com: did not receive HSTS header
+tiggi.pw: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tightlineproductions.com: did not receive HSTS header
tigit.co.nz: could not connect to host
-tiki-god.co.uk: could not connect to host
tikutiku.pl: could not connect to host
tildebot.com: could not connect to host
+tiledailyshop.com: did not receive HSTS header
tilient.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tilkah.com.au: could not connect to host
tillcraft.com: could not connect to host
timbeilby.com: could not connect to host
timbuktutimber.com: did not receive HSTS header
timcamara.com: could not connect to host
+timchanhxe.com: did not receive HSTS header
timdebruijn.nl: did not receive HSTS header
time-river.xyz: could not connect to host
timeatlas.com: did not receive HSTS header
@@ -15002,24 +16196,26 @@ timeserver2.de: could not connect to host
timeserver3.de: could not connect to host
timestamp.io: did not receive HSTS header
timestamp.uk: could not connect to host
+timetab.org: could not connect to host
timhieubenh.net: could not connect to host
timhjalpen.se: could not connect to host
timklefisch.de: did not receive HSTS header
+timmy.im: could not connect to host
timmy.ws: could not connect to host
-timotrans.de: could not connect to host
-timotrans.eu: could not connect to host
+timotrans.de: did not receive HSTS header
+timotrans.eu: did not receive HSTS header
timowi.de: could not connect to host
timowi.net: could not connect to host
-timroes.de: did not receive HSTS header
+timroes.de: could not connect to host
timschubert.net: max-age too low: 172800
-timtj.ca: could not connect to host
timvandekamp.nl: did not receive HSTS header
-timweb.ca: could not connect to host
timwhite.io: did not receive HSTS header
timwittenberg.com: could not connect to host
-tinchbear.xyz: did not receive HSTS header
+tinchbear.xyz: could not connect to host
tindewen.net: could not connect to host
tink.network: could not connect to host
+tinkerers-trunk.co.za: did not receive HSTS header
+tioat.net: could not connect to host
tipiakers.club: could not connect to host
tipps-fuer-den-haushalt.de: could not connect to host
tippspiel.cc: could not connect to host
@@ -15042,11 +16238,12 @@ tju.me: could not connect to host
tkappertjedemetamorfose.nl: could not connect to host
tkarstens.de: did not receive HSTS header
tkhw.tk: could not connect to host
+tkirch.de: could not connect to host
+tkjg.fi: could not connect to host
+tkn.tokyo: could not connect to host
tkonstantopoulos.tk: could not connect to host
tkts.cl: could not connect to host
-tlach.cz: did not receive HSTS header
tlcdn.net: could not connect to host
-tlcnet.info: could not connect to host
tlo.hosting: could not connect to host
tlo.link: could not connect to host
tlo.network: could not connect to host
@@ -15056,7 +16253,10 @@ tlshost.net: could not connect to host
tm-solutions.eu: could not connect to host
tm.id.au: did not receive HSTS header
tmaward.net: could not connect to host
+tmconnects.com: could not connect to host
+tmdc.ddns.net: could not connect to host
tmhlive.com: could not connect to host
+tmhr.moe: could not connect to host
tmin.cf: could not connect to host
tmitchell.io: could not connect to host
tmprod.com: did not receive HSTS header
@@ -15066,8 +16266,10 @@ tncnanet.com.br: could not connect to host
tno.io: could not connect to host
to2mbn.org: could not connect to host
tobaby.com.br: could not connect to host
+tobacco.gov: could not connect to host
tobaccore.eu: could not connect to host
tobaccore.sk: could not connect to host
+tobedo.net: could not connect to host
tobias-bielefeld.de: did not receive HSTS header
tobiasbergius.se: could not connect to host
tobiasmathes.com: could not connect to host
@@ -15076,11 +16278,11 @@ tobiasofficial.at: could not connect to host
tobiassachs.cf: could not connect to host
tobiassachs.tk: could not connect to host
tobis-webservice.de: did not receive HSTS header
-tobisworld.ch: could not connect to host
tobyx.is: could not connect to host
todesschaf.org: could not connect to host
todo.is: could not connect to host
todobazar.es: could not connect to host
+todocracy.com: could not connect to host
todokete.ga: could not connect to host
todoscomciro.com: did not receive HSTS header
todosrv.com: could not connect to host
@@ -15102,18 +16304,21 @@ tokoindo.top: could not connect to host
tokoone.com: did not receive HSTS header
tokotamz.net: could not connect to host
tokotimbangandigitalmurah.web.id: did not receive HSTS header
-tokototech.com: could not connect to host
tokoyo.biz: could not connect to host
tollmanz.com: did not receive HSTS header
tollsjekk.no: could not connect to host
tolud.com: could not connect to host
+tom-maxwell.com: did not receive HSTS header
tom.run: did not receive HSTS header
tomandshirley.com: could not connect to host
-tomaz.eu: could not connect to host
+tomberek.info: did not receive HSTS header
tomcort.com: could not connect to host
+tomdudfield.com: did not receive HSTS header
tomeara.net: could not connect to host
+tomershemesh.me: could not connect to host
tomevans.io: did not receive HSTS header
tomharling.co.uk: could not connect to host
+tomiler.com: could not connect to host
tomlankhorst.nl: did not receive HSTS header
tomli.me: could not connect to host
tommounsey.com: did not receive HSTS header
@@ -15121,17 +16326,18 @@ tommsy.com: did not receive HSTS header
tommy-bordas.fr: did not receive HSTS header
tommyads.com: could not connect to host
tommyweber.de: did not receive HSTS header
+tomoyaf.com: did not receive HSTS header
tomphill.co.uk: could not connect to host
tomy.icu: could not connect to host
tonburi.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tongmu.me: could not connect to host
+tonguetechnology.com: could not connect to host
toniharant.de: could not connect to host
-tono.us: could not connect to host
toomanypillows.com: could not connect to host
-top-solar-info.de: could not connect to host
+top-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
top-stage.net: could not connect to host
top10mountainbikes.info: could not connect to host
-top9.fr: did not receive HSTS header
+top9.fr: could not connect to host
topanlage.de: could not connect to host
topbargains.com.au: did not receive HSTS header
topbestsellerproduct.com: did not receive HSTS header
@@ -15139,16 +16345,19 @@ topbilan.com: did not receive HSTS header
topdeskdev.net: could not connect to host
topdetoxcleanse.com: could not connect to host
topdevbox.net: could not connect to host
+topesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+topkek.ml: could not connect to host
topmarine.se: did not receive HSTS header
topnewstoday.org: could not connect to host
topnotchendings.com: could not connect to host
topnovini.com: did not receive HSTS header
toppik.com.br: could not connect to host
+toppointrea.com: could not connect to host
topservercccam.com: did not receive HSTS header
topshelfguild.com: could not connect to host
-topshoptools.com: could not connect to host
toptenthebest.com: did not receive HSTS header
toptranslation.com: did not receive HSTS header
+topwin.la: could not connect to host
topyx.com: did not receive HSTS header
tor2web.org: could not connect to host
torbay.ga: could not connect to host
@@ -15158,7 +16367,7 @@ toretfaction.net: could not connect to host
torlock.download: could not connect to host
torproject.org.uk: could not connect to host
torproject.ovh: could not connect to host
-torrentdownloads.bid: could not connect to host
+torrentdownloads.bid: max-age too low: 0
torrentgamesps2.info: could not connect to host
torrenttop100.net: could not connect to host
torrentz.website: could not connect to host
@@ -15168,7 +16377,6 @@ torv.rocks: did not receive HSTS header
tosecure.link: could not connect to host
toshnix.com: could not connect to host
toshub.com: could not connect to host
-totaku.ru: could not connect to host
totalle.com.br: could not connect to host
totallynotaserver.com: could not connect to host
totalsystemcare.com: could not connect to host
@@ -15185,30 +16393,29 @@ touchinformatica.com: did not receive HSTS header
touchpointidg.us: could not connect to host
touchscreen-handy.de: did not receive HSTS header
touchstonefms.co.uk: did not receive HSTS header
+touchtable.nl: did not receive HSTS header
+tougetu.com: could not connect to host
+touhou.cc: did not receive HSTS header
touray-enterprise.ch: could not connect to host
-tournaire.fr: did not receive HSTS header
tourpeer.com: did not receive HSTS header
toursandtransfers.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tousproducteurs.fr: did not receive HSTS header
towaway.ru: could not connect to host
-town-farm.surrey.sch.uk: max-age too low: 0
-townofbridgewater.ca: could not connect to host
tox.im: did not receive HSTS header
toxicboot.com: could not connect to host
toxicip.com: could not connect to host
toxme.se: did not receive HSTS header
toymania.de: could not connect to host
toyotamotala.se: could not connect to host
-tpansino.com: could not connect to host
tpbcdn.com: could not connect to host
-tpblist.xyz: could not connect to host
+tpblist.xyz: max-age too low: 0
tpbunblocked.org: could not connect to host
tpe-edu.com: could not connect to host
tpms4u.at: did not receive HSTS header
tppdebate.org: did not receive HSTS header
trabajarenperu.com: did not receive HSTS header
+tracalada.cl: did not receive HSTS header
tracetracker.com: did not receive HSTS header
-tracetracker.no: did not receive HSTS header
tracewind.top: could not connect to host
track.plus: could not connect to host
trackdays4fun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -15216,6 +16423,8 @@ tracker-gps.ch: could not connect to host
trackmeet.io: did not receive HSTS header
tracktivity.com.au: did not receive HSTS header
trade-smart.ru: could not connect to host
+tradedesk.co.za: could not connect to host
+tradernet.com: could not connect to host
tradietrove.com.au: did not receive HSTS header
trading-analytics.com: could not connect to host
tradingbhavishya.com: did not receive HSTS header
@@ -15225,44 +16434,50 @@ tradingrooms.com: did not receive HSTS header
traditional-knowledge.tk: did not receive HSTS header
traeningsprojekt.dk: did not receive HSTS header
trafficquality.org: could not connect to host
-traffictigers.com: did not receive HSTS header
+traffictigers.com: could not connect to host
traforet.win: could not connect to host
train-track.co.uk: did not receive HSTS header
traindb.nl: did not receive HSTS header
-trainhorns.us: did not receive HSTS header
training4girls.ru: could not connect to host
traininglist.org: could not connect to host
trainingproviderresults.gov: could not connect to host
+trainings-handschuhe-test.de: could not connect to host
trainline.dk: could not connect to host
trainline.io: could not connect to host
trainline.se: could not connect to host
trainut.com: could not connect to host
trakfusion.com: could not connect to host
+trancendances.fr: could not connect to host
tranos.de: did not receive HSTS header
transbike.es: did not receive HSTS header
transcendmotor.sg: could not connect to host
+transcricentro.pt: could not connect to host
transcriptionwave.com: did not receive HSTS header
transdirect.com.au: did not receive HSTS header
transformify.org: did not receive HSTS header
transgendernetwerk.nl: did not receive HSTS header
transl8.eu: did not receive HSTS header
translate.googleapis.com: did not receive HSTS header (error ignored - included regardless)
+translateblender.ru: could not connect to host
transmithe.net: could not connect to host
transportal.sk: did not receive HSTS header
transsexualpantyhose.com: could not connect to host
-tratamentoparacelulite.biz: did not receive HSTS header
-tratamentoparacelulite.net: did not receive HSTS header
+tratamentoparacelulite.biz: could not connect to host
trauertexte.info: could not connect to host
traumhuetten.de: did not receive HSTS header
travality.ru: could not connect to host
+travel-dealz.de: did not receive HSTS header
travel-kuban.ru: did not receive HSTS header
travel1x1.com: did not receive HSTS header
traveling-thailand.info: could not connect to host
travelinsightswriter.com: could not connect to host
travelling.expert: could not connect to host
+travelmyth.ie: did not receive HSTS header
+travelpricecheck.com: max-age too low: 0
travotion.com: could not connect to host
trazosdearte.com: did not receive HSTS header
treasuredinheritanceministry.com: did not receive HSTS header
+treatment.org: could not connect to host
treatprostatewithhifu.com: could not connect to host
treeby.net: could not connect to host
treehousebydesign.com: did not receive HSTS header
@@ -15270,16 +16485,22 @@ treeremovaljohannesburg.co.za: could not connect to host
treino.blog.br: could not connect to host
treker.us: could not connect to host
trell.co.in: did not receive HSTS header
+tremolosoftware.com: did not receive HSTS header
tremoureux.fr: could not connect to host
trendberry.ru: could not connect to host
trendingpulse.com: could not connect to host
trendisland.de: did not receive HSTS header
trendydips.com: could not connect to host
+trentmaydew.com: could not connect to host
trewe.eu: could not connect to host
triadwars.com: did not receive HSTS header
triageo.com.au: could not connect to host
trialmock.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+trianon.xyz: could not connect to host
+tributh.cf: could not connect to host
+tributh.net: could not connect to host
trickedguys.com: could not connect to host
+tricks.clothing: did not receive HSTS header
triddi.com: could not connect to host
tridimage.com: did not receive HSTS header
trigular.de: could not connect to host
@@ -15297,18 +16518,20 @@ trixati.org.ua: did not receive HSTS header
trixies-wish.nz: could not connect to host
trixy.com.br: could not connect to host
trizone.com.au: did not receive HSTS header
-troi.de: did not receive HSTS header
+troisdorf-gestalten.de: did not receive HSTS header
trollme.me: could not connect to host
trollscave.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+trondelan.no: could not connect to host
tronflix.com: did not receive HSTS header
troo.ly: could not connect to host
trouter.io: could not connect to host
trouver-son-chemin.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
trpg.wiki: could not connect to host
-truckgpsreviews.com: did not receive HSTS header
true.ink: did not receive HSTS header
truebred-labradors.com: did not receive HSTS header
+trueessayhelp.co.uk: did not receive HSTS header
truejob.com: did not receive HSTS header
+truessl.shop: could not connect to host
trumeet.top: did not receive HSTS header
trunkjunk.co: could not connect to host
trush.in: could not connect to host
@@ -15327,6 +16550,7 @@ ts2.se: could not connect to host
ts3-dns.me: could not connect to host
ts3.consulting: could not connect to host
tsaro.io: could not connect to host
+tscqmalawi.info: did not receive HSTS header
tsdom.net: could not connect to host
tsecy.com: could not connect to host
tsgbit.net: could not connect to host
@@ -15340,11 +16564,11 @@ tsumegumi.net: could not connect to host
tsumi.moe: could not connect to host
tsura.org: could not connect to host
tsurezurematome.ga: could not connect to host
-tsurimap.com: could not connect to host
-tsutsumi-kogyo.jp: could not connect to host
+tt.dog: could not connect to host
ttackmedical.com.br: could not connect to host
-ttb.gov: did not receive HSTS header
+ttrade.ga: could not connect to host
tts.co.nz: did not receive HSTS header
+ttspttsp.com: could not connect to host
tty.space: could not connect to host
ttz.im: could not connect to host
tuamoronline.com: could not connect to host
@@ -15360,7 +16584,6 @@ tudorapido.com.br: did not receive HSTS header
tueche.com.ar: did not receive HSTS header
tufilo.com: could not connect to host
tugers.com: did not receive HSTS header
-tuja.hu: could not connect to host
tulenceria.es: could not connect to host
tulsameetingroom.com: could not connect to host
tunca.it: did not receive HSTS header
@@ -15379,7 +16602,7 @@ turtlementors.com: could not connect to host
turtles.ga: could not connect to host
tusb.ml: did not receive HSTS header
tussengelegenwoningverkopen.nl: could not connect to host
-tuthowto.com: did not receive HSTS header
+tuthowto.com: could not connect to host
tutiendaroja.com: did not receive HSTS header
tutiendarosa.com: did not receive HSTS header
tutorio.ga: could not connect to host
@@ -15387,14 +16610,17 @@ tutu.ro: could not connect to host
tuturulianda.com: did not receive HSTS header
tuvalie.com: did not receive HSTS header
tuxhound.org: could not connect to host
+tuxrtfm.com: could not connect to host
tv.search.yahoo.com: could not connect to host
tvc.red: could not connect to host
tverdohleb.com: could not connect to host
tvoru.com.ua: did not receive HSTS header
-tvtubeflix.com: could not connect to host
+tvs-virtual.cz: did not receive HSTS header
+tvtubeflix.com: did not receive HSTS header
tvz-materijali.com: could not connect to host
tw2-tools.ga: could not connect to host
twarog.cc: could not connect to host
+tweakersbadge.nl: could not connect to host
twee-onder-een-kap-woning-in-alphen-aan-den-rijn-kopen.nl: could not connect to host
twee-onder-een-kap-woning-in-brielle-kopen.nl: could not connect to host
twee-onder-een-kap-woning-in-de-friese-meren-kopen.nl: could not connect to host
@@ -15413,6 +16639,7 @@ twelve.rocks: could not connect to host
twelve.today: could not connect to host
twelverocks.com: could not connect to host
twem.ddns.net: could not connect to host
+twilightcookies.ca: could not connect to host
twillionmas.com: could not connect to host
twinkieman.com: could not connect to host
twinkseason.ca: could not connect to host
@@ -15423,9 +16650,12 @@ twinkseason.org: could not connect to host
twinkseason.xyz: could not connect to host
twiri.net: could not connect to host
twist.party: could not connect to host
-twisted-brains.org: could not connect to host
+twistapp.com: did not receive HSTS header
+twistdevelopment.co.uk: could not connect to host
+twittelzie.nl: could not connect to host
twitter.ax: could not connect to host
twogo.com: did not receive HSTS header
+twojfaktum.pl: could not connect to host
twolanedesign.com: did not receive HSTS header
twolinepassbrewing.com: could not connect to host
twolivelife.com: could not connect to host
@@ -15451,7 +16681,9 @@ tylian.net: max-age too low: 0
type1joe.com: could not connect to host
type1joe.net: could not connect to host
type1joe.org: could not connect to host
+typehub.net: could not connect to host
typeofweb.com: did not receive HSTS header
+typeonejoe.com: could not connect to host
typeonejoe.net: could not connect to host
typeonejoe.org: could not connect to host
typingrevolution.com: did not receive HSTS header
@@ -15459,12 +16691,11 @@ tyreis.com: did not receive HSTS header
tyrelius.com: could not connect to host
tyroproducts.eu: did not receive HSTS header
tyskland.guide: could not connect to host
-tysye.ca: could not connect to host
-tyuo-keibi.co.jp: did not receive HSTS header
tz56789.com: did not receive HSTS header
tzappa.net: could not connect to host
tzwe.com: could not connect to host
u-master.net: did not receive HSTS header
+u-tokyo.club: could not connect to host
u175.com: could not connect to host
uadp.pw: could not connect to host
uahs.org.uk: did not receive HSTS header
@@ -15472,32 +16703,36 @@ ubalert.com: could not connect to host
uber.com.au: did not receive HSTS header
ubercalculator.com: did not receive HSTS header
uberfunction.com: did not receive HSTS header
+ubertt.org: could not connect to host
ubicloud.de: could not connect to host
ubicv.com: could not connect to host
ublox.com: did not receive HSTS header
ubtce.com: could not connect to host
ubuntuhot.com: did not receive HSTS header
uc.ac.id: did not receive HSTS header
+uchiha.ml: could not connect to host
uclanmasterplan.co.uk: did not receive HSTS header
+uclf.de: could not connect to host
udbhav.me: could not connect to host
-ueba1085.jp: could not connect to host
uefeng.com: did not receive HSTS header
uega.net: did not receive HSTS header
uerdingen.info: did not receive HSTS header
uesociedadlimitada.com: could not connect to host
ueu.me: could not connect to host
+uevan.com: did not receive HSTS header
ufgaming.com: did not receive HSTS header
uflixit.com: did not receive HSTS header
-ufo.moe: did not receive HSTS header
+ufo.moe: could not connect to host
ufotable.uk: could not connect to host
ugcdn.com: could not connect to host
+uggedal.com: could not connect to host
ugisgutless.com: could not connect to host
ugo.ninja: could not connect to host
ugosadventures.com: could not connect to host
uhasseltctf.ga: could not connect to host
-uhlhosting.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-uhm.io: did not receive HSTS header
-uhuru-market.com: could not connect to host
+uhm.io: could not connect to host
+uhuru-market.com: did not receive HSTS header
+uicchy.com: could not connect to host
uitslagensoftware.nl: did not receive HSTS header
ukas.com: could not connect to host
ukdropshipment.co.uk: did not receive HSTS header
@@ -15507,7 +16742,7 @@ ukkeyholdingcompany.co.uk: could not connect to host
ukrgadget.com: could not connect to host
ulabox.cat: did not receive HSTS header
ulabox.es: did not receive HSTS header
-ulalau.com: could not connect to host
+ulalau.com: did not receive HSTS header
ullamodaintima.com.br: could not connect to host
ulmo.dk: could not connect to host
ulti.gq: did not receive HSTS header
@@ -15515,6 +16750,8 @@ ultimate-garcinia-plus.com: could not connect to host
ultimate-glow-skin.com: could not connect to host
ultimate-memoryplus.com: could not connect to host
ultimate-neuroplus.com: could not connect to host
+ultramax.biz: could not connect to host
+ultraporn.biz: could not connect to host
ultrasteam.net: could not connect to host
ultros.io: did not receive HSTS header
umaimise.info: did not receive HSTS header
@@ -15523,7 +16760,8 @@ umbriel.fr: did not receive HSTS header
umgardi.ca: could not connect to host
umidev.com: could not connect to host
umie.cc: did not receive HSTS header
-ump45.moe: did not receive HSTS header
+ump45.moe: could not connect to host
+umsolugar.com.br: did not receive HSTS header
unapolegetic.co: did not receive HSTS header
unart.info: could not connect to host
unbanthe.net: could not connect to host
@@ -15535,46 +16773,52 @@ unblocked.faith: could not connect to host
unblocked.host: could not connect to host
unblocked.party: could not connect to host
unblocked.sh: could not connect to host
-unblocked.st: did not receive HSTS header
+unblocked.st: could not connect to host
unblocked.today: could not connect to host
unblocked.vc: could not connect to host
unblocked.win: could not connect to host
unblocked.works: could not connect to host
unblocked.world: could not connect to host
unblockedall.site: could not connect to host
-unblockedbay.info: could not connect to host
-unblockerproxy.site: could not connect to host
-unblockerproxy.top: could not connect to host
+unblockedbay.info: max-age too low: 0
+unblockerproxy.site: did not receive HSTS header
+unblockerproxy.top: did not receive HSTS header
unblockmy.party: could not connect to host
unblockmy.tech: could not connect to host
unblockmy.xyz: could not connect to host
-unblockmyproxy.site: could not connect to host
+unblockmyproxy.site: did not receive HSTS header
unblockthe.site: could not connect to host
unblockthe.top: could not connect to host
unccdesign.club: could not connect to host
unclegen.xyz: could not connect to host
-undeadbrains.de: could not connect to host
+undecidable.de: could not connect to host
under30stravelinsurance.com.au: did not receive HSTS header
undercovercondoms.com: could not connect to host
underkin.com: could not connect to host
+underwearoffer.com: did not receive HSTS header
unefuite.ch: could not connect to host
unfiltered.nyc: could not connect to host
+unfuddle.cn: could not connect to host
ungern.guide: could not connect to host
unhu.fr: could not connect to host
uni-games.com: could not connect to host
uni2share.com: could not connect to host
+unicefcards.at: did not receive HSTS header
unicefkaarten.be: did not receive HSTS header
unicefkort.dk: did not receive HSTS header
unicooo.com: could not connect to host
unicorn.li: could not connect to host
unicorncloud.org: could not connect to host
unifiednetwork.me: could not connect to host
+uniformebateriasheliar.com.br: could not connect to host
uniformecomgas.com.br: could not connect to host
uniformehope.com.br: did not receive HSTS header
uniformehumboldt.com.br: did not receive HSTS header
uniformespousoalegre.com.br: did not receive HSTS header
unikitty-on-tour.com: could not connect to host
unikrn.com: could not connect to host
+uninet.cf: could not connect to host
+uniojeda.ml: did not receive HSTS header
unionstationapp.com: could not connect to host
unirenter.ru: did not receive HSTS header
unison.com: did not receive HSTS header
@@ -15586,19 +16830,26 @@ university4industry.com: did not receive HSTS header
universogay.com: could not connect to host
univstore.win: could not connect to host
univz.com: could not connect to host
+unix.se: did not receive HSTS header
unixtime.pro: could not connect to host
unknownbreakup.com: max-age too low: 2592000
unknownphenomena.net: could not connect to host
+unlogis.ch: could not connect to host
unmanaged.space: could not connect to host
+uno.fi: did not receive HSTS header
unplugg3r.dk: could not connect to host
-unpossible.xyz: could not connect to host
unravel.ie: could not connect to host
+unripple.com: could not connect to host
+unruh.fr: did not receive HSTS header
+uns.vn: could not connect to host
unschoolrules.com: did not receive HSTS header
unstockd.org: could not connect to host
unsupervised.ca: did not receive HSTS header
unsystem.net: could not connect to host
unterkunft.guru: did not receive HSTS header
+unterschicht.tv: could not connect to host
untoldstory.eu: did not receive HSTS header
+unveiledgnosis.com: did not receive HSTS header
unwiredbrain.com: could not connect to host
unwomen.is: did not receive HSTS header
unyq.me: did not receive HSTS header
@@ -15607,6 +16858,7 @@ uow.ninja: could not connect to host
up1.ca: could not connect to host
upaknship.com: did not receive HSTS header
upandclear.org: max-age too low: 0
+upay.ru: could not connect to host
upboard.jp: could not connect to host
upldr.pw: could not connect to host
uploadbro.com: could not connect to host
@@ -15616,12 +16868,14 @@ uprotect.it: could not connect to host
upstats.eu: could not connect to host
uptakedigital.com.au: max-age too low: 2592000
uptic.net: did not receive HSTS header
+uptogood.org: could not connect to host
upupming.site: did not receive HSTS header
ur-lauber.de: did not receive HSTS header
urban-garden.lt: could not connect to host
urban-garden.lv: could not connect to host
urbanmic.com: could not connect to host
urbanstylestaging.com: did not receive HSTS header
+urbansurvival.com: did not receive HSTS header
urbpic.com: could not connect to host
urcentral.org: could not connect to host
url.cab: could not connect to host
@@ -15643,18 +16897,24 @@ uscurrency.gov: did not receive HSTS header
use.ci: could not connect to host
used-in.jp: could not connect to host
usedesk.ru: did not receive HSTS header
+usedoor.jp: did not receive HSTS header
useevlo.com.br: could not connect to host
user-new.com: did not receive HSTS header
-usercare.com: did not receive HSTS header
+usercare.com: could not connect to host
useresponse.com: did not receive HSTS header
-userify.com: max-age too low: 0
+userify.com: did not receive HSTS header
uslab.io: could not connect to host
+usleep.net: could not connect to host
usparklodging.com: did not receive HSTS header
usportsgo.com: could not connect to host
usr.nz: did not receive HSTS header
+usuluddin.ga: did not receive HSTS header
utdscanner.com: did not receive HSTS header
+uteam.it: could not connect to host
+utilio.nl: max-age too low: 2592000
utilitronium-shockwave.com: could not connect to host
-utleieplassen.no: could not connect to host
+utitreatment.com: did not receive HSTS header
+utleieplassen.no: did not receive HSTS header
utopiagalaxy.space: could not connect to host
utopialgb.org.uk: could not connect to host
utopian-surgery.com: could not connect to host
@@ -15663,9 +16923,11 @@ utopianhomespa.com: did not receive HSTS header
utopianrealms.org: did not receive HSTS header
utopians.dk: did not receive HSTS header
uttnetgroup.fr: could not connect to host
+utube.tw: could not connect to host
utumno.ch: could not connect to host
utvbloggen.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-uvarov.pw: did not receive HSTS header
+uvarov.pw: could not connect to host
+uvolejniku.cz: did not receive HSTS header
uwesander.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
uwfreelanceopticien.nl: could not connect to host
uwimonacs.org.jm: did not receive HSTS header
@@ -15683,12 +16945,12 @@ v12.co.uk: did not receive HSTS header
v1sit0r.ru: could not connect to host
v2.pw: did not receive HSTS header
v2ex.us: could not connect to host
-v4s.ro: did not receive HSTS header
v4veedu.com: could not connect to host
v5wz.com: did not receive HSTS header
-v5xp.com: did not receive HSTS header
+v5xp.com: could not connect to host
v7.cl: could not connect to host
v789xl.com: did not receive HSTS header
+va.gov: did not receive HSTS header
vaaddress.co: could not connect to host
vaalmarketplace.co.za: could not connect to host
vacationality.com: could not connect to host
@@ -15702,16 +16964,17 @@ vaddder.com: could not connect to host
vadennissanofhinesvilleparts.com: could not connect to host
vadik.me: could not connect to host
vadodesign.nl: did not receive HSTS header
-vagaerg.com: could not connect to host
-vagaerg.net: could not connect to host
+vagaerg.com: did not receive HSTS header
+vagaerg.net: did not receive HSTS header
vaibhavchatarkar.com: could not connect to host
val-sec.com: could not connect to host
valaeris.de: did not receive HSTS header
+valbonne-consulting.com: did not receive HSTS header
valecnatechnika.cz: could not connect to host
valenhub.com: could not connect to host
valenhub.es: could not connect to host
valenscaelum.com: could not connect to host
-valesdev.com: did not receive HSTS header
+valesdev.com: max-age too low: 0
valethound.com: could not connect to host
valhallacostarica.com: could not connect to host
valhallamovement.com: did not receive HSTS header
@@ -15732,13 +16995,16 @@ vanessabalibridal.com: could not connect to host
vanestack.com: could not connect to host
vanetv.com: could not connect to host
vangeluwedeberlaere.be: did not receive HSTS header
-vanitas.xyz: did not receive HSTS header
+vanhaos.com: could not connect to host
+vanitas.xyz: could not connect to host
vanitynailworkz.com: could not connect to host
vanlaanen.com: did not receive HSTS header
vansieleghem.com: could not connect to host
+vantaio.com: did not receive HSTS header
vapecraftinc.com: did not receive HSTS header
vapemania.eu: could not connect to host
vapeshopsupply.com: max-age too low: 7889238
+vaporpunk.space: did not receive HSTS header
varela-electricite.fr: could not connect to host
variablyconstant.com: could not connect to host
varta.io: could not connect to host
@@ -15747,8 +17013,12 @@ vasanth.org: could not connect to host
vase-eroticke-povidky.cz: could not connect to host
vastgoedcultuurfonds.nl: did not receive HSTS header
vastkustenrunt.se: did not receive HSTS header
+vatsalyagoel.com: did not receive HSTS header
+vatsim-uk.co.uk: did not receive HSTS header
+vatsim.uk: did not receive HSTS header
vavai.net: did not receive HSTS header
vavouchers.com: could not connect to host
+vawltstorage.com: did not receive HSTS header
vayaport.com: could not connect to host
vbest.net: could not connect to host
vbhelp.org: did not receive HSTS header
@@ -15756,28 +17026,30 @@ vbulletin-russia.com: could not connect to host
vbulletinrussia.com: could not connect to host
vcdn.xyz: could not connect to host
vcdove.com: could not connect to host
+vcelin-na-doliku.cz: could not connect to host
vconcept.ch: could not connect to host
vconcept.me: could not connect to host
vcr.re: could not connect to host
+vdanker.net: could not connect to host
vdhco.be: did not receive HSTS header
vdownloader.com: could not connect to host
vdrpro.com: could not connect to host
veblen.com: did not receive HSTS header
vechkasov.ru: could not connect to host
vectro.me: could not connect to host
-vedatkamer.com: did not receive HSTS header
+vedatkamer.com: could not connect to host
vega-motor.com.ua: did not receive HSTS header
vega-rumia.com.pl: max-age too low: 2592000
vega.dyndns.info: could not connect to host
-vegalayer.com: did not receive HSTS header
-vegalengd.com: did not receive HSTS header
+vegalayer.com: could not connect to host
+vegane-proteine.com: could not connect to host
vegangaymer.blog: could not connect to host
veganosonline.com: could not connect to host
vegasdocs.com: did not receive HSTS header
veggiefasting.com: could not connect to host
veggiesbourg.fr: did not receive HSTS header
vegis.ro: did not receive HSTS header
-veglog.com: did not receive HSTS header
+veglog.com: could not connect to host
vehent.org: did not receive HSTS header
vehicleuplift.co.uk: did not receive HSTS header
vekenz.com: could not connect to host
@@ -15802,10 +17074,10 @@ veraandsteve.date: could not connect to host
verdeandco.co.uk: could not connect to host
verifiedinvesting.com: could not connect to host
verifikatorindonesia.com: could not connect to host
-veriny.tf: could not connect to host
veriomed.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
veristor.com: did not receive HSTS header
verliefde-jongens.nl: could not connect to host
+vermogeninkaart.nl: could not connect to host
vermontcareergateway.org: could not connect to host
vernonfishandgame.ca: did not receive HSTS header
versbeton.nl: max-age too low: 864000
@@ -15826,15 +17098,13 @@ vfree.org: could not connect to host
vgatest.nl: could not connect to host
vglimg.com: could not connect to host
vhost.co.id: could not connect to host
-via-shire-krug.ru: could not connect to host
viabemestar.com.br: could not connect to host
viadeux.com: did not receive HSTS header
vialibido.com.br: could not connect to host
-viasinc.com: did not receive HSTS header
+viato.fr: could not connect to host
vibrashop.com.br: did not receive HSTS header
vicenage.com: could not connect to host
viceversa.xyz: did not receive HSTS header
-vicianovi.cz: could not connect to host
viciousviscosity.xyz: could not connect to host
victorenxovais.com.br: could not connect to host
victoriapemberton.com: did not receive HSTS header
@@ -15844,34 +17114,39 @@ vidb.me: could not connect to host
vidbuchanan.co.uk: did not receive HSTS header
viddiaz.com: did not receive HSTS header
videnskabsklubben.dk: did not receive HSTS header
+videoload.co: could not connect to host
videomuz.com: could not connect to host
videorullen.se: could not connect to host
videosxgays.com: could not connect to host
videotogel.net: could not connect to host
videoueberwachung-set.de: did not receive HSTS header
vider.ga: could not connect to host
-vidid.net: could not connect to host
+vidid.net: did not receive HSTS header
vidiproject.com: did not receive HSTS header
viditut.com: could not connect to host
vidkovaomara.si: could not connect to host
vidlyoficial.com: could not connect to host
vidz.ga: could not connect to host
vieaw.com: could not connect to host
-viennan.net: could not connect to host
+viennan.net: did not receive HSTS header
vietnam-lifer.com: could not connect to host
vietnamchevrolet.net: did not receive HSTS header
vietnamphotographytours.com: did not receive HSTS header
+vieux.pro: could not connect to host
viewsea.com: max-age too low: 0
vigilo.cf: could not connect to host
vigilo.ga: could not connect to host
+vigo-krankenversicherung.de: could not connect to host
viikko.eu: could not connect to host
vijos.org: did not receive HSTS header
vikasbabyworld.de: could not connect to host
-viktor-machnik.de: did not receive HSTS header
+viktor-machnik.de: could not connect to host
viktorsvantesson.net: did not receive HSTS header
+vilabiamodas.com.br: could not connect to host
viladochurrasco.com.br: could not connect to host
vilaydin.com: did not receive HSTS header
vilight.com.br: could not connect to host
+villa-anna-cilento.de: could not connect to host
villa-bellarte.de: did not receive HSTS header
villacarmela.com.br: did not receive HSTS header
villainsclothing.com.au: could not connect to host
@@ -15891,10 +17166,12 @@ vinbet666.com: could not connect to host
vinbet888.com: could not connect to host
vincentkooijman.at: did not receive HSTS header
vincentkooijman.nl: did not receive HSTS header
+vineright.com: did not receive HSTS header
vinesauce.info: could not connect to host
vinetalk.net: could not connect to host
vinicius.sl: could not connect to host
viniferawineclub.com: did not receive HSTS header
+vinihk.com: did not receive HSTS header
vinogradovka.com: did not receive HSTS header
vio.no: did not receive HSTS header
violenceinterrupted.org: did not receive HSTS header
@@ -15902,22 +17179,28 @@ violet-letter.delivery: could not connect to host
violetraven.co.uk: could not connect to host
viosey.com: could not connect to host
vioye.com: could not connect to host
+vip-9649.com: could not connect to host
+vip9649.com: could not connect to host
viperdns.com: could not connect to host
+vipesball.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+vipesball.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+vipesball.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
vipesball.net: could not connect to host
viphospitality.se: could not connect to host
viplentes.com.br: did not receive HSTS header
vipmusic.ga: could not connect to host
vipnettikasinoklubi.com: did not receive HSTS header
viral8.jp: could not connect to host
+viralboombox.xyz: could not connect to host
virginiacrimeanalysisnetwork.org: did not receive HSTS header
viris.si: max-age too low: 536000
virtualhealth.com: did not receive HSTS header
virtualstrongbox.ca: did not receive HSTS header
-virtusaero.com: could not connect to host
visa-shinsei.com: did not receive HSTS header
visanhigia.com: could not connect to host
viserproject.com: did not receive HSTS header
vision-painting.com: did not receive HSTS header
+visiondigitalsog.com: could not connect to host
visiongamestudios.com: could not connect to host
visionthroughknowledge.com: could not connect to host
visiontree-beta.eu: could not connect to host
@@ -15930,6 +17213,7 @@ vissersgrootboek.nl: did not receive HSTS header
vistarait.com: could not connect to host
visualvotes.co.uk: could not connect to host
vitagenda.nl: could not connect to host
+vital-tel.co.uk: did not receive HSTS header
vitalamin.at: could not connect to host
vitalamin.ch: could not connect to host
vitalita.cz: did not receive HSTS header
@@ -15940,20 +17224,20 @@ vitapingu.de: could not connect to host
vitta.me: did not receive HSTS header
vitzro.kr: could not connect to host
viva-french.com: did not receive HSTS header
-vivanosports.com.br: did not receive HSTS header
vivasports.com.br: could not connect to host
+viveconsalud.club: could not connect to host
vivocloud.com: could not connect to host
vivoregularizafacil.com.br: did not receive HSTS header
vivoseg.com: could not connect to host
-vivremoinscher.fr: did not receive HSTS header
+vivremoinscher.fr: could not connect to host
viza.io: could not connect to host
vizeat.com: did not receive HSTS header
-vkino.com: could not connect to host
vkulagin.ru: could not connect to host
vladimiroff.org: did not receive HSTS header
vldkn.net: could not connect to host
vleij.family: could not connect to host
vlogge.com: did not receive HSTS header
+vlsk.eu: could not connect to host
vlzbazar.ru: could not connect to host
vmrdev.com: could not connect to host
vmstan.com: did not receive HSTS header
@@ -15961,10 +17245,17 @@ vndb.org: could not connect to host
vocab.guru: could not connect to host
vocalsynth.space: could not connect to host
voceinveste.com: did not receive HSTS header
+vodpay.com: could not connect to host
+vodpay.net: could not connect to host
+vodpay.org: could not connect to host
vogt.tech: could not connect to host
voicesuk.co.uk: did not receive HSTS header
-void-it.nl: could not connect to host
+void-it.nl: did not receive HSTS header
+voidark.com: could not connect to host
voidi.ca: could not connect to host
+voidpay.net: could not connect to host
+voidpay.org: could not connect to host
+voids.org: could not connect to host
voidserv.net: could not connect to host
voidshift.com: could not connect to host
voilo.club: could not connect to host
@@ -15972,16 +17263,22 @@ voilodaisuki.club: could not connect to host
voipkb.com: did not receive HSTS header
voiro.club: could not connect to host
voirodaisuki.club: could not connect to host
+vokalsystem.com: did not receive HSTS header
volatimer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
volbyzive.cz: did not receive HSTS header
volcain.io: could not connect to host
volcrado.com: could not connect to host
volkden.com: could not connect to host
+volkerwesselswave.nl: did not receive HSTS header
volkswurst.de: did not receive HSTS header
voltimax.com: did not receive HSTS header
voltotc.com: did not receive HSTS header
voluptueuse.com: did not receive HSTS header
volvipress.gr: did not receive HSTS header
+von-lien-aluprofile.de: did not receive HSTS header
+von-lien-dachrinnen.de: did not receive HSTS header
+von-lien-lichtplatten.de: did not receive HSTS header
+von-lien-profilbleche.de: did not receive HSTS header
vonavy-cukor.sk: could not connect to host
vonavycukor.sk: could not connect to host
vonedelmann.de: did not receive HSTS header
@@ -15991,11 +17288,12 @@ vooreenveiligthuis.nl: did not receive HSTS header
voorjou.com: did not receive HSTS header
vorangerie.com: could not connect to host
vorderklier.de: could not connect to host
-vorm2.com: did not receive HSTS header
+vorkbaard.nl: did not receive HSTS header
vortexhobbies.com: did not receive HSTS header
vosjesweb.nl: could not connect to host
votercircle.com: did not receive HSTS header
voterstartingpoint.uk: did not receive HSTS header
+votewa.gov: could not connect to host
votresiteweb.ch: could not connect to host
vow.vn: could not connect to host
vowsy.club: did not receive HSTS header
@@ -16009,6 +17307,8 @@ vpnhot.com: could not connect to host
vpnzoom.com: did not receive HSTS header
vps-szerver-berles.hu: could not connect to host
vpsmojo.com: could not connect to host
+vqporn.com: could not connect to host
+vranjske.co.rs: could not connect to host
vratny.space: could not connect to host
vriendenvoordeel.com: did not receive HSTS header
vrijstaandhuis-in-alphen-aan-den-rijn-kopen.nl: could not connect to host
@@ -16026,43 +17326,55 @@ vrijstaandhuisverkopen.nl: could not connect to host
vrlaid.com: could not connect to host
vrobert.fr: could not connect to host
vrsgames.com.mx: did not receive HSTS header
-vrtak-cz.net: could not connect to host
+vrtouring.org: could not connect to host
vrzl.pro: could not connect to host
vsamsonov.com: could not connect to host
vsc-don-stocksport.de: did not receive HSTS header
-vsestiralnie.com: did not receive HSTS header
+vtuber-schedule.info: could not connect to host
vucdn.com: could not connect to host
-vulndetect.com: did not receive HSTS header
vulnerabilities.io: could not connect to host
vuosaarenmontessoritalo.fi: did not receive HSTS header
vvl.me: did not receive HSTS header
+vvzero.cf: could not connect to host
+vw-touranclub.cz: could not connect to host
vwoforangeparts.com: could not connect to host
vwt-event.nl: could not connect to host
vxapps.com: could not connect to host
vxml.club: could not connect to host
+vxz.me: could not connect to host
vykup-car.ru: could not connect to host
vynedmusic.com: could not connect to host
vyshivanochka.in.ua: could not connect to host
vysvetluju.cz: could not connect to host
vyvybean.cf: could not connect to host
vyvygen.com: did not receive HSTS header
+vyzner.cz: could not connect to host
vzk.io: could not connect to host
w10club.com: could not connect to host
w2gshop.com.br: could not connect to host
-w4.no: did not receive HSTS header
w4a.fr: could not connect to host
w4b.in: could not connect to host
w4xzr.top: could not connect to host
w4xzr.xyz: could not connect to host
w9rld.com: did not receive HSTS header
wabifoggynuts.com: could not connect to host
+wachter.biz: could not connect to host
wachtwoordencheck.nl: could not connect to host
+wadvisor.com: could not connect to host
waelti.xxx: could not connect to host
+wafa4hw.com: could not connect to host
wafairhaven.com.au: did not receive HSTS header
wafni.com: could not connect to host
wai-in.com: could not connect to host
+wai-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wail.net: could not connect to host
wait.moe: could not connect to host
waixingrenfuli7.vip: could not connect to host
+waka-mono.com: could not connect to host
+waka168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+waka168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+waka88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+waka88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
wakapp.de: could not connect to host
wakened.net: did not receive HSTS header
waldkinder-ilmenau.de: did not receive HSTS header
@@ -16083,27 +17395,30 @@ wanda79.com: could not connect to host
wanda96.com: could not connect to host
wanda97.com: could not connect to host
wanda98.com: could not connect to host
+wandercue.com: did not receive HSTS header
wangjiatun.com.tw: could not connect to host
wangkezun.com: could not connect to host
wangqiliang.xn--fiqs8s: could not connect to host
wangql.cn: could not connect to host
wanquanojbk.com: did not receive HSTS header
wantshow.com.br: did not receive HSTS header
+wanvi.net: did not receive HSTS header
wanybug.cn: could not connect to host
wapgu.cc: could not connect to host
wapjt.cn: could not connect to host
-wapking.co: could not connect to host
wapking.live: could not connect to host
wapt.fr: did not receive HSTS header
warandpeace.xyz: could not connect to host
warcraftjournal.org: could not connect to host
wardsegers.be: did not receive HSTS header
-warehost.de: did not receive HSTS header
+warehost.de: could not connect to host
warekon.com: could not connect to host
warekon.dk: could not connect to host
+warenmedia.com: could not connect to host
warezaddict.com: could not connect to host
warhistoryonline.com: did not receive HSTS header
warlions.info: could not connect to host
+warmestwishes.ca: could not connect to host
warnings.xyz: could not connect to host
warped.com: did not receive HSTS header
warren.sh: could not connect to host
@@ -16112,7 +17427,6 @@ warsentech.com: did not receive HSTS header
warumsuchen.at: did not receive HSTS header
wasatchconstables.com: did not receive HSTS header
wasatchcrest.com: did not receive HSTS header
-wasfuereintheater.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
wasserburg.dk: did not receive HSTS header
wassim.is: did not receive HSTS header
watashi.bid: could not connect to host
@@ -16126,6 +17440,7 @@ watsonhall.uk: could not connect to host
wattechweb.com: did not receive HSTS header
wavefloatrooms.com: did not receive HSTS header
wavefrontsystemstech.com: could not connect to host
+wavesoftime.com: could not connect to host
waxlrs.com: could not connect to host
waylaydesign.com: did not receive HSTS header
waylee.net: did not receive HSTS header
@@ -16133,13 +17448,18 @@ wbit.co.il: did not receive HSTS header
wbut.ml: could not connect to host
wdesk.com: did not receive HSTS header
wdmg.com.ua: max-age too low: 604800
-wdt.io: did not receive HSTS header
+wdrl.info: did not receive HSTS header
+wdt.io: could not connect to host
we.serveftp.net: could not connect to host
+wealthcentral.com.au: did not receive HSTS header
wealthformyhealth.com: did not receive HSTS header
wear2work.nl: could not connect to host
+wearedisneyland.com: did not receive HSTS header
weareincognito.org: could not connect to host
wearewithyou.org: could not connect to host
+weather-and-climate.com: did not receive HSTS header
weaverhairextensions.nl: could not connect to host
+web-adminy.co.uk: could not connect to host
web-advisor.co.uk: could not connect to host
web-demarche.com: could not connect to host
web-industry.fr: could not connect to host
@@ -16148,11 +17468,12 @@ web-vision.de: did not receive HSTS header
web4all.fr: did not receive HSTS header
web4pro.fr: could not connect to host
webandwords.com.au: could not connect to host
-webanker.sh: did not receive HSTS header
+webanker.sh: could not connect to host
webapky.cz: could not connect to host
webapps.directory: could not connect to host
webart-factory.de: could not connect to host
webassadors.com: could not connect to host
+webauthority.co.uk: did not receive HSTS header
webbuzz.com.au: did not receive HSTS header
webbx.se: did not receive HSTS header
webchat.domains: did not receive HSTS header
@@ -16161,20 +17482,20 @@ webdesign-kronberg.de: did not receive HSTS header
webdesignssussex.co.uk: could not connect to host
webdev-quiz.de: did not receive HSTS header
webdev.mobi: could not connect to host
-webdevxp.com: could not connect to host
webdosh.com: did not receive HSTS header
webeconomia.it: did not receive HSTS header
webelement.sk: did not receive HSTS header
weberjulia.com: could not connect to host
webfronten.dk: did not receive HSTS header
-webgaff.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+webgaff.com: could not connect to host
+webgap.me: did not receive HSTS header
webgreat.de: max-age too low: 3600
webhackspro.com: could not connect to host
webhelyesarcu.hu: did not receive HSTS header
webhosting4.net: did not receive HSTS header
webhostingpros.ml: could not connect to host
-webies.ro: did not receive HSTS header
webless.com: could not connect to host
+weblogic.pl: did not receive HSTS header
webm.to: could not connect to host
webmail.mayfirst.org: did not receive HSTS header
webmaniabr.com: did not receive HSTS header
@@ -16194,57 +17515,58 @@ webnosql.com: could not connect to host
webperformance.ru: could not connect to host
webproshosting.tk: could not connect to host
webpublica.pt: could not connect to host
-webqueens.com: could not connect to host
-webreslist.com: could not connect to host
+webreslist.com: did not receive HSTS header
websandbox.uk: could not connect to host
websectools.com: could not connect to host
webseo.de: did not receive HSTS header
websiteadvice.com.au: did not receive HSTS header
websitedesign.bg: did not receive HSTS header
websitesabq.com: did not receive HSTS header
-websmartmedia.co.uk: did not receive HSTS header
webspotter.nl: could not connect to host
webstationservice.fr: could not connect to host
-webstellung.com: could not connect to host
+webstellung.com: did not receive HSTS header
webstory.xyz: could not connect to host
-webswitch.io: could not connect to host
+webswitch.io: did not receive HSTS header
webtar.info: could not connect to host
webtech.com.br: could not connect to host
webtechgadgetry.com: could not connect to host
webtek.nu: could not connect to host
-webthings.com.br: did not receive HSTS header
+webthings.com.br: could not connect to host
webtiles.co.uk: could not connect to host
webtobesocial.de: could not connect to host
webukhost.com: could not connect to host
webuni.hu: did not receive HSTS header
webveloper.com: did not receive HSTS header
-webwork.pw: could not connect to host
+webwolf.co.za: could not connect to host
+webwork.pw: did not receive HSTS header
webypass.xyz: could not connect to host
-webz.one: could not connect to host
webzanem.com: could not connect to host
wecanfindit.co.za: could not connect to host
wecanvisit.com: could not connect to host
wedding-m.jp: did not receive HSTS header
+weddingalbumsdesign.com: did not receive HSTS header
weddingenvelopes.co.uk: did not receive HSTS header
weddingibiza.nl: could not connect to host
wedotrains.club: did not receive HSTS header
weebsr.us: could not connect to host
weed.ren: could not connect to host
-weedlandia.org: did not receive HSTS header
+weedcircles.com: did not receive HSTS header
+weedlandia.org: could not connect to host
weekly.fyi: could not connect to host
-weerstationgiethoorn.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
wegenaer.nl: could not connect to host
+wegner.no: could not connect to host
weicn.org: did not receive HSTS header
-weightreviews.com: did not receive HSTS header
+weightreviews.com: could not connect to host
weiji.ga: could not connect to host
weiler.xyz: could not connect to host
+weimaraner.com.br: could not connect to host
weinhandel-preissler.de: could not connect to host
weirdserver.com: could not connect to host
weiyuz.com: max-age too low: 6585555
weizenke.im: could not connect to host
wejumall.com: could not connect to host
wekibe.de: could not connect to host
-welby.cat: did not receive HSTS header
+welby.cat: could not connect to host
welches-kinderfahrrad.de: could not connect to host
welkers.org: could not connect to host
wellastore.ru: could not connect to host
@@ -16253,7 +17575,7 @@ welldrake.com: could not connect to host
wellmarts.com: did not receive HSTS header
wellness.so: could not connect to host
wellopp.com: did not receive HSTS header
-wellproducedwines.com: did not receive HSTS header
+wellproducedwines.com: could not connect to host
wellsplasticsurgery.com: did not receive HSTS header
wellspringcamps.com: did not receive HSTS header
welovejobs.com: did not receive HSTS header
@@ -16263,8 +17585,11 @@ welpy.com: could not connect to host
weltentreff.com: could not connect to host
weltmeisterschaft.net: could not connect to host
weme.eu: could not connect to host
+wen-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wen-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wenchieh.com: could not connect to host
wendalyncheng.com: did not receive HSTS header
-wendigo.pl: could not connect to host
+wener.me: could not connect to host
wengebowuguan.com: could not connect to host
wenode.net: did not receive HSTS header
wentu.ml: could not connect to host
@@ -16277,6 +17602,7 @@ werken-bij-inwork.nl: could not connect to host
werkenbijkfc.nl: did not receive HSTS header
werkplaatsoost.nl: did not receive HSTS header
werkruimtebottendaal.nl: could not connect to host
+werkz.io: could not connect to host
werner-schaeffer.de: did not receive HSTS header
wernerschaeffer.de: did not receive HSTS header
wes-dev.com: did not receive HSTS header
@@ -16286,6 +17612,7 @@ wespeakgeek.co.za: could not connect to host
westcoastaggregate.com: could not connect to host
westendzone.com: could not connect to host
westerhoud.nl: did not receive HSTS header
+westhighlandwhiteterrier.com.br: could not connect to host
westlinwinds.com: could not connect to host
westsussexconnecttosupport.org: could not connect to host
westtulsa.com: could not connect to host
@@ -16294,13 +17621,12 @@ wetherbyweather.org.uk: did not receive HSTS header
wetoxic.com: could not connect to host
wettbonus.info: max-age too low: 0
wettbuero.de: did not receive HSTS header
-wetten.eu: did not receive HSTS header
wettertoertchen.com: could not connect to host
wetthost.com: could not connect to host
wetttipps.com: could not connect to host
wetttipps.de: could not connect to host
wevahoo.com: could not connect to host
-wevg.org: could not connect to host
+wevg.org: did not receive HSTS header
wevolver.com: did not receive HSTS header
wewillgo.com: could not connect to host
wewillgo.org: did not receive HSTS header
@@ -16311,9 +17637,11 @@ wf-training-master.appspot.com: did not receive HSTS header (error ignored - inc
wftda.com: did not receive HSTS header
wg-tools.de: could not connect to host
whanau.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+whatanime.ga: could not connect to host
whatisl.ovh: could not connect to host
whats.io: could not connect to host
whatsstalk.me: could not connect to host
+whatsupdeco.com: did not receive HSTS header
whatsyouroffer.co.uk: did not receive HSTS header
wheelwright.org: did not receive HSTS header
when-release.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -16325,16 +17653,21 @@ wheresben.today: could not connect to host
whilsttraveling.com: could not connect to host
whisker.network: could not connect to host
whiskyglazen.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+whisperinghoperanch.org: did not receive HSTS header
whistler-transfers.com: did not receive HSTS header
-whitehat.id: did not receive HSTS header
+whitehat.id: could not connect to host
whiterabbit.org: did not receive HSTS header
whiterabbitcakery.com: could not connect to host
+whiteready.it: did not receive HSTS header
whiteroom.agency: did not receive HSTS header
whitestagforge.com: did not receive HSTS header
whoclicks.net: could not connect to host
whoisamitsingh.com: did not receive HSTS header
whoisapi.online: could not connect to host
+whoiscuter.ml: could not connect to host
+whoiscutest.ml: could not connect to host
wholebites.com: max-age too low: 7889238
+wholelotofbounce.co.uk: did not receive HSTS header
wholikes.us: could not connect to host
whoneedstobeprimaried.today: could not connect to host
whoownsmyavailability.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -16355,7 +17688,7 @@ wiiforum.no: did not receive HSTS header
wiire.me: could not connect to host
wikiclash.info: could not connect to host
wikipeter.nl: did not receive HSTS header
-wikisports.eu: could not connect to host
+wikisports.eu: did not receive HSTS header
wild-emotion-events.de: could not connect to host
wildbee.org: could not connect to host
wildbirds.dk: did not receive HSTS header
@@ -16367,11 +17700,11 @@ wilhelm-nathan.de: could not connect to host
willcipriano.com: could not connect to host
willeminfo.ch: did not receive HSTS header
willemsjort.be: did not receive HSTS header
+william.gg: did not receive HSTS header
william.si: did not receive HSTS header
williamboundsltd.com: could not connect to host
-williamle.com: did not receive HSTS header
williamsapiens.com: could not connect to host
-williamsonshore.com: max-age too low: 0
+williamsflintlocks.com: did not receive HSTS header
williamtm.design: could not connect to host
willkommen-fuerstenberg.de: could not connect to host
willosagiede.com: did not receive HSTS header
@@ -16379,15 +17712,18 @@ wilsonovi.com: could not connect to host
winaes.com: did not receive HSTS header
winclient.cn: could not connect to host
windholz.us: could not connect to host
+windows10insider.com: did not receive HSTS header
windowsforum.com: did not receive HSTS header
windowstech.it: did not receive HSTS header
windowwellexperts.com: did not receive HSTS header
+windrunner.se: could not connect to host
winds.cf: could not connect to host
windwoodmedia.com: could not connect to host
windwoodweb.com: could not connect to host
wine-importer.ru: did not receive HSTS header
winebid.com: could not connect to host
winecodeavocado.com: could not connect to host
+wineonthewall.com: max-age too low: 300
wineworksonline.com: could not connect to host
winfield.me.uk: did not receive HSTS header
winfieldchen.me: did not receive HSTS header
@@ -16397,6 +17733,7 @@ wingumd.net: could not connect to host
winnersports.co: could not connect to host
winpack.cf: could not connect to host
winpack.eu.org: could not connect to host
+winportal.cz: did not receive HSTS header
winsec.nl: could not connect to host
winshiplending.com: could not connect to host
winsufi.biz: could not connect to host
@@ -16406,18 +17743,21 @@ wipply.com: could not connect to host
wirbatz.org: did not receive HSTS header
wirc.gr: could not connect to host
wiredcut.com: did not receive HSTS header
+wireframesoftware.com: could not connect to host
wireless-emergency-stop.com: did not receive HSTS header
-wirelesswatch.com.au: did not receive HSTS header
+wirelesswatch.com.au: could not connect to host
wiretrip.io: did not receive HSTS header
wirkaufendeinau.to: could not connect to host
wisak.eu: could not connect to host
wisdomize.me: could not connect to host
+wiseflat.com: did not receive HSTS header
wiseloan.com: did not receive HSTS header
wishcert.com: could not connect to host
wishesbee.com: could not connect to host
wissl.org: could not connect to host
witae.com: could not connect to host
withgoogle.com: did not receive HSTS header (error ignored - included regardless)
+withlocals.com: did not receive HSTS header
withmy.beer: could not connect to host
withoutacrystalball.com: did not receive HSTS header
withustrading.com: did not receive HSTS header
@@ -16440,17 +17780,21 @@ wmoda.com.br: could not connect to host
wnmed.com.au: did not receive HSTS header
wnmm.nl: could not connect to host
wnnc.co.uk: could not connect to host
+woaiuhd.com: could not connect to host
wobblylang.org: could not connect to host
wochenentwicklung.com: did not receive HSTS header
+wochennummern.de: could not connect to host
wod-stavby.cz: could not connect to host
wodice.com: could not connect to host
wohnungsbau-ludwigsburg.de: did not receive HSTS header
+woi.vision: could not connect to host
woima.fi: max-age too low: 604800
wokeai.net: could not connect to host
woktoss.com: could not connect to host
wolfemg.com: could not connect to host
wolfenland.net: did not receive HSTS header
wolfesden.com: could not connect to host
+wolfgang-kloke.de: could not connect to host
wolfram.io: could not connect to host
wolkenspeicher.org: could not connect to host
wollekorb.de: could not connect to host
@@ -16471,10 +17815,10 @@ wootton95.com: could not connect to host
wooviet.com: could not connect to host
wopen.org: could not connect to host
wordbits.net: did not receive HSTS header
-wordlessecho.com: could not connect to host
+wordlessecho.com: did not receive HSTS header
wordplay.one: could not connect to host
wordpress-test.site: could not connect to host
-wordpresspro.cl: did not receive HSTS header
+wordpresspro.cl: could not connect to host
wordsofamaster.com: could not connect to host
work-and-jockel.de: did not receive HSTS header
workemy.com: could not connect to host
@@ -16488,13 +17832,16 @@ worldchess.london: could not connect to host
worldfree4.org: did not receive HSTS header
worldlist.org: could not connect to host
worldpovertysolutions.org: did not receive HSTS header
+worldrecipes.eu: did not receive HSTS header
worldsbeststory.com: did not receive HSTS header
worldwhisperer.net: could not connect to host
wormholevpn.net: could not connect to host
worshapp.com: did not receive HSTS header
+woshiluo.site: could not connect to host
wow-travel.eu: could not connect to host
wow202y5.com: did not receive HSTS header
wowapi.org: could not connect to host
+wowhelp.it: could not connect to host
wowinvasion.com: did not receive HSTS header
wp-fastsearch.de: could not connect to host
wp-rescue.com.au: could not connect to host
@@ -16527,34 +17874,40 @@ wrfu.co.nz: did not receive HSTS header
wriedts.de: did not receive HSTS header
wrightdoumawedding.com: could not connect to host
writeapp.me: did not receive HSTS header
+writemyessay.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
writemytermpapers.com: could not connect to host
+writepro.net: could not connect to host
writing-expert.com: could not connect to host
wrldevelopment.com: did not receive HSTS header
wroffle.com: did not receive HSTS header
wrwg.ca: could not connect to host
ws-meca.com: did not receive HSTS header
wsb-immo.at: could not connect to host
+wscbiolo.id: could not connect to host
wsdcap.com: could not connect to host
wsor.group: did not receive HSTS header
wss.com.ve: could not connect to host
wsscompany.com.ve: could not connect to host
+wssv.ch: could not connect to host
wsup.social: could not connect to host
-wtwk.com: could not connect to host
+wtwk.com: did not receive HSTS header
wubify.com: did not receive HSTS header
-wubocong.com: could not connect to host
+wubocong.com: did not receive HSTS header
wubthecaptain.eu: could not connect to host
wuchipc.com: could not connect to host
-wufupay.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wufupay.com: could not connect to host
wuhengmin.com: could not connect to host
wulpi.it: did not receive HSTS header
-wumai.cloud: did not receive HSTS header
+wumai.cloud: could not connect to host
wumbo.kiwi: could not connect to host
wundtherapie-schulung.de: could not connect to host
wurzelzwerg.net: could not connect to host
wusx.club: could not connect to host
-wutianxian.com: did not receive HSTS header
+wutianxian.com: could not connect to host
wvr-law.de: did not receive HSTS header
wvw698.com: max-age too low: 2592000
+wwjd.dynu.net: could not connect to host
+wwv-8522.com: could not connect to host
www-001133.com: could not connect to host
www-0385.com: could not connect to host
www-1116.com: could not connect to host
@@ -16564,12 +17917,13 @@ www-39988.com: did not receive HSTS header
www-507.net: could not connect to host
www-62755.com: did not receive HSTS header
www-66136.com: did not receive HSTS header
-www-68277.com: could not connect to host
www-746.com: could not connect to host
+www-7570.com: could not connect to host
www-771122.com: did not receive HSTS header
-www-8003.com: could not connect to host
+www-8003.com: did not receive HSTS header
www-88599.com: did not receive HSTS header
www-8887999.com: could not connect to host
+www-9649.com: could not connect to host
www-9995.com: could not connect to host
www-djbet.com: could not connect to host
www-jinshavip.com: could not connect to host
@@ -16584,11 +17938,11 @@ www.amazon.de: [Exception... "Component returned failure code: 0x80004005 (NS_ER
www.amazon.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
www.amazon.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
www.amazon.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+www.captaintrain.com: did not receive HSTS header
www.cueup.com: could not connect to host
www.cyveillance.com: did not receive HSTS header
www.developer.mydigipass.com: could not connect to host
www.elanex.biz: did not receive HSTS header
-www.gamesdepartment.co.uk: could not connect to host
www.gmail.com: did not receive HSTS header (error ignored - included regardless)
www.googlemail.com: did not receive HSTS header (error ignored - included regardless)
www.gpo.gov: did not receive HSTS header
@@ -16605,21 +17959,22 @@ www.rme.li: did not receive HSTS header
www.sandbox.mydigipass.com: could not connect to host
www.simbolo.co.uk: could not connect to host
www.surfeasy.com: did not receive HSTS header
-www.viasinc.com: did not receive HSTS header
www.zenpayroll.com: did not receive HSTS header
www3.info: could not connect to host
+www68277.com: could not connect to host
+wwww.is: could not connect to host
+wwww.me.uk: did not receive HSTS header
wxrlab.com: could not connect to host
wxukang.cn: could not connect to host
wxyz.buzz: could not connect to host
+wxzm.sx: could not connect to host
wy6.org: did not receive HSTS header
wybmabiity.com: could not connect to host
wygluszanie.eu: could not connect to host
-wylog.ph: could not connect to host
+wylog.ph: did not receive HSTS header
wyu.cc: could not connect to host
wyzphoto.nl: did not receive HSTS header
wyzwaniemilosci.com: could not connect to host
-wzrd.in: did not receive HSTS header
-x-iweb.ru: did not receive HSTS header
x-pertservice.com: did not receive HSTS header
x-power-detox.com: could not connect to host
x-ripped-hd.com: could not connect to host
@@ -16630,14 +17985,13 @@ x2w.io: could not connect to host
x3led.com: could not connect to host
x509.pub: could not connect to host
x509.pw: could not connect to host
-x64architecture.com: could not connect to host
x69.biz: could not connect to host
x69x.net: could not connect to host
xanderweaver.com: did not receive HSTS header
xandocs.com: could not connect to host
xat.re: did not receive HSTS header
+xavier.is: could not connect to host
xavierbarroso.com: did not receive HSTS header
-xawen.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xbc.nz: could not connect to host
xbind.io: could not connect to host
xchangeinfo.com: could not connect to host
@@ -16659,8 +18013,10 @@ xeonlab.com: could not connect to host
xeonlab.de: could not connect to host
xett.com: could not connect to host
xfive.de: could not connect to host
+xfrag-networks.com: did not receive HSTS header
xg3n1us.de: did not receive HSTS header
xgusto.com: did not receive HSTS header
+xhadius.de: could not connect to host
xia100.xyz: could not connect to host
xiangqiushi.com: did not receive HSTS header
xianguocy.com: could not connect to host
@@ -16668,31 +18024,34 @@ xiaody.me: could not connect to host
xiaolan.me: could not connect to host
xiaolvmu.com: could not connect to host
xiaolvmu.me: could not connect to host
-xiaomionline24.pl: could not connect to host
xiaoxiao.im: could not connect to host
xiaxuejin.cn: could not connect to host
+xiazhanjian.com: could not connect to host
+xice.cf: could not connect to host
xilegames.com: could not connect to host
-xiliant.com: did not receive HSTS header
ximage.me: could not connect to host
ximens.me: could not connect to host
+xin-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+xin-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xinbiji.cn: could not connect to host
xinex.cz: did not receive HSTS header
+xing-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xing.ml: could not connect to host
xinghuokeji.xin: could not connect to host
xingiahanvisa.net: did not receive HSTS header
xinnixwebshop.be: did not receive HSTS header
-xiqi.us: could not connect to host
+xiqi.us: did not receive HSTS header
xirion.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xisa.it: could not connect to host
xivpn.com: could not connect to host
xiyu.it: did not receive HSTS header
xiyu.moe: did not receive HSTS header
-xjoi.net: could not connect to host
+xjoi.net: did not receive HSTS header
xlaff.com: could not connect to host
-xlboo.com: did not receive HSTS header
+xlboo.com: could not connect to host
xlfblog.com: did not receive HSTS header
xlinar.com: could not connect to host
-xmerak.com: could not connect to host
+xmerak.com: did not receive HSTS header
xmiui.com: could not connect to host
xmonk.org: did not receive HSTS header
xmr.my: could not connect to host
@@ -16728,12 +18087,14 @@ xn--cckvb1cwa0c5br5e2d2711k.net: could not connect to host
xn--datenrettung-mnchen-jbc.com: did not receive HSTS header
xn--dckya4a0bya6x.com: could not connect to host
xn--dckya4a0bya6x.jp: could not connect to host
+xn--dk8haaa.ws: could not connect to host
+xn--dmontaa-9za.com: did not receive HSTS header
xn--e--0g4aiy1b8rmfg3o.jp: could not connect to host
xn--e--4h4axau6ld4lna0g.com: could not connect to host
xn--e--ig4a4c3f6bvc5et632i.com: could not connect to host
xn--e--k83a5h244w54gttk.xyz: could not connect to host
xn--ekr87w7se89ay98ezcs.biz: did not receive HSTS header
-xn--gfrr-7qa.li: could not connect to host
+xn--gfrrli-yxa.ch: could not connect to host
xn--gmq92k.nagoya: could not connect to host
xn--grnderlehrstuhl-0vb.de: could not connect to host
xn--hfk-allgu-schwaben-stb.de: could not connect to host
@@ -16748,7 +18109,7 @@ xn--lgb3a8bcpn.gq: could not connect to host
xn--lgb3a8bcpn.ml: could not connect to host
xn--lna-2000-9za.nu: could not connect to host
xn--lna-4000-9za.nu: could not connect to host
-xn--lnakuten-9za.com: did not receive HSTS header
+xn--lnakuten-9za.com: max-age too low: 10368000
xn--ls8hi7a.tk: could not connect to host
xn--maraa-rta.org: could not connect to host
xn--mensenges-o1a8c.gq: could not connect to host
@@ -16765,11 +18126,9 @@ xn--qckqc0nxbyc4cdb4527err7c.biz: did not receive HSTS header
xn--qckyd1cu698a35zarib.xyz: could not connect to host
xn--r77hya.ga: could not connect to host
xn--rt-cja.eu: could not connect to host
-xn--sdkwa9azd389v01ya.com: did not receive HSTS header
+xn--sdkwa9azd389v01ya.com: could not connect to host
xn--srenpind-54a.dk: could not connect to host
-xn--sz8h.ml: could not connect to host
xn--t8j2a3042d.xyz: could not connect to host
-xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net: could not connect to host
xn--tda.ml: could not connect to host
xn--thorme-6uaf.ca: could not connect to host
xn--u9jy16ncfao19mo8i.nagoya: could not connect to host
@@ -16782,7 +18141,6 @@ xn--vck8crcu789ajtaj92eura.xyz: could not connect to host
xn--w22a.jp: could not connect to host
xn--werner-schffer-fib.de: did not receive HSTS header
xn--wmq.jp: could not connect to host
-xn--wq9h.ml: could not connect to host
xn--xdtx3pfzbiw3ar8e7yedqrhui.com: could not connect to host
xn--xz1a.jp: could not connect to host
xn--y8j2eb5631a4qf5n0h.com: could not connect to host
@@ -16792,6 +18150,7 @@ xn--ykrp42k.com: could not connect to host
xn--yoamomisuasbcn-ynb.com: could not connect to host
xn--zck9a4b352yuua.jp: did not receive HSTS header
xng.io: did not receive HSTS header
+xnu.kr: could not connect to host
xobox.me: could not connect to host
xoda.pw: could not connect to host
xoffy.com: did not receive HSTS header
@@ -16799,6 +18158,7 @@ xom.party: could not connect to host
xombra.com: could not connect to host
xor-a.net: could not connect to host
xotika.tv: could not connect to host
+xpbytes.com: did not receive HSTS header
xpenology-fr.net: could not connect to host
xperiacodes.com: could not connect to host
xpi.fr: could not connect to host
@@ -16806,9 +18166,10 @@ xpj.bet: did not receive HSTS header
xpj.sx: could not connect to host
xpjcunkuan.com: could not connect to host
xpressprint.com.br: max-age too low: 90
-xpwn.cz: could not connect to host
-xq55.com: did not receive HSTS header
+xpwn.cz: did not receive HSTS header
xqin.net: could not connect to host
+xrippedhd.com: could not connect to host
+xroot.org: did not receive HSTS header
xrp.pw: could not connect to host
xscancun.com: could not connect to host
xscapers.com: did not receive HSTS header
@@ -16817,21 +18178,25 @@ xsyds.cn: did not receive HSTS header
xt.om: did not receive HSTS header
xtenz.xyz: could not connect to host
xtom.email: could not connect to host
+xtom.io: could not connect to host
xtream-hosting.com: could not connect to host
xtream-hosting.de: could not connect to host
xtream-hosting.eu: could not connect to host
xtreamhosting.eu: could not connect to host
+xtremegaming.it: could not connect to host
xtrim.ru: did not receive HSTS header
xtzone.be: could not connect to host
+xuan-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+xuan-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xuanmeishe.top: could not connect to host
xuexb.com: did not receive HSTS header
xujan.com: could not connect to host
xuntaosms.com: could not connect to host
xupeng.me: did not receive HSTS header
-xuyh0120.win: did not receive HSTS header
-xxbase.com: did not receive HSTS header
+xxbase.com: could not connect to host
xxx3dbdsm.com: could not connect to host
xxxladyboysporn.com: could not connect to host
+xxxred.net: could not connect to host
xy1919.com: could not connect to host
xy6161.com: could not connect to host
xy6262.com: could not connect to host
@@ -16842,7 +18207,9 @@ xy7373.com: could not connect to host
xyndrac.net: max-age too low: 2592000
xynex.us: could not connect to host
xynta.ch: could not connect to host
+xyyp.mn: could not connect to host
xzoneadventure.com: did not receive HSTS header
+xzy.one: did not receive HSTS header
y-o-w.com: did not receive HSTS header
y-s.pw: could not connect to host
y3451.com: could not connect to host
@@ -16850,20 +18217,22 @@ yaay.com.br: could not connect to host
yabrt.cn: could not connect to host
yaccin.com: could not connect to host
yachts-magazine.com: did not receive HSTS header
+yafull.com: could not connect to host
yagi2.com: did not receive HSTS header
yahoo.ax: could not connect to host
yalla.jp: did not receive HSTS header
yamamo10.com: could not connect to host
yameveo.com: did not receive HSTS header
-yangmaodang.org: did not receive HSTS header
+yannikhenke.de: could not connect to host
yanwh.xyz: did not receive HSTS header
+yao-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+yao-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
yaoidreams.com: could not connect to host
yaporn.tv: could not connect to host
-yarchives.jp: could not connect to host
+yarchives.jp: max-age too low: 0
yard-fu.com: could not connect to host
yardbird.us: could not connect to host
yarnhookup.com: did not receive HSTS header
-yarogneva.ru: could not connect to host
yasinaydin.net: did not receive HSTS header
yasutomonodokoiko.com: did not receive HSTS header
yaucy.win: could not connect to host
@@ -16873,7 +18242,6 @@ ycaaz.com: did not receive HSTS header
ycc.wtf: could not connect to host
ycm2.wtf: could not connect to host
ydy.jp: could not connect to host
-yecl.net: did not receive HSTS header
yello.website: could not connect to host
yellowcar.website: could not connect to host
yemalu.com: could not connect to host
@@ -16884,7 +18252,6 @@ yenniferallulli.de: could not connect to host
yenniferallulli.es: did not receive HSTS header
yenniferallulli.moda: could not connect to host
yenniferallulli.nl: could not connect to host
-yenpape.com: did not receive HSTS header
yepbitcoin.com: could not connect to host
yesdevnull.net: did not receive HSTS header
yesfone.com.br: could not connect to host
@@ -16896,9 +18263,12 @@ ygcdyf.com: did not receive HSTS header
yggdar.ga: could not connect to host
yh35.net: max-age too low: 86400
yhori.xyz: could not connect to host
-yhrd.org: did not receive HSTS header
+yhwj.top: could not connect to host
yibaoweilong.top: could not connect to host
yibin0831.com: could not connect to host
+yiffy.tips: did not receive HSTS header
+yiffy.zone: did not receive HSTS header
+yigujin.cn: could not connect to host
yikzu.cn: could not connect to host
yin.roma.it: did not receive HSTS header
yin8888.tv: did not receive HSTS header
@@ -16906,12 +18276,11 @@ ying299.com: could not connect to host
ying299.net: could not connect to host
yinga.ga: did not receive HSTS header
yingsuo.ltd: could not connect to host
-yingyj.com: did not receive HSTS header
+yingyj.com: could not connect to host
yinhe12.net: did not receive HSTS header
-yipingguo.com: did not receive HSTS header
+yipingguo.com: could not connect to host
yippie.nl: could not connect to host
yizhu.com: could not connect to host
-yjsoft.me: could not connect to host
ylilauta.org: could not connect to host
ylk.io: could not connect to host
ynode.co: did not receive HSTS header
@@ -16925,7 +18294,6 @@ yogatrainingrishikesh.com: could not connect to host
yogeshbeniwal.com: did not receive HSTS header
yogoeasy.com: did not receive HSTS header
yohanesmario.com: did not receive HSTS header
-yoimise.net: did not receive HSTS header
yoiyado.info: did not receive HSTS header
yokeepo.com: could not connect to host
yolo-csgo.com: could not connect to host
@@ -16934,6 +18302,7 @@ yoloprod.fr: could not connect to host
yoloseo.com: could not connect to host
yomena.in: could not connect to host
yomepre.com: could not connect to host
+yongbin.org: did not receive HSTS header
yopers.com: did not receive HSTS header
yorkshireterrier.com.br: could not connect to host
yorname.ml: did not receive HSTS header
@@ -16941,9 +18310,8 @@ yoru.me: could not connect to host
yotilabs.com: could not connect to host
youcaitian.com: did not receive HSTS header
youcancraft.de: could not connect to host
-youcanfuckoff.xyz: could not connect to host
youcontrol.ru: could not connect to host
-youdowell.com: could not connect to host
+youdowell.com: did not receive HSTS header
youfencun.com: did not receive HSTS header
youjizz.bz: could not connect to host
youlend.com: did not receive HSTS header
@@ -16953,12 +18321,12 @@ youmonit.me: could not connect to host
youngandunited.nl: did not receive HSTS header
younl.net: could not connect to host
youon.tokyo: did not receive HSTS header
-youran.me: could not connect to host
yourbapp.ch: could not connect to host
yourgame.co.il: did not receive HSTS header
+yourhair.net: could not connect to host
youri.me: could not connect to host
yourlovesong.com.mx: could not connect to host
-yourname.xyz: could not connect to host
+yourname.xyz: did not receive HSTS header
yoursbookstore.jp: max-age too low: 0
yoursecondphone.co: could not connect to host
yourself.today: could not connect to host
@@ -16967,18 +18335,23 @@ yourtrainingsolutions.com: did not receive HSTS header
youruseragent.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
yourznc.com: could not connect to host
yousite.by: could not connect to host
-youth2009.org: did not receive HSTS header
+youth2009.org: max-age too low: 2592000
youtube: could not connect to host
youtubeviews.ml: could not connect to host
youwatchporn.com: could not connect to host
youyoulemon.com: could not connect to host
ypcs.fi: did not receive HSTS header
+ypiresia.fr: could not connect to host
yryz.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ysicing.net: could not connect to host
-yslbeauty.com: did not receive HSTS header
yspeo.com: max-age too low: 2592000
+ysx.me.uk: did not receive HSTS header
+ytb.zone: did not receive HSTS header
+ytbmp3.com: did not receive HSTS header
+ytbmp4.com: did not receive HSTS header
ytcuber.xyz: could not connect to host
ythyth.com: max-age too low: 2592000
+ytpak.com: could not connect to host
ytvwld.de: did not receive HSTS header
yu7.jp: did not receive HSTS header
yuanbenlian.com: did not receive HSTS header
@@ -16990,6 +18363,7 @@ yugege.cf: could not connect to host
yuhen.ru: did not receive HSTS header
yui.cat: did not receive HSTS header
yuka.one: could not connect to host
+yuki-portfolio.com: did not receive HSTS header
yukijinji.moe: did not receive HSTS header
yukiminami.net: could not connect to host
yukimochi.com: could not connect to host
@@ -17013,6 +18387,7 @@ yuqi.me: could not connect to host
yurinet.org: could not connect to host
yuriykuzmin.com: did not receive HSTS header
yutabon.com: could not connect to host
+yutaron.tokyo: did not receive HSTS header
yuushou.com: could not connect to host
yux.fr: could not connect to host
yux.io: did not receive HSTS header
@@ -17020,26 +18395,31 @@ yuxingxin.com: did not receive HSTS header
yuzu.tk: did not receive HSTS header
ywei.org: could not connect to host
ywyz.tech: could not connect to host
+yya.bid: could not connect to host
+yya.men: could not connect to host
+yyrss.com: could not connect to host
z-coder.com: could not connect to host
+z-to-a.com: did not receive HSTS header
z0rro.net: could not connect to host
z33.ch: did not receive HSTS header
z33.co: could not connect to host
z3liff.com: could not connect to host
z3liff.net: could not connect to host
+zaalleatherwear.nl: did not receive HSTS header
zacharopoulos.me: could not connect to host
zachbolinger.com: could not connect to host
+zachpeters.org: did not receive HSTS header
zadieheimlich.com: did not receive HSTS header
+zadroweb.com: did not receive HSTS header
zaem.tv: could not connect to host
zahnrechner-staging.azurewebsites.net: could not connect to host
zahyantechnologies.com: did not receive HSTS header
-zaidan.de: could not connect to host
-zaidan.eu: could not connect to host
-zaidanfood.com: could not connect to host
-zaidanfood.eu: could not connect to host
-zaidanlebensmittelhandel.de: could not connect to host
-zakoncontrol.com: did not receive HSTS header
+zaidan.de: did not receive HSTS header
+zaidan.eu: did not receive HSTS header
+zaidanfood.com: did not receive HSTS header
+zaidanfood.eu: did not receive HSTS header
+zaidanlebensmittelhandel.de: did not receive HSTS header
zalan.do: could not connect to host
-zalohovaniburian.cz: could not connect to host
zamis.net: did not receive HSTS header
zamorano.edu: could not connect to host
zamos.ru: max-age too low: 0
@@ -17049,11 +18429,16 @@ zaoext.com: could not connect to host
zaoshanghao-dajia.rhcloud.com: could not connect to host
zap.yt: could not connect to host
zapatoshechoamano.pe: did not receive HSTS header
+zaptan.info: did not receive HSTS header
+zaptan.net: did not receive HSTS header
+zaptan.org: did not receive HSTS header
+zaptan.us: did not receive HSTS header
zargaripour.com: did not receive HSTS header
zarooba.com: could not connect to host
zavca.com: did not receive HSTS header
zbasenem.pl: did not receive HSTS header
zbchen.com: could not connect to host
+zberger.com: could not connect to host
zbigniewgalucki.eu: did not receive HSTS header
zbp.at: did not receive HSTS header
zby.io: could not connect to host
@@ -17061,7 +18446,7 @@ zdravotnickasluzba.eu: could not connect to host
zdrowiepaleo.pl: did not receive HSTS header
zdx.ch: max-age too low: 0
zeb.fun: could not connect to host
-zebibyte.cn: did not receive HSTS header
+zebibyte.cn: could not connect to host
zebrababy.cn: could not connect to host
zebry.nl: did not receive HSTS header
zecrypto.com: could not connect to host
@@ -17073,10 +18458,11 @@ zehntner.ch: max-age too low: 3600
zeitzer-turngala.de: could not connect to host
zelfmoord.ga: could not connect to host
zelfstandigemakelaars.net: could not connect to host
-zellari.ru: could not connect to host
+zellari.ru: did not receive HSTS header
zeloz.xyz: could not connect to host
-zenghx.tk: could not connect to host
+zenfusion.fr: could not connect to host
zenhaiku.com: could not connect to host
+zenics.co.uk: did not receive HSTS header
zeno-system.com: did not receive HSTS header
zenpayroll.com: did not receive HSTS header
zentience.dk: did not receive HSTS header
@@ -17088,7 +18474,6 @@ zentralwolke.de: did not receive HSTS header
zenvite.com: could not connect to host
zenwears.com: could not connect to host
zenycosta.com: could not connect to host
-zeparadox.com: did not receive HSTS header
zepect.com: did not receive HSTS header
zera.com.au: could not connect to host
zerekin.net: max-age too low: 86400
@@ -17097,10 +18482,10 @@ zero-x-baadf00d.com: could not connect to host
zerocool.io: could not connect to host
zeroday.sk: did not receive HSTS header
zerofox.gq: could not connect to host
-zerolab.org: could not connect to host
zeroling.com: could not connect to host
zeroml.ml: could not connect to host
zerosource.net: could not connect to host
+zerowastesonoma.gov: could not connect to host
zerudi.com: did not receive HSTS header
zetadisseny.es: did not receive HSTS header
zeto365.pl: did not receive HSTS header
@@ -17126,14 +18511,13 @@ zhihua-lai.com: did not receive HSTS header
zhiin.net: could not connect to host
zhikin.com: could not connect to host
zhimajk.com: could not connect to host
-zhome.info: could not connect to host
+zhiwei.me: did not receive HSTS header
zhoujiashu.com: could not connect to host
zhuji.com: could not connect to host
zhuji.com.cn: could not connect to host
zhuji5.com: could not connect to host
zhujicaihong.com: could not connect to host
zhuweiyou.com: did not receive HSTS header
-zi.is: could not connect to host
zi0r.com: did not receive HSTS header
zian.online: could not connect to host
zicklam.com: could not connect to host
@@ -17145,19 +18529,19 @@ zinenapse.info: could not connect to host
zippy-download.com: could not connect to host
zippy-download.de: could not connect to host
zirtue.io: could not connect to host
+zitrone44.de: did not receive HSTS header
zivagold.com: did not receive HSTS header
-zivver.com: could not connect to host
zivy-ruzenec.cz: could not connect to host
zixo.sk: could not connect to host
ziyuanabc.xyz: could not connect to host
-ziz.exchange: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ziz.exchange: could not connect to host
zizoo.com: did not receive HSTS header
-zju.tv: could not connect to host
+zju.tv: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
zjubtv.com: could not connect to host
zjutv.com: could not connect to host
zkillboard.com: did not receive HSTS header
zking.ga: could not connect to host
-zlc1994.com: did not receive HSTS header
+zlc1994.com: could not connect to host
zlcp.com: could not connect to host
zmsastro.co.za: could not connect to host
zmscable.com: did not receive HSTS header
@@ -17191,26 +18575,30 @@ zooxdata.com: could not connect to host
zorki.nl: did not receive HSTS header
zortium.report: could not connect to host
zorz.info: could not connect to host
-zouyaoji.top: did not receive HSTS header
zoznamrealit.sk: did not receive HSTS header
zpy.fun: could not connect to host
zq789.com: could not connect to host
zqhong.com: could not connect to host
zqjs.tk: could not connect to host
zqwqz.com: could not connect to host
+zrhdwz.cn: could not connect to host
zrkr.de: could not connect to host
zrn.in: did not receive HSTS header
ztan.tk: could not connect to host
ztcaoll222.cn: could not connect to host
ztytian.com: could not connect to host
zuan-in.com: could not connect to host
+zuan-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+zubora.co: could not connect to host
zubro.net: could not connect to host
zuckerfloh.de: did not receive HSTS header
zudomc.me: could not connect to host
zuehlcke.de: could not connect to host
zukix.com: could not connect to host
zulu7.com: did not receive HSTS header
+zunda.cafe: did not receive HSTS header
zunftmarke.de: did not receive HSTS header
+zurickrelogios.com.br: did not receive HSTS header
zutsu-raku.com: did not receive HSTS header
zuviel.space: could not connect to host
zvejonys.lt: did not receive HSTS header
@@ -17219,6 +18607,8 @@ zvz.im: could not connect to host
zwembadheeten.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
zx1168.com: could not connect to host
zx2268.com: could not connect to host
+zxavier.com: did not receive HSTS header
+zxc.science: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
zxity.co.uk: could not connect to host
zxity.ltd: could not connect to host
zxity.uk: could not connect to host
@@ -17228,6 +18618,7 @@ zync.ca: did not receive HSTS header
zypgr.com: could not connect to host
zypr.pw: could not connect to host
zyso.org: could not connect to host
+zz295.com: did not receive HSTS header
zzb510.com: could not connect to host
zzb6688.com: could not connect to host
zzb8899.com: could not connect to host
diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc
index 8dab9a1ee..66c7922fa 100644
--- a/security/manager/ssl/nsSTSPreloadList.inc
+++ b/security/manager/ssl/nsSTSPreloadList.inc
@@ -8,7 +8,7 @@
/*****************************************************************************/
#include <stdint.h>
-const PRTime gPreloadListExpirationTime = INT64_C(1547572131850000);
+const PRTime gPreloadListExpirationTime = INT64_C(1551523663318000);
class nsSTSPreload
{
@@ -18,22 +18,8 @@ class nsSTSPreload
};
static const nsSTSPreload kSTSPreloadList[] = {
- { "00100010.net", true },
{ "0010100.net", true },
- { "00120012.net", true },
- { "00130013.net", true },
- { "00140014.net", true },
- { "00150015.net", true },
- { "00160016.net", true },
- { "00180018.net", true },
- { "00190019.net", true },
- { "00330033.net", true },
- { "00440044.net", true },
- { "00550055.net", true },
- { "00660066.net", true },
- { "00770077.net", true },
{ "0086286.com", true },
- { "00990099.net", true },
{ "00dani.me", true },
{ "00f.net", true },
{ "0100dev.com", false },
@@ -42,7 +28,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "01110000011100110111001001100111.com", true },
{ "01electronica.com.ar", true },
{ "01seguridad.com.ar", true },
- { "01smh.com", true },
{ "022367.com", true },
{ "022379.com", true },
{ "022391.com", true },
@@ -60,19 +45,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "02607.com", true },
{ "026122.com", true },
{ "02638.net", true },
- { "02smh.com", true },
- { "0311buy.cn", true },
{ "03170317.com", true },
{ "0391315.com", true },
{ "046569.com", true },
- { "04sun.com", true },
{ "050.ca", true },
{ "050media.nl", true },
{ "0511315.net", true },
+ { "0513c.com", true },
{ "0573wk.com", true },
{ "06091994.xyz", true },
{ "06se.com", true },
- { "07733.win", true },
{ "0788yh.com", true },
{ "0792112.com", true },
{ "0809yh.com", true },
@@ -101,9 +83,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "083912.com", true },
{ "083957.com", true },
{ "083960.com", true },
- { "083962.com", true },
{ "083965.com", true },
{ "083967.com", true },
+ { "08detaxe.fr", true },
{ "09115.com", true },
{ "0916app.com", true },
{ "09892.net", true },
@@ -125,10 +107,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "0x0.li", true },
{ "0x00ff00ff.com", true },
{ "0x17.de", true },
+ { "0x378.net", true },
+ { "0x48.pw", true },
{ "0x52.net", true },
{ "0x7d.com", true },
{ "0x7fffffff.net", true },
{ "0x90.io", true },
+ { "0xaa55.me", true },
{ "0xabe.io", true },
{ "0xacab.org", true },
{ "0xda.de", true },
@@ -142,6 +127,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "100-downloads.com", true },
{ "10000v.ru", true },
{ "1000minds.com", true },
+ { "1000serien.com", true },
{ "1001carats.fr", true },
{ "1001kartini.com", true },
{ "1001kerstpakketten.com", false },
@@ -173,19 +159,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "10hz.de", true },
{ "10og.de", true },
{ "10ppm.com", true },
- { "10seos.com", true },
- { "1100.so", true },
- { "110110110.net", true },
- { "112112112.net", true },
+ { "10xiuxiu.com", true },
{ "112app.nl", true },
{ "112hz.com", true },
- { "113113113.net", true },
{ "114514ss.com", true },
{ "1177107.com", true },
- { "118118118.net", true },
{ "11dzon.com", true },
{ "11loc.de", true },
- { "11scc.com", true },
{ "11thstreetcoffee.com", true },
{ "11urss.com", true },
{ "1212873467.rsc.cdn77.org", true },
@@ -206,8 +186,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "123plons.nl", true },
{ "123roulement.be", true },
{ "123roulement.com", true },
- { "123test.com", true },
- { "123test.nl", true },
{ "123writings.com", true },
{ "124133.com", true },
{ "124633.com", true },
@@ -216,6 +194,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1288fc.com", true },
{ "12photos.eu", true },
{ "12thmanrising.com", true },
+ { "12train.com", true },
{ "12vpn.net", true },
{ "130.ua", true },
{ "132kv.ch", true },
@@ -234,16 +213,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1464424382.rsc.cdn77.org", true },
{ "146533.com", true },
{ "146733.com", true },
- { "1481481.com", true },
- { "1481481.net", true },
- { "1481482.com", true },
- { "1481482.net", true },
- { "1481483.com", true },
- { "1481483.net", true },
- { "1481485.com", true },
- { "1481485.net", true },
- { "1481486.com", true },
- { "1481486.net", true },
{ "149433.com", true },
{ "149733.com", true },
{ "14it.de", true },
@@ -257,39 +226,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "156433.com", true },
{ "1590284872.rsc.cdn77.org", true },
{ "1600esplanade.com", true },
+ { "160887.com", true },
{ "1644091933.rsc.cdn77.org", true },
{ "1661237.com", true },
- { "166166.com", true },
- { "168bo9.com", true },
- { "168bo9.net", true },
{ "16book.org", true },
- { "1750studios.com", false },
+ { "1768calc.com.au", true },
{ "1811559.com", true },
{ "1844329061.rsc.cdn77.org", true },
{ "1876996.com", true },
- { "188da.com", true },
{ "188dv.com", true },
- { "189dv.com", true },
+ { "1895media.com", true },
{ "189fc.com", true },
{ "18celebration.com", true },
{ "18celebration.org", true },
{ "18f.gov", true },
{ "18f.gsa.gov", false },
+ { "1911trust.com", true },
{ "192168ll.repair", true },
{ "192433.com", true },
{ "1972969867.rsc.cdn77.org", true },
{ "1981612088.rsc.cdn77.org", true },
+ { "19area.cn", true },
{ "19hundert84.de", true },
{ "1a-diamantscheiben.de", true },
{ "1a-vermessung.at", true },
{ "1a-werkstattgeraete.de", true },
{ "1ab-machinery.com", true },
- { "1aim.com", true },
- { "1b1.pl", true },
{ "1c-power.ru", true },
{ "1cover.co.nz", true },
{ "1cover.com.au", true },
{ "1e9.nl", true },
+ { "1europlan.nl", true },
{ "1f123.net", true },
{ "1fach-digital.de", true },
{ "1hourproofreading.com", true },
@@ -300,10 +267,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1kmi.co", true },
{ "1ll.uk", true },
{ "1lord1faith.com", true },
- { "1m.duckdns.org", true },
{ "1montre.fr", true },
{ "1morebounce.co.uk", true },
{ "1nfr.com", false },
+ { "1oaklasvegas.com", true },
{ "1of16.de", true },
{ "1on1on1.de", true },
{ "1on1on1.tv", true },
@@ -312,12 +279,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1password.ca", true },
{ "1password.com", true },
{ "1password.eu", true },
+ { "1pw.ca", true },
{ "1px.tv", true },
- { "1q2w.nl", true },
{ "1r.is", true },
{ "1rs.nl", true },
- { "1salland.nl", true },
{ "1scope.com", true },
+ { "1se.co", true },
{ "1se2or3.com", true },
{ "1st-bounce.co.uk", true },
{ "1st-community.de", true },
@@ -331,32 +298,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1wl.uk", true },
{ "2.wtf", true },
{ "200.network", true },
- { "200fcw.com", true },
- { "2048-spiel.de", true },
+ { "2012.ovh", true },
{ "20at.com", true },
{ "20denier.com", true },
- { "21.co.uk", true },
{ "215dy.net", true },
{ "21sthammersmith.org.uk", true },
+ { "21stnc.us", true },
{ "21x9.org", true },
{ "2222yh.com", true },
{ "22digital.agency", true },
- { "22scc.com", true },
{ "230beats.com", true },
+ { "23333.link", true },
+ { "2333666.xyz", true },
{ "2333blog.com", true },
{ "233abc.com", true },
{ "233blog.com", true },
{ "233boy.com", true },
{ "233bwg.com", true },
{ "233hugo.com", true },
+ { "233ss.net", true },
{ "233vps.com", true },
{ "24-7.jp", true },
+ { "245meadowvistaway.com", true },
{ "246060.ru", true },
- { "247exchange.com", true },
{ "247healthshop.com", true },
{ "247medplan.com", true },
+ { "2495dentalimplants.com", true },
{ "24dian30.com", true },
{ "24hour-locksmithsanantonio.com", true },
+ { "24hourcyclist.co.uk", true },
{ "24hourlocksmithbaltimore.com", true },
{ "24hourlocksmithdallastx.com", true },
{ "24hourlocksmithdetroit.com", true },
@@ -368,30 +338,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "24timeravis.dk", true },
{ "24zpravy.cz", true },
{ "256pages.com", false },
- { "258da.com", true },
{ "25reinyan25.net", true },
{ "2600edinburgh.org", true },
{ "2600hq.com", true },
+ { "260887.com", true },
{ "263.info", true },
+ { "2718282.net", true },
{ "28-industries.com", true },
{ "281180.de", true },
{ "2858958.com", true },
- { "286.com", true },
- { "288da.com", true },
{ "28peaks.com", true },
{ "28spots.net", true },
{ "291167.xyz", true },
{ "2912.nl", true },
{ "2948.ca", true },
{ "297computers.com", true },
- { "298da.com", true },
{ "2991236.com", true },
{ "2au.ru", true },
{ "2bas.nl", true },
{ "2bcompany.ch", true },
{ "2bis10.de", true },
{ "2bougie.com", true },
- { "2bouncy.com", true },
{ "2c-b.com", true },
{ "2c-d.com", true },
{ "2c-e.com", true },
@@ -399,10 +366,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "2c-t-7.com", true },
{ "2c-t-8.com", true },
{ "2cash.ru", true },
+ { "2chan.eu", true },
+ { "2chan.jp", true },
{ "2cv-fahrer.de", true },
{ "2fm.ie", true },
{ "2fraud.pro", true },
{ "2g1s.net", true },
+ { "2gen.com", true },
{ "2h-nagoya.org", true },
{ "2heartsbookings.co.uk", true },
{ "2hypeenterprises.com", true },
@@ -411,6 +381,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "2li.ch", true },
{ "2manydots.nl", true },
{ "2mb.solutions", true },
+ { "2mir.com", true },
{ "2nains.ch", true },
{ "2nerds1bit.com", true },
{ "2nics.net", true },
@@ -469,7 +440,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "33445333.com", true },
{ "33445444.com", true },
{ "33836.com", true },
- { "33scc.com", true },
{ "340422.com", true },
{ "340622.com", true },
{ "340922.com", true },
@@ -518,23 +488,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "354922.com", true },
{ "354933.com", true },
{ "356433.com", true },
+ { "357maelai.co", true },
{ "360live.fr", true },
{ "360rail.nl", true },
- { "360woodworking.com", true },
+ { "360vrs.com", true },
{ "364553.com", true },
{ "365365.com", true },
+ { "365beautyworld.com", true },
{ "365daysreview.com", true },
{ "365healthworld.com", true },
{ "365propertybuyer.co.uk", true },
{ "365skulls.com", true },
{ "370422.com", true },
{ "371422.com", true },
+ { "371cloud.com", true },
{ "373422.com", true },
{ "374933.com", true },
{ "375422.com", true },
{ "379700.com", true },
{ "380422.com", true },
- { "388da.com", true },
{ "390422.com", true },
{ "392422.com", true },
{ "393335.ml", true },
@@ -560,6 +532,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3circlefunding.ch", true },
{ "3countiescastlehire.co.uk", true },
{ "3cs.ch", true },
+ { "3d-fotoservice.de", true },
{ "3deeplearner.com", true },
{ "3djuegos.com", true },
{ "3dmedium.de", true },
@@ -599,16 +572,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3tribes.co.uk", true },
{ "3typen.tv", true },
{ "3v4l.org", true },
- { "3weekdietworks.com", true },
{ "4-1-where.com", true },
{ "4-it.de", true },
- { "4000milestare.com", true },
+ { "4000milestare.com", false },
{ "403.ch", true },
{ "404notfound.com.br", true },
{ "4096b.com", true },
{ "4096bit.de", false },
{ "40acts.org.uk", true },
{ "41-where.com", true },
+ { "411416.com", true },
{ "41199.com", true },
{ "411film.com", true },
{ "411movie.com", true },
@@ -616,15 +589,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "41studio.com", true },
{ "41where.com", true },
{ "420java.com", true },
- { "439050.com", true },
+ { "440887.com", true },
{ "441jj.com", false },
+ { "442887.com", true },
+ { "443887.com", true },
{ "4444yh.com", true },
- { "448da.com", true },
- { "44scc.com", true },
+ { "444887.com", true },
+ { "445887.com", true },
{ "451.ooo", true },
{ "4553s.com", true },
{ "4553vip.com", true },
+ { "4706666.com", true },
+ { "4716666.com", true },
+ { "4726666.com", true },
{ "4736666.com", true },
+ { "4756666.com", true },
+ { "4786666.com", true },
{ "47essays.com", true },
{ "491mhz.net", true },
{ "49889.com", true },
@@ -653,7 +633,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "4vf.de", true },
{ "4x.fi", true },
{ "4x4.lk", true },
+ { "4x4tt.com", true },
{ "4xlabs.co", true },
+ { "50.gd", true },
{ "50.pe", true },
{ "500a500.com", true },
{ "500b500.com", true },
@@ -661,7 +643,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "500d500.com", true },
{ "500e500.com", true },
{ "500f500.com", true },
- { "500fcw.com", true },
{ "500g500.com", true },
{ "500h500.com", true },
{ "500i500.com", true },
@@ -690,7 +671,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "506pay.com", true },
{ "508088.com", true },
{ "50lakeshore.com", true },
- { "50ma.xyz", true },
{ "50north.de", true },
{ "50plusnet.nl", true },
{ "514122.com", true },
@@ -702,9 +682,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "51877.net", true },
{ "519422.com", true },
{ "51acg.eu.org", true },
+ { "51aifuli.com", true },
{ "51tiaojiu.com", true },
- { "5214889.com", true },
- { "5214889.net", true },
{ "524022.com", true },
{ "524622.com", true },
{ "524922.com", true },
@@ -713,17 +692,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "52kb365.com", true },
{ "52ncp.net", true },
{ "52sykb.com", true },
- { "5310899.com", true },
- { "5310899.net", true },
{ "531422.com", true },
{ "534122.com", true },
{ "534622.com", true },
{ "534922.com", true },
- { "5364.com", true },
{ "536422.com", true },
{ "5364b.com", true },
{ "5364c.com", true },
{ "5364d.com", true },
+ { "5364jc.com", true },
{ "53ningen.com", true },
{ "540922.com", true },
{ "541022.com", true },
@@ -736,9 +713,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "5518k3.com", true },
{ "5533445.com", true },
{ "5555yh.com", true },
+ { "55639.com", true },
{ "55797.com", true },
{ "558da.com", true },
- { "55scc.com", true },
{ "576422.com", true },
{ "579422.com", true },
{ "57he.com", true },
@@ -754,20 +731,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "594622.com", true },
{ "595422.com", true },
{ "596422.com", true },
- { "598598598.net", true },
{ "5986fc.com", true },
{ "5997891.com", true },
{ "5apps.com", true },
{ "5c1fd0f31022cbc40af9f785847baaf9.space", true },
{ "5crowd.com", true },
{ "5dm.tv", true },
+ { "5dwin.com", true },
+ { "5dwin.net", true },
{ "5francs.com", true },
{ "5gb.space", true },
{ "5kraceforals.com", true },
{ "5percentperweek.com", true },
{ "5starbouncycastlehire.co.uk", true },
{ "5thchichesterscouts.org.uk", true },
- { "5w5.la", true },
{ "5y.fi", true },
{ "602422.com", true },
{ "604122.com", true },
@@ -830,9 +807,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "646722.com", true },
{ "649022.com", true },
{ "649622.com", true },
- { "64970.com", true },
{ "649722.com", true },
{ "649822.com", true },
+ { "64bitservers.net", false },
{ "651422.com", true },
{ "652422.com", true },
{ "6541166.com", true },
@@ -850,9 +827,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "6548877.com", true },
{ "656088.com", true },
{ "659422.com", true },
+ { "65d88.com", true },
{ "66136.com", true },
{ "6616fc.com", true },
- { "66205.net", true },
{ "6633445.com", true },
{ "6652566.com", true },
{ "6660111.ru", true },
@@ -860,7 +837,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "666668722.com", true },
{ "6666yh.com", true },
{ "666omg.com", true },
- { "668da.com", true },
+ { "6677.us", true },
+ { "66b.com", true },
{ "66bwf.com", true },
{ "670422.com", true },
{ "671422.com", true },
@@ -869,6 +847,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "676422.com", true },
{ "679422.com", true },
{ "680422.com", true },
+ { "68277.me", true },
{ "686848.com", true },
{ "690422.com", true },
{ "691422.com", true },
@@ -882,13 +861,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "6997896.com", true },
{ "69butterfly.com", true },
{ "69fps.gg", true },
+ { "69wasted.net", true },
{ "6lo.zgora.pl", true },
{ "6pm.com", true },
{ "6t-montjoye.org", true },
- { "6w6.la", true },
{ "700.az", true },
{ "704233.com", true },
{ "704533.com", true },
+ { "7045h.com", true },
{ "704633.com", true },
{ "712433.com", true },
{ "713433.com", true },
@@ -909,23 +889,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "736433.com", true },
{ "738433.com", true },
{ "739433.com", true },
+ { "73info.com", false },
{ "740833.com", true },
{ "741833.com", true },
{ "742833.com", true },
{ "743833.com", true },
{ "74th.jp", true },
{ "755k3.com", true },
- { "7570.com", true },
{ "762.ch", true },
- { "772244.net", true },
{ "7733445.com", true },
{ "7777yh.com", true },
{ "777coin.com", true },
- { "778da.com", true },
{ "783lab.com", true },
{ "787k3.com", true },
{ "7885765.com", true },
- { "788da.com", true },
{ "7891553.com", true },
{ "7891997.com", true },
{ "7careconnect.com", true },
@@ -940,7 +917,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "7thcircledesigns.com", true },
{ "7trade8.com", true },
{ "7x24servis.com", true },
- { "80036.com", true },
{ "804322.com", true },
{ "8086.cf", true },
{ "809422.com", true },
@@ -949,6 +925,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "8189196.com", true },
{ "818bwf.com", true },
{ "818da.com", true },
+ { "8349822.com", true },
{ "8522.com", true },
{ "8522club.com", true },
{ "8522hk.com", true },
@@ -972,33 +949,95 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "8818k3.com", true },
{ "8833445.com", true },
{ "88522am.com", true },
+ { "887.ag", true },
+ { "8876007.com", true },
+ { "8876008.com", true },
+ { "8876009.com", true },
+ { "8876138.com", true },
+ { "8876205.com", true },
+ { "8876278.com", true },
+ { "8876289.com", true },
+ { "8876290.com", true },
+ { "8876353.com", true },
+ { "8876389.com", true },
+ { "8876520.com", true },
+ { "8876578.com", true },
+ { "8876598.com", true },
+ { "8876655.com", true },
+ { "8876660.com", true },
+ { "8876687.com", true },
+ { "8876764.com", true },
+ { "8876770.com", true },
+ { "8876775.com", true },
+ { "8876776.com", true },
+ { "8876779.com", true },
+ { "8876808.com", true },
+ { "8876818.com", true },
+ { "8876822.com", true },
+ { "8876832.com", true },
+ { "8876835.com", true },
+ { "8876838.com", true },
+ { "8876858.com", true },
+ { "8876859.com", true },
+ { "8876866.com", true },
+ { "8876878.com", true },
+ { "8876879.com", true },
+ { "8876881.com", true },
+ { "8876882.com", true },
+ { "8876883.com", true },
+ { "8876898.com", true },
+ { "8876900.com", true },
+ { "8876955.com", true },
+ { "8876979.com", true },
+ { "8876987.com", true },
+ { "8876989.com", true },
+ { "8876991.com", true },
+ { "8876992.com", true },
+ { "8876996.com", true },
+ { "8880013.com", true },
+ { "8880021.com", true },
+ { "8880023.com", true },
+ { "8880025.com", true },
+ { "8880057.com", true },
+ { "8880059.com", true },
+ { "8880067.com", true },
+ { "8880083.com", true },
+ { "8880100.com", true },
+ { "8884553.com", true },
+ { "8886737.com", true },
+ { "8886739.com", true },
+ { "8886793.com", true },
+ { "8886806.com", true },
+ { "8886860.com", true },
{ "888888722.com", true },
{ "88889822.com", true },
- { "8888esb.com", true },
{ "8888yh.com", true },
+ { "8889457.com", true },
+ { "8889458.com", true },
+ { "8889466.com", true },
+ { "8889563.com", true },
+ { "8889709.com", true },
+ { "8889729.com", true },
+ { "8889792.com", true },
+ { "8889807.com", true },
+ { "8889809.com", true },
+ { "8889819.com", true },
+ { "8889870.com", true },
+ { "8889881.com", true },
+ { "8889890.com", true },
+ { "8889893.com", true },
+ { "8889903.com", true },
+ { "8889910.com", true },
{ "888bwf.com", true },
- { "888msc.vip", true },
+ { "888funcity.com", true },
+ { "888funcity.net", true },
{ "88bwf.com", true },
- { "8901178.com", true },
- { "8901178.net", true },
- { "8910899.com", true },
- { "8910899.net", true },
- { "8917168.com", true },
- { "8917168.net", true },
- { "8917818.com", true },
- { "8917818.net", true },
- { "8951889.com", true },
- { "8951889.net", true },
- { "8992088.com", true },
- { "8992088.net", true },
{ "8ack.de", true },
{ "8ackprotect.com", true },
{ "8da188.com", true },
- { "8da2017.com", true },
{ "8da222.com", true },
{ "8da88.com", true },
{ "8da999.com", true },
- { "8dabet.com", true },
{ "8hrs.net", true },
{ "8maerz.at", true },
{ "8pecxstudios.com", true },
@@ -1008,15 +1047,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "8tech.com.hk", true },
{ "8thportsmouth.org.uk", true },
{ "8tuffbeers.com", true },
- { "8ung.online", true },
- { "8xx.bet", true },
- { "8xx.io", true },
- { "8xx888.com", true },
{ "8xxbet.net", true },
{ "9-11commission.gov", true },
{ "903422.com", true },
{ "905422.com", true },
{ "90r.jp", true },
+ { "910kj.com", true },
{ "9118.com", true },
{ "911commission.gov", true },
{ "912422.com", true },
@@ -1045,11 +1081,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "949122.com", true },
{ "949622.com", true },
{ "949722.com", true },
- { "9500years.com", true },
{ "9679693.com", true },
{ "9681909.com", true },
- { "9696178.com", true },
- { "9696178.net", true },
{ "972422.com", true },
{ "9788876.com", true },
{ "97bros.com", true },
@@ -1073,7 +1106,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "99999822.com", true },
{ "999998722.com", true },
{ "99rst.org", true },
- { "9bingo.net", true },
{ "9farm.com", true },
{ "9fvip.net", true },
{ "9jajuice.com", true },
@@ -1082,39 +1114,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "9tolife.be", true },
{ "9uelle.jp", true },
{ "9vx.org", true },
- { "9won.kr", true },
{ "9y.at", true },
{ "9yw.me", true },
{ "a-1basements.com", true },
{ "a-1indianawaterproofing.com", true },
{ "a-allard.be", true },
{ "a-classinflatables.co.uk", true },
+ { "a-invest.de", true },
{ "a-little-linux-box.at", true },
{ "a-msystems.com", true },
{ "a-oben.org", true },
{ "a-starbouncycastles.co.uk", true },
{ "a-wife.net", true },
+ { "a-ztransmission.com", true },
{ "a0print.nl", true },
{ "a1bouncycastlehire.com", true },
{ "a1jumpandbounce.co.uk", true },
{ "a1moldsolutions.com", true },
{ "a1scuba.com", true },
{ "a1scubastore.com", true },
- { "a2a.net", true },
{ "a2nutrition.com.au", true },
{ "a3.pm", true },
{ "a4sound.com", true },
{ "a632079.me", true },
{ "a7m2.me", true },
+ { "a8q.org", true },
{ "aa-tour.ru", true },
{ "aa1718.net", true },
- { "aa43d.cn", true },
- { "aa6688.net", true },
{ "aaapl.com", true },
{ "aabanet.com.br", true },
{ "aaben-bank.dk", true },
{ "aabenbank.dk", true },
{ "aacfree.com", true },
+ { "aaex.cloud", true },
{ "aagetransport.no", true },
{ "aalalbayt.com", true },
{ "aalalbayt.net", true },
@@ -1127,11 +1159,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aanmpc.com", true },
{ "aaomidi.com", true },
{ "aapas.org.ar", true },
- { "aardvarksolutions.co.za", true },
{ "aarkue.eu", true },
- { "aaron.cm", false },
+ { "aaron.cm", true },
{ "aaron.xin", true },
+ { "aaronburt.co.uk", true },
{ "aaronhorler.com", true },
+ { "aaronhorler.com.au", true },
{ "aaronkimmig.de", true },
{ "aaronroyle.com", true },
{ "aaronsilber.me", true },
@@ -1139,15 +1172,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aati.be", true },
{ "aati.info", true },
{ "aavienna.com", true },
- { "ab-bauservice-berlin.de", true },
{ "abaapplianceservice.com", true },
{ "abaaustin.com", true },
- { "abacus-events.co.uk", true },
{ "abacusbouncycastle.co.uk", true },
{ "abacustech.co.jp", true },
- { "abacustech.net", true },
- { "abacustech.org", true },
{ "abandonedmines.gov", true },
+ { "abateroad66.it", true },
{ "abbadabbabouncycastles.co.uk", true },
{ "abbas.ch", true },
{ "abborsjo.fi", true },
@@ -1159,6 +1189,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abc.li", true },
{ "abcbouncycastlessurrey.co.uk", true },
{ "abcbouncyfactory.co.uk", true },
+ { "abcdef.be", true },
{ "abcheck.se", true },
{ "abckam.com", true },
{ "abcpartyhire.com", true },
@@ -1172,7 +1203,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abeestrada.com", false },
{ "abeilles-idapi.fr", true },
{ "abenteuer-ahnenforschung.de", true },
- { "aberdeenalmeras.com", true },
{ "aberdeencastles.co.uk", true },
{ "aberdeenjudo.co.uk", true },
{ "abeus.com", true },
@@ -1185,9 +1215,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abilitycaresoftware.com", true },
{ "abilitynet.org.uk", true },
{ "abilityone.gov", true },
+ { "abilma.com", true },
{ "abilymp06.net", true },
{ "abimelec.com", true },
{ "abinyah.com", true },
+ { "abitidalavoro.roma.it", true },
{ "abitur97ag.de", true },
{ "abiturma.de", true },
{ "ablak-nyilaszaro.info", true },
@@ -1234,14 +1266,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aboutyou.ch", true },
{ "aboutyou.de", true },
{ "aboutyou.nl", true },
+ { "aboveaverageplumbing.com", true },
{ "abox-kb.com", true },
{ "abpis.hr", true },
+ { "abracadabra.co.jp", false },
{ "abrakidabra.com.br", true },
- { "abraxan.pro", true },
{ "abrilect.com", true },
{ "abristolgeek.co.uk", true },
{ "abseits.org", true },
{ "absolem.cc", true },
+ { "absoluteautobody.com", true },
{ "absolutedouble.co.uk", true },
{ "absolutehaitian.com", true },
{ "absolutehosting.co.za", true },
@@ -1261,13 +1295,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abvlbasketviganello.ch", true },
{ "abyssproject.net", true },
{ "ac-admin.pl", true },
- { "ac-epmservices.com", true },
{ "ac-town.com", true },
{ "ac0g.dyndns.org", true },
{ "aca-creative.co.uk", true },
{ "academicexperts.us", true },
{ "academichealthscience.net", true },
{ "academie-de-police.ch", true },
+ { "academkin.com", true },
{ "academytv.com.au", true },
{ "acaeum.com", true },
{ "acampar.com.br", true },
@@ -1276,7 +1310,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acareer.in", true },
{ "acat.io", true },
{ "acbrussels-used.be", true },
- { "accadoro.it", true },
{ "accelaway.com", true },
{ "acceleratenetworks.com", true },
{ "accelerateyourworld.org", true },
@@ -1300,8 +1333,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "accpodcast.com", true },
{ "accredit.ly", true },
{ "accudraftpaintbooths.com", true },
+ { "accurateautobodywa.com", true },
{ "accuritconsulting.com", true },
{ "accuritpresence.com", true },
+ { "accutint.com", true },
{ "ace.media", true },
{ "ace.one", true },
{ "acealters.com", true },
@@ -1329,6 +1364,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acheter-ethylotest.fr", true },
{ "achromatisch.de", true },
{ "achterblog.de", true },
+ { "achterstieg.dedyn.io", true },
{ "achtzehn.eu", true },
{ "achtzehnterachter.de", true },
{ "achtzig20.de", true },
@@ -1339,6 +1375,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aciksite.com", true },
{ "ackermann.ch", true },
{ "ackis.duckdns.org", false },
+ { "acklandstainless.com.au", true },
+ { "acl.gov", true },
{ "aclu.org", false },
{ "acluva.org", false },
{ "acme.beer", true },
@@ -1357,10 +1395,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acoustics.network", true },
{ "acoustics.tech", true },
{ "acoustique-tardy.com", true },
+ { "acpcoils.com", true },
{ "acperu.ch", true },
{ "acquisition.gov", true },
{ "acquistareviagragenericoitalia.net", true },
- { "acraft.org", true },
{ "acrealux.lu", true },
{ "acrepairgeorgetown.com", true },
{ "acrepairhutto.com", true },
@@ -1377,13 +1415,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acs-chantal.com", true },
{ "acsbbs.org", true },
{ "acsc.gov.au", true },
+ { "acscbasket.com", true },
{ "acsemb.org", true },
- { "acsihostingsolutions.com", true },
{ "acsports.ca", true },
{ "actc.org.uk", true },
{ "actc81.fr", true },
{ "actgruppe.de", true },
{ "actiefgeld.nl", true },
+ { "actioncleaningnd.com", true },
{ "actionlabs.net", true },
{ "actionmadagascar.ch", true },
{ "actionsack.com", true },
@@ -1393,6 +1432,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "active-tluszcz.pl", true },
{ "active.hu", false },
{ "activecare-monitor.com", true },
+ { "activeexcavator.com", true },
{ "activehire.co.uk", true },
{ "activeleisure.ie", true },
{ "activeworld.net", false },
@@ -1404,7 +1444,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "actors-cafe.net", true },
{ "actorsroom.com", true },
{ "actserv.co.ke", true },
+ { "actualadmins.com", true },
+ { "actualidadecommerce.com", true },
+ { "actualidadgadget.com", true },
{ "actualidadiphone.com", true },
+ { "actualidadkd.com", true },
{ "actualidadmotor.com", true },
{ "acuica.co.uk", false },
{ "acul.me", true },
@@ -1412,8 +1456,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acus.gov", true },
{ "acwcerts.co.uk", true },
{ "acwi.gov", true },
+ { "acy.com", true },
{ "acyfxasia.com", true },
- { "acyume.com", true },
{ "ad-notam.asia", true },
{ "ad-notam.ch", true },
{ "ad-notam.co.uk", true },
@@ -1423,7 +1467,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ad-notam.it", true },
{ "ad-notam.pt", true },
{ "ad-notam.us", true },
- { "ad13.in", true },
{ "ada.gov", true },
{ "adalis.org", true },
{ "adam-ant.co.uk", true },
@@ -1443,6 +1486,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adams.dk", true },
{ "adamsbouncycastles.co.uk", true },
{ "adamstas.com", true },
+ { "adamwallington.co.uk", true },
{ "adamwilcox.org", true },
{ "adamyuan.xyz", true },
{ "adapt-elektronik.com", true },
@@ -1450,6 +1494,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adaptablesecurity.org", true },
{ "adapti.de", true },
{ "adaptivemechanics.edu.au", true },
+ { "adarshthapa.in", true },
{ "adawolfa.cz", true },
{ "adayinthelifeof.nl", true },
{ "adblockextreme.com", true },
@@ -1458,7 +1503,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "addeekt.com", true },
{ "adderall.space", true },
{ "addicional.com", true },
+ { "addictionresource.com", true },
{ "addictively.com", true },
+ { "addiko.net", true },
{ "addisoncrump.info", true },
{ "addnine.com", true },
{ "addon.watch", true },
@@ -1471,6 +1518,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adentalsolution.com", true },
{ "adept.org.pl", true },
{ "adesa.co.uk", true },
+ { "adevel.eu", true },
{ "adex.network", true },
{ "adf-safetytools.com", true },
{ "adftrasporti.it", true },
@@ -1499,15 +1547,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "administratorserwera.pl", true },
{ "adminlinux.pl", true },
{ "admino.cz", true },
+ { "admins.tech", true },
{ "adminwiki.fr", true },
+ { "admirable.one", true },
{ "admody.com", true },
{ "admongo.gov", true },
+ { "adnanoktar.com", true },
{ "adnanotoyedekparca.com", true },
{ "adnot.am", true },
{ "adnseguros.es", true },
{ "adonnante.com", true },
{ "adoptionlink.co.uk", true },
- { "adora-illustrations.fr", true },
{ "adorade.ro", true },
{ "adorai.tk", true },
{ "adorecricket.com", true },
@@ -1538,11 +1588,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adurra.com", true },
{ "aduvi.de", true },
{ "advance.hr", true },
+ { "advanced-fleet-services.com", true },
{ "advanced-scribes.com", true },
{ "advanced.info", true },
+ { "advanceddieselspokane.com", true },
{ "advancedoneroofing.com", true },
{ "advancedprotectionkey.com", true },
{ "advancedprotectionsecuritykey.com", true },
+ { "advancedsurgicalconsultantsllc.com", true },
{ "advancedweb.hu", true },
{ "advanceworx.com", true },
{ "advancis.net", true },
@@ -1552,6 +1605,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "advelty.cz", true },
{ "advenacs.com.au", true },
{ "advenapay.com", true },
+ { "adventaholdings.com", true },
{ "advento.bg", true },
{ "adventure-inn.com", true },
{ "adventureally.com", true },
@@ -1562,12 +1616,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adventurenow.nl", true },
{ "adventures.de", true },
{ "adventureswithlillie.ca", true },
+ { "advertis.biz", true },
{ "advicepro.org.uk", true },
{ "advocate-europe.eu", true },
{ "advocaten-avocats.be", true },
{ "advocatenalkmaar.org", true },
{ "advocator.ca", true },
{ "advocoeurdehaan.nl", true },
+ { "advogatech.com.br", true },
{ "advokat-romanov.com", true },
{ "advtran.com", true },
{ "adware.pl", true },
@@ -1593,11 +1649,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ae-construction.co.uk", true },
{ "aebian.org", true },
{ "aecexpert.fr", true },
+ { "aefcleaning.com", true },
{ "aegee-utrecht.nl", true },
{ "aegisalarm.co.uk", true },
{ "aegisalarm.com", true },
{ "aegisalarms.co.uk", true },
{ "aegisalarms.com", true },
+ { "aegisinsight.com", true },
{ "aegrel.ee", true },
{ "aehe.us", true },
{ "aei.co.uk", true },
@@ -1613,7 +1671,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aero-pioneer.com", true },
{ "aerobasegroup.com", true },
{ "aerobotz.com", true },
+ { "aeronautix.com", true },
+ { "aeropole.de", true },
+ { "aeropole.eu", true },
{ "aerosimexperience.com", true },
+ { "aerospace-schools.com", true },
+ { "aerotechcoatings.com", true },
{ "aertel.ie", true },
{ "aessencia.com.br", true },
{ "aestheticdr.org", true },
@@ -1621,7 +1684,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aestore.by", true },
{ "aeternus.tech", true },
{ "aetherc0r3.eu", true },
- { "aethonan.pro", true },
{ "aetoscg.com", true },
{ "aetoscg.com.au", true },
{ "aextron.com", true },
@@ -1642,9 +1704,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "affinitysync.com", true },
{ "affissioni.roma.it", true },
{ "affittacamere.roma.it", true },
+ { "affittialmare.it", true },
+ { "affloc.com", true },
{ "affordableazdivorce.com", true },
{ "affordableblindsexpress.com", true },
{ "affordableenergyadvocates.com", true },
+ { "affordableenvironmental.net", true },
{ "affordablehealthquotesforyou.com", true },
{ "affordablekilimanjaro.com", true },
{ "affordablemudjacking.com", true },
@@ -1677,6 +1742,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "afterskool.eu", true },
{ "afuh.de", true },
{ "afva.net", true },
+ { "afwd.international", true },
{ "afzco.asia", true },
{ "ag-websolutions.de", true },
{ "ag8-game.com", true },
@@ -1684,8 +1750,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agamsecurity.ch", true },
{ "agatajanik.de", true },
{ "agate.pw", true },
+ { "age.hk", true },
{ "agechecker.net", true },
{ "ageg.ca", true },
+ { "agemfis.com", true },
{ "agenceklic.com", true },
{ "agencewebstreet.com", true },
{ "agenciadeempregosdourados.com.br", true },
@@ -1702,11 +1770,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agglo-sion.ch", true },
{ "aggr.pw", true },
{ "agia.ad", true },
- { "agiairini.cz", true },
{ "agiapelagia.com", true },
{ "agic-geneve.ch", true },
+ { "agic.io", true },
{ "agilebits.com", true },
- { "agilebits.net", false },
{ "agilecraft.com", true },
{ "agileui.com", true },
{ "agiley.se", true },
@@ -1738,7 +1805,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agouralighting.com", true },
{ "agouraoutdoorlighting.com", true },
{ "agr.asia", true },
- { "agracan.com", true },
{ "agrajag.nl", true },
{ "agrarking.de", true },
{ "agrarshop4u.de", true },
@@ -1746,23 +1812,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agreor.com", true },
{ "agrichamber.com.ua", true },
{ "agricolo.ch", true },
+ { "agriculture-schools.com", true },
{ "agridir.site", true },
{ "agrilinks.org", true },
{ "agrios.de", true },
{ "agro-forestry.net", true },
{ "agroline.by", true },
- { "agroxxi.ru", true },
+ { "agroxxi.ru", false },
{ "agsb.ch", true },
{ "agscinemas.com", true },
{ "agscinemasapp.com", true },
{ "agung-furniture.com", true },
{ "agwa.name", true },
+ { "agy.cl", true },
+ { "ahawkesrealtors.com", true },
{ "ahd.com", false },
{ "aheng.me", true },
{ "ahero4all.org", true },
- { "ahiru3.com", true },
- { "ahkubiak.ovh", true },
{ "ahlaejaba.com", true },
+ { "ahlz.sk", true },
{ "ahmad.works", true },
{ "ahmadly.com", true },
{ "ahmedabadflowermall.com", true },
@@ -1778,12 +1846,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ai-english.jp", true },
{ "ai-soft.co.jp", true },
{ "ai.gov", true },
+ { "ai.je", true },
{ "aia.de", true },
{ "aibenzi.com", true },
+ { "aibiying.com", true },
{ "aicial.co.uk", true },
{ "aidanapple.com", true },
+ { "aidanmitchell.co.uk", true },
+ { "aidanmitchell.uk", true },
{ "aidanmontare.net", true },
- { "aide-valais.ch", true },
{ "aiden.link", true },
{ "aidhan.net", true },
{ "aids.gov", true },
@@ -1801,29 +1872,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aikenpromotions.com", true },
{ "aiki.de", true },
{ "aiki.do", true },
+ { "aiki.tk", true },
{ "aikido-club-limburg.de", true },
{ "aikido-kiel.de", true },
{ "aikido-linz.at", true },
{ "aikido-wels.at", true },
+ { "ailitonia.com", true },
+ { "ailitonia.xyz", true },
{ "aimax.com", true },
{ "aimeeandalec.com", true },
{ "aimgroup.co.tz", true },
+ { "aimi-salon.com", true },
{ "aimotive.com", true },
{ "aimstoreglobal.com", true },
{ "aintevenmad.ch", true },
+ { "ainutrition.co.uk", true },
+ { "ainvest.de", true },
{ "aiois.com", true },
{ "aipbarcelona.com", true },
{ "air-craftglass.com", true },
{ "air-shots.ch", true },
{ "air-we-go.co.uk", true },
- { "airbly.com", true },
{ "airbnb.ae", true },
{ "airbnb.at", true },
{ "airbnb.be", true },
+ { "airbnb.biz", true },
{ "airbnb.ca", true },
{ "airbnb.cat", true },
{ "airbnb.ch", true },
{ "airbnb.cl", true },
+ { "airbnb.cn", true },
{ "airbnb.co.cr", true },
{ "airbnb.co.id", true },
{ "airbnb.co.il", true },
@@ -1838,6 +1916,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airbnb.com.bo", true },
{ "airbnb.com.br", true },
{ "airbnb.com.bz", true },
+ { "airbnb.com.cn", true },
{ "airbnb.com.co", true },
{ "airbnb.com.ec", true },
{ "airbnb.com.gt", true },
@@ -1880,10 +1959,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airbnb.pt", true },
{ "airbnb.ru", true },
{ "airbnb.se", true },
+ { "airbnb.tools", true },
+ { "airbnbchina.cn", true },
{ "airbnbopen.com", true },
{ "airborne-inflatables.co.uk", true },
+ { "airbossofamerica.com", true },
{ "airclass.com", true },
{ "aircomms.com", true },
+ { "airconssandton.co.za", true },
{ "airductclean.com", false },
{ "airductcleaning-fresno.com", true },
{ "airductcleaninggrandprairie.com", true },
@@ -1893,26 +1976,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airetvie.com", true },
{ "airhart.me", true },
{ "airhelp.com", true },
- { "airhorn.de", true },
{ "airi-tabei.com", true },
- { "airicy.com", true },
{ "airikai.com", true },
- { "airlinesettlement.com", true },
+ { "airlibre-parachutisme.com", true },
{ "airmail.cc", true },
{ "airmaxinflatables.com", true },
{ "airnow.gov", true },
{ "airpbx.com", true },
{ "airplay-inflatable-hire.co.uk", true },
{ "airplayradio.nl", true },
- { "airportlimototoronto.com", true },
{ "airpurifierproductsonline.com", true },
{ "airrestoration.ch", true },
+ { "airsnore.com", true },
{ "airsoft.ch", true },
+ { "airswap.io", true },
{ "airtimerewards.co.uk", true },
+ { "airtoolaccessoryo.com", true },
{ "airvpn.org", true },
{ "airvuz.com", true },
+ { "airwaystorage.net", true },
+ { "airweb.top", true },
{ "airwegobouncycastles.co.uk", true },
{ "airwolfthemes.com", true },
+ { "airwrenchei.com", true },
{ "ais.fashion", true },
{ "aisance-co.com", true },
{ "aisi316l.net", true },
@@ -1926,7 +2012,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aivd.lol", true },
{ "aiwdirect.com", true },
{ "aixvox.com", false },
- { "aixxe.net", true },
{ "aizxxs.com", true },
{ "aizxxs.net", true },
{ "ajapaik.ee", true },
@@ -1948,6 +2033,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aka.ms", true },
{ "akachanikuji.com", true },
{ "akademeia.moe", true },
+ { "akademie-frankfurt.de", true },
{ "akalashnikov.ru", true },
{ "akamon.ac.jp", true },
{ "akaoma.com", true },
@@ -1957,15 +2043,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "akelius.de", false },
{ "akfoundationindia.com", true },
{ "akhealthconnection.com", true },
+ { "akhomesforyou.com", true },
{ "akihito.com", true },
{ "akijo.de", true },
{ "akilli-devre.com", true },
{ "akita-boutique.com", true },
{ "akiym.com", true },
+ { "akj.io", true },
{ "akkbouncycastles.co.uk", true },
- { "akkeylab.com", true },
{ "akostecki.de", true },
{ "akovana.com", true },
+ { "akoww.de", false },
{ "akoya.fi", true },
{ "akplates.org", true },
{ "akpwebdesign.com", true },
@@ -1978,6 +2066,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aksehir.bel.tr", true },
{ "akselinurmio.fi", false },
{ "akshi.in", true },
+ { "aktin.cz", true },
+ { "aktin.sk", true },
{ "aktiv-naturheilmittel.at", true },
{ "aktiv-naturheilmittel.ch", true },
{ "aktiv-naturheilmittel.de", true },
@@ -1989,6 +2079,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "akustik.tech", true },
{ "akutun.cl", true },
{ "akvorrat.at", true },
+ { "al3366.tech", true },
{ "al3xpro.com", true },
{ "alab.space", true },
{ "alabamadebtrelief.org", true },
@@ -2022,27 +2113,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "albbounce.co.uk", true },
{ "albersdruck.de", true },
{ "albertathome.org", true },
- { "albertbogdanowicz.pl", true },
+ { "albertcuyp-markt.amsterdam", true },
{ "albertinum-goettingen.de", true },
+ { "albinma.com", true },
{ "albion2.org", true },
{ "alboweb.nl", true },
+ { "albrocar.com", true },
{ "albuic.tk", true },
{ "alca31.com", true },
{ "alchimic.ch", true },
{ "alcnutrition.com", true },
{ "alco-united.com", true },
{ "alcoholapi.com", true },
+ { "alcolecapital.com", true },
{ "aldiabcs.com", true },
{ "aldien.com.br", true },
{ "aldo-vandini.de", true },
{ "aldomedia.com", true },
{ "aldorr.net", false },
{ "aldous-huxley.com", true },
- { "aldred.cloud", true },
{ "alecpap.com", true },
{ "alecpapierniak.com", true },
{ "alecrust.com", true },
- { "aledg.cl", true },
{ "alek.in", true },
{ "aleksejjocic.tk", true },
{ "aleksib.fi", true },
@@ -2053,8 +2145,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alerts.sg", true },
{ "alertwire.com", true },
{ "alesia-formation.fr", true },
- { "alessandroonline.com.br", true },
- { "alessandroz.ddns.net", true },
{ "aletm.it", true },
{ "alex-ross.co.uk", true },
{ "alex97000.de", true },
@@ -2068,19 +2158,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alexandrastorm.com", true },
{ "alexandrastylist.com", true },
{ "alexandre-blond.fr", true },
+ { "alexandros.io", true },
{ "alexbaker.org", true },
{ "alexberts.ch", true },
{ "alexbresnahan.com", true },
{ "alexcoman.com", true },
{ "alexdaniel.org", true },
{ "alexdaulby.com", true },
+ { "alexei.su", false },
{ "alexey-shamara.ru", true },
{ "alexeykopytko.com", true },
{ "alexgaynor.net", true },
- { "alexgebhard.com", true },
{ "alexhd.de", true },
{ "alexio.ml", true },
{ "alexisabarca.com", true },
+ { "alexiskoustoulidis.com", true },
{ "alexkott.com", true },
{ "alexlouden.com", true },
{ "alexmerkel.com", true },
@@ -2106,6 +2198,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alfa-tech.su", true },
{ "alfaperfumes.com.br", true },
{ "alftrain.com", true },
+ { "algeriepart.com", true },
{ "alghanimcatering.com", true },
{ "algoaware.eu", true },
{ "algoentremanos.com", true },
@@ -2117,26 +2210,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aliantsoft.pl", true },
{ "aliaswp.com", true },
{ "alibangash.com", true },
+ { "alibiloungelv.com", true },
{ "alibip.de", true },
{ "alice-noutore.com", true },
{ "alice.tw", true },
{ "alicemaywebdesign.com.au", true },
{ "alicestudio.it", true },
{ "alicetone.net", true },
+ { "alieke.design", true },
{ "alienation.biz", true },
{ "alienflight.com", true },
{ "alienslab.net", true },
{ "alienstat.com", true },
+ { "alignrs.com", true },
{ "aliim.gdn", true },
{ "alijammusic.com", true },
+ { "alikulov.me", true },
{ "alinasmusicstudio.com", true },
- { "alinode.com", true },
+ { "alinbu.net", true },
{ "aliorange.com", true },
+ { "alis-test.tk", true },
{ "alisonisrealestate.com", true },
{ "alisonlitchfield.com", true },
- { "alistairholland.me", true },
{ "alistairstowing.com", true },
- { "alisync.com", true },
{ "alix-board.de", true },
{ "alize-theatre.ch", true },
{ "aljaspod.com", true },
@@ -2144,6 +2240,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aljaspod.net", true },
{ "aljweb.com", true },
{ "all-connect.net", false },
+ { "all-fashion-schools.com", true },
{ "all-markup-news.com", true },
{ "all4hardware4u.de", true },
{ "allaboutfunuk.com", true },
@@ -2160,6 +2257,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allbounceandplay.co.uk", true },
{ "allbouncesurrey.co.uk", true },
{ "allbrandbrand.com", true },
+ { "allbursaries.co.za", true },
{ "allbusiness.com", true },
{ "allcapa.org", true },
{ "allcarecorrectionalpharmacy.com", true },
@@ -2171,6 +2269,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alldigitalsolutions.com", true },
{ "alle.bg", true },
{ "allemobieleproviders.nl", true },
+ { "allemoz.com", true },
+ { "allemoz.fr", true },
{ "allenosgood.com", true },
{ "allenscaravans.co.uk", true },
{ "allensun.org", true },
@@ -2178,6 +2278,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alleskomtgoed.org", true },
{ "allesrocknroll.de", true },
{ "allforyou.at", true },
+ { "allfreelancers.su", false },
{ "allgaragefloors.com", true },
{ "allgreenturf.com.au", true },
{ "alliance-psychiatry.com", true },
@@ -2189,6 +2290,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allincoin.shop", true },
{ "allinone-ranking150.com", true },
{ "allis.studio", true },
+ { "allius.de", true },
{ "alljamin.com", true },
{ "allmebel.ru", true },
{ "allmend-ru.de", true },
@@ -2202,6 +2304,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alloydevil.nl", true },
{ "allplayer.tk", true },
{ "allpointsblog.com", true },
+ { "allpointsheating.com", true },
{ "allproptonline.com", true },
{ "allroundpvp.net", true },
{ "allsaints.church", true },
@@ -2209,29 +2312,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allshousedesigns.com", true },
{ "allstakesupply.com.au", true },
{ "allstarautokiaparts.com", true },
+ { "allstarcashforcars.com", true },
{ "allstarpartyinflatables.co.uk", true },
{ "allstarquilts.com", true },
{ "allsync.com", true },
{ "allsync.nl", true },
{ "allteach.co.uk", true },
+ { "allterrainfence.com", true },
{ "allthecryptonews.com", true },
{ "allthethings.co.nz", true },
{ "allthings.me", true },
{ "allthingssquared.com", true },
{ "allthingswild.co.uk", true },
- { "alltubedownload.net", true },
{ "allurescarves.com", true },
{ "alluvion.studio", true },
+ { "allvips.ru", true },
+ { "allweatherlandscaping.net", true },
{ "almaatlantica.com", true },
{ "almavios.com", true },
+ { "almorafestival.com", true },
+ { "almut-zielonka.de", true },
{ "aloesoluciones.com.ar", true },
{ "alohapartyevents.co.uk", true },
{ "alonetone.com", true },
- { "alorenzi.eu", true },
- { "alp.net.cn", true },
{ "alp.od.ua", true },
{ "alpca.org", true },
- { "alpe-d-or.dyn-o-saur.com", true },
{ "alpencam.com", true },
{ "alpencams.com", true },
{ "alpengreis.ch", true },
@@ -2256,7 +2361,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alphaman.ooo", true },
{ "alphapengu.in", true },
{ "alpharotary.com", true },
- { "alphasall.com", true },
+ { "alphasall.com", false },
{ "alphassl.de", true },
{ "alphatrash.de", true },
{ "alphavote-avex.com", true },
@@ -2265,6 +2370,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alphie.me", true },
{ "alphipneux.fr", true },
{ "alpinechaletrental.com", true },
+ { "alpinehighlandrealty.com", true },
{ "alpineplanet.com", true },
{ "alpinepubliclibrary.org", true },
{ "alpinestarmassage.com", true },
@@ -2275,6 +2381,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alrait.com", true },
{ "alroniks.com", true },
{ "als-japan.com", true },
+ { "alstertouch.com", true },
+ { "alstertouch.de", true },
{ "alstroemeria.org", true },
{ "alt-three.com", true },
{ "alt.org", true },
@@ -2309,12 +2417,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alvcs.com", true },
{ "alviano.com", true },
{ "alvicom.hu", true },
- { "alvis-audio.com", true },
{ "alvosec.com", true },
{ "alwaysdry.com.au", true },
{ "alwayslookingyourbest.com", true },
{ "alwaysmine.fi", true },
{ "alwaysonssl.com", true },
+ { "alxpresentes.com.br", true },
{ "alyoung.com", true },
{ "alza.at", true },
{ "alza.co.uk", true },
@@ -2325,12 +2433,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alzashop.com", true },
{ "alzonaprinting.com", true },
{ "am-dd.com", true },
+ { "am-executive-consulting.com", true },
{ "am2s.fr", true },
{ "am3.se", true },
{ "ama.ne.jp", true },
{ "amadvice.com", true },
{ "amaforro.com", true },
{ "amagdic.com", true },
+ { "amagical.net", false },
{ "amaiz.com", true },
{ "amalfi5stars.com", true },
{ "amalficoastchauffeur.com", true },
@@ -2338,15 +2448,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amalfipositanoboatrental.com", true },
{ "amalfirock.it", true },
{ "amalfitabula.it", true },
+ { "amandadamsphotography.com", true },
{ "amandasage.ca", true },
{ "amani-kinderdorf.de", true },
{ "amaresq.com", true },
+ { "amartinz.at", true },
{ "amateurchef.co.uk", true },
{ "amateurradionotes.com", true },
+ { "amateurvoicetalent.com", true },
{ "amati.solutions", true },
{ "amato.tk", true },
{ "amatsuka.com", true },
{ "amauf.de", true },
+ { "amautorepairwa.com", true },
{ "amazili-communication.com", true },
{ "amazing-castles.co.uk", true },
{ "amazinginflatables.co.uk", true },
@@ -2377,9 +2491,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amend-friseur-schwabing.de", true },
{ "america.gov", true },
{ "americafamilylawcenter.org", true },
+ { "american-school-search.com", true },
{ "american.dating", true },
{ "americandetour.com", true },
{ "americanfoundationbr.com", true },
+ { "americanindiannursing.com", true },
{ "americanmediainstitute.com", true },
{ "americasbasementcontractor.com", true },
{ "americkykongres.cz", true },
@@ -2388,7 +2504,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amerika-forum.de", true },
{ "amerimarkdirect.com", true },
{ "amerimex.cc", true },
- { "ameschristian.net", true },
{ "amesgen.de", true },
{ "amesvacuumrepair.com", true },
{ "amethystdevelopment.co.uk", true },
@@ -2397,8 +2512,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amg-microwave.com", true },
{ "amh-entertainments.co.uk", true },
{ "ami-de-bastanes.fr", true },
+ { "amica-travel.com", true },
{ "amicalecanyon.ch", true },
{ "amiciidogrescue.org.uk", true },
+ { "amicimar.it", true },
{ "amielucha.com", true },
{ "amifoundation.net", true },
{ "amikootours.com", true },
@@ -2409,7 +2526,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amirautos.com", true },
{ "amirmahdy.com", true },
{ "amisderodin.fr", true },
- { "amisharingstuff.com", true },
{ "amitabhsirkiclasses.org.in", true },
{ "amitpatra.com", true },
{ "amiu.org", true },
@@ -2442,6 +2558,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amyrussellhair.com", true },
{ "amyyeung.com", true },
{ "amzn.rocks", true },
+ { "anabolic.co", true },
{ "anacreon.de", true },
{ "anadiyogacentre.com", true },
{ "anaethelion.fr", true },
@@ -2465,11 +2582,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anarchyrp.life", true },
{ "anassiriphotography.com", false },
{ "anastasia-shamara.ru", true },
+ { "anaveragehuman.eu.org", true },
{ "ancestramil.fr", true },
{ "anchev.net", true },
+ { "anchorit.gov", true },
{ "anchovy.nz", false },
{ "ancientcraft.eu", true },
- { "ancientnorth.com", true },
{ "ancientnorth.nl", true },
{ "ancolies-andre.com", true },
{ "anconaswine.com", true },
@@ -2486,6 +2604,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "andisadhdspot.com", true },
{ "andiscyber.space", true },
{ "anditi.com", true },
+ { "andoms.fi", true },
{ "andre-ballensiefen.de", true },
{ "andre-lategan.com", true },
{ "andre-otto.com", true },
@@ -2503,22 +2622,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "andreashecht-blog.de", true },
{ "andreaskrasa.com", true },
{ "andreaslicht.nl", true },
+ { "andreasmuelhaupt.de", true },
{ "andreasolsson.se", true },
- { "andreasr.com", true },
{ "andree.cloud", true },
{ "andrefaber.nl", true },
{ "andrehansen.de", true },
{ "andrei-nakov.org", true },
- { "andrejbenz.com", true },
+ { "andrejstefanovski.com", true },
+ { "andrelauzier.com", true },
{ "andreoliveira.io", true },
- { "andrepicard.de", true },
- { "andrespaz.com", true },
{ "andreundnina.de", true },
+ { "andrew.fi", true },
{ "andrew.london", true },
{ "andrewbdesign.com", true },
{ "andrewdaws.io", true },
{ "andrewensley.com", true },
- { "andrewhowden.com", true },
{ "andrewimeson.com", true },
{ "andrewin.ru", true },
{ "andrewmichaud.com", true },
@@ -2547,11 +2665,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "androticsdirect.com", true },
{ "andruvision.cz", true },
{ "andsat.org", true },
- { "andschwa.com", false },
+ { "andschwa.com", true },
{ "andso.cn", true },
+ { "anduril.de", true },
+ { "anduril.eu", true },
{ "andybrett.com", true },
{ "andyc.cc", true },
- { "andycloud.dynu.net", true },
{ "andycrockett.io", true },
{ "andymoore.info", true },
{ "andys-place.co.uk", true },
@@ -2564,6 +2683,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anedot.xyz", true },
{ "aneebahmed.com", true },
{ "anegabawa.com", true },
+ { "aneslix.com", true },
{ "anetaben.nl", true },
{ "anextraordinaryday.net", true },
{ "ange-de-bonheur444.com", true },
@@ -2572,11 +2692,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "angelesydemonios.es", true },
{ "angelicare.co.uk", true },
{ "angelinahair.com", true },
+ { "angeljmadrid.com", true },
{ "angeloryndon.com", true },
{ "angelremigene.com", true },
{ "angelsgirl.eu.org", true },
{ "anginf.de", true },
- { "anglertanke.de", true },
{ "anglesgirl.eu.org", true },
{ "anglesya.win", true },
{ "anglictina-sojcak.cz", true },
@@ -2587,25 +2707,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "angristan.fr", true },
{ "angristan.xyz", true },
{ "angry.im", true },
- { "angrylab.com", true },
{ "angrysnarl.com", true },
- { "angryteeth.net", false },
- { "anguiao.com", true },
+ { "angryteeth.net", true },
{ "angularjs.org", false },
{ "angusmak.com", true },
{ "anhaffen.lu", true },
{ "ani-man.de", true },
- { "aniaimichal.eu", true },
{ "aniforprez.net", true },
- { "anim.ee", true },
{ "animacurse.moe", true },
{ "animaemundi.be", true },
{ "animal-liberation.com", true },
+ { "animal-nature-human.com", true },
{ "animal-rights.com", true },
{ "animalistic.io", true },
{ "animaltesting.fr", true },
{ "animan.ca", true },
- { "animatelluris.nl", true },
{ "animationsmusicales.ch", true },
{ "anime-culture.com", true },
{ "anime-rg.com", true },
@@ -2628,6 +2744,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anjoola.com", true },
{ "ankarakart.com.tr", true },
{ "ankaraprofesyonelwebtasarim.com", true },
+ { "ankaraseo.name.tr", true },
{ "ankarauzmanlarnakliyat.com", true },
{ "ankarayilmaznakliyat.com", true },
{ "ankarayucelnakliyat.com", true },
@@ -2636,51 +2753,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ankiuser.net", true },
{ "ankiweb.net", true },
{ "ankwanoma.com", true },
- { "ankya9.com", true },
{ "anleitung-deutsch-lernen.de", true },
{ "anleitung-zum-flechten.de", true },
{ "anleitung-zum-haekeln.de", true },
{ "anleitung-zum-schreiben.de", true },
{ "anleitung-zum-schweissen.de", true },
{ "anleitung-zum-toepfern.de", true },
- { "anlp.top", true },
{ "anna.info", true },
{ "annaenemma.nl", true },
{ "annafiore.com.br", true },
- { "annangela.moe", true },
{ "annarokina.com", true },
{ "annasvapor.se", true },
{ "annawagner.pl", true },
{ "annedaniels.co.uk", true },
{ "annejan.com", true },
{ "anneliesonline.nl", true },
+ { "annema.biz", true },
{ "annemakeslovelycandles.co.uk", true },
{ "annetta.com", true },
{ "annettewindlin.ch", true },
{ "annevankesteren.nl", true },
- { "annicascakes.nl", true },
{ "anniversary-cruise.com", true },
{ "annmariewaltsphotography.com", true },
{ "annonasoftware.com", true },
{ "annotate.software", true },
{ "annoyingasfuk.com", true },
- { "annrusnak.com", true },
{ "annuaire-jcb.com", true },
{ "annuaire-photographe.fr", false },
+ { "annunciationbvmchurch.org", true },
{ "anohana.org", true },
{ "anojan.com", true },
{ "anon-next.de", true },
{ "anoncom.net", true },
- { "anoneko.com", false },
+ { "anoncrypto.org", true },
+ { "anoneko.com", true },
{ "anongoth.pl", true },
{ "anons.fr", true },
- { "anonukradio.org", true },
{ "anonym-surfen.de", true },
{ "anonyme-spieler.at", true },
{ "anorak.tech", true },
{ "another.ch", true },
{ "anotherchef.com", true },
{ "anotherfatgeek.net", true },
+ { "anothervps.com", true },
{ "anowicki.pl", false },
{ "anoxinon.de", false },
{ "ans-delft.nl", true },
@@ -2701,19 +2816,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antani.cloud", true },
{ "antarcti.co", true },
{ "antarees.net", true },
+ { "antaresmedia.com.py", true },
{ "antarespc.com", true },
{ "antcas.com", true },
{ "antennista.catania.it", true },
{ "antennista.milano.it", true },
{ "antennista.pavia.it", true },
{ "antennista.roma.it", true },
+ { "antennista.tv", true },
{ "antennisti.milano.it", true },
{ "antennisti.roma.it", true },
{ "anteprima.info", true },
{ "anthedesign.fr", true },
{ "anthisis.tv", true },
{ "anthony.codes", true },
- { "anthonyaires.com", true },
{ "anthonycarbonaro.com", true },
{ "anthonyfontanez.com", true },
{ "anthonygaidot.fr", true },
@@ -2736,7 +2852,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antispeciesism.com", true },
{ "antispeciesist.com", true },
{ "antivirusprotection.reviews", true },
- { "antocom.com", true },
{ "antoga.eu", true },
{ "antoinedeschenes.com", true },
{ "antoinemary.com", true },
@@ -2745,13 +2860,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antonin.one", true },
{ "antonio-gartenbau.de", true },
{ "antonjuulnaber.dk", true },
- { "antons.io", true },
{ "antota.lt", true },
{ "antragsgruen.de", true },
{ "antroposofica.com.br", true },
+ { "antvklik.com", true },
{ "antyblokada.pl", true },
{ "anulowano.pl", true },
- { "anvartay.com", true },
+ { "anvartay.com", false },
+ { "anwalt.us", true },
{ "anwaltsindex.com", true },
{ "anxietyspace.com", true },
{ "anxiolytics.com", true },
@@ -2771,6 +2887,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aoadatacommunity.us", true },
{ "aoaprograms.net", true },
{ "aofusa.net", true },
+ { "aoil.gr", true },
{ "aoku3d.com", true },
{ "aopedeure.nl", true },
{ "aopsy.de", true },
@@ -2783,6 +2900,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apac-tech.com", false },
{ "apache-portal.com", true },
{ "apachehaus.de", false },
+ { "apachelounge.com", true },
{ "apadvantage.com", true },
{ "aparaatti.org", true },
{ "apartmanicg.me", true },
@@ -2820,7 +2938,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apiary.supplies", true },
{ "apiary.supply", true },
{ "apila.care", true },
- { "apila.us", true },
{ "apiled.io", true },
{ "apination.com", true },
{ "apio.systems", true },
@@ -2829,18 +2946,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apisyouwonthate.com", true },
{ "apk.li", true },
{ "apk4fun.com", true },
+ { "apkmod.id", true },
{ "aplikaceproandroid.cz", true },
{ "aplpackaging.co.uk", true },
{ "aplu.fr", true },
{ "aplus-usa.net", true },
- { "apmpproject.org", true },
+ { "apluswaterservices.com", true },
{ "apn-dz.org", true },
{ "apn-einstellungen.de", true },
{ "apo-deutschland.biz", true },
{ "apobot.de", true },
{ "apogeephoto.com", true },
{ "apoil.org", true },
- { "apollyon.work", true },
{ "apoly.de", true },
{ "aponkral.net", true },
{ "aporia.io", true },
@@ -2863,9 +2980,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "appartementhaus-badria.de", true },
{ "appartementmarsum.nl", true },
{ "appchive.net", true },
- { "appcoins.io", true },
{ "appearance-plm.de", true },
{ "appel-aide.ch", true },
+ { "appelaprojets.fr", true },
{ "appelboomdefilm.nl", true },
{ "appengine.google.com", true },
{ "apperio.com", true },
@@ -2873,6 +2990,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "appgeek.com.br", true },
{ "appharbor.com", true },
{ "appify.org", true },
+ { "appinn.com", true },
{ "applelife.ru", true },
{ "applemon.com", true },
{ "appleoosa.com", true },
@@ -2889,7 +3007,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apponline.com", true },
{ "apprank.in", true },
{ "apprenticeship.gov", true },
- { "apprenticeships.gov", true },
{ "approbo.com", true },
{ "approvedtreecare.com", true },
{ "apps.co", true },
@@ -2900,7 +3017,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "appscloudplus.com", true },
{ "appseccalifornia.org", false },
{ "appshuttle.com", true },
- { "appson.co.uk", false },
{ "appt.ch", true },
{ "apptomics.com", true },
{ "appuals.com", true },
@@ -2912,9 +3028,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apretatuercas.es", true },
{ "aprikaner.de", true },
{ "aprogend.com.br", true },
- { "aproposcomputing.com", true },
{ "aprovpn.com", true },
- { "aprr.org", true },
{ "aprsdroid.org", true },
{ "aprz.de", true },
{ "apsa.paris", true },
@@ -2923,7 +3037,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apu-board.de", true },
{ "apv-ollon.ch", true },
{ "aqdun.com", true },
- { "aqilacademy.com.au", true },
{ "aqsiq.net", true },
{ "aqua-fitness-nacht.de", true },
{ "aqua-fotowelt.de", true },
@@ -2950,11 +3063,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arab.dating", true },
{ "arabicxz.com", true },
{ "arachina.com", true },
+ { "arackiralama.name.tr", true },
{ "arados.de", true },
{ "arai21.net", true },
{ "araleeniken.com", true },
{ "aramado.com", true },
{ "aramido.de", true },
+ { "aranchhomes.com", true },
{ "aranycsillag.net", true },
{ "araraexpress.com.br", true },
{ "araratour.com", true },
@@ -2962,7 +3077,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "araseifudousan.com", true },
{ "arawaza.biz", true },
{ "arawaza.com", false },
- { "arawaza.info", true },
{ "araxis.com", true },
{ "arbeitsch.eu", true },
{ "arbeitskreis-asyl-eningen.de", true },
@@ -2970,14 +3084,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arbejdsdag.dk", true },
{ "arbitrarion.com", true },
{ "arbitrary.ch", true },
- { "arboleda-hurtado.com", true },
{ "arboworks.com", true },
+ { "arbu.eu", false },
{ "arcaik.net", true },
{ "arcbouncycastles.co.uk", true },
{ "arcenergy.co.uk", true },
{ "archimedicx.com", true },
{ "archined.nl", true },
{ "architectryan.com", true },
+ { "architecture-colleges.com", true },
+ { "architectureandgovernance.com", true },
{ "archivero.es", true },
{ "archivesdelavieordinaire.ch", true },
{ "archlinux.de", true },
@@ -2989,6 +3105,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arcueil-cachan.fr", false },
{ "arcusnova.de", true },
{ "arda-audio.pt", true },
+ { "ardor.noip.me", true },
{ "ardtrade.ru", true },
{ "area4pro.com", true },
{ "area536.com", true },
@@ -3003,21 +3120,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arenlor.com", true },
{ "arenlor.info", true },
{ "arenns.com", true },
- { "areqgaming.com", true },
{ "ares-trading.de", true },
+ { "arethsu.se", true },
{ "arfad.ch", true },
{ "arg.zone", true },
- { "argama-nature.com", true },
+ { "argama-nature.com", false },
{ "arganaderm.ch", true },
{ "argb.de", true },
{ "argekultur.at", true },
+ { "argonium.com.au", true },
{ "argot.com", true },
{ "argovpay.com", true },
- { "ariaartgallery.com", true },
{ "ariadermspa.com", true },
{ "arian.io", true },
+ { "ariana.wtf", true },
{ "arias.re", true },
{ "ariba.info", true },
+ { "ariege-pyrenees.net", true },
{ "arieswdd.com", true },
{ "arigato-java.download", true },
{ "arijitdg.net", true },
@@ -3027,12 +3146,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arinde.ee", true },
{ "arise19.com", true },
{ "arisevendor.net", true },
- { "aristilabs.com", true },
+ { "aristocrates.co", true },
{ "aritec-la.com", true },
{ "arivo.com.br", true },
- { "arizer.com", true },
{ "arizonaautomobileclub.com", true },
{ "arizonabondedtitle.com", true },
+ { "arizonahomeownerinsurance.com", true },
{ "arjandejong.eu", true },
{ "arjanvaartjes.net", true },
{ "arjunasdaughter.pub", true },
@@ -3045,19 +3164,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arlatools.com", true },
{ "arlen.tv", true },
{ "arlenarmageddon.com", true },
- { "arlet.click", true },
{ "arletalibrary.com", true },
- { "arm-host.com", true },
+ { "arlingtonelectric.com", true },
{ "armadaquadrat.com", true },
{ "armandsdiscount.com", true },
{ "armanozak.com", true },
{ "armansfinejewellery.com", true },
{ "armansfinejewellery.com.au", true },
{ "armarinhovirtual.com.br", true },
+ { "armazemgourmetbrasil.com.br", true },
{ "armbrust.me", true },
{ "armedpoet.com", true },
- { "armeni-jewellery.gr", true },
+ { "armeo.top", true },
{ "armil.it", true },
+ { "armin-cme.de", true },
+ { "armin-cpe.de", true },
{ "arminc.tk", true },
{ "arminpech.de", true },
{ "armleads.com", true },
@@ -3067,7 +3188,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "armyprodej.cz", true },
{ "arnaudb.net", true },
{ "arnaudfeld.de", true },
- { "arnaudminable.net", true },
{ "arne.codes", true },
{ "arnevankauter.com", true },
{ "arniescastles.co.uk", true },
@@ -3085,6 +3205,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arogov.com", true },
{ "arokha.com", true },
{ "aromacos.ch", true },
+ { "aromatlas.com", true },
{ "aron.host", true },
{ "aroonchande.com", true },
{ "aros.pl", true },
@@ -3106,14 +3227,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arrowheadflats.com", true },
{ "arrowwebprojects.nl", true },
{ "arschkrebs.org", true },
+ { "arsplus.ru", true },
+ { "arswb.men", true },
{ "art-auction.jp", true },
{ "art-et-culture.ch", true },
- { "artansoft.com", true },
{ "artboja.com", true },
{ "artdeco-photo.com", true },
+ { "arte-soft.co", true },
+ { "artea.ga", true },
+ { "arteaga.co.uk", true },
+ { "arteaga.eu", true },
+ { "arteaga.me", true },
+ { "arteaga.tech", true },
+ { "arteaga.uk", true },
+ { "arteaga.xyz", true },
{ "artecat.ch", true },
{ "artedellavetrina.it", true },
{ "artedona.com", true },
+ { "arteequipamientos.com.uy", true },
{ "artefakt.es", true },
{ "artefeita.com.br", true },
{ "arteinstudio.it", true },
@@ -3122,11 +3253,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arterienundvenen.ch", true },
{ "arteshow.ch", true },
{ "artetrama.com", false },
+ { "artfabrics.com", true },
{ "artforum.sk", true },
{ "artfullyelegant.com", true },
{ "arthermitage.org", true },
+ { "arthur.cn", true },
{ "arthurlaw.ca", true },
{ "artificial.army", true },
+ { "artificialgrassandlandscaping.com", true },
{ "artik.cloud", true },
{ "artimpact.ch", true },
{ "artioml.net", true },
@@ -3188,18 +3322,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ascension.run", true },
{ "ascensori.biz", true },
{ "ascgathering.com", true },
- { "ascii.moe", true },
+ { "asciitable.tips", true },
{ "asciiwwdc.com", true },
{ "asd.gov.au", true },
{ "asdyx.de", true },
{ "asec01.net", true },
+ { "asegem.es", true },
{ "aseith.com", true },
{ "aseko.gr", true },
{ "asenno.com", true },
{ "aserver.co", true },
{ "asexualitat.cat", true },
{ "asgapps.co.za", true },
- { "asge-handel.de", true },
{ "ashd1.goip.de", true },
{ "ashd2.goip.de", true },
{ "ashd3.goip.de", true },
@@ -3213,14 +3347,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "asiaheavens.com", true },
{ "asialeonding.at", true },
{ "asian-industry.eu", true },
+ { "asianodor.com", true },
{ "asianshops.net", true },
{ "asianspa.co.uk", true },
{ "asiba.com.au", true },
+ { "asiinc-tex.com", true },
{ "asile-colis.fr", true },
{ "asinetasima.com", true },
- { "asisee.photography", true },
+ { "ask.fi", true },
{ "ask1.org", true },
{ "askcaisse.com", true },
+ { "askcascade.com", true },
{ "askizzy.org.au", true },
{ "askkaren.gov", true },
{ "askme24.de", true },
@@ -3231,16 +3368,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aslinfinity.com", true },
{ "asmbsurvey.com", true },
{ "asmdz.com", true },
- { "asmm.cc", true },
{ "asmood.net", true },
{ "asoul.tw", true },
- { "aspargesgaarden.no", true },
{ "aspatrimoine.com", true },
{ "aspcl.ch", true },
{ "aspectcontext.com", true },
{ "asperti.com", true },
+ { "aspformacion.com", true },
{ "asphyxia.su", true },
{ "aspiescentral.com", true },
+ { "aspiradorasbaratas.net", true },
{ "aspirateur-anti-pollution.fr", true },
{ "aspires.co.jp", true },
{ "aspisdata.com", true },
@@ -3259,7 +3396,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "assetvault.co.za", true },
{ "assguidesporrentruy.ch", true },
{ "assign-it.co.uk", true },
- { "assistance-personnes-agees.ch", true },
{ "assistel.com", true },
{ "assistenzaferrodastiro.org", true },
{ "assistenzafrigorifero.org", true },
@@ -3277,7 +3413,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "astenotarili.online", true },
{ "astenretail.com", true },
{ "astral-imperium.uk", true },
- { "astral.org.pl", true },
{ "astrology42.com", true },
{ "astroscopy.ch", true },
{ "astrovandalistas.cc", true },
@@ -3294,8 +3429,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "asystent-dzierzawy.pl", true },
{ "at-one.ca", true },
{ "at.search.yahoo.com", false },
+ { "ataber.pw", true },
{ "atac.no", true },
{ "atacadocervejeiro.com.br", true },
+ { "atacadodesandalias.com.br", true },
{ "ataton.ch", true },
{ "atc.io", true },
{ "atchleyjazz.com", true },
@@ -3315,6 +3452,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atelierdeloulou.fr", true },
{ "atelierdesflammesnoires.fr", true },
{ "atelierfantazie.sk", true },
+ { "atelierhsn.com", true },
{ "atelierhupsakee.nl", true },
{ "ateliernaruby.cz", true },
{ "ateliers-veronese-nantes.fr", true },
@@ -3322,17 +3460,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atelierssud.swiss", true },
{ "atencionbimbo.com", false },
{ "atendimentodelta.com.br", true },
- { "atg.soy", true },
{ "atgoetschel.ch", true },
{ "atgroup.gr", true },
{ "atgseed.co.uk", true },
{ "atgseed.uk", true },
+ { "ath0.org", false },
{ "atheist-refugees.com", true },
{ "athena-bartholdi.com", true },
{ "athena-garage.co.uk", true },
{ "athenadynamics.com", true },
{ "athenaneuro.com", true },
- { "atheoryofchange.com", true },
{ "atherosense.ga", true },
{ "athlin.de", true },
{ "atigerseye.com", true },
@@ -3343,17 +3480,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atisoft.net", true },
{ "atisoft.net.tr", true },
{ "atisoft.web.tr", true },
+ { "atisystem.com", true },
{ "atitude.com", true },
{ "ativapsicologia.com.br", true },
{ "atl-paas.net", true },
{ "atlantahairsurgeon.com", true },
{ "atlantareroof.com", true },
- { "atlantaspringroll.com", true },
- { "atlantichomes.com.au", true },
+ { "atlanticpediatricortho.com", true },
{ "atlantis-kh.noip.me", true },
{ "atlantischild.hu", true },
{ "atlantishq.de", true },
{ "atlantiswaterproofing.com", true },
+ { "atlasbrown.com", true },
{ "atlaschiropractic.org", true },
{ "atlascultural.com", true },
{ "atlasdev.nl", true },
@@ -3370,6 +3508,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atom86.net", true },
{ "atombase.org", true },
{ "atomic-bounce.com", true },
+ { "atomic.red", true },
{ "atomicbounce.co.uk", true },
{ "atomism.com", true },
{ "atorcidabrasileira.com.br", true },
@@ -3385,7 +3524,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "attendantdesign.com", true },
{ "attendu.cz", true },
{ "attention.horse", true },
- { "attilagyorffy.com", true },
{ "attilavandervelde.nl", true },
{ "attinderdhillon.com", true },
{ "attitudes-bureaux.fr", true },
@@ -3395,6 +3533,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atulhost.com", true },
{ "atviras.lt", false },
{ "atvirtual.at", true },
+ { "atvsafety.gov", true },
+ { "atwar-mod.com", true },
{ "atwonline.org", true },
{ "atxchirocoverage.com", true },
{ "atyourprice.net", true },
@@ -3404,7 +3544,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atypicom.pt", true },
{ "atzenchefin.de", true },
{ "au-be.net", true },
- { "au2pb.net", true },
{ "au2pb.org", true },
{ "aubergegilly.ch", true },
{ "aubg.org", true },
@@ -3415,12 +3554,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aucubin.de", true },
{ "audialbuquerqueparts.com", true },
{ "audiblox.co.za", true },
+ { "audiense.com", false },
{ "audio-detector.com", true },
+ { "audiobookboo.com", true },
{ "audiobookstudio.com", true },
{ "audiolibri.org", true },
{ "audiolot.com", true },
+ { "audion.cc", true },
{ "audion.hr", true },
- { "audioonly.stream", true },
{ "audiophile.ch", true },
{ "audiophix.com", true },
{ "audiorecording.me", true },
@@ -3433,11 +3574,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auditos.com", true },
{ "audits.io", true },
{ "auditsquare.com", true },
+ { "audreyjudson.com", true },
{ "auerbach-verlag.de", true },
{ "auf-feindgebiet.de", true },
{ "augen-seite.de", true },
{ "augiero.it", true },
- { "augmentable.de", true },
+ { "augmentable.de", false },
{ "augmented-portal.com", true },
{ "august-don.site", true },
{ "august.black", true },
@@ -3452,7 +3594,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auntie-eileens.com.au", true },
{ "aupasdecourses.com", true },
{ "auplidespages.fr", true },
- { "aur.rocks", true },
+ { "aurelieburn.fr", true },
{ "aurelienaltarriba.fr", true },
{ "aureus.pw", true },
{ "auri.ga", true },
@@ -3466,6 +3608,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auroz.video", true },
{ "aus-ryugaku.info", true },
{ "ausmwoid.de", true },
+ { "auspicacious.org", true },
{ "aussiefunadvisor.com", true },
{ "aussiegreenmarks.com.au", true },
{ "aussieservicedown.com", true },
@@ -3488,12 +3631,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auszeit-walsrode.de", true },
{ "auszeit.bio", true },
{ "auth.adult", true },
+ { "authenticwoodcraft.com", true },
{ "authinfo-bestellen.de", true },
{ "authinity.com", true },
+ { "authland.com", false },
{ "author24.biz", true },
+ { "author24.info", true },
{ "authoritysolutions.com", true },
{ "autimatisering.nl", true },
{ "auto-anleitung.de", true },
+ { "auto-dealership-news.com", true },
{ "auto-motor-i-sport.pl", true },
{ "auto-plus.tn", true },
{ "auto-spurgo.com", true },
@@ -3517,6 +3664,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autodidacticstudios.org", true },
{ "autoentrepreneurinfo.com", true },
{ "autoepc.ro", true },
+ { "autohaus-snater.de", true },
{ "autoinsurancehavasu.com", true },
{ "autokovrik-diskont.ru", true },
{ "autoledky.sk", true },
@@ -3528,13 +3676,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "automotivegroup-usedcars.be", true },
{ "automotivemechanic.org", true },
{ "automoto-tom.net", true },
+ { "autonewssite.com", true },
{ "autoosijek.com", true },
{ "autopapo.com.br", true },
{ "autoparts.im", true },
{ "autoparts.sh", true },
{ "autoparts.wf", true },
- { "autoprice.info", true },
+ { "autoprice.info", false },
{ "autoprogconsortium.ga", true },
+ { "autoproshouston.com", true },
{ "autorando.com", true },
{ "autoschadeschreuder.nl", true },
{ "autoscuola.roma.it", true },
@@ -3548,14 +3698,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autospurgo.milano.it", true },
{ "autostodulky.cz", true },
{ "autotechschool.com", true },
+ { "autoteplo.org", true },
{ "autoterminus-used.be", true },
+ { "autoto.hr", true },
{ "autoverzekeringafsluiten.com", true },
{ "autowerkstatt-puchheim.de", true },
- { "autozane.com", true },
{ "autres-talents.fr", true },
+ { "autshir.com", true },
{ "auux.com", true },
{ "auvernet.org", true },
{ "aux-arts-de-la-table.com", true },
+ { "auxiliame.com", true },
+ { "auxille.com", true },
{ "auxquatrevents.ch", true },
{ "av-yummy.com", true },
{ "av0ndale.de", true },
@@ -3568,9 +3722,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avalon-island.ru", true },
{ "avalon-rpg.com", true },
{ "avalon-studios.de", true },
+ { "avalyuan.com", true },
{ "avanet.ch", true },
{ "avanet.com", true },
{ "avanovum.de", true },
+ { "avantitualatin.com", true },
{ "avarty.com", true },
{ "avarty.net", true },
{ "avatardiffusion.com", true },
@@ -3589,7 +3745,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "averen.co.uk", true },
{ "avernis.de", true },
{ "avexon.com", true },
- { "avi9526.pp.ua", true },
{ "avia-krasnoyarsk.ru", true },
{ "avia-ufa.ru", true },
{ "aviapoisk.kz", true },
@@ -3602,6 +3757,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avietech.com", true },
{ "aviv.nyc", true },
{ "avlhostel.com", true },
+ { "avnet.ws", true },
{ "avocadooo.stream", true },
{ "avocatbeziau.com", true },
{ "avocode.com", true },
@@ -3610,25 +3766,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avpres.net", true },
{ "avptp.org", true },
{ "avqueen.cn", true },
+ { "avs-building-services.co.uk", true },
{ "avsox.com", true },
{ "avticket.ru", false },
{ "avtoforex.ru", true },
{ "avtogara-isperih.com", true },
{ "avtovokzaly.ru", true },
{ "avv.li", true },
+ { "avvaterra.ch", true },
{ "avvcorda.com", true },
{ "avvocato.bologna.it", true },
+ { "awardplatform.com", true },
+ { "awardsplatform.com", true },
{ "awaremi-tai.com", true },
{ "awaresec.com", true },
{ "awaresec.no", true },
{ "awaro.net", true },
{ "awbouncycastlehire.com", true },
+ { "awecademy.org", true },
{ "awen.me", true },
{ "awesomebouncycastles.co.uk", true },
{ "awesomesit.es", true },
- { "awin.la", true },
{ "awk.tw", true },
{ "awksolutions.com", true },
+ { "awningcanopyus.com", true },
{ "awningsaboveus.com", true },
{ "awningsatlantaga.com", true },
{ "awomaninherprime.com", true },
@@ -3639,6 +3800,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "axchap.ir", true },
{ "axelname.ru", true },
{ "axelteichmann.net", true },
+ { "axiatancell.com", true },
{ "axiomer.com", true },
{ "axiomer.es", true },
{ "axiomer.eu", true },
@@ -3647,18 +3809,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "axiomer.org", true },
{ "axis-stralis.co.uk", true },
{ "axisfleetmanagement.co.uk", true },
- { "axka.com", false },
+ { "axolotlfarm.org", false },
{ "axonholdingse.eu", true },
{ "axrec.de", true },
- { "axtudo.com", false },
+ { "ay-net.jp", true },
+ { "ayahya.me", true },
{ "ayanomimi.com", true },
{ "aycomba.de", true },
{ "ayesh.me", true },
- { "ayesh.win", true },
{ "aykutcevik.com", true },
{ "aylak.com", true },
{ "aylesburycastlehire.co.uk", true },
{ "aymerick.fr", true },
+ { "aymericlagier.com", true },
{ "ayothemes.com", true },
{ "ayrohq.com", true },
{ "ayrshirebouncycastlehire.co.uk", true },
@@ -3666,7 +3829,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ayurveda-mantry.com", true },
{ "az-moga.bg", true },
{ "az.search.yahoo.com", false },
- { "azabani.com", true },
{ "azadliq.info", true },
{ "azazy.net", false },
{ "azgfd.com", true },
@@ -3678,6 +3840,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "azort.com", true },
{ "azrazalea.net", true },
{ "azso.pro", true },
+ { "azsupport.com", true },
{ "aztraslochi.it", true },
{ "aztrix.me", true },
{ "azu-l.com", true },
@@ -3698,123 +3861,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "b-root-force.de", true },
{ "b-services.net", true },
{ "b-ticket.ch", true },
- { "b0618.com", true },
- { "b0618.net", true },
- { "b0868.com", true },
- { "b0868.net", true },
{ "b0k.org", true },
{ "b0rk.com", true },
- { "b1.work", true },
- { "b1758.com", true },
- { "b1758.net", true },
- { "b1768.com", true },
- { "b1768.net", true },
- { "b1788.com", true },
- { "b1788.net", true },
+ { "b1788.net", false },
{ "b1c1l1.com", true },
{ "b1rd.tk", true },
- { "b2486.com", true },
- { "b2486.net", true },
+ { "b2and.com", false },
{ "b2bmuzikbank.com", true },
{ "b303.me", true },
{ "b4bouncycastles.co.uk", true },
{ "b4ckbone.de", true },
{ "b4r7.de", true },
{ "b4z.eu", true },
- { "b5189.com", true },
- { "b5189.net", true },
- { "b5289.com", true },
- { "b5289.net", true },
- { "b5989.com", true },
- { "b5989.net", true },
{ "b64.club", true },
{ "b72.com", true },
{ "b72.net", true },
- { "b8591.com", true },
- { "b8591.net", true },
- { "b8979.com", true },
- { "b8979.net", true },
- { "b9018.com", true },
- { "b9018.net", true },
- { "b9108.com", true },
- { "b9108.net", true },
- { "b9110.com", true },
- { "b9110.net", true },
- { "b9112.com", true },
- { "b9112.net", true },
- { "b911gt.com", true },
- { "b911gt.net", true },
- { "b9168.com", true },
- { "b91688.com", true },
- { "b91688.info", true },
- { "b91688.net", true },
- { "b91688.org", true },
- { "b9175.com", true },
- { "b9175.net", true },
- { "b9258.com", true },
- { "b9258.net", true },
- { "b9318.com", true },
- { "b9318.net", true },
- { "b9418.com", true },
- { "b9418.net", true },
- { "b9428.com", true },
- { "b9428.net", true },
- { "b9453.com", true },
- { "b9453.net", true },
- { "b9468.com", true },
- { "b9468.net", true },
- { "b9488.com", true },
- { "b9488.net", true },
- { "b9498.com", true },
- { "b9498.net", true },
- { "b9518.com", true },
- { "b9518.info", true },
- { "b9518.net", true },
- { "b9518.org", true },
- { "b9528.com", true },
- { "b9528.net", true },
- { "b9538.com", true },
- { "b9538.net", true },
- { "b9586.net", true },
- { "b9588.net", true },
- { "b95888.net", true },
- { "b9589.net", true },
- { "b9598.com", true },
- { "b9598.net", true },
- { "b9658.com", true },
- { "b9658.net", true },
- { "b9758.com", true },
- { "b9758.net", true },
- { "b9818.com", true },
- { "b9818.net", true },
- { "b9858.com", true },
- { "b9858.net", true },
- { "b9880.com", true },
- { "b9883.net", true },
- { "b9884.net", true },
- { "b9885.net", true },
- { "b9886.net", true },
- { "b9887.net", true },
- { "b9888.net", true },
- { "b9889.net", true },
- { "b9920.com", true },
- { "b9948.com", true },
- { "b9948.net", true },
- { "b9960.com", true },
- { "b99886.com", true },
- { "b9best.cc", true },
- { "b9best.net", true },
- { "b9king.cc", true },
- { "b9king.com", true },
- { "b9king.net", true },
- { "b9winner.cc", true },
- { "b9winner.net", true },
{ "baalsworld.de", true },
{ "baas-becking.biology.utah.edu", true },
+ { "baazee.de", true },
{ "babacasino.net", true },
{ "babai.ru", true },
{ "babarkata.com", true },
{ "babeleo.com", true },
+ { "baby-bath-tub.com", true },
{ "baby-digne.com", true },
{ "baby-fotografie-muenchen.de", true },
{ "babybauch-shooting-muenchen.de", true },
@@ -3825,16 +3894,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "babyphototime.com", true },
{ "babypibu.com", true },
{ "babyshoprimini.com", true },
- { "bacgrouppublishing.com", true },
{ "bachata.info", true },
{ "baches-piscines.com", true },
{ "baciu.ch", true },
- { "backeby.eu", true },
{ "backmountaingas.com", true },
{ "backpacker.dating", true },
{ "backschues.com", true },
{ "backschues.de", true },
{ "backschues.net", true },
+ { "backseatbandits.com", true },
{ "backsideverbier.ch", true },
{ "backterris.com", true },
{ "backtest.org", true },
@@ -3870,17 +3938,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "baer.im", false },
{ "baer.one", false },
{ "baer.space", true },
- { "baffinlee.com", true },
{ "bag.bg", true },
{ "bageez.us", true },
+ { "bagelcraft.net", true },
{ "bagelsbakery.com", false },
{ "bageluncle.com", true },
{ "baggy.me.uk", true },
{ "bagheera.me.uk", true },
+ { "baglu.com", true },
{ "bagsofbounce.co.uk", true },
{ "bagspecialist.nl", true },
{ "bagstage.de", true },
{ "bah.im", false },
+ { "bahaiprayers.io", true },
{ "bahnbonus-praemienwelt.de", true },
{ "bahnenimbild.de", true },
{ "bahnenimbild.eu", true },
@@ -3893,6 +3963,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bailakomigo.com.br", true },
{ "baildonbouncycastles.co.uk", true },
{ "baileebee.com", true },
+ { "bailonga.com", true },
{ "baitulongbaycruises.com", true },
{ "baiyangliu.com", true },
{ "bajajfinserv.in", true },
@@ -3918,6 +3989,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "balcaonet.com.br", true },
{ "balconnr.com", true },
{ "balconsverdun.com", true },
+ { "baldur.cc", true },
{ "balia.de", true },
{ "balicekzdravi.cz", true },
{ "balidesignshop.com.br", true },
@@ -3926,18 +3998,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "balist.es", true },
{ "balivillassanur.com", true },
{ "balkonien.org", true },
+ { "ball-bizarr.de", true },
{ "ball.holdings", true },
{ "ball3d.es", true },
+ { "ballarin.cc", true },
{ "ballejaune.com", true },
+ { "balletcenterofhouston.com", true },
{ "ballinarsl.com.au", true },
- { "ballitolocksmith.com", true },
{ "ballmerpeak.org", true },
{ "ballonsportclub-erlangen.de", true },
{ "ballotapi.com", true },
{ "ballothero.com", true },
{ "ballparkbuns.com", false },
{ "ballroom.info", true },
+ { "balmofgilead.org.uk", true },
{ "balslev.io", true },
+ { "balticer.de", true },
{ "balticnetworks.com", true },
{ "bamahammer.com", true },
{ "bambooforest.nl", true },
@@ -3945,6 +4021,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bambumania.com.br", true },
{ "bamily.rocks", true },
{ "bananavapes.com", true },
+ { "banburybid.com", true },
{ "bancacrs.it", true },
{ "bancaolhares.com.br", true },
{ "bancobai.ao", true },
@@ -3956,25 +4033,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bandiga.it", true },
{ "bandito.re", true },
{ "banes.ch", true },
+ { "bangdream.ga", true },
{ "bangkok-dark-night.com", true },
{ "bangkok.dating", true },
{ "bangkokcity.de", true },
{ "bangorfederal.com", false },
+ { "bangridho.com", true },
{ "bangumi.co", true },
{ "banham.co.uk", true },
{ "banham.com", true },
+ { "banjostringiz.com", true },
{ "bank.simple.com", false },
{ "bankbranchlocator.com", true },
{ "bankcardoffer.com", true },
{ "bankee.us", true },
{ "bankerbuch.de", true },
+ { "bankersonline.com", true },
{ "banketbesteld.nl", true },
{ "bankfreeoffers.com", true },
{ "bankgradesecurity.com", true },
{ "bankin.com", true },
{ "bankinter.pt", true },
{ "bankio.se", true },
- { "banknet.gov", true },
{ "bankofdenton.com", true },
{ "banksiaparkcottages.com.au", true },
{ "bankstownapartments.com.au", true },
@@ -3982,19 +4062,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "banned-bitches.tk", true },
{ "bannermarquees.ie", true },
{ "bannsecurity.com", true },
- { "banoviny.sk", true },
{ "banquevanbreda.be", true },
{ "banter.city", true },
- { "bao-in.com", true },
- { "bao-in.net", true },
{ "baobeiglass.com", true },
- { "baodan666.com", true },
{ "baofengtech.com", true },
{ "baopublishing.it", true },
{ "baptistedeleris.fr", true },
{ "bar-harcourt.com", true },
{ "barabrume.fr", true },
{ "barans2239.com", true },
+ { "barbarabowersrealty.com", true },
{ "barbarafabbri.com", true },
{ "barbarafeldman.com", true },
{ "barbarians.com", false },
@@ -4002,6 +4079,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "barbate.fr", true },
{ "barbershop-harmony.org", true },
{ "barbershop-lasvillas.com", true },
+ { "barbiere.it", true },
{ "barbu.family", true },
{ "barburas.com", true },
{ "barcamp.koeln", true },
@@ -4015,7 +4093,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "baresquare.com", true },
{ "barf-alarm.de", true },
{ "baripedia.org", true },
- { "baris-sagdic.com", true },
{ "bariseau-mottrie.be", true },
{ "bariskaragoz.nl", true },
{ "baristador.com", true },
@@ -4027,6 +4104,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "barracuda.com.tr", true },
{ "barrera.io", true },
{ "barriofut.com", true },
+ { "barrydenicola.com", true },
{ "barryswebdesign.co.uk", true },
{ "bars.kh.ua", true },
{ "barsashop.com.br", true },
@@ -4039,6 +4117,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bartelt.name", true },
{ "barter4crypto.com", true },
{ "barthonia-showroom.de", true },
+ { "bartkramer.nl", true },
{ "bartlamboo.nl", true },
{ "bartolomebellido.com", true },
{ "bartula.de", true },
@@ -4056,7 +4135,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "basementdoctor.com", true },
{ "basementdoctornorthwest.com", true },
{ "basementfinishingohio.com", true },
- { "basercap.co.ke", true },
+ { "basementwaterproofingdesmoines.com", true },
+ { "baserverz.ga", true },
{ "bashing-battlecats.com", true },
{ "bashstreetband.co.uk", true },
{ "basicapparel.de", true },
@@ -4071,19 +4151,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bassresource.com", true },
{ "bassrider.eu", true },
{ "bassys.com.co", true },
- { "bastadigital.com", true },
{ "bastelzauberwelt.de", true },
{ "bastianstalder.ch", true },
{ "bastiv.com", true },
- { "bastivmobile.com", true },
{ "bastolino.de", true },
{ "basw.eu", true },
{ "baswetter.photography", true },
{ "basyspro.net", true },
- { "bat909.com", true },
- { "bat909.net", true },
- { "bat9vip.com", true },
- { "bat9vip.net", true },
{ "batcave.tech", true },
{ "batch.com", true },
{ "bati-alu.fr", true },
@@ -4098,12 +4172,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "battle-game.com", true },
{ "battleboxx.com", false },
{ "battleofthegridiron.com", true },
- { "batvip9.net", true },
- { "bauen-mit-ziegel.de", true },
{ "bauer.network", true },
+ { "bauernmarkt-fernitz.at", true },
{ "baugeldspezi.de", true },
{ "baugemeinschaftbernstein.de", true },
{ "baumannfabrice.com", true },
+ { "baur.de", true },
{ "bausep.de", true },
{ "baustils.com", true },
{ "bauthier-occasions.be", true },
@@ -4141,23 +4215,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bbcastles.com", true },
{ "bbgeschenke.ch", true },
{ "bbimarketing.com", true },
+ { "bbinsure.com", true },
{ "bbka.org.uk", true },
{ "bbkaforum.co.uk", true },
{ "bbkworldwide.jp", true },
+ { "bbld.de", true },
{ "bblove.me", true },
{ "bblsa.ch", true },
{ "bbnbb.de", true },
{ "bbnx.net", true },
- { "bbswin9.cc", true },
- { "bbswin9.com", true },
{ "bbuio.com", false },
{ "bbw.dating", true },
{ "bbwcs.co.uk", true },
- { "bbxin9.com", true },
- { "bbxin9.net", true },
{ "bc-bd.org", false },
{ "bc-diffusion.com", true },
- { "bc-personal.ch", true },
{ "bcansw.com.au", true },
{ "bcbulle.ch", true },
{ "bcdonadio.com", true },
@@ -4169,17 +4240,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bck-koethen.de", true },
{ "bck-lelystad.nl", true },
{ "bck.me", true },
+ { "bckaccompressoroz.com", true },
{ "bclogandtimberbuilders.com", true },
{ "bclrk.us", true },
{ "bcmainland.ca", true },
{ "bcmguide.com", true },
{ "bcmhire.co.uk", true },
- { "bcnet.com.hk", true },
{ "bcpc-ccgpfcheminots.com", true },
{ "bcrook.com", true },
{ "bcs.adv.br", true },
{ "bcswampcabins.com", true },
{ "bcvps.com", true },
+ { "bcyw56.live", true },
{ "bd2positivo.com", true },
{ "bda-boulevarddesairs.com", true },
{ "bdbxml.net", true },
@@ -4189,23 +4261,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bdvg.org", true },
{ "be-a-password.ninja", true },
{ "be-ka-tec.de", true },
+ { "be-real.life", false },
{ "be-up-developpement.com", true },
{ "be-webdesign.com", true },
{ "be.search.yahoo.com", false },
{ "be2cloud.de", true },
- { "be9418.com", true },
- { "be9418.info", true },
- { "be9418.net", true },
- { "be9418.org", true },
- { "be9458.com", true },
- { "be9458.info", true },
- { "be9458.net", true },
- { "be9458.org", true },
- { "be958.com", true },
- { "be958.info", true },
- { "be958.net", true },
- { "be958.org", true },
{ "beacham.online", true },
+ { "beachcitycastles.com", true },
{ "beachfutbolclub.com", true },
{ "beacinsight.com", true },
{ "beadare.com", true },
@@ -4214,12 +4276,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bealpha.pl", true },
{ "beamer-discount.de", true },
{ "beamstat.com", true },
+ { "beanbagaa.com", true },
+ { "beanilla.com", true },
{ "beanjuice.me", true },
{ "beans-one.com", false },
{ "bearcosports.com.br", true },
{ "bearded.sexy", true },
{ "beardic.cn", true },
{ "bearingworks.com", true },
+ { "beastiejob.com", true },
{ "beastowner.li", true },
{ "beatfeld.de", true },
{ "beatnikbreaks.com", true },
@@ -4232,6 +4297,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beautyby.tv", true },
{ "beautyevent.fr", true },
{ "beautykat.ru", true },
+ { "beaverdamautos.com", true },
{ "bebef.de", true },
{ "bebefofuxo.com.br", true },
{ "bebes.uno", true },
@@ -4242,7 +4308,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beckenhamcastles.co.uk", true },
{ "beckerantiques.com", true },
{ "beckon.com", true },
- { "becoast.fr", true },
{ "becs.ch", true },
{ "becydog.cz", true },
{ "bedamedia.com", true },
@@ -4253,13 +4318,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bedfordnissanparts.com", true },
{ "bedlingtonterrier.com.br", true },
{ "bednar.co", true },
+ { "bedrijfsfotoreportages.nl", true },
{ "bedrijfsportaal.nl", true },
{ "bedrocklinux.org", true },
{ "bedste10.dk", true },
{ "bee-creative.nl", true },
{ "bee-line.org.uk", true },
{ "bee.clothing", true },
- { "bee.supply", true },
{ "bee.tools", true },
{ "beechwoodmetalworks.com", true },
{ "beehive.govt.nz", true },
@@ -4278,8 +4343,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beekeeping.clothing", true },
{ "beekeeping.tools", true },
{ "beeksnetwork.nl", true },
+ { "beelen.fr", true },
{ "beelit.com", true },
{ "beeming.net", true },
+ { "beer9.com", true },
{ "beercandle.com", true },
{ "beergazetteer.com", true },
{ "beerians.com", true },
@@ -4301,6 +4368,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beezkneezcastles.co.uk", true },
{ "beeznest.com", true },
{ "befoodsafe.gov", true },
+ { "beforeyoueatoc.com", true },
{ "beframed.ch", true },
{ "befundonline.de", true },
{ "begabungsfoerderung.info", true },
@@ -4308,7 +4376,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beginatzero.com", true },
{ "beginner.nl", true },
{ "beginwp.top", true },
- { "begoodny.co.il", true },
{ "behamepresrdce.sk", true },
{ "behamzdarma.cz", true },
{ "behindthethrills.com", true },
@@ -4323,6 +4390,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beimchristoph.de", true },
{ "beinad.com", true },
{ "beinad.ru", true },
+ { "bejarano.io", true },
{ "belacapa.com.br", true },
{ "belanglos.de", true },
{ "belani.eu", true },
@@ -4335,7 +4403,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "belarto.pl", true },
{ "belastingdienst-in-beeld.nl", false },
{ "belastingmiddeling.nl", true },
- { "belcompany.nl", false },
+ { "belavis.com", true },
{ "belegit.org", true },
{ "belfastbounce.co.uk", true },
{ "belfastlocks.com", true },
@@ -4350,11 +4418,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bell.id.au", true },
{ "bella.network", true },
{ "bellamodeling.com", true },
+ { "bellinghamdetailandglass.com", true },
{ "belloy.ch", true },
{ "belloy.net", true },
{ "bellthrogh.com", true },
{ "bellthrough.com", true },
{ "belly-button-piercings.com", true },
+ { "bellyandbrain.amsterdam", true },
{ "belmontgoessolar.org", true },
{ "belouga.org", true },
{ "belt.black", true },
@@ -4362,6 +4432,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "belvoirbouncycastles.co.uk", true },
{ "bely-mishka.by", true },
{ "belyvly.com", true },
+ { "bemcorp.de", true },
{ "bemindly.com", true },
{ "bemsoft.pl", true },
{ "ben-energy.com", false },
@@ -4375,10 +4446,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benburwell.com", true },
{ "benc.io", true },
{ "benceskorka.com", true },
- { "benchcast.com", true },
{ "benchling.com", true },
{ "benchmarkmonument.com", true },
- { "bencorby.com", true },
+ { "benchstoolo.com", true },
{ "bendemaree.com", true },
{ "bendigoland.com.au", true },
{ "bendingtheending.com", true },
@@ -4439,6 +4509,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "berasavocate.com", true },
{ "berdaguermontes.eu", false },
{ "bergenhave.nl", true },
+ { "berger-chiro.com", true },
{ "bergevoet-fa.nl", true },
{ "bergfreunde.de", true },
{ "bergfreunde.dk", true },
@@ -4450,6 +4521,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bergfreunde.no", true },
{ "bergfreunde.se", true },
{ "berglust-pur.de", true },
+ { "bergmanbeachproperties.com", true },
{ "bergmann-fotografin-berlin.de", true },
{ "bergmann-fotografin-dortmund.de", true },
{ "bergmann-fotografin-duesseldorf.de", true },
@@ -4459,9 +4531,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bergmann-fotografin-koeln.de", true },
{ "bergmann-fotografin-muenchen.de", true },
{ "bergmann-fotografin-stuttgart.de", true },
+ { "bergstoneware.com", true },
{ "berichtsheft-vorlage.de", true },
{ "berikod.ru", true },
- { "berliancom.com", false },
+ { "berinhard.pl", true },
+ { "berliancom.com", true },
{ "berlin-flirt.de", true },
{ "berlin.dating", true },
{ "bermeitinger.eu", true },
@@ -4469,6 +4543,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bernadetteanderes.ch", true },
{ "bernardcontainers.be", true },
{ "bernarddickens.com", true },
+ { "bernardez-photo.com", true },
{ "bernardfischer.fr", true },
{ "bernardgo.com", true },
{ "bernat.ch", true },
@@ -4476,16 +4551,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bernd-leitner-fotodesign.com", true },
{ "bernd-leitner-fotodesign.de", true },
{ "bernd-leitner.de", true },
+ { "berndklaus.at", true },
{ "bernhard-seidenspinner.de", true },
{ "bernhardkau.de", true },
{ "bernhardluginbuehl.ch", true },
{ "bernhardluginbuehl.com", true },
{ "berodes.be", true },
- { "berr.yt", true },
{ "berra.se", true },
{ "berruezoabogados.com", true },
{ "berrus.com", true },
- { "berry.cat", true },
{ "berrypay.com", true },
{ "bersierservices.ch", true },
{ "bersotavocats.fr", true },
@@ -4501,15 +4575,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "besb.io", true },
{ "besb66.com", true },
{ "beschriftung-metz.de", true },
+ { "bescover.com", true },
{ "beserberg.tk", true },
{ "besole.ch", true },
{ "bespaarenergie.click", true },
- { "bespaarnu.click", true },
{ "bespokestraps.com", true },
{ "besser-beissen.de", true },
{ "bessettenotaire.com", true },
+ { "best-accounting-schools.com", true },
+ { "best-art-colleges.com", true },
+ { "best-baptist-colleges.com", true },
+ { "best-beauty-schools.com", true },
+ { "best-business-colleges.com", true },
+ { "best-catholic-colleges.com", true },
+ { "best-community-colleges.com", true },
+ { "best-culinary-colleges.com", true },
+ { "best-education-schools.com", true },
+ { "best-engineering-colleges.com", true },
{ "best-essay-service.com", true },
- { "best-of-bounce.co.uk", true },
+ { "best-graduate-programs.com", true },
+ { "best-hvac-schools.com", true },
+ { "best-lutheran-colleges.com", true },
+ { "best-management-schools.com", true },
+ { "best-marketing-schools.com", true },
+ { "best-music-colleges.com", true },
+ { "best-nursing-colleges.com", true },
+ { "best-pharmacy-schools.com", true },
+ { "best-trucking-schools.com", true },
{ "best-wallpaper.net", true },
{ "best10websitebuilders.com", true },
{ "best2pay.net", true },
@@ -4518,52 +4610,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bestattungshaus-kammerer.de", true },
{ "bestautoinsurance.com", true },
{ "bestbatteriesonline.com", true },
+ { "bestbefore.com", true },
{ "bestbrakes.com", true },
{ "bestbridal.top", true },
{ "bestbyte.com.br", true },
{ "bestcellular.com", false },
{ "bestdating.today", true },
+ { "bestelectricnd.com", true },
{ "bestemailmarketingsoftware.org", true },
- { "bestesb.com", true },
- { "bestesb.net", true },
{ "bestessaycheap.com", true },
{ "bestessayhelp.com", true },
{ "bestfriendsequality.org", true },
{ "bestgiftever.ca", true },
{ "bestgifts4you.com", true },
- { "bestiahosting.com", true },
{ "bestinductioncooktop.us", true },
+ { "bestinshowing.com", true },
{ "bestinver.es", true },
{ "bestjumptrampolines.be", true },
+ { "bestkenmoredentists.com", true },
{ "bestlashesandbrows.com", true },
{ "bestlashesandbrows.hu", true },
{ "bestmotherfucking.website", true },
{ "bestoffert.club", true },
{ "bestoliveoils.com", true },
- { "bestparking.xyz", true },
+ { "bestpal.eu", true },
{ "bestpartyhire.com", true },
{ "bestperfumebrands.com", true },
- { "bestpig.fr", true },
+ { "bestplumbing.com", true },
{ "bestschools.io", true },
+ { "bestschools.top", true },
{ "bestseries.tv", true },
{ "bestshoesmix.com", true },
{ "bestwebsite.gallery", true },
- { "bet-99.cc", true },
- { "bet-99.com", true },
- { "bet-99.net", true },
- { "bet168wy.com", true },
- { "bet168wy.net", true },
- { "bet909.com", true },
- { "bet9bet9.net", true },
{ "betacavi.com", true },
{ "betacloud.io", true },
+ { "betaclouds.net", true },
{ "betalenviainternet.nl", true },
{ "betaprofiles.com", true },
{ "betaworx.de", true },
{ "betaworx.eu", true },
{ "betecnet.de", true },
- { "betgo9.cc", true },
- { "bethanyduke.com", true },
{ "bethpage.net", true },
{ "betobaccofree.gov", true },
{ "betonbit.com", true },
@@ -4571,6 +4657,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "betrallyarabia.com", true },
{ "bets.gg", true },
{ "betseybuckheit.com", true },
+ { "betsharpangles.com", true },
{ "betsyshilling.com", true },
{ "bett1.de", true },
{ "better-bounce.co.uk", true },
@@ -4588,18 +4675,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "betterscience.org", true },
{ "bettertechinterviews.com", true },
{ "bettertest.it", true },
+ { "bettertime.de", true },
+ { "bettertime.jetzt", true },
{ "betterweb.fr", true },
{ "betterworldinternational.org", true },
- { "bettflaschen.ch", true },
{ "bettingbusiness.ru", true },
{ "bettingsider.dk", true },
{ "bettolinokitchen.com", true },
{ "bettrlifeapp.com", true },
{ "betulashop.ch", true },
{ "betwalker.com", true },
- { "between.be", true },
- { "betwin9.com", true },
- { "betwin9.net", true },
{ "beulen.email", true },
{ "beulen.link", true },
{ "beulen.pro", true },
@@ -4651,19 +4736,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bglsingles.de", true },
{ "bgp.space", true },
{ "bgr34.cz", true },
+ { "bgs-game.com", true },
{ "bgtgames.com", true },
{ "bgtoyou.com", true },
+ { "bguidinger.com", true },
{ "bgwfans.com", true },
{ "bh-oberland.de", true },
{ "bh.sb", true },
{ "bharath-g.in", true },
{ "bhodisoft.com", true },
{ "bhost.net", true },
- { "bhosted.nl", true },
{ "bhtelecom.ba", true },
{ "bhuntr.com", true },
{ "bi.search.yahoo.com", false },
{ "biaggeo.com", true },
+ { "biancolievito.it", true },
{ "biano-ai.com", true },
{ "biasmath.es", true },
{ "biathloncup.ru", true },
@@ -4675,6 +4762,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biblioblog.fr", true },
{ "bibliomarkt.ch", true },
{ "biblionaut.net", true },
+ { "biblioporn.com", true },
{ "bibliotekarien.se", true },
{ "biboumail.fr", true },
{ "bibuch.com", true },
@@ -4682,12 +4770,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bicha.net", true },
{ "bicranial.io", true },
{ "bicycle-events.com", true },
+ { "bicycleframeiz.com", true },
{ "biddl.com", true },
{ "biddle.co", true },
{ "bidu.com.br", true },
{ "bie.edu", false },
{ "biegal.ski", true },
{ "biegner-technik.de", true },
+ { "biehl.tech", true },
{ "biehlsoft.info", true },
{ "bielefailed.de", true },
{ "bien-etre-sante.info", true },
@@ -4700,8 +4790,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bieser.ch", true },
{ "biester.pro", true },
{ "bieumau.net", true },
+ { "biewen.me", true },
{ "bifrost.cz", true },
- { "biftin.net", true },
{ "big-andy.co.uk", true },
{ "big-bounce.co.uk", true },
{ "big-fluglaerm-hamburg.de", true },
@@ -4714,16 +4804,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bigclassaction.com", true },
{ "bigdinosaur.org", true },
{ "biggreenexchange.com", true },
+ { "bigideasnetwork.com", true },
{ "bigio.com.br", true },
- { "bigjohn.ru", true },
{ "biglou.com", false },
{ "bignumworks.com", true },
+ { "bigorbitgallery.org", true },
+ { "bigserp.com", true },
{ "bigsisterchannel.com", true },
+ { "bigskylifestylerealestate.com", true },
{ "bigskymontanalandforsale.com", true },
{ "bigwiseguide.com", true },
{ "bihub.io", true },
{ "biilo.com", true },
- { "bijouxbrasil.com.br", true },
{ "bijouxcherie.com", true },
{ "bijuteriicualint.ro", true },
{ "bike-discount.de", true },
@@ -4749,6 +4841,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biletyplus.by", true },
{ "biletyplus.ua", true },
{ "bilgo.com", true },
+ { "bilibili.link", true },
{ "bilibili.red", true },
{ "bilimoe.com", true },
{ "bilke.org", true },
@@ -4762,9 +4855,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "billionaire365.com", true },
{ "billionairemailinglist.com", false },
{ "billionkiaparts.com", true },
+ { "billkochman.com", true },
{ "billogram.com", true },
{ "billpro.com", false },
- { "billpro.com.au", true },
{ "billrhodesbakery.com", true },
{ "billy.pictures", true },
{ "billyoh.com", true },
@@ -4793,8 +4886,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "binaryevolved.com", true },
{ "binaryrebel.net", true },
{ "binarystud.io", true },
- { "binbin9.com", true },
- { "binbin9.net", true },
{ "binding-problem.com", true },
{ "binfind.com", true },
{ "bing.com", true },
@@ -4803,6 +4894,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "binkanhada.biz", true },
{ "binkconsulting.be", true },
{ "binnenmeer.de", true },
+ { "binsp.net", true },
{ "binti.com", true },
{ "bintooshoots.com", true },
{ "bio-disinfestazione.it", true },
@@ -4828,7 +4920,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biohappiness.com", true },
{ "bioharmony.ca", true },
{ "biointelligence-explosion.com", true },
+ { "bioknowme.com", true },
{ "bioligo.ch", true },
+ { "biologis.ch", true },
+ { "biology-colleges.com", true },
{ "biomasscore.com", true },
{ "biometrics.es", true },
{ "biomodra.cz", true },
@@ -4862,21 +4957,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "birthright.website", true },
{ "birzan.org", true },
{ "bisa-sis.net", true },
+ { "bischoff-mathey.family", true },
{ "biscoint.io", true },
+ { "biscuitcute.com.br", true },
{ "biser-borisov.eu", true },
{ "bismarck-tb.de", true },
{ "biso.ga", true },
{ "bison.co", true },
+ { "bisq.community", true },
{ "bissalama.org", true },
{ "bisschopssteeg.nl", true },
{ "bistrocean.com", true },
+ { "bistrodeminas.com", true },
{ "bistrotdelagare.fr", true },
{ "bit-cloud.de", true },
{ "bit-rapid.com", true },
{ "bit-sentinel.com", true },
{ "bit-service-aalter.be", true },
{ "bit.biz.tr", true },
- { "bit.voyage", true },
{ "bit8.com", true },
{ "bitaccelerate.com", true },
{ "bitbank.cc", true },
@@ -4888,7 +4986,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitburner.de", true },
{ "bitcalt.eu.org", true },
{ "bitcalt.ga", true },
- { "bitclubfun.com", true },
+ { "bitchigo.com", true },
{ "bitcoin-india.net", true },
{ "bitcoin-india.org", true },
{ "bitcoin.asia", true },
@@ -4909,21 +5007,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitcoinwalletscript.tk", true },
{ "bitcoinx.gr", true },
{ "bitcoinx.ro", true },
- { "bitenose.com", true },
+ { "bitcork.io", true },
{ "bitex.la", true },
{ "bitfasching.de", false },
{ "bitfehler.net", true },
{ "bitfence.io", true },
{ "bitfinder.nl", true },
+ { "bitfolio.org", true },
{ "bitfuse.net", true },
{ "bitgo.com", true },
{ "bitgrapes.com", true },
- { "bithap.com", true },
{ "bithir.co.uk", true },
{ "bititrain.com", true },
- { "bitk.co", true },
- { "bitk.co.uk", true },
- { "bitk.eu", true },
{ "bitlish.com", true },
{ "bitlo.com", true },
{ "bitlo.com.tr", true },
@@ -4932,20 +5027,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitmainwarranty.com", true },
{ "bitmarket.net", true },
{ "bitmarket.pl", true },
+ { "bitmask.me", true },
{ "bitmessage.ch", true },
{ "bitmidi.com", true },
{ "bitminter.com", true },
{ "bitmoe.com", true },
- { "bitmon.net", true },
- { "bitok.com", true },
+ { "bitpoll.de", true },
+ { "bitpoll.org", true },
{ "bitpumpe.net", true },
{ "bitref.com", true },
{ "bitrush.nl", true },
{ "bitsafe.com.my", true },
{ "bitsburg.ru", true },
- { "bitshaker.net", true },
{ "bitskins.co", true },
{ "bitskrieg.net", true },
+ { "bitsoffreedom.nl", true },
+ { "bitstep.ca", true },
{ "bitstorm.nl", true },
{ "bitstorm.org", true },
{ "bitsum.com", true },
@@ -4961,6 +5058,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biyori.moe", true },
{ "biyou-homme.com", true },
{ "biz4x.com", true },
+ { "bizbudding.com", true },
+ { "bizcash.co.za", true },
{ "bizeau.ch", true },
{ "bizniskatalog.mk", true },
{ "biznpro.ru", true },
@@ -4970,15 +5069,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biztouch.work", true },
{ "bizzi.tv", true },
{ "bjarnerest.de", true },
- { "bjl5689.com", true },
- { "bjl5689.net", true },
+ { "bjmgeek.science", true },
+ { "bjmun.cn", true },
{ "bjornhelmersson.se", true },
{ "bjornjohansen.no", true },
{ "bjs.gov", true },
{ "bjsbouncycastles.com", true },
{ "bkentertainments.co.uk", true },
- { "bkhayes.com", true },
{ "bkhpilates.co.uk", true },
+ { "bkkposn.com", true },
{ "bklaindia.com", true },
{ "bkositspartytime.co.uk", true },
{ "bl00.se", true },
@@ -4989,6 +5088,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bl4ckb0x.info", true },
{ "bl4ckb0x.net", true },
{ "bl4ckb0x.org", true },
+ { "blaauwgeers.pro", true },
+ { "blaauwgeers.travel", true },
{ "blabber.im", true },
{ "blablacar.co.uk", true },
{ "blablacar.com", true },
@@ -5032,19 +5133,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blackgate.org", true },
{ "blackhat.dk", true },
{ "blackhelicopters.net", true },
+ { "blackhell.xyz", true },
{ "blackhillsinfosec.com", true },
{ "blackilli.de", true },
{ "blackislegroup.com", true },
+ { "blackjackballroomcasino.info", true },
{ "blackkeg.ca", true },
{ "blackl.net", true },
+ { "blacklightparty.be", true },
{ "blackmonday.gr", true },
{ "blacknetwork.eu", true },
{ "blacknova.io", true },
{ "blackonion.com", true },
{ "blackpapermoon.de", true },
{ "blackphoenix.de", true },
+ { "blackpi.dedyn.io", true },
{ "blackroadphotography.de", true },
- { "blackscytheconsulting.com", true },
+ { "blackroot.eu", true },
{ "blackseals.net", true },
{ "blackyau.cc", true },
{ "blackys-chamber.de", true },
@@ -5070,8 +5175,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bleche-onlineshop.at", true },
{ "bleche-onlineshop.de", true },
{ "blechinger.io", true },
- { "blechpirat.name", true },
{ "blechschmidt.saarland", true },
+ { "blenderinsider.com", true },
{ "blenderrecipereviews.com", true },
{ "blending.kr", true },
{ "blendle.com", true },
@@ -5079,22 +5184,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blendr.com", true },
{ "blenheimears.com", true },
{ "blenneros.net", false },
- { "blessedearth.com.au", true },
{ "blessedguy.com", true },
{ "blessedguy.net", false },
{ "blewebprojects.com", true },
{ "blichmann.eu", true },
{ "blidz.com", true },
{ "blieque.co.uk", true },
- { "bliesekow.net", true },
- { "bliker.ga", true },
{ "blikk.no", true },
+ { "blikund.swedbank.se", true },
+ { "blinder.com.co", true },
{ "blindpigandtheacorn.com", true },
{ "blinds-unlimited.com", true },
- { "bling9.com", true },
- { "bling999.cc", true },
- { "bling999.com", true },
- { "bling999.net", true },
{ "blingsparkleshine.com", true },
{ "blink-security.com", true },
{ "blinking.link", true },
@@ -5152,8 +5252,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blogom.at", true },
{ "blogpentrusuflet.ro", true },
{ "blogreen.org", true },
+ { "blogsdna.com", true },
{ "blogthedayaway.com", true },
{ "blogtroterzy.pl", true },
+ { "blok56.nl", true },
+ { "blokmy.com", true },
{ "blood4pets.tk", true },
{ "bloodsports.org", true },
{ "bloom-avenue.com", true },
@@ -5176,27 +5279,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bluecon.ninja", true },
{ "bluecrazii.nl", true },
{ "blued.moe", true },
+ { "bluedata.ltd", true },
{ "bluedeck.org", true },
{ "blueflare.org", true },
{ "bluefrag.com", true },
{ "bluefuzz.nl", true },
- { "bluehelixmusic.com", true },
{ "blueimp.net", true },
+ { "bluekrypt.com", true },
{ "blueliquiddesigns.com.au", true },
{ "bluemeda.web.id", true },
{ "bluemosh.com", true },
{ "bluemtnrentalmanagement.ca", true },
{ "bluenote9.com", true },
{ "blueoakart.com", true },
- { "bluepearl.tk", true },
{ "blueperil.de", true },
{ "bluepoint.one", true },
{ "bluepostbox.de", true },
- { "blueprintloans.co.uk", true },
{ "bluerootsmarketing.com", true },
{ "blues-and-pictures.com", true },
{ "blueskycoverage.com", true },
{ "bluestardiabetes.com", true },
+ { "bluesunhotels.com", true },
{ "bluetexservice.com", true },
{ "bluewavewebdesign.com", true },
{ "bluex.im", true },
@@ -5209,16 +5312,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bluimedia.com", true },
{ "blumenfeldart.com", true },
{ "blumiges-fischbachtal.de", false },
- { "blundell.wedding", true },
{ "bluntandsnakes.com", true },
{ "blupig.net", true },
{ "bluproducts.com.es", true },
{ "blurringexistence.net", true },
+ { "blusens.com", true },
{ "blusmurf.net", true },
{ "blyat.science", true },
{ "blyth.me.uk", true },
{ "blzrk.com", true },
+ { "bm-immo.ch", true },
{ "bmhglobal.com.au", true },
+ { "bminton.is-a-geek.net", true },
{ "bmone.net", true },
{ "bmriv.com", true },
{ "bmros.com.ar", true },
@@ -5232,16 +5337,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bnjscastles.co.uk", true },
{ "bnstree.com", true },
{ "bnty.net", true },
- { "bo1689.com", true },
- { "bo1689.net", true },
- { "bo9club.cc", true },
- { "bo9club.com", true },
- { "bo9club.net", true },
- { "bo9fun.com", true },
- { "bo9fun.net", true },
- { "bo9game.com", true },
- { "bo9game.net", true },
- { "bo9king.net", true },
+ { "bnzblowermotors.com", true },
{ "boardgamegeeks.de", true },
{ "boards.ie", true },
{ "boat-engines.eu", true },
@@ -5250,6 +5346,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boattrader.com.au", true },
{ "bobaly.es", true },
{ "bobancoamigo.com", true },
+ { "bobaobei.net", true },
{ "bobazar.com", true },
{ "bobcopeland.com", true },
{ "bobiji.com", false },
@@ -5274,8 +5371,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bodymusclejournal.com", true },
{ "bodypainter.pl", true },
{ "bodypainting.waw.pl", true },
+ { "bodyshopnews.net", true },
{ "bodyweb.com.br", true },
{ "bodyworkbymichael.com", true },
+ { "bodyworksautorebuild.com", true },
{ "boeddhashop.nl", true },
{ "boekenlegger.nl", true },
{ "boem.gov", true },
@@ -5285,6 +5384,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bogner.sh", true },
{ "bogobeats.com", true },
{ "bogosity.se", true },
+ { "bohan.co", true },
{ "bohramt.de", true },
{ "boimmobilier.ch", true },
{ "boincstats.com", true },
@@ -5313,6 +5413,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bonami.pl", true },
{ "bonami.ro", true },
{ "bonami.sk", true },
+ { "bonawehouse.co.uk", true },
{ "bonbonmania.com", true },
{ "bondank.com", true },
{ "bondarenko.dn.ua", true },
@@ -5321,8 +5422,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bondoer.fr", true },
{ "bondskampeerder.nl", true },
{ "bonebunny.de", true },
- { "bonesserver.com", true },
{ "bonfi.net", true },
+ { "bongo.cat", true },
{ "bonibuty.com", true },
{ "bonifacius.be", true },
{ "bonita.com.br", true },
@@ -5330,6 +5431,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bonnant-associes.ch", true },
{ "bonnant-partners.ch", true },
{ "bonnebouffe.fr", true },
+ { "bonniecoloring.com", true },
+ { "bonniedraw.com", true },
{ "bonnieradvocaten.nl", true },
{ "bonnsustainabilityportal.de", true },
{ "bonnyprints.at", true },
@@ -5340,8 +5443,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bonqoeur.ca", true },
{ "bonrecipe.com", true },
{ "bonsaimedia.nl", true },
- { "boodaah.com", true },
+ { "bonsi.net", true },
+ { "bonux.co", true },
+ { "boodaah.com", false },
{ "boodmo.com", true },
+ { "boogaerdtmakelaars.nl", true },
{ "boogiebouncecastles.co.uk", true },
{ "book-in-hotel.com", true },
{ "booker.ly", true },
@@ -5353,12 +5459,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bookingworldspeakers.com", true },
{ "bookluk.com", true },
{ "bookmein.in", true },
- { "bookourdjs.com", true },
{ "booksearch.jp", true },
- { "bookshopofindia.com", true },
{ "booksinthefridge.at", true },
{ "booktracker-org.appspot.com", true },
{ "bool.be", true },
+ { "boombv.com", true },
{ "boomersurf.com", true },
{ "boomshelf.com", true },
{ "boomshelf.org", true },
@@ -5377,7 +5482,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boosinflatablegames.co.uk", true },
{ "boost.fyi", true },
{ "boost.ink", true },
- { "boostgame.win", true },
{ "booter.pw", true },
{ "bootjp.me", false },
{ "bopiweb.com", true },
@@ -5394,6 +5498,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "borja.io", true },
{ "born2bounce.co.uk", true },
{ "bornandgrazed.com", true },
+ { "borneodictionary.com", true },
{ "bornfiber.dk", true },
{ "bornhack.dk", true },
{ "borowski.pw", true },
@@ -5405,12 +5510,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boskeopolis-stories.com", true },
{ "boss.az", true },
{ "bostadsportal.se", true },
+ { "bostonadvisors.com", true },
{ "bosufitness.cz", true },
{ "bosun.io", true },
- { "bosworthdental.co.uk", true },
{ "bot-manager.pl", true },
+ { "botezdepoveste.ro", true },
{ "botguard.net", true },
- { "botserver.de", true },
+ { "bothellwaygarage.net", true },
+ { "botsindiscord.me", true },
{ "botstack.host", true },
{ "bottaerisposta.net", true },
{ "bottineauneighborhood.org", true },
@@ -5423,6 +5530,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boudah.pl", true },
{ "bougeret.fr", true },
{ "boukoubengo.com", true },
+ { "boulderswap.com", true },
{ "boulzicourt.fr", true },
{ "bounce-a-mania.co.uk", true },
{ "bounce-a-roo.co.uk", true },
@@ -5446,7 +5554,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncearoundsheffield.co.uk", true },
{ "bounceawaycastles.com", true },
{ "bouncebackcastles.co.uk", true },
- { "bouncebeyondcastles.co.uk", true },
{ "bouncebookings.com.au", true },
{ "bouncecrazy.ie", true },
{ "bouncejumpboston.co.uk", true },
@@ -5466,7 +5573,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncetasticuk.co.uk", true },
{ "bouncetheparty.co.uk", true },
{ "bounceunlimited.co.uk", true },
- { "bouncewithbovells.com", false },
{ "bouncewrightcastles.co.uk", true },
{ "bouncincastles.co.uk", true },
{ "bouncing-bugs.co.uk", true },
@@ -5488,6 +5594,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncycastlehire-norwich.com", true },
{ "bouncycastlehire-sheffield.co.uk", true },
{ "bouncycastlehire.co.uk", true },
+ { "bouncycastlehireauckland.co.nz", true },
{ "bouncycastlehirebarnstaple.co.uk", true },
{ "bouncycastlehirebexley.co.uk", true },
{ "bouncycastlehirechelmsford.org.uk", true },
@@ -5503,7 +5610,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncycastleman.co.uk", true },
{ "bouncycastlemangloucestershire.co.uk", true },
{ "bouncycastleparade.com", true },
- { "bouncycastles.me", true },
{ "bouncycastlesgalway.com", true },
{ "bouncycastleshire.co.uk", true },
{ "bouncycastleshireleeds.co.uk", true },
@@ -5524,7 +5630,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncykings.co.uk", true },
{ "bouncykingsnortheast.co.uk", true },
{ "bouncymacs.co.uk", true },
- { "bouncymadness.com", true },
{ "bouncyrainbows.co.uk", true },
{ "bouncytime.co.uk", true },
{ "bouncytown.co.uk", true },
@@ -5542,6 +5647,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boutiquefutebol.com.br", true },
{ "boutiqueguenaelleverdin.com", true },
{ "bouw.live", true },
+ { "bouzouada.com", true },
{ "bouzouks.net", true },
{ "bovenwebdesign.nl", true },
{ "bowdens.me", true },
@@ -5558,7 +5664,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bownty.it", true },
{ "bownty.nl", true },
{ "bowntycdn.net", true },
- { "boxmoe.cn", true },
{ "boxpeg.com", true },
{ "boxpirates.to", true },
{ "boxvergelijker.nl", true },
@@ -5586,6 +5691,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brackets-salad.com", true },
{ "bracoitaliano.com.br", true },
{ "bradbrockmeyer.com", true },
+ { "bradfergusonrealestate.com", true },
{ "bradfordhottubhire.co.uk", true },
{ "bradfordmascots.co.uk", true },
{ "bradkovach.com", true },
@@ -5609,6 +5715,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brainsik.net", true },
{ "brainster.co", true },
{ "brainvoyagermusic.com", true },
+ { "brainwav.es", true },
{ "brainwork.space", true },
{ "brakemanpro.com", true },
{ "brakpanplumber24-7.co.za", true },
@@ -5628,10 +5735,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brandbuilderwebsites.com", true },
{ "brandcodeconsulting.com", true },
{ "brandcodestyle.com", true },
- { "brando753.xyz", true },
+ { "brandingclic.com", true },
{ "brandongomez.me", true },
{ "brandonhubbard.com", true },
- { "brandonlui.ml", true },
{ "brandonwalker.me", true },
{ "brandrocket.dk", true },
{ "brandstead.com", true },
@@ -5646,6 +5752,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brashear.me", true },
{ "brasilbombas.com.br", true },
{ "brasildxn.com.br", true },
+ { "brasileiro.ca", true },
{ "brasserie-mino.fr", true },
{ "brasspipedreams.org", true },
{ "bratislava-airport-taxi.com", true },
@@ -5674,6 +5781,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "breadofgod.org", true },
{ "breakingtech.it", true },
{ "breakpoint.at", true },
+ { "breaky.de", true },
{ "breathedreamgo.com", true },
{ "breathingblanket.com", true },
{ "brecht.ch", true },
@@ -5704,8 +5812,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bretcarmichael.com", true },
{ "brettabel.com", true },
{ "brettelliff.com", true },
+ { "brettlawyer.com", true },
{ "brettw.xyz", true },
- { "bretz-hufer.de", true },
{ "bretzner.fr", true },
{ "brevboxar.se", true },
{ "brewsouth.com", true },
@@ -5732,14 +5840,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brid.gy", false },
{ "bridalshoes.com", true },
{ "brideandgroomdirect.ie", true },
+ { "bridgedirectoutreach.com", true },
{ "bridgeglobalmarketing.com", true },
+ { "bridgehomeloans.com", true },
{ "bridgement.com", true },
{ "bridgevest.com", true },
{ "bridgingdirectory.com", true },
+ { "bridltaceng.com", true },
{ "brie.tech", true },
{ "briefassistant.com", true },
{ "briefhansa.de", true },
{ "briefvorlagen-papierformat.de", true },
+ { "briffoud.fr", true },
+ { "briggsleroux.com", true },
{ "brighouse-leisure.co.uk", true },
{ "brightday.bz", true },
{ "brightendofleasecleaning.com.au", true },
@@ -5748,6 +5861,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brightonbouncycastles.net", true },
{ "brightonchilli.org.uk", true },
{ "brightonzhang.com", true },
+ { "brightworkcreative.com", true },
{ "brigidaarie.com", true },
{ "brilliantbouncyfun.co.uk", true },
{ "brilliantproductions.co.nz", true },
@@ -5760,7 +5874,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "britelocate.com", true },
{ "britishbeef.com", true },
{ "britishbookmakers.co.uk", true },
- { "britishchronicles.com", true },
{ "britishgroupsg.com", true },
{ "britishpearl.com", true },
{ "britishsciencefestival.org", true },
@@ -5778,6 +5891,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brockmeyer.net", true },
{ "brockmeyer.org", true },
{ "brodowski.cc", true },
+ { "brody.digital", true },
+ { "brody.ninja", true },
{ "broersma.com", true },
{ "broeselei.at", true },
{ "brokenhands.io", true },
@@ -5789,7 +5904,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bronwynlewis.com", true },
{ "broodbesteld.nl", true },
{ "brooke-fan.com", true },
- { "brookehatton.com", true },
+ { "brookehatton.com", false },
{ "brooklynrealestateblog.com", true },
{ "brookworth.com", true },
{ "brossmanit.com", true },
@@ -5800,8 +5915,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brown-devost.com", true },
{ "brownfieldstsc.org", true },
{ "brownihc.com", true },
+ { "browntowncountryclub.com", true },
{ "browsemycity.com", true },
+ { "browserleaks.com", true },
{ "brring.com", true },
+ { "brrr.fr", true },
{ "bru6.de", true },
{ "brucekovner.com", true },
{ "brucemartin.net", true },
@@ -5813,16 +5931,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brunn.email", true },
{ "brunner.ninja", true },
{ "brunohenc.from.hr", true },
+ { "brunoproduit.ch", true },
+ { "brunoramos.com", true },
+ { "brunoramos.org", true },
+ { "brunosouza.org", true },
{ "brush.ninja", true },
{ "bruun.co", true },
- { "bryankaplan.com", true },
{ "bryanquigley.com", true },
{ "bryansmith.net", true },
{ "bryansmith.tech", true },
+ { "brycecanyon.net", true },
+ { "brycecanyonnationalpark.com", true },
+ { "bryggebladet.dk", true },
{ "brzy-svoji.cz", true },
{ "bs-network.net", true },
{ "bs-security.com", true },
- { "bs.sb", true },
{ "bs.to", true },
{ "bs12v.ru", true },
{ "bsa157.org", true },
@@ -5830,7 +5953,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bsc-rietz.at", true },
{ "bscc.support", true },
{ "bsd-box.net", true },
- { "bsd.com.ro", true },
{ "bsdes.net", true },
{ "bsdfreak.dk", true },
{ "bsdlab.com", true },
@@ -5838,7 +5960,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bsdunix.xyz", true },
{ "bsee.gov", true },
{ "bserved.de", true },
- { "bsg-aok-muenchen.de", true },
{ "bsg.ro", true },
{ "bsgamanet.ro", true },
{ "bsidesf.com", true },
@@ -5846,6 +5967,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bsidessf.com", true },
{ "bsimerch.com", true },
{ "bslim-e-boutique.com", true },
+ { "bso-buitengewoon.nl", true },
{ "bsociabl.com", true },
{ "bsp-southpool.com", true },
{ "bsquared.org", true },
@@ -5862,16 +5984,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "btcpop.co", true },
{ "btcycle.org", true },
{ "btio.pw", true },
+ { "btku.org", true },
{ "btmstore.com.br", true },
{ "btnissanparts.com", true },
{ "btorrent.xyz", true },
- { "btrb.ml", true },
{ "btsapem.com", true },
- { "btserv.de", true },
{ "btsoft.eu", true },
{ "btsow.com", true },
{ "bttc.co.uk", true },
- { "btth.live", true },
{ "btth.pl", true },
{ "btth.tv", true },
{ "btth.xyz", true },
@@ -5879,15 +5999,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bturboo.com", true },
{ "bubblegumblog.com", true },
{ "bubblespetspa.com", true },
+ { "bubblin.io", true },
{ "bubblinghottubs.co.uk", true },
{ "bubblybouncers.co.uk", true },
{ "bubhub.io", true },
+ { "bucek.cz", true },
{ "buch-angucken.de", true },
{ "buchhandlungkilgus.de", true },
{ "buchwegweiser.com", true },
- { "buck.com", true },
+ { "buckelewrealtygroup.com", true },
{ "buckypaper.com", true },
- { "budaev-shop.ru", true },
{ "buddhismus.net", true },
{ "buddie5.com", true },
{ "buddlycrafts.com", true },
@@ -5905,12 +6026,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "budolfs.de", true },
{ "buehnenbande.ch", false },
{ "bueltge.de", true },
+ { "buena-vista.cz", true },
{ "buena.me", true },
- { "buergerdialog.net", true },
- { "buergerhaushalt.com", true },
{ "bueroplus.de", true },
{ "bueroschwarz.design", true },
{ "bueroshop24.de", true },
+ { "buettgens.net", true },
{ "buffaloautomation.com", true },
{ "buffaloturf.com.au", true },
{ "buffetbouc.com", true },
@@ -5925,6 +6046,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "build.chromium.org", true },
{ "buildbox.io", true },
{ "buildbytes.com", true },
+ { "buildhoscaletraingi.com", true },
{ "building-cost-estimators.com", true },
{ "buildingclouds.de", true },
{ "buildingcostestimators.co.uk", true },
@@ -5934,6 +6056,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "buildplease.com", true },
{ "buildrightbuildingservicesltd.co.uk", true },
{ "buileo.com", true },
+ { "builtory.my", true },
{ "builtvisible.com", true },
{ "builtwith.com", true },
{ "bukkenfan.jp", true },
@@ -5945,20 +6068,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bulkcandystore.com", true },
{ "bulkingtime.com", true },
{ "bulktrade.de", true },
+ { "bulktshirtsjohannesburg.co.za", true },
{ "bulkwholesalesweets.co.uk", true },
{ "bull.id.au", true },
{ "bulldog-hosting.de", true },
{ "bulledair-savons.ch", true },
{ "bullettags.com", true },
- { "bullpay.com", true },
{ "bullshitmail.nl", true },
{ "bullterrier.nu", true },
{ "bulwarkhost.com", true },
{ "bunbun.be", false },
{ "bund-von-theramore.de", true },
{ "bundespolizei-forum.de", true },
+ { "bungee.pw", true },
+ { "bungee.systems", true },
+ { "bungeetaco.com", true },
{ "bunkyo-life.com", true },
{ "bunny-rabbits.com", true },
+ { "bunnycarenotes.com", true },
{ "bunnyvishal.com", true },
{ "bunzy.ca", true },
{ "bupropion.com", true },
@@ -5966,12 +6093,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "buradangonder.com", true },
{ "burcevo.info", true },
{ "burfordbedandbreakfast.co.uk", true },
+ { "burg-hohnstein.com", true },
{ "burgernet.nl", true },
{ "burgers.io", true },
{ "burghardt.pl", true },
{ "buri.be", false },
{ "burialinsurancenetwork.com", true },
- { "buricloud.fr", true },
{ "burke.services", true },
{ "burlapsac.ca", true },
{ "burncorp.org", true },
@@ -5991,20 +6118,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "burtrum.me", true },
{ "burtrum.name", true },
{ "burtrum.org", true },
+ { "burzcast.ro", true },
{ "burzmali.com", true },
- { "busanhs.bid", true },
+ { "burzmedia.com", true },
+ { "burzstudios.com", true },
{ "busanhs.win", true },
- { "buserror.cn", true },
{ "bushbaby.com", true },
- { "bushcraftfriends.com", true },
{ "busindre.com", true },
{ "business-garden.com", true },
{ "business.facebook.com", false },
+ { "businessadviceperth.com.au", true },
{ "businesscentermarin.ch", true },
{ "businessesdirectory.eu", true },
{ "businessfactors.de", true },
{ "businessimmigration-eu.com", true },
{ "businessimmigration-eu.ru", true },
+ { "businessloanconnection.org", false },
+ { "businessmadeeasypodcast.com", true },
+ { "businessmarketingblog.org", true },
{ "businessplanexperts.ca", true },
{ "businessradar.com.au", true },
{ "businesswebadmin.com", true },
@@ -6014,38 +6145,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bustimes.org", true },
{ "bustup-tips.com", true },
{ "busuttil.org.uk", true },
+ { "busyon.cloud", true },
{ "butarque.es", true },
{ "buthowdoyoubuygroceries.com", true },
{ "butikvip.ru", true },
- { "buttercupstraining.co.uk", true },
+ { "butteramotors.com", true },
{ "buttonline.ch", true },
{ "buttonrun.com", true },
{ "buturyu.net", true },
{ "buurtgenotencollectief.nl", true },
{ "buurtpreventiefraneker.nl", true },
{ "buxum-communication.ch", true },
- { "buy-thing.com", true },
- { "buyaccessible.gov", true },
- { "buycarpet.shop", true },
+ { "buy-out.jp", true },
{ "buycbd.store", true },
- { "buycook.shop", true },
{ "buydissertations.com", true },
+ { "buyebook.xyz", true },
{ "buyerdocs.com", true },
- { "buyessayscheap.com", true },
- { "buyhealth.shop", true },
{ "buyinginvestmentproperty.com", true },
- { "buyjewel.shop", true },
{ "buymindhack.com", true },
{ "buypapercheap.net", true },
- { "buyplussize.shop", true },
- { "buyprofessional.shop", true },
{ "buyritefairview.com", true },
+ { "buysellinvestproperties.com", true },
{ "buyseo.store", true },
{ "buytermpaper.com", true },
{ "buytheway.co.za", true },
- { "buywine.shop", true },
{ "buzz.tools", true },
{ "buzzconf.io", true },
+ { "buzzcontent.com", true },
{ "buzzprint.it", true },
{ "bvalle.com", true },
{ "bvgg.eu", true },
@@ -6061,34 +6187,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bwf77.com", true },
{ "bwf99.com", true },
{ "bwfc.nl", true },
- { "bwh1.net", true },
+ { "bwh1.net", false },
{ "bwilkinson.co.uk", true },
{ "bwl-earth.club", true },
{ "bws16.de", true },
+ { "bwserhoscaletrainaz.com", true },
+ { "bwwb.nu", true },
{ "bx-n.de", true },
+ { "bxdev.me", true },
{ "bxp40.at", true },
{ "by.cx", true },
{ "byange.pro", true },
{ "byatte.com", true },
- { "bydisk.com", false },
{ "byeskille.no", true },
{ "bygningsregistrering.dk", true },
- { "byiu.info", true },
+ { "byhe.me", true },
+ { "byiu.info", false },
+ { "byken.cn", true },
{ "bymark.co", true },
{ "bymike.co", true },
{ "bynder.com", true },
+ { "bynet.cz", true },
{ "bynumlaw.net", true },
{ "bypass.sh", true },
+ { "byr.moe", true },
{ "byrko.cz", true },
{ "byrko.sk", true },
- { "byronkg.us", true },
- { "byronprivaterehab.com.au", true },
- { "byronr.com", true },
{ "byrtz.de", true },
- { "bysb.net", false },
+ { "bytanchan.com", true },
{ "byte-time.com", true },
{ "byte128.com", true },
- { "bytearts.net", true },
+ { "bytearts.net", false },
{ "bytebucket.org", true },
{ "bytecode.no", true },
{ "bytejail.com", true },
@@ -6099,7 +6228,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bytemix.cloud", true },
{ "byteowls.com", false },
{ "bytepark.de", true },
- { "bytepen.com", true },
{ "bytes.co", true },
{ "bytes.fyi", true },
{ "bytesatwork.de", true },
@@ -6110,8 +6238,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bytesystems.com", true },
{ "bythen.cn", true },
{ "bythisverse.com", true },
+ { "bytrain.net", true },
{ "byvshie.com", true },
- { "bywin9.com", true },
+ { "bzhub.bid", true },
{ "bziaks.xyz", true },
{ "bzsparks.com", true },
{ "bztech.com.br", true },
@@ -6126,17 +6255,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "c-webdesign.net", true },
{ "c-world.co.uk", true },
{ "c.cc", true },
- { "c0rn3j.com", true },
{ "c0rporation.com", true },
{ "c2design.it", true },
{ "c2o-library.net", true },
- { "c3hv.cn", true },
{ "c3vo.de", true },
{ "c3w.at", true },
{ "c3wien.at", true },
{ "c4539.com", true },
{ "c4k3.net", true },
- { "c5h8no4na.net", true },
{ "c7dn.com", true },
{ "ca-key.de", true },
{ "ca-terminal-multiservices.fr", true },
@@ -6151,6 +6277,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cabforum.org", true },
{ "cabineritten.nl", true },
{ "cabinet-bedin.com", true },
+ { "cabinetfurnituree.com", true },
{ "cablehighspeed.net", true },
{ "cablemod.com", true },
{ "cablesandkits.com", true },
@@ -6160,11 +6287,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cacaolalina.com", true },
{ "cacaumidade.com.br", true },
{ "caceis.bank", true },
+ { "cachacacha.com", true },
{ "cachetagalong.com", true },
- { "cachethome.com", true },
{ "cachetur.no", true },
{ "cackette.com", true },
{ "cad-noerdlingen.de", true },
+ { "cadacoon.com", true },
+ { "cadafamilia.de", true },
{ "cadams.io", true },
{ "cadetsge.ch", true },
{ "cadmail.nl", true },
@@ -6177,6 +6306,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cadsys.net", true },
{ "cadusilva.com", true },
{ "caesarkabalan.com", true },
+ { "cafe-service.ru", false },
{ "cafedupont.be", true },
{ "cafedupont.co.uk", true },
{ "cafedupont.de", true },
@@ -6184,16 +6314,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cafeimsueden.de", true },
{ "cafelandia.net", true },
{ "cafeobscura.nl", true },
+ { "caferagazzi.de", true },
{ "cafericoy.com", true },
{ "caffeinatedcode.com", true },
{ "cagalogluyayinevi.com", true },
{ "cainhosting.com", false },
{ "caitcs.com", true },
{ "caiwenjian.xyz", true },
- { "caizx.com", false },
{ "caja-pdf.es", true },
{ "cajio.ru", true },
{ "cajunuk.co.uk", true },
+ { "cake-time.co.uk", true },
{ "cakestart.net", true },
{ "caketoindia.com", true },
{ "cakingandbaking.com", true },
@@ -6213,18 +6344,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "calcedge.com", true },
{ "calcinacci.com", true },
{ "calcoolator.pl", true },
+ { "calculadoraconversor.com", true },
{ "calcularis.ch", true },
{ "calculateaspectratio.com", true },
{ "calculator-imt.com", true },
{ "calculator.tf", true },
{ "calcworkshop.com", true },
- { "caldecotevillagehall.co.uk", true },
+ { "caldaro.de", true },
+ { "caldoletto.com", true },
{ "caleb.cx", true },
{ "caleb.host", true },
+ { "calebennett.com", true },
{ "calebthompson.io", true },
+ { "calehoo.com", true },
+ { "calendar.cf", true },
{ "calendarr.com", true },
{ "calendarsnow.com", true },
{ "calendly.com", true },
+ { "calenfil.com", true },
{ "caletka.cz", true },
{ "calgoty.com", true },
{ "calibreapp.com", true },
@@ -6236,6 +6373,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "callawayracing.se", false },
{ "callear.org", true },
{ "callhub.io", true },
+ { "callidus-vulpes.de", true },
{ "calltoar.ms", true },
{ "calltothepen.com", true },
{ "callumsilcock.com", true },
@@ -6247,6 +6385,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "calvin.my", true },
{ "calvinallen.net", false },
{ "calyxengineers.com", true },
+ { "calyxinstitute.org", false },
{ "camaradivisas.com", true },
{ "camaras.uno", true },
{ "camarilloelectric.com", true },
@@ -6255,14 +6394,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "camarillolandscapelighting.com", true },
{ "camarillolighting.com", true },
{ "camarillooutdoorlighting.com", true },
+ { "camashop.de", true },
{ "camastowncar.com", true },
{ "cambier.org", true },
{ "cambiowatch.ch", true },
{ "cambodian.dating", true },
{ "cambridge-security.com", true },
{ "cambridgebouncers.co.uk", true },
+ { "cambridgesecuritygroup.org", true },
{ "camcapital.com", true },
{ "camconn.cc", true },
+ { "camda.online", true },
{ "camdesign.pl", true },
{ "camelservers.com", true },
{ "cameo-membership.uk", true },
@@ -6271,18 +6413,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "camilomodzz.net", true },
{ "camjobs.net", true },
{ "camolist.com", true },
+ { "camomile.desi", true },
{ "camp-pleinsoleil.ch", true },
{ "camp.co.uk", true },
{ "campaign-ad.com", true },
{ "campaign.gov.uk", true },
{ "campaignagent.com.au", true },
+ { "campaignhelpdesk.org", true },
{ "campaignwiki.org", true },
{ "campamentos.info", true },
{ "campbellapplianceheatingandair.com", true },
{ "campbrainybunch.com", true },
{ "campcambodia.org", true },
{ "campcanada.org", true },
- { "campeoesdofutebol.com.br", true },
{ "campeonatoalemao.com.br", true },
{ "camperdays.de", true },
{ "camperlist.com", true },
@@ -6298,11 +6441,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "campus-discounts.com", true },
{ "campus-finance.com", true },
{ "campusdrugprevention.gov", true },
- { "campusportalng.com", true },
{ "campuswire.com", true },
{ "campvana.com", true },
{ "campwabashi.org", true },
{ "camshowstorage.com", true },
+ { "camshowverse.com", true },
{ "camsky.de", false },
{ "canada-tourisme.ch", true },
{ "canadabread.com", false },
@@ -6313,19 +6456,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "canadianchristianity.com", false },
{ "canadianoutdoorequipment.com", true },
{ "canadiantouristboard.com", true },
+ { "canal-onanismo.org", true },
{ "canalsidehouse.be", true },
{ "canalsidehouse.com", true },
{ "canarymod.net", true },
{ "cancerdata.nhs.uk", true },
{ "candaceplayforth.com", true },
+ { "candeo-books.nl", true },
{ "candex.com", true },
+ { "candguchocolat.com", true },
{ "candicecity.com", true },
{ "candidasa.com", true },
+ { "candidaturedunprix.com", true },
{ "candlcastles.co.uk", true },
{ "cando.eu", true },
- { "candylion.rocks", true },
{ "candyout.com", true },
- { "canerkorkmaz.com", true },
{ "cangelloplasticsurgery.com", true },
{ "cangku.in", true },
{ "cangku.moe", false },
@@ -6337,6 +6482,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "canlidoviz.com", true },
{ "canmipai.com", true },
{ "cannabis-marijuana.com", true },
+ { "cannabismd.com", true },
{ "cannacards.ca", true },
{ "cannahealth.com", true },
{ "cannoli.london", true },
@@ -6347,7 +6493,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "canterberry.cc", true },
{ "canterburybouncycastlehire.co.uk", true },
{ "cantrack.com", true },
- { "canva-dev.com", true },
{ "canva.com", true },
{ "canx.org", true },
{ "canyoupwn.me", true },
@@ -6355,7 +6500,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cao.la", true },
{ "caodesantohumberto.com.br", true },
{ "caoshan60.com", true },
- { "capacent.is", true },
{ "capachitos.cl", true },
{ "capacityproject.org", true },
{ "capekeen.com", true },
@@ -6366,14 +6510,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "capital-match.com", true },
{ "capitalcap.com", true },
{ "capitalcollections.org.uk", true },
+ { "capitalfps.com", true },
{ "capitalibre.com", true },
{ "capitalism.party", true },
+ { "capitalmediaventures.co.uk", true },
{ "capitalp.jp", true },
{ "capitalquadatv.org.nz", true },
- { "capitaltg.com", true },
{ "capitolpathways.org", true },
{ "caplinbouncycastles.co.uk", true },
- { "capogna.com", false },
{ "capper.de", true },
{ "capriccio.to", true },
{ "caprichosdevicky.com", true },
@@ -6382,15 +6526,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "capstansecurity.co.uk", true },
{ "capstansecurity.com", true },
{ "capstoneinsights.com", true },
+ { "capsulesubs.fr", true },
{ "captain-dandelion.com", true },
+ { "captainark.net", true },
{ "captainsinn.com", true },
- { "captalize.com", true },
+ { "captivationtheory.com", true },
{ "capturapp.com", false },
{ "capture-app.com", true },
{ "captured-symphonies.com", true },
{ "capuchinox.com", true },
{ "caputo.com", true },
{ "caputodesign.com", true },
+ { "car-shop.top", true },
{ "car.info", true },
{ "car24.de", true },
{ "car24portal.de", true },
@@ -6409,6 +6556,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carbonmonoxidelawyer.net", true },
{ "carbono.uy", true },
{ "carbontv.com", true },
+ { "carburetorcycleoi.com", true },
{ "carck.co.uk", true },
{ "carck.uk", true },
{ "cardboard.cx", true },
@@ -6440,10 +6588,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "caremad.io", true },
{ "carepassport.com", true },
{ "caretta.co.uk", true },
- { "carey.li", false },
{ "careyshop.cn", true },
{ "carezone.com", false },
+ { "carfinancehelp.com", true },
+ { "carfraemill.co.uk", true },
{ "cargobay.net", true },
+ { "cargomaps.com", true },
{ "cargorestraintsystems.com.au", true },
{ "carhunters.cz", true },
{ "caribbean.dating", true },
@@ -6456,11 +6606,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cariocacooking.com", true },
{ "carisenda.com", true },
{ "carkeysanantonio.com", true },
- { "carlandfaith.com", true },
{ "carlife-at.jp", true },
{ "carlili.fr", true },
{ "carlingfordapartments.com.au", true },
{ "carlmjohnson.net", true },
+ { "carlo.mx", false },
{ "carlobiagi.de", true },
{ "carlocksmith--dallas.com", true },
{ "carlocksmithbaltimore.com", true },
@@ -6476,15 +6626,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carnet-du-voyageur.com", true },
{ "carnildo.com", true },
{ "caroes.be", true },
+ { "caroffer.ch", true },
+ { "carol-lambert.com", true },
{ "carolcappelletti.com", true },
{ "carolcestas.com", true },
{ "caroli.com", true },
- { "caroli.info", true },
{ "caroli.name", true },
{ "caroli.net", true },
{ "carolina.cz", true },
{ "carolinaclimatecontrolsc.com", true },
{ "carolynjoyce.com.au", true },
+ { "carpetandhardwoodflooringpros.com", true },
{ "carpetcleaningtomball.com", true },
{ "carrando.com", true },
{ "carre-lutz.com", true },
@@ -6492,10 +6644,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carriedin.com", true },
{ "carrierplatform.com", true },
{ "carringtonrealtygroup.com", true },
+ { "carroattrezzimilanodaluiso.it", true },
{ "carroceriascarluis.com", true },
{ "carrollservicecompany.com", true },
+ { "carrosserie-dubois.com", true },
{ "carseatchecks.ca", true },
{ "carson-aviation-adventures.com", true },
+ { "carson-matthews.co.uk", true },
{ "carsoug.com", true },
{ "carspneu.cz", true },
{ "cartadeviajes.cl", true },
@@ -6524,13 +6679,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cartouche-deal.fr", true },
{ "cartouche24.eu", true },
{ "cartucce24.it", true },
+ { "cartwrightrealestate.com", true },
+ { "carun.us", true },
{ "carusorealestate.com", true },
{ "caryefurd.com", true },
+ { "casa-app.de", true },
{ "casa-due-pur.com", true },
{ "casa-due-pur.de", true },
{ "casa-due.com", true },
+ { "casa-lunch-break.de", true },
+ { "casa-lunchbreak.de", true },
{ "casa-mea-inteligenta.ro", true },
{ "casa-su.casa", true },
+ { "casaanastasia.ro", true },
{ "casabouquet.com", true },
{ "casacameo.com", false },
{ "casacochecurro.com", true },
@@ -6538,6 +6699,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "casadoarbitro.com.br", true },
{ "casadowifi.com.br", true },
{ "casalindamex.com", true },
+ { "casalunchbreak.de", true },
{ "casamariposaspi.com", true },
{ "casapalla.com.br", true },
{ "casasuara.com", true },
@@ -6548,8 +6710,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cascadesjobcorpscca.com", true },
{ "cascavelle.fr", true },
{ "cascavelle.nl", true },
+ { "case-vacanza-salento.com", true },
+ { "casecoverkeygi.com", true },
{ "casecurity.org", true },
{ "caseplus-daem.de", true },
+ { "caseycapitalpartners.com", true },
{ "cash-4x4.com", true },
{ "cashati.com", true },
{ "cashbook.co.tz", true },
@@ -6559,22 +6724,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cashlogic.ch", true },
{ "cashmaxtexas.com", true },
{ "cashplk.com", true },
- { "casino-cash-flow.su", true },
- { "casino-cashflow.ru", true },
+ { "casino-online.info", true },
{ "casino-trio.com", true },
{ "casinobonuscodes.online", true },
- { "casinocashflow.ru", true },
- { "casinolegal.pt", true },
{ "casinomucho.com", true },
+ { "casinomucho.org", true },
+ { "casinomucho.se", true },
{ "casinoonlinesicuri.com", true },
+ { "casinovergleich.com", true },
{ "casio-caisses-enregistreuses.fr", true },
{ "casjay.cloud", true },
- { "casjay.com", true },
{ "casjay.info", true },
{ "casjay.us", true },
{ "casjaygames.com", true },
{ "caspar.ai", true },
{ "casperpanel.com", true },
+ { "caspicards.com", true },
{ "cassimo.com", true },
{ "castbulletassoc.org", false },
{ "casteloinformatica.com.br", true },
@@ -6582,7 +6747,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "castle-engine.io", true },
{ "castlecapers.com.au", true },
{ "castlecms.io", true },
- { "castlejackpot.com", true },
{ "castleking.net", true },
{ "castlekingdomstockport.co.uk", true },
{ "castlekingkent.co.uk", true },
@@ -6602,6 +6766,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "catalogobiblioteca.com", true },
{ "catalogoreina.com", true },
{ "catalogosvirtualesonline.com", true },
+ { "catalyconv.com", true },
{ "catalystapp.co", true },
{ "catbold.space", true },
{ "catbull.com", true },
@@ -6613,6 +6778,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "catchief.com", true },
{ "catdecor.ru", true },
{ "catenacondos.com", true },
+ { "catering-xanadu.cz", true },
{ "catfooddispensersreviews.com", true },
{ "catgirl.science", true },
{ "catharinesomerville.com", true },
@@ -6622,6 +6788,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "catherinescastles.co.uk", true },
{ "catholics.dating", true },
{ "cathosa.nl", true },
+ { "cathosting.org", true },
{ "cathy.guru", true },
{ "cathy.website", true },
{ "cathyfitzpatrick.com", true },
@@ -6649,7 +6816,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cavzodiaco.com.br", true },
{ "caxalt.com", true },
{ "caylercapital.com", true },
+ { "cayounglab.co.jp", true },
{ "cazaviajes.es", true },
+ { "cazes.info", true },
{ "cb-crochet.com", true },
{ "cbbank.com", true },
{ "cbc-hire.co.uk", true },
@@ -6659,6 +6828,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cbdev.de", true },
{ "cbdmarket.space", true },
{ "cbecrft.net", true },
+ { "cbhq.net", true },
{ "cbin168.com", true },
{ "cbintermountainrealty.com", true },
{ "cbk-connect.com", true },
@@ -6671,12 +6841,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cccwien.at", true },
{ "ccgn.co", true },
{ "ccgx.de", true },
- { "ccja.ro", false },
{ "ccoooss.com", true },
{ "ccprwebsite.org", true },
{ "ccsource.org", true },
{ "ccss-cces.com", true },
{ "ccsys.com", true },
+ { "cctvcanada.net", true },
{ "cctvview.info", true },
{ "ccu.io", true },
{ "ccu.plus", true },
@@ -6695,25 +6865,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cdbtech.com", true },
{ "cdburnerxp.se", true },
{ "cdda.ch", true },
- { "cdeck.net", true },
{ "cdepot.eu", true },
{ "cdkeykopen.com", true },
- { "cdlcenter.com", true },
{ "cdn.ampproject.org", true },
{ "cdn6.de", true },
{ "cdncompanies.com", true },
{ "cdnjs.com", true },
{ "cdns.cloud", true },
+ { "cdnsys.net", true },
{ "cdom.de", true },
{ "cdsdigital.de", true },
{ "cdshining.com", true },
{ "cdu-wilgersdorf.de", true },
{ "cduckett.net", true },
{ "ce-pimkie.fr", true },
+ { "ceagriproducts.com", true },
{ "cebz.org", true },
+ { "cecame.ch", true },
{ "ceciliacolombara.com", true },
{ "cecipu.gob.cl", true },
{ "ced-services.nl", true },
+ { "cedarcitydining.com", true },
{ "cedarslodge.com", true },
{ "cedriccassimo.ch", true },
{ "cedriccassimo.com", true },
@@ -6727,23 +6899,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "celectro-pro.com", true },
{ "celiendev.ch", true },
{ "celine-patisserie.fr", true },
+ { "cellebrite.com", true },
{ "celltek-server.de", false },
+ { "celltesequ.com", true },
{ "celluliteorangeskin.com", true },
{ "celluliteremovaldiet.com", true },
{ "celtadigital.com", true },
{ "celti.ie.eu.org", true },
{ "celti.name", true },
{ "celuliteonline.com", true },
- { "cem.pw", true },
{ "cementscience.com", true },
{ "cemeteriat.com", true },
{ "ceml.ch", true },
{ "cenatorium.pl", true },
+ { "cennelley.com", true },
+ { "cennelly.com", true },
{ "censurfridns.dk", true },
{ "censurfridns.nu", true },
{ "censys.io", true },
+ { "centa-am.com", true },
{ "centaur.de", true },
{ "centennialradon.com", true },
+ { "centennialseptic.com", true },
{ "centerpereezd.ru", false },
{ "centerpoint.ovh", true },
{ "centillien.com", false },
@@ -6761,8 +6938,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "centredaccueil.fr", true },
{ "centreoeil.ch", true },
{ "centrobill.com", true },
+ { "centrodoinstalador.com.br", true },
{ "centrojovencuenca.es", true },
{ "centromasterin.com", true },
+ { "centroperugia.gr", true },
{ "centrosocialferrel.pt", true },
{ "centrumhodinek.cz", true },
{ "centruvechisv.ro", true },
@@ -6775,9 +6954,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "centurioninfosec.hk", true },
{ "centurioninfosec.sg", true },
{ "centurionunderground.com", true },
- { "century-group.com", true },
{ "ceopedia.org", true },
- { "ceoptique.com", true },
{ "ceramixcoating.nl", true },
{ "ceramiya.com", true },
{ "cerastar.com", true },
@@ -6791,8 +6968,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cermak.photos", true },
{ "cernakova.eu", true },
{ "cerpus-course.com", true },
- { "cerstve-korenie.sk", true },
- { "cerstvekorenie.sk", true },
{ "cert.govt.nz", true },
{ "cert.or.id", true },
{ "certcenter.ch", true },
@@ -6812,6 +6987,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "certnazionale.it", true },
{ "certspotter.com", true },
{ "certspotter.org", true },
+ { "cervejista.com", true },
{ "cesantias.co", true },
{ "cesboard.com", true },
{ "cesdb.com", true },
@@ -6822,8 +6998,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cesobaly.cz", true },
{ "cestasedelicias.com.br", true },
{ "cestunmetier.ch", true },
- { "ceta.one", true },
{ "cetamol.com", true },
+ { "cetangarana.com", true },
{ "ceu.edu", false },
{ "cevo.com.hr", true },
{ "ceyizlikelisleri.com", true },
@@ -6842,6 +7018,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cfttt.com", true },
{ "cfurl.cf", true },
{ "cfxdesign.com", true },
+ { "cg-goerlitz.de", true },
{ "cg-systems.hu", true },
{ "cg.al", true },
{ "cg.search.yahoo.com", false },
@@ -6865,15 +7042,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chad.ch", true },
{ "chadstoneapartments.com.au", true },
{ "chadtaljaardt.com", true },
+ { "chaffeyconstruction.com", true },
{ "chaifeng.com", true },
{ "chainedunion.info", true },
{ "chaip.org", true },
- { "chairinstitute.com", true },
{ "chaisystems.net", true },
{ "chaletdemontagne.org", true },
{ "chaletmanager.com", true },
{ "chaletpierrot.ch", true },
{ "chaleur.com", true },
+ { "chalker.io", true },
{ "challengeblog.org", true },
{ "challstrom.com", true },
{ "chamathellawala.com", true },
@@ -6885,9 +7063,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "championcastles.ie", true },
{ "champions.co", true },
{ "championsofpowerfulliving.com", true },
+ { "championweb.co.nz", true },
{ "championweb.com.au", true },
+ { "championweb.nz", true },
{ "champonthis.de", true },
{ "champserver.net", false },
+ { "chancekorte.com", true },
{ "chanddriving.co.uk", true },
{ "chandr1000.ga", true },
{ "chang-feng.info", true },
@@ -6896,18 +7077,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "changesfor.life", true },
{ "changethislater.com", true },
{ "channeladam.com", true },
+ { "chanoyu-gakkai.jp", true },
+ { "chanshiyu.com", false },
{ "chantalguggenbuhl.ch", true },
{ "chanz.com", true },
{ "chaos-games.org", true },
{ "chaos-inc.de", true },
{ "chaos.run", true },
- { "chaoscastles.co.uk", true },
{ "chaoschemnitz.de", true },
{ "chaosdorf.de", true },
{ "chaosfield.at", true },
{ "chaoslab.org", true },
{ "chaosriftgames.com", true },
- { "chaoswars.ddns.net", true },
{ "chaotichive.com", true },
{ "chaoticlaw.com", true },
{ "chapelaria.tf", true },
@@ -6922,16 +7103,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "charisma.ai", true },
{ "charissadescande.com", true },
{ "charitylog.co.uk", true },
- { "charl.eu", true },
{ "charlenevondell.com", true },
{ "charles-darwin.com", true },
{ "charlesbwise.com", true },
- { "charlesjay.com", true },
{ "charlesmilette.net", true },
{ "charlespitonltd.com", true },
{ "charlesrogers.co.uk", true },
{ "charlesstover.com", true },
- { "charlestonfacialplastic.com", true },
{ "charliedillon.com", true },
{ "charliegarrod.com", true },
{ "charliehr.com", true },
@@ -6940,6 +7118,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "charlotte-touati.ch", true },
{ "charlotteomnes.com", true },
{ "charlottesvillegolfcommunities.com", true },
+ { "charlottesvillehorsefarms.com", true },
{ "charlotteswimmingpoolbuilder.com", true },
{ "charmander.me", true },
{ "charmanterelefant.at", true },
@@ -6952,8 +7131,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chartkick.com", true },
{ "chartpen.com", true },
{ "chartsy.de", true },
+ { "chartwellestate.com", true },
{ "charuru.moe", true },
- { "chasafilli.ch", true },
+ { "chascrazycreations.com", true },
{ "chaseandzoey.de", true },
{ "chasetrails.co.uk", true },
{ "chat-libera.org", true },
@@ -6962,7 +7142,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chat2.cf", true },
{ "chat40.net", true },
{ "chatbelgie.eu", true },
- { "chatbot.one", true },
{ "chatbotclic.com", true },
{ "chatbotclick.com", true },
{ "chatbots.systems", true },
@@ -6970,6 +7149,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chateau-de-lisle.fr", true },
{ "chateaudestrainchamps.com", true },
{ "chatfacile.org", true },
+ { "chatgrape.com", true },
+ { "chatint.com", true },
{ "chatitaly.org", true },
{ "chatme.im", false },
{ "chatnederland.eu", true },
@@ -6979,6 +7160,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chattanoogaface.com", true },
{ "chattergalerie.eu", true },
{ "chattergallery.com", true },
+ { "chattersworld.nl", true },
{ "chatu.io", true },
{ "chatu.me", true },
{ "chatucomputers.com", true },
@@ -6986,6 +7168,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chatxtutti.com", true },
{ "chatzimanolis.com", true },
{ "chatzimanolis.gr", true },
+ { "chauffage-budget.fr", true },
{ "chaurocks.com", true },
{ "chaussenot.net", true },
{ "chavetaro.com", true },
@@ -6996,9 +7179,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chbk.co", true },
{ "chbs.me", true },
{ "chch.it", true },
+ { "chci-web.cz", true },
{ "chcoc.gov", true },
{ "chcsct.com", true },
{ "chd-expert.fr", true },
+ { "cheap-colleges.com", true },
{ "cheapalarmparts.com.au", true },
{ "cheapcaribbean.com", true },
{ "cheapessay.net", true },
@@ -7018,18 +7203,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cheapticket.in", true },
{ "check.torproject.org", false },
{ "checkecert.nl", true },
- { "checkmateshoes.com", false },
{ "checkmyessay.com", true },
{ "checkmyessays.com", true },
{ "checkmyip.com", true },
{ "checkmypsoriasis.com", true },
{ "checkout.google.com", true },
{ "checkpoint-tshirt.com", true },
+ { "checkras.tk", true },
{ "checkrente.nl", true },
{ "checkspf.net", true },
{ "checktype.com", true },
{ "checkui.com", true },
- { "checkyourmath.com", true },
{ "checkyourprivilege.org", true },
{ "checkyourreps.org", true },
{ "checos.co.uk", true },
@@ -7043,6 +7227,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cheez.systems", true },
{ "cheezflix.uk", true },
{ "chefwear.com", true },
+ { "chehalemgroup.com", true },
{ "cheladmin.ru", true },
{ "chelema.xyz", true },
{ "cheltenhambounce.co.uk", true },
@@ -7050,11 +7235,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cheltik.ru", true },
{ "chemicalcrux.org", true },
{ "chemiphys.com", true },
+ { "chemistry-schools.com", true },
{ "chenapartment.com", true },
+ { "chengxindong.com", true },
{ "chenkun.pro", true },
{ "chenky.com", true },
{ "chenna.me", true },
{ "chennien.com", true },
+ { "chenpei.org", true },
{ "chenqinghua.com", true },
{ "chentianyi.cn", true },
{ "chenzhekl.me", true },
@@ -7067,12 +7255,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cherryonit.com", true },
{ "cherrywoodtech.com", true },
{ "chertseybouncycastles.co.uk", true },
+ { "chesapeakebaychristmas.com", true },
+ { "chess.com", true },
+ { "chessboardao.com", true },
+ { "chesscoders.com", true },
{ "chesspoint.ch", true },
+ { "chesterlestreetasc.co.uk", true },
{ "chestnut.cf", true },
{ "chevy37.com", true },
{ "chevymotor-occasions.be", true },
{ "chewey.de", true },
{ "chewey.org", true },
+ { "chewingucand.com", true },
{ "chez-janine.de", true },
{ "chez-oim.org", true },
{ "chez.moe", true },
@@ -7084,7 +7278,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chiboard.co", true },
{ "chibr.eu", true },
{ "chic-leather.com", true },
- { "chicagolug.org", true },
{ "chicagostudentactivists.org", true },
{ "chicisimo.com", true },
{ "chicolawfirm.com", true },
@@ -7098,6 +7291,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "childrenandmedia.org.au", true },
{ "childrenfirstalways.org", true },
{ "childreninadversity.gov", true },
+ { "childrens-room.com", true },
{ "childrensentertainmentleicester.co.uk", true },
{ "childrenspartiesrus.com", true },
{ "childstats.gov", true },
@@ -7113,11 +7307,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chimeratool.com", true },
{ "chimerity.com", true },
{ "chimpanzee.net", true },
- { "chinacdn.org", true },
{ "chinahighlights.ru", true },
{ "chinaspaceflight.com", true },
{ "chinatrademarkoffice.com", true },
- { "chinawhale.com", true },
{ "ching.tv", true },
{ "chint.ai", true },
{ "chinwag.im", true },
@@ -7144,36 +7336,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chl.la", true },
{ "chloescastles.co.uk", true },
{ "chlth.com", true },
+ { "chmielarz.it", true },
{ "chmsoft.com.ua", true },
{ "chmsoft.ru", true },
{ "chmurakotori.ml", true },
{ "choc-o-lush.co.uk", true },
+ { "chocgu.com", true },
{ "chocodecor.com.br", true },
{ "chocolah.com.au", false },
{ "chocolate13tilias.com.br", true },
{ "chocolatesandhealth.com", true },
{ "chocolatier-tristan.ch", true },
- { "chocotough.nl", false },
+ { "chocotough.nl", true },
+ { "choiceautoloan.com", true },
{ "choisirmonerp.com", true },
{ "chokladfantasi.net", true },
- { "chollima.pro", true },
{ "chon.io", true },
+ { "chonghe.org", true },
{ "chook.as", true },
{ "choootto.club", true },
{ "choosemypc.net", true },
{ "chorkley.co.uk", true },
{ "chorkley.com", true },
{ "chorkley.uk", true },
- { "chorleiterverband.de", true },
{ "chorpinkpoemps.de", true },
{ "chosenplaintext.org", true },
{ "chourishi-shigoto.com", true },
{ "chovancova.sk", true },
{ "chowii.com", true },
{ "choyri.com", true },
- { "chr0me.sh", true },
{ "chris-edwards.net", true },
{ "chrisaitch.com", true },
+ { "chrisb.me", true },
+ { "chrisb.xyz", true },
{ "chrisbryant.me.uk", true },
{ "chrisburnell.com", true },
{ "chriscarey.com", true },
@@ -7188,16 +7383,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chrismorgan.info", true },
{ "chrismurrayfilm.com", true },
{ "chrisnekarda.com", true },
+ { "chrisplankhomes.com", true },
{ "chrispstreet.com", true },
+ { "chrissx.ga", true },
{ "christadelphiananswers.org", true },
{ "christadelphians.eu", true },
{ "christchurchbouncycastles.co.uk", true },
{ "christec.net", true },
{ "christensenplace.us", true },
- { "christerwaren.fi", true },
{ "christiaanconover.com", true },
{ "christian-gredig.de", true },
{ "christian-host.com", true },
+ { "christian-krug.website", true },
{ "christian-liebel.com", true },
{ "christian-stadelmann.de", true },
{ "christianbargon.de", false },
@@ -7225,14 +7422,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "christopherburg.com", true },
{ "christopherkennelly.com", true },
{ "christopherl.com", true },
- { "christopherpritchard.co.uk", true },
+ { "christopherstocks.online", true },
{ "christophertruncer.com", true },
- { "christophkreileder.com", true },
{ "christophsackl.de", true },
{ "christthekingparish.net", true },
{ "christtheredeemer.us", true },
+ { "christwaycounseling.com", true },
{ "chriswald.com", true },
{ "chriswarrick.com", true },
+ { "chriswbarry.com", true },
{ "chriswells.io", true },
{ "chromcraft-revington.com", true },
{ "chrome-devtools-frontend.appspot.com", true },
@@ -7242,33 +7440,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chromebooksforwork.com", true },
{ "chromiumbugs.appspot.com", true },
{ "chromiumcodereview.appspot.com", false },
- { "chronic101.xyz", true },
{ "chroniclesofgeorge.com", true },
{ "chronology.no", true },
{ "chronoshop.cz", true },
{ "chrpaul.de", true },
{ "chrstn.eu", true },
{ "chrysanthos.net", true },
+ { "chshouyu.com", true },
{ "chsterz.de", true },
{ "chuchote-moi.fr", true },
{ "chuck.ovh", true },
+ { "chuill.com", true },
{ "chun.pro", true },
{ "chunche.net", true },
{ "chunk.science", true },
{ "chupadelfrasco.com", true },
{ "chuppa.com.au", true },
{ "churchlinkpro.com", true },
+ { "churchofsaintrocco.org", true },
+ { "churchofscb.org", true },
{ "churchthemes.com", true },
{ "churningtracker.com", true },
- { "chxdf.net", true },
{ "chyen.cc", true },
{ "chytraauta.cz", true },
{ "chziyue.com", true },
{ "ci-fo.org", true },
{ "ci5.me", true },
{ "ciancode.com", true },
+ { "ciania.pl", true },
{ "cianmawhinney.me", true },
{ "ciansc.com", true },
+ { "ciaracode.com", true },
{ "ciat.no", false },
{ "cidbot.com", true },
{ "cidersus.com.ec", true },
@@ -7276,6 +7478,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cielbleu.org", true },
{ "cielly.com", true },
{ "cifop-numerique.fr", true },
+ { "ciftlikesintisi.com", true },
{ "cig-dem.com", true },
{ "cigar-cartel.com", true },
{ "ciiex.co", true },
@@ -7285,7 +7488,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cimfax.com", true },
{ "cinafilm.com", true },
{ "cinay.pw", true },
- { "cindey.io", true },
{ "cindydudley.com", true },
{ "cine-music.de", true },
{ "cine.to", true },
@@ -7294,7 +7496,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cinemasetfree.com", true },
{ "cinemysticism.com", true },
{ "cineplex.my", true },
- { "ciner.is", true },
{ "cinnabon.com", true },
{ "cinq-elements.com", true },
{ "cinq-elements.fr", true },
@@ -7305,11 +7506,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cio-ciso-interchange.org", true },
{ "cio-cisointerchange.org", true },
{ "cio.go.jp", true },
- { "cio.gov", true },
+ { "cio.gov", false },
{ "cioscloud.com", true },
{ "cip.md", true },
{ "cipartyhire.co.uk", true },
{ "cipher.team", true },
+ { "cipherboy.com", true },
{ "ciphersuite.info", true },
{ "ciphrex.com", true },
{ "cipri.com", true },
@@ -7324,7 +7526,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "circu.ml", true },
{ "circulatedigital.com", true },
{ "circule.cc", true },
- { "cirfi.com", true },
{ "ciri.com.co", true },
{ "cirope.com", true },
{ "cirrus0.de", true },
@@ -7333,20 +7534,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cirurgicagervasio.com.br", true },
{ "cirurgicalucena.com.br", true },
{ "cirurgicasalutar.com.br", true },
- { "ciscodude.net", true },
+ { "ciscodude.net", false },
{ "cisoaid.com", true },
{ "cisofy.com", true },
{ "cispeo.org", true },
{ "ciss.ltd", true },
{ "cisum-cycling.com", true },
{ "cisy.me", true },
- { "citationgurus.com", true },
{ "citcuit.in", true },
{ "cities.cl", true },
{ "citimarinestore.com", true },
- { "citizen-cam.de", true },
{ "citizensbankal.com", true },
{ "citizenscience.gov", false },
+ { "citizenslasvegas.com", true },
{ "citizensleague.org", true },
{ "citizenspact.eu", true },
{ "citizing.org", true },
@@ -7365,6 +7565,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cityworksonline.com", true },
{ "ciubotaru.tk", true },
{ "ciurcasdan.eu", true },
+ { "civicforum.pl", true },
{ "civilg20.org", true },
{ "civillines.nl", true },
{ "civiltoday.com", true },
@@ -7392,8 +7593,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ckostecki.de", true },
{ "cktennis.com", true },
{ "cl.search.yahoo.com", false },
+ { "cl0ud.space", true },
{ "clacetandil.com.ar", true },
- { "clad.cf", true },
{ "claimconnect.com", true },
{ "claimconnect.us", true },
{ "claimjeidee.be", true },
@@ -7408,6 +7609,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clarkeaward.com", true },
{ "clarkwinkelmann.com", true },
{ "clase3.tk", true },
+ { "clash-movies.de", true },
{ "clash.lol", true },
{ "class.com.au", true },
{ "classdojo.com", true },
@@ -7419,6 +7621,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "classroomconductor.com", true },
{ "classroomcountdown.co.nz", true },
{ "classteaching.com.au", true },
+ { "classyvaper.de", true },
{ "claude-leveille.com", true },
{ "claude.tech", true },
{ "claudia-urio.com", true },
@@ -7427,17 +7630,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clawe.de", true },
{ "clawhammer.dk", true },
{ "clayandcottonkirkwood.com", true },
+ { "clayprints.com", true },
{ "claytonstowing.com.au", true },
{ "clazzrooms.com", true },
{ "cldfile.com", true },
{ "cldly.com", true },
{ "cleanapproachnw.com", true },
- { "cleanbeautymarket.com.au", true },
{ "cleanbrowsing.org", true },
{ "cleancode.club", true },
{ "cleandetroit.org", true },
{ "cleandogsnederland.nl", true },
+ { "cleanfiles.us", true },
{ "cleanhouse2000.us", true },
+ { "cleaningbyrosie.com", true },
{ "cleaningservicejulai.com", true },
{ "cleansewellness.com", true },
{ "clearance365.co.uk", true },
@@ -7450,9 +7655,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clearvoice.com", true },
{ "clemenscompanies.com", true },
{ "clement-beaufils.fr", true },
- { "clementfevrier.fr", true },
{ "cles-asso.fr", true },
{ "cles.jp", true },
+ { "clevergod.net", true },
{ "clevertarget.ru", true },
{ "clevisto.com", true },
{ "cleysense.com", true },
@@ -7461,6 +7666,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clicecompre.com.br", true },
{ "clicheshishalounge.co.uk", true },
{ "click-licht.de", true },
+ { "click4web.com", true },
{ "clickclock.cc", true },
{ "clickenergy.com.au", true },
{ "clickphish.com", true },
@@ -7470,7 +7676,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clientboss.com", true },
{ "clientsecure.me", true },
{ "clifflu.net", true },
- { "climaencusco.com", true },
{ "climaprecio.es", true },
{ "climateinteractive.org", true },
{ "climatestew.com", true },
@@ -7482,20 +7687,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clinicaltrials.gov", true },
{ "clinicasmedicas.com.br", true },
{ "clinicminds.com", true },
+ { "cliniquecomplementaire.com", true },
{ "cliniquevethuy.be", true },
{ "clintonlibrary.gov", true },
{ "clintonplasticsurgery.com", true },
- { "clip.ovh", false },
{ "clipclip.com", true },
+ { "clippings.com", true },
{ "clive.io", true },
{ "clmde.de", true },
{ "clnc.to", true },
- { "clnet.com.au", true },
{ "clnnet.ch", true },
{ "cloaked.ch", true },
{ "clochix.net", true },
{ "clockcaster.com", true },
{ "clockworksms.com", true },
+ { "clod-hacking.com", true },
{ "clojurescript.ru", true },
{ "cloppenburg-autmobil.com", true },
{ "cloppenburg-automobil.com", true },
@@ -7511,7 +7717,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloud.google.com", true },
{ "cloud.gov", true },
{ "cloud42.ch", false },
- { "cloud58.org", true },
{ "cloud9bouncycastlehire.com", true },
{ "cloudapps.digital", true },
{ "cloudbolin.es", true },
@@ -7519,11 +7724,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloudbrothers.info", true },
{ "cloudcactuar.com", false },
{ "cloudcaprice.net", true },
+ { "cloudchart.site", true },
{ "cloudcite.net", true },
{ "cloudcloudcloud.cloud", true },
{ "cloudconsulting.net.za", true },
{ "cloudconsulting.org.za", true },
{ "cloudconsulting.web.za", true },
+ { "cloudcrux.net", true },
{ "cloudey.net", true },
{ "cloudfiles.at", true },
{ "cloudflare-dns.com", true },
@@ -7539,7 +7746,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloudns.net", true },
{ "cloudoptimizedsmb.com", true },
{ "cloudoptimus.com", true },
- { "cloudpengu.in", true },
{ "cloudpipes.com", true },
{ "cloudse.co.uk", true },
{ "cloudsecurityalliance.org", true },
@@ -7564,6 +7770,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clsoft.ch", true },
{ "clu-in.org", true },
{ "club-adulti.ro", true },
+ { "club-climate.com", true },
{ "club-corsicana.de", true },
{ "club-creole.com", true },
{ "club-duomo.com", true },
@@ -7582,26 +7789,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clubfamily.de", true },
{ "clubgalaxy.futbol", true },
{ "clubiconkenosha.com", true },
+ { "clubmate.rocks", true },
{ "clubmini.jp", true },
{ "clubnoetig-ink2g.de", true },
{ "clubon.space", true },
{ "clubscannan.ie", true },
{ "clueful.ca", true },
+ { "clush.pw", true },
{ "cluster.biz.tr", true },
{ "clusteranalyse.net", true },
{ "clusterfuck.nz", true },
{ "clustermaze.net", true },
{ "clweb.ch", true },
{ "cm.center", true },
- { "cm3.pw", true },
{ "cmacacias.ch", true },
{ "cmadeangelis.it", true },
{ "cmahy.be", true },
{ "cmcressy.ch", true },
{ "cmdline.org", true },
+ { "cme-colleg.de", true },
{ "cmf.qc.ca", true },
{ "cmfaccounting.com", true },
{ "cmftech.com", true },
+ { "cmgacheatcontrol.com", true },
{ "cmillrehab.com", true },
{ "cmlachapelle.ch", true },
{ "cmlancy.ch", true },
@@ -7611,6 +7821,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cmngroup.com", true },
{ "cmngroupe.com", true },
{ "cmplainpalais.ch", true },
+ { "cms-weble.jp", true },
{ "cmskeyholding.co.uk", true },
{ "cmskeyholding.com", true },
{ "cmusical.es", true },
@@ -7620,13 +7831,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cna-aiic.ca", true },
{ "cna5.cc", true },
{ "cnam-idf.fr", true },
- { "cnam.net", true },
{ "cnatraining.network", true },
{ "cnbs.ch", true },
{ "cnc-lehrgang.de", true },
{ "cncado.net", true },
{ "cncbazar365.com", true },
- { "cncmachinemetal.com", true },
{ "cncrans.ch", true },
{ "cnet-hosting.com", true },
{ "cni-certing.it", true },
@@ -7635,6 +7844,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "co-factor.ro", true },
{ "co-founder-stuttgart.de", true },
{ "co.search.yahoo.com", false },
+ { "co2eco.cn", true },
{ "co50.com", true },
{ "coa.one", true },
{ "coachezmoi.ch", true },
@@ -7642,14 +7852,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coaching-impulse.ch", true },
{ "coalitionministries.org", true },
{ "coalpointcottage.com", true },
+ { "coam.co", true },
{ "coastline.net.au", true },
{ "coathangastrangla.com", true },
{ "coathangastrangler.com", true },
+ { "coathangerstrangla.com", true },
+ { "coathangerstrangler.com", true },
{ "coatl-industries.com", true },
{ "cobalt.io", true },
{ "cobaltgp.com", true },
{ "cobracastles.co.uk", true },
- { "cocaine-import.agency", true },
{ "cocaine.ninja", true },
{ "cocalc.com", true },
{ "cocareonline.com", true },
@@ -7670,6 +7882,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coda.moe", true },
{ "coda.today", true },
{ "coda.world", true },
+ { "codabix.com", true },
+ { "codabix.de", true },
{ "code-golf.io", true },
{ "code-poets.co.uk", true },
{ "code-well.com", true },
@@ -7680,16 +7894,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "code67.com", true },
{ "codeandpeace.com", true },
{ "codebrahma.com", false },
+ { "codecommunity.io", true },
+ { "codedelarouteenligne.fr", true },
{ "codedump.net", true },
{ "codeeclipse.com", true },
{ "codeferm.com", true },
{ "codefordus.de", true },
{ "codefordus.nrw", true },
+ { "codein.ca", true },
{ "codeine.co.uk", true },
{ "codeit.guru", true },
{ "codeit.us", true },
{ "codejots.com", true },
- { "codejunkie.de", false },
+ { "codemill.se", true },
{ "codemonster.eu", true },
{ "codenode.io", true },
{ "codeofthenorth.com", true },
@@ -7701,7 +7918,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codereview.appspot.com", false },
{ "codereview.chromium.org", false },
{ "coderme.com", true },
- { "codersbistro.com", true },
+ { "coderware.co.uk", true },
{ "codes.pk", true },
{ "codesplain.in", true },
{ "codesport.io", true },
@@ -7714,6 +7931,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codeux.com", false },
{ "codeux.info", false },
{ "codeux.net", false },
+ { "codevat.com", true },
{ "codeventure.de", true },
{ "codeversetech.com", true },
{ "codewild.de", true },
@@ -7723,6 +7941,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codific.eu", true },
{ "codigo-bonus-bet.es", true },
{ "codigodelbonusbet365.com", true },
+ { "codigosddd.com.br", true },
+ { "codimaker.com", true },
{ "coding-minds.com", true },
{ "coding.lv", true },
{ "coding.net", true },
@@ -7734,14 +7954,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codyevanscomputer.com", true },
{ "codymoniz.com", true },
{ "codyqx4.com", true },
+ { "codyscafesb.com", true },
+ { "coens.me.uk", true },
{ "coentropic.com", true },
+ { "cofbev.com", true },
{ "coffee-mamenoki.jp", true },
{ "coffeeandteabrothers.com", true },
+ { "coffeetime.fun", true },
{ "coffeetocode.me", true },
{ "cogala.eu", true },
{ "cogent.cc", true },
{ "cogilog.com", true },
{ "cogitoltd.com", true },
+ { "cognicom-gaming.com", true },
{ "cognitip.com", true },
{ "cognitivecomputingconsortium.com", true },
{ "cognitohq.com", true },
@@ -7761,14 +7986,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coincoin.eu.org", true },
{ "coincolors.co", true },
{ "coindatabase.net", true },
+ { "coindeal.com", true },
{ "coinf.it", true },
{ "coinflux.com", true },
{ "coingate.com", true },
- { "coinjar-sandbox.com", true },
{ "coinlist.co", false },
{ "coinloan.io", true },
{ "coinmewallet.com", true },
{ "coinpit.io", true },
+ { "coinroom.com", true },
{ "coins2001.ru", true },
{ "coinx.pro", true },
{ "coisasdemulher.org", true },
@@ -7783,12 +8009,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coldfff.com", false },
{ "coldhak.ca", true },
{ "coldstreamcreekfarm.com", true },
+ { "colectivointerconductual.com", true },
{ "colegiocierp.com.br", true },
{ "colemak.com", true },
{ "colengo.com", true },
{ "colf.online", true },
{ "colibris.xyz", true },
- { "colincampbell.me", true },
{ "colinchartier.com", true },
{ "colincogle.name", true },
{ "colinsnaith.co.uk", true },
@@ -7816,8 +8042,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "collectorsystems.com", true },
{ "collegeconnexxions.com.au", true },
{ "collegenavigator.gov", true },
- { "collegepaperworld.com", true },
{ "collegeprospectsofcentralindiana.com", true },
+ { "collegestationhomes.com", true },
{ "collinel-hossari.com", true },
{ "collinelhossari.com", true },
{ "collinklippel.com", true },
@@ -7835,14 +8061,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coloristcafe.com", true },
{ "colorsbycarin.com", true },
{ "colossal-events.co.uk", true },
+ { "colotimes.com", true },
{ "colourfulcastles.co.uk", true },
{ "colpacpackaging.com", true },
{ "colson-occasions.be", true },
+ { "coltellisurvival.com", true },
{ "coltonrb.com", true },
{ "columbuswines.com", true },
{ "colyakootees.com", true },
{ "com-in.de", true },
- { "com-news.io", true },
{ "comalia.com", true },
{ "comandofilmes.club", true },
{ "comarkinstruments.net", true },
@@ -7859,11 +8086,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "comercialtpv.com", true },
{ "comerford.net", true },
{ "comestoarra.com", true },
- { "cometbot.cf", true },
{ "cometcache.com", true },
- { "comevius.com", true },
- { "comevius.org", true },
- { "comevius.xyz", true },
+ { "cometonovascotia.ca", true },
{ "comff.net", true },
{ "comfintouch.com", true },
{ "comflores.com.br", true },
@@ -7880,30 +8104,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "commechezvous.ch", true },
{ "commerce.gov", true },
{ "commercial-academy.fr", true },
+ { "commeunamour.com", true },
{ "commissionagenda.com", true },
{ "commitsandrebases.com", true },
{ "common.io", true },
{ "commoncode.com.au", true },
{ "commoncode.io", true },
{ "commoncore4kids.com", true },
+ { "commonspace.la", true },
{ "communityblog.fedoraproject.org", true },
{ "communitycodeofconduct.com", true },
{ "communityflow.info", true },
+ { "communitymanagertorrejon.com", true },
{ "communote.net", true },
{ "como-se-escribe.com", true },
+ { "comocurarlagastritis24.online", true },
{ "comocurarlagastritistratamientonatural.com", true },
{ "comodesinflamarlashemorroides.org", true },
- { "comodo.nl", true },
{ "comodormirmasrapido.com", true },
{ "comodosslstore.com", true },
{ "comoeliminarlaspapulasperladasenelglande.com", true },
{ "comogene.com", true },
{ "comohacerelamoraunhombrenet.com", true },
{ "comohacerpara.com", true },
+ { "comoimportar.net", true },
{ "comopuededejardefumar.net", true },
{ "comoquitarlacaspa24.com", true },
{ "comoquitarlasestriasrapidamente.com", true },
{ "comosatisfaceraunhombreenlacamaydejarloloco.com", true },
+ { "comosecarabarriga.net", true },
+ { "comoseduzir.net", true },
{ "comosefazisto.com.br", true },
{ "comp2go.com.au", true },
{ "compactchess.cc", true },
@@ -7929,6 +8159,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "completesecurityessex.com", true },
{ "completionist.me", true },
{ "complexart.ro", true },
+ { "complexorganizations.com", true },
{ "complexsystems.fail", true },
{ "compliance-management.ch", true },
{ "compliance-systeme.de", true },
@@ -7937,29 +8168,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "compostatebien.com.ar", true },
{ "compoundingrxusa.com", true },
{ "compraneta.com", false },
+ { "comprasoffie.com.br", true },
{ "compreautomacao.com.br", true },
{ "compree.com", true },
- { "compros.me", true },
{ "compservice.in.ua", true },
{ "comptu.com", true },
{ "compubench.com", true },
{ "compucastell.ch", true },
{ "compucorner.mx", true },
+ { "compunetwor.com", true },
{ "compuplast.cz", true },
- { "compusolve.nl", true },
{ "computehealth.com", true },
{ "computer-acquisti.com", true },
+ { "computer-science-schools.com", true },
{ "computeracademy.co.za", true },
{ "computerassistance.co.uk", true },
{ "computerbas.nl", true },
{ "computerbase.de", true },
+ { "computercamaccgi.com", true },
{ "computercraft.net", true },
+ { "computeremergency.com.au", false },
{ "computerhilfe-feucht.de", true },
{ "computernetwerkwestland.nl", true },
{ "computerslotopschool.nl", true },
{ "computersystems.guru", false },
- { "comssa.org.au", true },
{ "comunidadmontepinar.es", true },
+ { "comvos.de", true },
{ "comw.cc", true },
{ "conalcorp.com", true },
{ "conatus.ai", true },
@@ -7970,6 +8204,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "concertsenboite.fr", true },
{ "concertsto.com", true },
{ "conciliumnotaire.ca", true },
+ { "conclinica.com.br", true },
{ "concordsoftwareleasing.com", true },
{ "concretelevelingsystems.com", true },
{ "concreterepairatlanta.com", true },
@@ -7995,14 +8230,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "conejovalleyoutdoorlighting.com", true },
{ "conexiontransporte.com", true },
{ "confiancefoundation.org", true },
- { "confidential.network", true },
{ "config.schokokeks.org", false },
{ "confiwall.de", true },
{ "conformax.com.br", true },
{ "conformist.jp", true },
{ "confucio.cl", true },
- { "confuddledpenguin.com", true },
- { "cong5.net", true },
{ "congineer.com", true },
{ "congobunkering.com", true },
{ "conju.cat", true },
@@ -8026,18 +8258,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "connext.de", true },
{ "connictro.de", true },
{ "connorhatch.com", true },
+ { "connorsmith.co", true },
{ "connyduck.at", true },
{ "conociendosalama.com", true },
{ "conocimientosdigitales.com", true },
{ "conory.com", true },
- { "conpins.nl", true },
+ { "conpath.net", true },
{ "conrad-kostecki.de", true },
{ "conradkostecki.de", true },
+ { "conradsautotransmissionrepair.com", true },
{ "conrail.blue", true },
{ "consagracionamariasantisima.org", true },
{ "consciousbrand.co", true },
{ "consciouschoices.net", true },
{ "consec-systems.de", true },
+ { "consegnafioridomicilio.net", true },
{ "consejosdenutricion.com", true },
{ "consensoprivacy.it", true },
{ "conservados.com.br", true },
@@ -8050,18 +8285,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "console.rest", true },
{ "consommateuraverti.com", true },
{ "consonare.de", true },
+ { "conspiracyservers.com", true },
{ "constancechen.me", true },
{ "constant-rough.de", true },
{ "constares.de", true },
+ { "constitution.website", true },
{ "constructexpres.ro", true },
{ "constructieve.nl", true },
+ { "construction-colleges.com", true },
{ "construction-student.co.uk", true },
{ "constructionjobs.com", true },
+ { "constructive.men", true },
{ "consul.io", true },
{ "consulenza.pro", true },
{ "consultation.biz.tr", true },
{ "consultimator.com", true },
{ "consultimedia.de", true },
+ { "consultoriadeseguranca.com.br", true },
{ "consultoriosodontologicos.com.br", true },
{ "consultpetkov.com", true },
{ "consulvation.com", true },
@@ -8094,7 +8334,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "controle.net", true },
{ "controleer-maar-een-ander.nl", true },
{ "controltickets.com.br", true },
- { "contxt-agentur.de", true },
{ "conv2pdf.com", true },
{ "convergence.fi", true },
{ "convergencela.com", true },
@@ -8103,7 +8342,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "conversionsciences.com", true },
{ "convert.im", true },
{ "convert.zone", true },
- { "converter.ml", true },
{ "converticacommerce.com", false },
{ "convexset.org", true },
{ "convocatoriafundacionpepsicomexico.org", false },
@@ -8116,6 +8354,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cookiecrook.com", true },
{ "cookielab.io", true },
{ "cookiesoft.de", true },
+ { "cooking-sun.com", true },
{ "cookingcrusade.com", true },
{ "cookinglife.nl", false },
{ "cookingreporter.com", true },
@@ -8125,24 +8364,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cookwithmanali.com", true },
{ "cool-parties.co.uk", true },
{ "cool-wallpapers.jp", true },
+ { "cool.haus", true },
{ "cool110.tk", true },
{ "cool110.xyz", true },
{ "coolattractions.co.uk", true },
{ "coolbitx.com", true },
+ { "coolcamping.com", true },
{ "cooldan.com", true },
{ "coole-fete.de", true },
+ { "coolerssr.space", true },
{ "coolgifs.de", true },
{ "coolprylar.se", true },
- { "coolrc.me", true },
{ "coolviewthermostat.com", true },
{ "coolwallet.io", true },
{ "coonawarrawines.com.au", true },
{ "coopens.com", true },
+ { "cooperativehandmade.com", true },
+ { "cooperativehandmade.pe", true },
{ "coor.fun", true },
{ "coore.jp", true },
{ "coorpacademy.com", true },
{ "copdfoundation.org", true },
{ "copinstant.com", true },
+ { "copperandtileroofing.com", true },
{ "copperhead.co", true },
{ "copperheados.com", true },
{ "coppermein.co.za", true },
@@ -8154,10 +8398,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "copycaught.org", true },
{ "copycaught.xyz", true },
{ "copycrafter.net", true },
+ { "copydz.com", true },
{ "copypoison.com", true },
{ "copyright-watch.org", true },
{ "coquibus.net", true },
{ "corbi.net.au", true },
+ { "cordejong.nl", true },
{ "cordep.biz", true },
{ "corder.tech", true },
{ "cordeydesign.ch", true },
@@ -8195,7 +8441,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "corona-academy.com", true },
{ "corona-renderer.cloud", true },
{ "corona-renderer.com", true },
- { "coropiacere.org", true },
{ "corourbano.es", true },
{ "corpfin.net", true },
{ "corpio.nl", true },
@@ -8210,6 +8455,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "corpulantcoffee.com", true },
{ "corpulent.coffee", true },
{ "corpulentcoffee.com", true },
+ { "corpuschristisouthriver.org", true },
{ "corpusslayer.com", true },
{ "corrbee.com", true },
{ "correctiv.org", true },
@@ -8222,9 +8468,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cortexx.nl", true },
{ "cortis-consulting.ch", true },
{ "cortisolsupplement.com", true },
+ { "corvax.kiev.ua", true },
{ "corvus.eu.org", true },
{ "coryadum.com", true },
{ "corytyburski.com", true },
+ { "corzntin.fr", false },
{ "cosasque.com", true },
{ "cosciamoos.com", true },
{ "cosirex.com", true },
@@ -8235,32 +8483,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cosmeticasimple.com", true },
{ "cosmeticos-naturales.com", true },
{ "cosmeticosdelivery.com.br", true },
- { "cosmic-os.org", true },
{ "cosmicnavigator.com", true },
{ "cosmodacollection.com", true },
{ "cosmofunnel.com", true },
{ "cosmundi.de", true },
{ "cosni.co", true },
+ { "cosplayer.com", true },
{ "cospol.ch", true },
{ "costa-rica-reisen.ch", true },
{ "costa-rica-reisen.de", true },
{ "costablanca.villas", true },
{ "costablancavoorjou.com", true },
{ "costcofinance.com", true },
+ { "costcoinsider.com", true },
+ { "costellofc.co.uk", true },
{ "costinstefan.eu", true },
{ "costreportdata.com", false },
{ "costulessdirect.com", true },
{ "coteries.com", true },
+ { "cotoacc.com", true },
{ "cotonmusic.ch", true },
{ "cotta.dk", true },
{ "cotwe-ge.ch", true },
{ "cougar.dating", true },
+ { "counsellingtime.co.uk", true },
+ { "counsellingtime.com", true },
{ "counstellor.com", true },
{ "counter-team.ch", true },
{ "counterglobal.com", true },
- { "countermail.com", true },
+ { "counterhack.nl", true },
+ { "countermail.com", false },
{ "countermats.net", true },
{ "countersolutions.co.uk", true },
+ { "countetime.com", true },
{ "countingto.one", true },
{ "countryattire.com", true },
{ "countrybrewer.com.au", true },
@@ -8270,14 +8525,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "countyjailinmatesearch.com", true },
{ "coupe-bordure.com", true },
{ "couponcodesme.com", true },
+ { "cour4g3.me", true },
{ "couragefound.org", true },
- { "coursables.com", true },
{ "coursera.org", true },
{ "courtlistener.com", true },
{ "couscous.recipes", true },
- { "cousincouples.com", true },
+ { "cousincouples.com", false },
{ "coussinsky.net", true },
{ "couvreur-hinault.fr", true },
+ { "covaci.pro", true },
{ "covbounce.co.uk", true },
{ "covenantmatrix.com", true },
{ "covenantoftheriver.org", true },
@@ -8290,17 +8546,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cowbird.org", true },
{ "cowboyim.com", true },
{ "coweo.cz", true },
+ { "cowo.group", true },
+ { "coxcapitalmanagement.com", true },
{ "coxxs.me", true },
{ "coxxs.moe", true },
- { "cozitop.com.br", true },
{ "cozo.me", true },
{ "cozyeggdesigns.com", true },
{ "cp-st-martin.be", true },
{ "cpahunt.com", false },
+ { "cpasperdu.com", true },
{ "cpbapremiocaduceo.com.ar", true },
{ "cpcheats.co", true },
{ "cpd-education.co.uk", true },
+ { "cpe-colleg.de", true },
{ "cphpvb.net", true },
+ { "cplala.com", true },
{ "cplus.me", true },
{ "cplusplus.se", true },
{ "cppan.org", true },
@@ -8308,12 +8568,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cpqcol.gov.co", true },
{ "cprheartcenter.com", true },
{ "cprnearme.com", true },
+ { "cpsc.gov", true },
+ { "cptoon.com", true },
{ "cpu.biz.tr", true },
{ "cpvmatch.eu", true },
{ "cpy.pt", true },
{ "cqn.ch", true },
{ "cr.search.yahoo.com", false },
{ "cr0nus.net", true },
+ { "cr9499.com", true },
+ { "cra-bank.com", true },
+ { "cra-search.net", true },
+ { "craazzyman21.at", true },
{ "crackcat.de", true },
{ "cracker.in.th", true },
{ "crackle.io", true },
@@ -8327,18 +8593,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "craftinginredlipstick.com", true },
{ "craftist.de", true },
{ "craftsmandruggets.com", true },
+ { "craftsmany.net", true },
{ "craftyguy.net", true },
{ "craftyphotons.net", true },
{ "crag.com.tw", true },
{ "craigary.net", true },
{ "craigbates.co.uk", true },
{ "craigfrancis.co.uk", true },
+ { "craigleclaireteam.com", true },
{ "craigrouse.com", true },
{ "craigwfox.com", true },
{ "cralarm.de", true },
{ "crandall.io", true },
{ "cranforddental.com", true },
+ { "cranshafengin.com", true },
{ "crapouill.es", true },
+ { "cratss.co.uk", true },
{ "crawcial.de", true },
{ "crawford.cloud", true },
{ "crawfordcountytcc.org", true },
@@ -8346,6 +8616,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crawler.ninja", true },
{ "crawleybouncycastles.co.uk", true },
{ "crawlspaceandbasementsolutions.com", true },
+ { "crazy-bulks.com", true },
+ { "crazy-cat.net", true },
{ "crazy-coders.com", true },
{ "crazycastles.ie", true },
{ "crazydomains.ae", true },
@@ -8357,7 +8629,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crazynoisybizarre.town", true },
{ "crazypaul.com", true },
{ "crbug.com", true },
- { "crc-online.nl", true },
+ { "crc-bank.com", true },
+ { "crc-search.com", true },
{ "crdmendoza.net", true },
{ "crea-etc.net", true },
{ "crea-shops.ch", true },
@@ -8375,7 +8648,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "creative-wave.fr", true },
{ "creativebites.de", true },
{ "creativecaptiv.es", true },
- { "creativecommons.cl", true },
{ "creativecommons.gr", true },
{ "creativecommons.org", true },
{ "creativeconceptsvernon.com", true },
@@ -8391,9 +8663,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "creativeweb.biz", true },
{ "creativewolf.net", true },
{ "creativlabor.ch", true },
- { "creatixx-network.de", true },
+ { "creatixx-network.de", false },
{ "creators-design.com", true },
- { "creators.co", true },
{ "creators.direct", true },
{ "creatujoya.com", true },
{ "credential.eu", true },
@@ -8403,6 +8674,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "creditkarma.com", true },
{ "creditos-rapidos.com", true },
{ "creditproautos.com", false },
+ { "creditscoretalk.com", true },
+ { "creditta.com", true },
+ { "credittoken.io", true },
{ "creeks-coworking.com", true },
{ "creep.im", true },
{ "creepycraft.nl", true },
@@ -8430,31 +8704,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "criena.com", true },
{ "criena.net", true },
{ "crimefreeliving.com", true },
+ { "crimesolutions.gov", true },
{ "crimevictims.gov", true },
{ "criminal-attorney.ru", true },
{ "criminal.enterprises", true },
{ "crimson.no", true },
{ "crinesdanzantes.be", true },
- { "crip-usk.ba", true },
+ { "criptolog.com", true },
{ "crisisactual.com", true },
{ "crisisnextdoor.gov", true },
{ "crisp.chat", true },
{ "crisp.email", true },
{ "crisp.help", true },
{ "crisp.im", true },
+ { "crisp.watch", true },
{ "crispinusphotography.com", true },
{ "cristarta.com", true },
{ "cristau.org", true },
{ "cristiandeluxe.com", false },
+ { "critcola.com", true },
{ "critical.today", false },
{ "criticalsurveys.co.uk", true },
{ "crizin.io", true },
{ "crm.onlime.ch", false },
- { "croceverdevb.it", true },
+ { "crm114d.com", true },
{ "crochetnerd.com", true },
{ "croisedanslemetro.com", true },
{ "croixblanche-haguenau.fr", true },
- { "cromefire.myds.me", true },
{ "cronberg.ch", true },
{ "croncron.io", true },
{ "cronix.cc", true },
@@ -8478,7 +8754,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crossorig.in", true },
{ "crossoverit.com", true },
{ "crosssellguide.com", true },
- { "crow.tw", true },
+ { "crowd.supply", true },
{ "crowdbox.net", true },
{ "crowdcloud.be", true },
{ "crowdliminal.com", true },
@@ -8492,51 +8768,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "croydonapartments.com.au", true },
{ "croydonbouncycastles.co.uk", true },
{ "crrev.com", true },
+ { "crsmsodry.cz", true },
{ "crstat.ru", true },
+ { "crt.cloud", true },
{ "crt.sh", true },
- { "crt2014-2024review.gov", true },
{ "crumbcontrol.com", true },
{ "crunchrapps.com", true },
{ "crunchy.rocks", true },
{ "crustytoothpaste.net", true },
{ "crute.me", true },
- { "cruzadobalcazarabogados.com", true },
{ "crvv.me", true },
{ "cry.nu", false },
{ "cryoit.com", true },
{ "cryothanasia.com", true },
{ "cryp.no", true },
{ "crypt.is-by.us", true },
+ { "cryptagio.com", true },
{ "cryptearth.de", true },
{ "crypted.chat", true },
{ "crypteianetworks.com", true },
{ "crypticshell.co.uk", true },
- { "crypto-navi.org", true },
+ { "crypto-armory.com", true },
{ "crypto.cat", false },
{ "crypto.graphics", true },
{ "crypto.is", false },
- { "crypto.tube", true },
{ "cryptobin.co", true },
{ "cryptocon.org", true },
- { "cryptodyno.ninja", true },
{ "cryptoegg.ca", true },
{ "cryptofan.org", true },
{ "cryptofrog.co", true },
{ "cryptography.ch", true },
{ "cryptography.io", true },
{ "cryptoguidemap.com", true },
+ { "cryptojacks.io", true },
{ "cryptojourney.com", true },
{ "cryptolinc.com", true },
{ "cryptology.ch", true },
{ "cryptolosophy.io", true },
{ "cryptolosophy.org", true },
+ { "cryptomaniaks.com", true },
{ "cryptonom.org", true },
{ "cryptonym.com", true },
{ "cryptoparty.at", true },
{ "cryptoparty.tv", true },
{ "cryptopartyutah.org", true },
{ "cryptophobia.nl", true },
- { "cryptopro.shop", true },
{ "cryptorival.com", true },
{ "cryptoseb.pw", true },
{ "cryptoshot.pw", true },
@@ -8548,6 +8824,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crystalchandelierservices.com", true },
{ "crystalgrid.net", true },
{ "crystallizedcouture.com", true },
+ { "crystaloscillat.com", true },
{ "crystone.me", true },
{ "cryz.ru", true },
{ "cs2016.ch", true },
@@ -8560,41 +8837,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "csd-sevnica.si", true },
{ "csfcloud.com", true },
{ "csfd.cz", true },
- { "csfloors.co.uk", true },
{ "csfm.com", true },
- { "csgo.su", true },
+ { "csgo.su", false },
{ "csgoswap.com", true },
- { "csgotwister.com", true },
{ "csharpmarc.net", true },
- { "cshopify.com", true },
{ "csi.lk", true },
{ "csinterstargeneve.ch", true },
- { "cskdoc.com", true },
{ "cskentertainment.co.uk", true },
{ "csmainframe.com", true },
{ "csokolade.hu", true },
+ { "csovek-idomok.hu", true },
{ "csp.ch", true },
{ "cspeti.hu", true },
{ "cspvalidator.org", true },
{ "csrichter.com", true },
- { "csru.net", true },
{ "css.direct", false },
{ "css.net", true },
{ "cssai.eu", true },
{ "cssaunion.com", true },
{ "cstb.ch", true },
{ "cstp-marketing.com", true },
+ { "cstrong.nl", true },
{ "csu.st", true },
{ "csuw.net", true },
{ "csvalpha.nl", true },
{ "ct.search.yahoo.com", false },
{ "ctc-transportation.com", true },
+ { "ctcom-peru.com", true },
{ "ctcue.com", true },
{ "ctf.link", true },
- { "cthomas.work", true },
{ "cthulhuden.com", true },
{ "ctj.im", true },
+ { "ctkwwri.org", true },
{ "ctl.email", true },
+ { "ctliu.com", true },
{ "ctnguyen.de", true },
{ "ctnguyen.net", true },
{ "ctns.de", true },
@@ -8607,6 +8883,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cub-bouncingcastles.co.uk", true },
{ "cube-cloud.com", true },
{ "cube.de", true },
+ { "cubebot.io", true },
+ { "cubebuilders.net", true },
{ "cubecart-demo.co.uk", true },
{ "cubecart-hosting.co.uk", true },
{ "cubecraft.net", true },
@@ -8616,6 +8894,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cubia3.com", true },
{ "cubia4.com", true },
{ "cubile.xyz", true },
+ { "cubing.net", true },
{ "cublick.com", true },
{ "cubos.io", false },
{ "cubostecnologia.com", false },
@@ -8634,9 +8913,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cultivo.bio", true },
{ "cultofd50.org", true },
{ "cultofperf.org.uk", true },
+ { "culture-school.top", true },
{ "culturedcode.com", true },
{ "culturerain.com", true },
- { "cultureroll.com", true },
{ "culturesouthwest.org.uk", true },
{ "cumberlandrivertales.com", true },
{ "cumplegenial.com", true },
@@ -8653,7 +8932,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "curareldolordeespalda.com", true },
{ "curatedgeek.com", true },
{ "curbside.com", true },
- { "curia.fi", true },
{ "curieux.digital", true },
{ "curio-shiki.com", true },
{ "curiosity-driven.org", true },
@@ -8664,15 +8942,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "currentlyusa.com", true },
{ "currentobserver.com", true },
{ "currynissanmaparts.com", true },
+ { "cursos-trabajadores.net", true },
{ "cursos.com", true },
{ "cursosforex.com", true },
- { "cursosgratuitos.com.br", true },
{ "cursosingles.com", true },
{ "cursossena.co", true },
{ "cursuri-de-actorie.ro", true },
{ "curtacircuitos.com.br", false },
{ "curtis-smith.me.uk", true },
{ "curtis-smith.uk", true },
+ { "curtislaw-pllc.com", true },
{ "curtislinville.net", true },
{ "curtissmith.me.uk", true },
{ "curtissmith.uk", true },
@@ -8683,7 +8962,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "curveprotect.org", true },
{ "curvesandwords.com", true },
{ "curvissa.co.uk", true },
- { "custerweb.com", true },
{ "custodyxchange.com", true },
{ "custombikes.cl", true },
{ "customdissertation.com", true },
@@ -8692,7 +8970,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "customfitmarketing.com", true },
{ "customgear.com.au", true },
{ "customizeyoursink.com", true },
- { "customshort.link", true },
{ "customwritingservice.com", true },
{ "customwritten.com", true },
{ "cutephil.com", true },
@@ -8710,8 +8987,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cuvva.org", true },
{ "cuvva.uk", true },
{ "cuvva.us", true },
- { "cuxpool.club", true },
+ { "cuxpool.net", true },
{ "cvc.digital", true },
+ { "cvchomes.com", true },
{ "cvcoders.com", true },
{ "cve-le-carrousel.ch", true },
{ "cviip.ca", true },
@@ -8721,16 +8999,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cvlibrary.co.uk", true },
{ "cvmu.jp", true },
{ "cvninja.pl", true },
- { "cvps.top", true },
{ "cvr.dk", true },
{ "cvursache.com", true },
- { "cvv.cn", true },
{ "cw.center", true },
{ "cwagner.me", true },
{ "cwarren.org", true },
{ "cwbrtrust.ca", true },
{ "cwgaming.co.uk", true },
- { "cwinfo.fi", true },
{ "cwmart.in", true },
{ "cwrau.com", true },
{ "cwrau.de", true },
@@ -8741,8 +9016,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cwrau.rocks", true },
{ "cwrau.tech", true },
{ "cwrcoding.com", true },
+ { "cxadd.com", true },
{ "cy.ax", true },
- { "cyber.cafe", true },
+ { "cyanghost.com", true },
{ "cyber.je", true },
{ "cyberatlantis.com", true },
{ "cybercareers.gov", true },
@@ -8750,17 +9026,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cybercrew.cc", true },
{ "cybercrime-forschung.de", true },
{ "cybercrime.gov", true },
- { "cybercymru.co.uk", true },
+ { "cyberdos.de", false },
{ "cyberduck.io", true },
{ "cyberexplained.info", true },
- { "cyberfrancais.ro", true },
{ "cybergrx.com", true },
{ "cyberguerrilla.info", true },
{ "cyberguerrilla.org", true },
{ "cyberianhusky.com", true },
{ "cyberkov.com", true },
+ { "cyberlab.kiev.ua", false },
{ "cyberlightapp.com", true },
{ "cybermeldpunt.nl", true },
+ { "cyberogism.com", true },
{ "cyberoptic.de", true },
{ "cyberphaze.com", true },
{ "cyberpioneer.net", false },
@@ -8771,17 +9048,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cyberscan.io", true },
{ "cybersecurity.nz", true },
{ "cybersecurity.run", true },
- { "cybersecuritychallenge.be", true },
+ { "cybersecuritychallenge.be", false },
{ "cybersecurityketen.nl", true },
{ "cyberseguranca.com.br", true },
{ "cybersins.com", true },
- { "cybersmart.co.uk", true },
{ "cybersmartdefence.com", true },
{ "cyberspace.community", true },
{ "cyberspect.com", true },
{ "cyberspect.io", true },
{ "cyberstatus.de", true },
- { "cybertorsk.org", true },
{ "cybertu.be", true },
{ "cyberwars.dk", true },
{ "cyberwire.nl", true },
@@ -8794,6 +9069,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cybrary.it", true },
{ "cyclebeads.com", true },
{ "cycleluxembourg.lu", true },
+ { "cyclinggoodso.com", true },
{ "cyclisjumper.gallery", true },
{ "cyclop-editorial.fr", true },
{ "cydetec.com", true },
@@ -8804,6 +9080,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cygnius.net", true },
{ "cyhour.com", true },
{ "cykelbanor.se", true },
+ { "cylindehea.com", true },
{ "cylindricity.com", true },
{ "cyon.ch", true },
{ "cypad.cn", true },
@@ -8816,7 +9093,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cyph.me", true },
{ "cyph.video", true },
{ "cyph.ws", true },
- { "cypherpunk.at", true },
{ "cypherpunk.observer", true },
{ "cypresslegacy.com", true },
{ "cyprus-company-service.com", true },
@@ -8826,12 +9102,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cytech.com.tr", true },
{ "cytegic-update-packages.com", true },
{ "cyumus.com", true },
- { "cyyzaid.cn", true },
+ { "cyyzaid.cn", false },
{ "czakey.net", true },
{ "czbix.com", true },
{ "czbtm.com", true },
{ "czc.cz", true },
{ "czechamlp.com", true },
+ { "czechcrystals.co.uk", true },
{ "czechvirus.cz", true },
{ "czerno.com", true },
{ "czfa.pl", true },
@@ -8847,22 +9124,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "d-training.de", true },
{ "d.nf", true },
{ "d.nr", true },
- { "d.rip", true },
{ "d00d.de", true },
{ "d0g.cc", true },
{ "d0m41n.name", true },
{ "d0xq.com", true },
+ { "d2ph.com", true },
{ "d2s.uk", true },
{ "d3lab.net", true },
- { "d3njjcbhbojbot.cloudfront.net", true },
{ "d3xt3r01.tk", true },
{ "d3xx3r.de", true },
{ "d42.no", true },
+ { "d4wson.com", true },
{ "d4x.de", true },
{ "d66.nl", true },
+ { "d6c5yfulmsbv6.cloudfront.net", true },
{ "d8.io", true },
+ { "d88688.com", true },
+ { "d88871.com", true },
+ { "d88988.com", true },
{ "da-ist-kunst.de", true },
- { "da.hn", true },
{ "da42foripad.com", true },
{ "daallexx.eu", true },
{ "dabasstacija.lv", true },
@@ -8883,7 +9163,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daduke.org", true },
{ "daemen.org", true },
{ "daemon.xin", true },
- { "daemonslayer.net", true },
{ "daemwool.ch", true },
{ "daevel.fr", true },
{ "dafnik.me", true },
@@ -8893,15 +9172,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dag-konsult.com", true },
{ "dagensannonser.se", true },
{ "dagmar2018.cz", true },
- { "dahlberg.cologne", true },
{ "dai.top", true },
{ "daigakujuken-plus.com", true },
{ "daikoz.com", true },
{ "dailybits.be", true },
{ "dailyblogged.com", true },
+ { "dailyemailinboxing.com", true },
{ "dailyenglishchallenge.com", true },
{ "dailyhealthguard.com", true },
{ "dailykos.com", true },
+ { "dailyrover.com", true },
{ "dailyxenang.com", true },
{ "daintymeal.com", true },
{ "dairyshrine.org", true },
@@ -8909,8 +9189,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daisidaniels.co.uk", true },
{ "daisy-peanut.com", true },
{ "daisypeanut.com", true },
- { "daiwai.de", false },
{ "daiweihu.com", true },
+ { "daiyuu.jp", true },
+ { "dajiadu.net", true },
{ "dak.org", true },
{ "daknob.net", true },
{ "daktarisys.com", true },
@@ -8918,7 +9199,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dalaran.city", true },
{ "dalb.in", true },
{ "dale-electric.com", true },
- { "dalek.co.nz", true },
{ "dalepresencia.com", true },
{ "dalfsennet.nl", true },
{ "dalingk.com", true },
@@ -8930,9 +9210,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "damasexpress.com", true },
{ "damedrogy.cz", true },
{ "damghaem.ir", true },
- { "damicris.ro", true },
{ "damienoreilly.org", true },
- { "damienpontifex.com", true },
+ { "damienpontifex.com", false },
{ "daminiphysio.ca", true },
{ "damip.net", true },
{ "dammekens.be", true },
@@ -8947,16 +9226,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danandrum.com", true },
{ "danarozmarin.com", true },
{ "danbaldwinart.com", true },
+ { "danburycampervans.co.uk", true },
+ { "dance-colleges.com", true },
{ "danchen.org", true },
{ "dancingcubs.co.uk", true },
{ "dancingshiva.at", true },
{ "dandenongroadapartments.com.au", true },
{ "daneandthepain.com", true },
+ { "dangr.zone", true },
{ "danhalliday.com", true },
{ "danholloway.online", true },
{ "daniel-baumann.ch", true },
{ "daniel-cholewa.de", true },
- { "daniel-du.com", true },
{ "daniel-kulbe.de", true },
{ "daniel-milnes.uk", true },
{ "daniel-ruf.de", true },
@@ -8966,17 +9247,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danielehniss.de", true },
{ "danielepestilli.com", true },
{ "danielgorr.de", true },
+ { "danielheal.net", true },
{ "danielhinterlechner.eu", true },
{ "danielhochleitner.de", true },
{ "danieljamesscott.org", true },
{ "danieljireh.com", true },
+ { "danieljstevens.com", true },
{ "danielkoster.nl", true },
{ "daniellockyer.com", true },
+ { "danielmarquard.com", false },
{ "danielmartin.de", true },
{ "danielmoch.com", true },
{ "danielmorell.com", true },
{ "danielmostertman.com", true },
{ "danielmostertman.nl", true },
+ { "danielnaaman.com", true },
+ { "danielnaaman.net", true },
+ { "danielnaaman.org", true },
{ "danielpeukert.cz", true },
{ "danielran.com", true },
{ "danielrozenberg.com", true },
@@ -8986,6 +9273,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danielstach.cz", true },
{ "danielsteiner.net", true },
{ "danielstiner.me", true },
+ { "danielthompson.info", true },
{ "danieltollot.de", true },
{ "danielvoogsgerd.nl", true },
{ "danielwildhaber.ch", true },
@@ -8994,7 +9282,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danjesensky.com", true },
{ "dank.ninja", true },
{ "dankim.de", false },
- { "dankredues.com", true },
{ "danla.nl", true },
{ "danmaby.com", true },
{ "danmarksbedstefredagsbar.dk", true },
@@ -9002,6 +9289,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danmassarano.com", true },
{ "danminkevitch.com", true },
{ "danna-salary.com", true },
+ { "dannhanks.com", true },
{ "danny-tittel.de", true },
{ "danny.fm", true },
{ "dannycairns.com", true },
@@ -9012,6 +9300,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danoz.net", true },
{ "danpiel.net", true },
{ "dansa.com.co", true },
+ { "dansage.co", true },
{ "danscomp.com", true },
{ "dansdiscounttools.com", true },
{ "danselibre.net", true },
@@ -9028,11 +9317,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danwin1210.me", true },
{ "danwolff.se", true },
{ "danyabanya.com", true },
+ { "danzac.com", true },
{ "dao.spb.su", true },
{ "daoro.net", true },
{ "daphne.informatik.uni-freiburg.de", true },
- { "dapim.co.il", true },
{ "daplie.com", true },
+ { "dapps.earth", true },
{ "dappworld.com", true },
{ "daracokorilo.com", true },
{ "daravk.ch", true },
@@ -9047,10 +9337,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "darinkotter.com", true },
{ "darioackermann.ch", true },
{ "darioclip.com", true },
+ { "dariosirangelo.me", true },
{ "darioturchetti.me", true },
{ "darisni.me", true },
{ "dark-infection.de", true },
{ "dark-vision.cz", true },
+ { "dark.ninja", true },
{ "darkag.ovh", true },
{ "darkcores.net", true },
{ "darkengine.io", true },
@@ -9058,7 +9350,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "darkerlystormy.com", true },
{ "darkerstormy.com", true },
{ "darkeststar.org", true },
- { "darkfire.ch", true },
+ { "darklaunch.com", true },
{ "darknessflickers.com", true },
{ "darknetlive.com", true },
{ "darknight.blog", true },
@@ -9071,19 +9363,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "darkspacelab.com", true },
{ "darktime.ru", true },
{ "darkwater.info", true },
+ { "darkwebnews.com", true },
{ "darkx.me", true },
{ "darom.jp", true },
{ "darookee.net", false },
{ "daropia.org", true },
{ "darshnam.com", true },
- { "dart-tanke.com", true },
- { "dart-tanke.de", true },
{ "dartcode.org", true },
{ "dartetdemetiers.fr", true },
{ "darth-sonic.de", true },
{ "dartsdon.jp", true },
{ "dartshopmn.nl", true },
{ "darwinkel.net", true },
+ { "darwinsearch.org", true },
{ "daryl.moe", true },
{ "darylcumbo.net", true },
{ "das-forum24.de", true },
@@ -9099,9 +9391,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dasteichwerk.at", true },
{ "dasug.de", true },
{ "data-detox.de", true },
+ { "data-wing.ga", true },
{ "data.gov", true },
{ "data.govt.nz", true },
{ "data.world", true },
+ { "data3w.nl", true },
{ "databionix.com", true },
{ "databutlr.com", true },
{ "databutlr.net", true },
@@ -9112,13 +9406,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "datadyne.technology", true },
{ "dataformers.at", true },
{ "datagrail.io", true },
+ { "dataguidance.com", true },
{ "dataharvest.at", true },
{ "datahoarder.xyz", true },
+ { "datajobs.ai", true },
{ "datakick.org", true },
{ "datalife.gr", true },
{ "datalysis.ch", true },
{ "dataprotectionadvisors.com", true },
- { "datapun.ch", true },
{ "datapure.net", true },
{ "dataregister.info", true },
{ "datascience.cafe", true },
@@ -9167,10 +9462,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davetempleton.com", true },
{ "davevelopment.net", true },
{ "davewardle.com", true },
- { "davewut.ca", true },
{ "david-corry.com", true },
{ "david-jeffery.co.uk", true },
- { "david-mallett.com", true },
{ "david-pearce.com", true },
{ "david-reess.de", true },
{ "david-schiffmann.de", true },
@@ -9181,12 +9474,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davidbuckell.com", true },
{ "davidcrx.net", true },
{ "daviddever.net", true },
+ { "davidfetveit.com", true },
{ "davidforward.com", true },
{ "davidforward.net", true },
{ "davidfrancoeur.com", true },
{ "davidgouveia.net", true },
{ "davidgow.net", true },
{ "davidhanle.com", true },
+ { "davidkennardphotography.com", true },
{ "davidking.xyz", true },
{ "davidlamprea.com", true },
{ "davidlane.io", true },
@@ -9205,9 +9500,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davidtiffany.com", true },
{ "davidundetiwan.com", true },
{ "davie3.com", true },
+ { "davisdieselandautorepair.com", true },
{ "davisroi.com", true },
{ "davo-usedcars.be", true },
{ "davy-server.com", true },
+ { "davypropper.com", true },
+ { "daw.nz", true },
{ "dawena.de", true },
{ "dawgs.ga", true },
{ "dawnbringer.eu", true },
@@ -9223,12 +9521,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daymprove.life", true },
{ "dayofdays.be", true },
{ "daysoftheyear.com", true },
- { "db-sanity.com", true },
{ "db-works.nl", true },
{ "dbapress.org", true },
{ "dbaron.org", true },
{ "dbas.cz", true },
- { "dbcom.ru", true },
{ "dbdc.us", true },
{ "dbentertainment.co.uk", true },
{ "dbgamestudio.com", true },
@@ -9246,10 +9542,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dc-elektro.de", true },
{ "dc-elektro.eu", true },
{ "dc-occasies.be", true },
- { "dc-solution.de", true },
+ { "dc-solution.de", false },
{ "dc1.com.br", true },
{ "dc562.org", true },
{ "dc585.info", true },
+ { "dcain.me", true },
{ "dcards.in.th", true },
{ "dcautomacao.com.br", true },
{ "dcbouncycastles.co.uk", true },
@@ -9259,7 +9556,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dchatelain.ch", true },
{ "dchest.org", true },
{ "dckd.nl", true },
- { "dcl.re", true },
{ "dclaisse.fr", true },
{ "dcmt.co", true },
{ "dcpower.eu", true },
@@ -9272,6 +9568,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ddhosted.com", true },
{ "ddns-test.de", true },
{ "ddnsweb.com", true },
+ { "ddoser.cn", true },
+ { "ddosolitary.org", true },
{ "ddproxy.cf", true },
{ "ddracepro.net", true },
{ "dds.mil", true },
@@ -9287,7 +9585,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deadinsi.de", true },
{ "deaf.dating", true },
{ "deaf.eu.org", true },
- { "deai-life.biz", true },
{ "dealapp.nl", true },
{ "dealbanana.at", true },
{ "dealbanana.be", true },
@@ -9315,6 +9612,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dearfcc.net", true },
{ "dearfcc.org", true },
{ "dearktiel.nl", true },
+ { "dearly.com", true },
{ "dearnevalleybouncycastles.co.uk", true },
{ "deathofspring.com", true },
{ "deathy.ro", true },
@@ -9336,7 +9634,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "debuis.nl", true },
{ "decaffeinated.io", true },
{ "decalquai.ch", true },
+ { "decay24.de", true },
{ "dechat.nl", true },
+ { "decher.de", true },
{ "decidetreatment.org", true },
{ "decis.fr", true },
{ "decisivetactics.com", true },
@@ -9346,6 +9646,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "decodeanddestroy.com", true },
{ "decoder.link", true },
{ "decompiled.de", true },
+ { "decoora.com", true },
{ "decor-d.com", true },
{ "decoratingadvice.co.uk", true },
{ "decoratore.roma.it", true },
@@ -9360,6 +9661,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dedelta.net", true },
{ "dedg3.com", true },
{ "dedge.org", true },
+ { "dedicatedtowomenobgyn.com", true },
{ "dedimax.de", true },
{ "dedmorozrzn.ru", false },
{ "deduijventil.nl", true },
@@ -9367,20 +9669,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dee.su", true },
{ "deechtebakkers.nl", true },
{ "deegeeinflatables.co.uk", true },
+ { "deejayevents.ro", true },
{ "deelmijnreis.nl", true },
+ { "deep-chess.com", true },
+ { "deep.club", true },
{ "deepaero.com", true },
+ { "deeparamaraj.com", true },
{ "deepbluecrafting.co.uk", true },
+ { "deepblueemail.com", true },
{ "deepcode.io", true },
{ "deeperxh.com", true },
{ "deephill.com", true },
+ { "deepinsight.io", true },
{ "deeployr.io", true },
{ "deepserve.info", true },
- { "deepsouthsounds.com", true },
{ "deepspace.dedyn.io", true },
{ "deepwealth.institute", true },
{ "deepz.pt", true },
{ "deepzz.com", true },
- { "deezeno.com", true },
{ "def-pos.ru", true },
{ "defcon.org", true },
{ "defcongroups.org", true },
@@ -9407,6 +9713,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "degeberg.com", true },
{ "degeberg.dk", true },
{ "degen-elektrotechnik.de", true },
+ { "degestamptepot.nl", true },
{ "degosoft.nl", true },
{ "degoulet.net", true },
{ "degracetechnologie.com", true },
@@ -9427,6 +9734,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dekeurslagers.nl", true },
{ "dekka.cz", true },
{ "dekkercreativedesign.nl", true },
+ { "dekko.io", true },
{ "dekoh-shouyu.com", true },
{ "dekonix.ru", true },
{ "dekulk.nl", true },
@@ -9434,7 +9742,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "delbecqvo.be", true },
{ "delbrouck.ch", true },
{ "deleidscheflesch.nl", true },
- { "delf.co.jp", true },
{ "delfic.org", true },
{ "delfino.cr", true },
{ "delhionlinegifts.com", true },
@@ -9447,6 +9754,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "delid.cz", true },
{ "delitto.top", true },
{ "delivery.co.at", true },
+ { "deliveryiquique.cl", true },
{ "dellipaoli.com", true },
{ "delogo.nl", true },
{ "delorenzi.dk", true },
@@ -9463,12 +9771,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deltasigmachi.org", true },
{ "deltasmart.ch", true },
{ "deltava.org", true },
+ { "demarle.ch", true },
{ "dementiapraecox.de", true },
{ "demeyere-usedcars.be", true },
{ "demfloro.ru", true },
{ "demijn.nl", true },
{ "demilletech.net", true },
+ { "demiranda.com", true },
{ "demmer.one", true },
+ { "demo.swedbank.se", true },
+ { "demo9.ovh", true },
{ "democracychronicles.com", true },
{ "democracyineurope.eu", true },
{ "democraziaineuropa.eu", true },
@@ -9504,8 +9816,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dennogumi.org", true },
{ "denous.nl", true },
{ "dent.uy", true },
+ { "dental-colleges.com", true },
{ "dentallaborgeraeteservice.de", true },
- { "dentfix.ro", true },
+ { "dentfix.ro", false },
{ "dentistesdarveauetrioux.com", true },
{ "dentistglasgow.com", true },
{ "dentrassi.de", true },
@@ -9513,15 +9826,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "denwauranailab.com", true },
{ "deontology.com", true },
{ "depaddestoeltjes.be", true },
+ { "depannage-traceur.fr", true },
{ "deparis.me", true },
{ "depechemode-live.com", true },
- { "depedtayo.com", true },
{ "depicus.com", true },
{ "depone.net", true },
{ "depot-leipzig.de", true },
{ "depotsquarekerrville.com", true },
{ "depotter-usedcars.be", true },
{ "deprecate.de", true },
+ { "depth-co.jp", true },
{ "depthe.gr", true },
{ "der-bank-blog.de", true },
{ "der-fliesenzauberer.de", true },
@@ -9529,6 +9843,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "der-lan.de", true },
{ "der-rudi.eu", true },
{ "der-stein-fluesterer.de", true },
+ { "der-windows-papst.de", true },
{ "derattizzazione.name", true },
{ "derattizzazioni.biz", true },
{ "derattizzazioni.milano.it", true },
@@ -9548,6 +9863,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "derkuki.de", true },
{ "derma-expert.eu", true },
{ "dermapuur.nl", true },
+ { "dermato.floripa.br", true },
{ "dermatologie-morges.ch", true },
{ "dermediq.nl", true },
{ "dermot.org.uk", true },
@@ -9566,7 +9882,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "desec.io", true },
{ "desertsounds.org", true },
{ "desgenst.ch", true },
- { "design-fu.com", false },
{ "design-in-bad.eu", true },
{ "design-tooning.de", true },
{ "designdevs.eu", true },
@@ -9583,6 +9898,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "desila.jp", true },
{ "deskdesign.nl", true },
{ "deskeen.fr", true },
+ { "desktopd.eu.org", true },
{ "desktopfx.net", false },
{ "deskture.com", true },
{ "deskvip.com", true },
@@ -9598,12 +9914,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "destileria.net.br", true },
{ "destinationsofnewyorkstate.com", true },
{ "destinattorneyjohngreene.com", true },
- { "destinopiriapolis.com", true },
+ { "destinoytarot.com", true },
+ { "destinyofthephoenix.me", false },
{ "desu.ne.jp", true },
+ { "desuchan.eu", true },
+ { "desuchan.org", true },
{ "desuperheroes.co", true },
{ "det-te.ch", true },
{ "detalika.ru", true },
- { "detalyedesigngroup.com", true },
+ { "detecmon.com", true },
{ "detectify.com", false },
{ "detectivedesk.com.au", true },
{ "detekenmuze.nl", true },
@@ -9618,6 +9937,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "detski.center", true },
{ "detskysad.com", true },
{ "detuinmuze.nl", true },
+ { "detuprovincia.cl", true },
{ "detype.nl", true },
{ "deuchnord.fr", true },
{ "deude.de", true },
@@ -9633,41 +9953,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deutschland-dsl.de", true },
{ "deuxmetrescubes.fr", true },
{ "dev-brandywineglobal.com", true },
+ { "dev-gutools.co.uk", true },
{ "dev-pulse-mtn.pantheonsite.io", true },
{ "dev-tek.de", true },
{ "devagency.fr", true },
{ "devalps.eu", true },
{ "devb.nl", true },
- { "devcast.io", true },
+ { "devcast.io", false },
{ "devcf.com", true },
{ "devct.cz", false },
{ "devcu.com", true },
{ "devcu.net", true },
- { "devdoodle.net", true },
{ "devel.cz", true },
{ "develerik.com", false },
+ { "develop.cool", true },
{ "developer.android.com", true },
{ "developer.mydigipass.com", false },
{ "developerdan.com", true },
{ "developerfair.com", true },
+ { "developermail.io", false },
{ "developers.facebook.com", false },
{ "developfx.com", true },
{ "developmentaid.org", true },
{ "developmentsites.melbourne", true },
{ "develops.co.il", true },
+ { "developyourelement.com", true },
{ "develux.com", true },
{ "develux.net", true },
- { "devenney.io", true },
{ "devh.net", true },
{ "deviant.email", true },
{ "devillers-occasions.be", true },
{ "devilshakerz.com", true },
- { "deviltracks.net", true },
{ "deviltraxxx.de", true },
{ "devinfo.net", false },
{ "devirc.net", true },
+ { "deviser.wang", true },
{ "devisnow.fr", true },
- { "devjack.de", true },
{ "devkid.net", true },
{ "devkit.cc", false },
{ "devklog.net", true },
@@ -9679,24 +10000,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "devonsawatzky.ca", true },
{ "devopers.com.br", true },
{ "devops-survey.com", true },
- { "devpgsv.com", true },
{ "devpsy.info", true },
{ "devragu.com", true },
{ "devrandom.net", true },
{ "devsjournal.com", true },
{ "devsrvr.ru", true },
{ "devstaff.gr", true },
- { "devyn.ca", true },
+ { "devstroke.io", true },
+ { "devtty.org", true },
+ { "devyn.ca", false },
{ "devzero.io", true },
{ "dewaard.de", true },
{ "dewalch.net", true },
{ "dewapress.com", true },
- { "dewebwerf.nl", true },
{ "dewinter.com", true },
{ "dex.top", true },
{ "dexalo.de", true },
{ "dexigner.com", true },
{ "deyute.com", true },
+ { "dez-online.de", true },
{ "dezeregio.nl", true },
{ "dezet-ev.de", true },
{ "dezintranet.com", true },
@@ -9704,8 +10026,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dezshop24.de", true },
{ "df1paw.de", true },
{ "dfctaiwan.org", true },
- { "dfekt.no", true },
- { "dfektlan.no", true },
{ "dfl.mn", true },
{ "dflcares.com", true },
{ "dfmn.berlin", true },
@@ -9730,19 +10050,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dhinflatables.co.uk", true },
{ "dhlinux.org", true },
{ "dhome.at", true },
- { "dhuy.net", true },
+ { "dhuy.net", false },
{ "di2pra.com", true },
{ "di2pra.fr", true },
+ { "dia-de.com", true },
{ "diablovalleytech.com", true },
{ "diadorafitness.es", true },
{ "diadorafitness.it", true },
- { "diagnocentro.cl", true },
{ "diagnostix.org", true },
{ "diagrammingoutloud.co.uk", true },
{ "dialapicnic.co.za", true },
- { "dialectic-og.com", true },
+ { "dialoegue.com", true },
{ "diamante.ro", true },
{ "diamantovaburza.cz", true },
+ { "diamond-hairstyle.dk", true },
{ "diamondsleepsolutions.com", true },
{ "diamondyze.nl", true },
{ "diamorphine.com", true },
@@ -9760,21 +10081,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "diccionariodedudas.com", true },
{ "dice.tokyo", true },
{ "dicelab.co.uk", true },
+ { "dicesites.com", true },
{ "dicionario.org", true },
{ "dicionariodegirias.com.br", true },
{ "dicionariodelatim.com.br", true },
{ "dicionariodenomesproprios.com.br", true },
{ "dicionariodesimbolos.com.br", true },
{ "dicionarioetimologico.com.br", true },
+ { "dicionariofinanceiro.com", true },
+ { "dicionariopopular.com", true },
{ "dickieslife.com", true },
{ "dickpics.ru", true },
+ { "dicksakowicz.com", true },
{ "dicoding.com", true },
{ "dictionaryofnumbers.com", true },
{ "dictzone.com", true },
{ "didacte.com", true },
{ "didche.net", true },
{ "diddens.de", true },
+ { "dideeducacion.com", true },
+ { "didefamilia.com", true },
+ { "didesalud.com", true },
{ "didierghez.com", true },
+ { "didigotoffer.com", true },
{ "didikhari.web.id", true },
{ "die-bergfuehrer.de", true },
{ "die-blahuts.de", true },
@@ -9784,7 +10113,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "die-seide.de", true },
{ "die-sinlosen.de", true },
{ "die-speisekammer-reutlingen.de", true },
- { "diedrich.co", false },
+ { "diedrich.co", true },
{ "diedrich.me", true },
{ "dieecpd.org", true },
{ "diegelernten.de", true },
@@ -9799,7 +10128,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dienchaninstitute.com", true },
{ "dienstplan.cc", true },
{ "dienstplan.one", true },
- { "dierabenmutti.de", true },
{ "dierenartsdeconinck.be", true },
{ "dieselanimals.lt", true },
{ "dieselgalleri.com", true },
@@ -9835,6 +10163,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digilicious.com", true },
{ "digimagical.com", true },
{ "digimedia.cd", false },
+ { "digimomedia.co.uk", true },
{ "digioccumss.ddns.net", true },
{ "digipitch.com", true },
{ "digired.ro", true },
@@ -9851,8 +10180,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digitalcash.cf", true },
{ "digitalcitizen.life", true },
{ "digitalcitizen.ro", true },
+ { "digitalcraftmarketing.co.uk", true },
{ "digitalcreationclass.com", true },
- { "digitalcuko.com", true },
{ "digitaldashboard.gov", true },
{ "digitaldatacenter.net", true },
{ "digitaldeli.com", true },
@@ -9873,7 +10202,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digitalhabit.at", true },
{ "digitalhabitat.io", true },
{ "digitalliteracy.gov", true },
- { "digitalmaniac.co.uk", true },
{ "digitalmarketingindallas.com", true },
{ "digitalrights.center", true },
{ "digitalrights.fund", true },
@@ -9882,14 +10210,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digitaltcertifikat.dk", true },
{ "digitaltechnologies.ltd.uk", true },
{ "digitkon.com", true },
+ { "digitreads.com", true },
{ "digminecraft.com", true },
{ "digwp.com", true },
{ "dihesan.com", true },
+ { "dijitaller.com", true },
{ "dijkmanmuziek.nl", false },
{ "dijkmanvandoorn.nl", false },
{ "diju.ch", true },
{ "dildoexperten.se", true },
- { "dilichen.fr", true },
{ "diligo.ch", true },
{ "dillewijnzwapak.nl", true },
{ "dillonkorman.com", true },
@@ -9898,10 +10227,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dimdom.com.br", true },
{ "dime-staging.com", true },
{ "dime.io", true },
- { "dimensionen.de", true },
{ "dimeponline.com.br", true },
{ "dimeshop.nl", true },
{ "dimez.ru", true },
+ { "dimiskovska.de", true },
+ { "dimitrihomes.com", true },
{ "dimmersagourahills.com", true },
{ "dimmerscalabasas.com", true },
{ "dimmersdosvientos.com", true },
@@ -9912,22 +10242,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dimmersthousandoaks.com", true },
{ "dimmerswestlakevillage.com", true },
{ "dimonb.com", true },
- { "dimseklubben.dk", true },
{ "din-hkd.jp", true },
{ "dineachook.com.au", true },
{ "dinepont.fr", true },
+ { "dinerroboticurology.com", true },
{ "dingcc.me", true },
+ { "dinge.xyz", true },
{ "dingsbums.shop", true },
+ { "dinheirolucrar.com", true },
{ "dinkommunikasjon.no", true },
{ "dinmtb.dk", true },
{ "dinocarrozzeria.com", true },
{ "dinotopia.org.uk", true },
+ { "dinstec.cl", true },
{ "dintrafic.net", true },
{ "diodeled.com", true },
{ "diodo.me", true },
{ "dionysos-ios.gr", true },
{ "diozoid.com", true },
{ "dipalma.me", true },
+ { "dipdaq.com", true },
{ "dipling.de", true },
{ "diplona.de", true },
{ "dipulse.it", true },
@@ -9935,10 +10269,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dir2epub.org", true },
{ "dirba.io", true },
{ "direct-sel.com", true },
+ { "direct2uk.com", false },
+ { "direct365.es", true },
{ "directebanking.com", true },
{ "directelectricalltd.co.uk", true },
{ "directlinkfunding.co.uk", true },
- { "directme.ga", true },
{ "directnews.be", true },
{ "directorioz.com", true },
{ "directreal.sk", true },
@@ -9946,23 +10281,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "direktvermarktung-schmitzberger.at", true },
{ "dirips.com", true },
{ "dirk-scheele.de", true },
+ { "dirk-weise.de", false },
{ "dirkdoering.de", true },
{ "dirkjonker.nl", true },
{ "dirko.net", true },
{ "dirtcraft.ca", true },
{ "dirtygeek.ovh", true },
+ { "dirtyincest.com", true },
+ { "dirtyprettyartwear.com", true },
{ "disability.gov", true },
{ "disabled.dating", true },
{ "disanteimpianti.com", true },
{ "disavow.tools", true },
{ "disc.uz", true },
+ { "discarica.bologna.it", true },
{ "discarica.it", true },
{ "discarica.roma.it", true },
{ "discha.net", true },
{ "dischempharmacie.com", true },
{ "disciples.io", true },
{ "disciplina.io", true },
- { "discipul.nl", true },
{ "discofitta.com", true },
{ "disconformity.net", true },
{ "discord.gg", true },
@@ -9972,6 +10310,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "discordia.me", true },
{ "discotek.club", true },
{ "discount24.de", true },
+ { "discountlumberspokane.com", true },
{ "discountplush.com", true },
{ "discover-shaken.com", true },
{ "discoverthreejs.com", true },
@@ -9980,6 +10319,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "discoveryottawa.ca", true },
{ "discoveryrom.org", true },
{ "discreet-condooms.nl", true },
+ { "discrypt.ca", true },
{ "dise-online.de", true },
{ "disinclined.org", true },
{ "disinfesta.it", true },
@@ -9988,6 +10328,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "disinfestazione.brescia.it", true },
{ "disinfestazione.torino.it", true },
{ "disinfestazione.venezia.it", true },
+ { "disinfestazione.verona.it", true },
{ "disinfestazione24.it", true },
{ "disinfestazioneblatte.it", true },
{ "disinfestazionecimici.roma.it", true },
@@ -9997,6 +10338,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "disinfestazioni.catania.it", true },
{ "disinfestazioni.firenze.it", true },
{ "disinfestazioni.genova.it", true },
+ { "disinfestazioni.gorizia.it", true },
{ "disinfestazioni.info", true },
{ "disinfestazioni.milano.it", true },
{ "disinfestazioni.net", true },
@@ -10010,6 +10352,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "disinfestazionivespe.milano.it", true },
{ "disinfestazionizanzare.milano.it", true },
{ "disinisharing.com", true },
+ { "disk.do", true },
{ "diskbit.com", true },
{ "diskbit.nl", true },
{ "dismail.de", true },
@@ -10027,6 +10370,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "distillery.com", true },
{ "distinguishedprisoner.com", true },
{ "distribuidoracristal.com.br", true },
+ { "distribuidoraplus.com", true },
{ "distribuidorveterinario.es", true },
{ "distro.re", true },
{ "ditelbat.com", true },
@@ -10035,10 +10379,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "diva.nl", true },
{ "divari.nl", true },
{ "divcoder.com", true },
+ { "dive-japan.com", true },
{ "divedowntown.com", true },
{ "divegearexpress.com", true },
{ "diveidc.com", true },
- { "divenwa.com", true },
{ "diveplan.org", true },
{ "divergenz.org", true },
{ "diversityflags.com", true },
@@ -10048,9 +10392,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "divi-experte.de", true },
{ "divinasaiamodas.com.br", true },
{ "divinegames.studio", true },
+ { "divinemercyparishvld.com", true },
+ { "divinemercyparishvlds.com", true },
{ "diving.photo", true },
+ { "divorcelawyersformen.com", true },
{ "divorciosmurcia.com", true },
- { "divvymonkey.com", true },
{ "diwei.vip", true },
{ "dixi.fi", true },
{ "dixibox.com", true },
@@ -10070,18 +10416,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "djangoproject.com", true },
{ "djangosnippets.org", true },
{ "djbbouncycastles.co.uk", true },
+ { "djboekingskantoor.nl", true },
{ "djc.me", true },
{ "djcursuszwolle.nl", true },
{ "djdavid98.hu", true },
- { "djieno.com", true },
+ { "djeung.org", true },
{ "djipanov.com", true },
{ "djleon.net", true },
{ "djlive.pl", true },
{ "djlnetworks.co.uk", true },
{ "djsbouncycastlehire.com", true },
- { "djsk.nl", true },
{ "djt-vom-chausseehaus.de", true },
{ "djursland-psykologen.dk", true },
+ { "djvintagevinyl.nl", true },
{ "djwaynepryke.com", true },
{ "djz4music.com", false },
{ "dk-kromeriz.cz", true },
@@ -10089,7 +10436,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dk.search.yahoo.com", false },
{ "dkcomputers.com.au", true },
{ "dkds.us", true },
- { "dkn.go.id", false },
+ { "dko-steiermark.ml", true },
{ "dkstage.com", true },
{ "dl.google.com", true },
{ "dlabouncycastlehire.co.uk", true },
@@ -10100,7 +10447,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dlitz.net", true },
{ "dll4free.com", true },
{ "dlld.com", true },
- { "dlouwrink.nl", true },
{ "dlrsp.org", true },
{ "dlscomputers.com.au", true },
{ "dlui.xyz", true },
@@ -10118,10 +10464,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dmd.lv", true },
{ "dmdd.org.uk", true },
{ "dmeevalumate.com", true },
+ { "dmess.ru", true },
{ "dmi.es", true },
{ "dmitry.sh", true },
{ "dmmkenya.co.ke", true },
{ "dmmultionderhoud.nl", true },
+ { "dmparish.com", true },
{ "dmschilderwerken.nl", true },
{ "dmx.xyz", true },
{ "dmxledlights.com", true },
@@ -10132,14 +10480,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dnacloud.pl", true },
{ "dnakids.co.uk", true },
{ "dnc.org.nz", true },
+ { "dndesign.be", true },
{ "dndtools.net", true },
{ "dne.lu", true },
- { "dnfc.rocks", true },
{ "dnlr.tech", true },
{ "dnmlab.it", true },
{ "dnplegal.com", true },
{ "dns-control.eu", true },
- { "dns-manager.info", true },
{ "dns-swiss.ch", true },
{ "dns.google.com", true },
{ "dns8.online", true },
@@ -10149,6 +10496,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dnscurve.io", true },
{ "dnshallinta.fi", true },
{ "dnsinfo.ml", true },
+ { "dnsipv6.srv.br", true },
{ "dnsman.se", true },
{ "dnspod.ml", true },
{ "dnstwister.report", true },
@@ -10173,12 +10521,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dochimera.com", true },
{ "dochitaceahlau.ro", true },
{ "dockerbook.com", false },
- { "dockerm.com", true },
{ "dockerup.net", true },
{ "docline.gov", true },
{ "docloh.de", true },
{ "docloudu.info", true },
- { "docplexus.org", true },
{ "docs.google.com", false },
{ "docs.python.org", true },
{ "docs.re", true },
@@ -10195,17 +10541,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "docucopies.com", true },
{ "documaniatv.com", true },
{ "docupet.com", true },
+ { "docusearch.com", true },
{ "dodopri.com", true },
{ "doenjoylife.com", true },
{ "does.one", true },
{ "doesburg-comp.nl", true },
{ "dofuspvp.com", true },
+ { "dofux.org", true },
{ "dog-blum.com", true },
{ "dogadayiz.net", true },
{ "dogan.ch", false },
{ "dogcontrol.ca", true },
+ { "doge.me", true },
+ { "doge.town", true },
{ "dogear.ch", true },
- { "dogfi.sh", true },
{ "dogft.com", true },
{ "doggedbyirs.com", true },
{ "doggroomingcourse.com", true },
@@ -10216,17 +10565,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dogworld.com.br", true },
{ "dohanews.co", true },
{ "doihavetoputonpants.com", true },
+ { "doitauto.de", true },
+ { "dojozendebourges.fr", true },
+ { "dokan-e.com", false },
{ "dokelio-idf.fr", true },
+ { "doki.space", true },
{ "dokipy.no", true },
- { "dokspot.cf", true },
- { "dokspot.ga", true },
{ "doku-gilde.de", true },
{ "dokuboard.com", true },
{ "dokuraum.de", true },
{ "dolci-delizie.de", true },
+ { "doleta.gov", true },
{ "doli.se", true },
{ "dolice.net", true },
+ { "dolinathome.com", true },
{ "dollemore.com", true },
+ { "dollhousetoyo.com", true },
{ "dolorism.com", true },
{ "dolphin-it.de", true },
{ "dom-medicina.ru", true },
@@ -10246,12 +10600,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "domains.motorcycles", true },
{ "domains.yachts", true },
{ "domainsilk.com", true },
+ { "domainspeicher.one", true },
{ "domainstaff.com", true },
{ "domainwatch.me", true },
+ { "domakidis.com", true },
{ "domaxpoker.com", true },
{ "domeconseil.fr", true },
{ "domein-direct.nl", true },
{ "domenic.me", true },
+ { "domenicam.com", true },
{ "domesticcleaners.co.uk", true },
{ "domhaase.me", true },
{ "domian.cz", true },
@@ -10276,6 +10633,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "domster.com", true },
{ "domus-global.com", true },
{ "domus-global.cz", true },
+ { "domwkwiatach.pl", true },
{ "domyassignments.com", true },
{ "domycasestudy.com", true },
{ "domycoursework.com", true },
@@ -10289,16 +10647,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "domyresearchpaper.com", true },
{ "domyreview.net", true },
{ "domyspeech.com", true },
- { "domytermpaper.com", true },
{ "domythesis.net", true },
{ "domyzitrka.cz", true },
{ "donabeneko.jp", true },
+ { "donaldm.co.uk", true },
{ "donateaday.net", true },
{ "donfelino.tk", false },
{ "dongxuwang.com", true },
{ "donkennedyandsons.com", true },
{ "donkeytrekkingkefalonia.com", true },
- { "donlydental.ca", true },
{ "donmaldeamores.com", true },
{ "donna-bellini-business-fotografie-muenchen.de", true },
{ "donna-bellini-fotografie-berlin.de", true },
@@ -10312,14 +10669,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "donna-bellini-fotografie-wien.de", true },
{ "donna-bellini-hochzeitsfotograf-frankfurt.de", true },
{ "donna-bellini-hochzeitsfotograf-muenchen.de", true },
+ { "donnaandscottmcelweerealestate.com", true },
{ "donnacha.blog", true },
{ "donnachie.net", true },
+ { "donner-reuschel.de", true },
{ "donnons.org", false },
- { "donnoval.ru", true },
+ { "donnoval.ru", false },
+ { "donotcall.gov", true },
{ "donotlink.it", true },
{ "donovand.info", true },
+ { "donovankraag.nl", true },
{ "donpomodoro.com.co", true },
- { "donsbach-edv.de", true },
{ "dont.re", true },
{ "dont.watch", true },
{ "dontbubble.me", true },
@@ -10337,9 +10697,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "doomus.me", true },
{ "doooooops.com", true },
{ "doop.im", true },
- { "doopdidoop.com", true },
{ "doordecor.bg", true },
{ "doorflow.com", true },
+ { "doorhandlese.com", true },
+ { "doorshingekit.com", true },
{ "dopesoft.de", true },
{ "dopfer-fenstertechnik.de", true },
{ "doppenpost.nl", true },
@@ -10362,6 +10723,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dormiu.com", true },
{ "dormiu.com.br", true },
{ "dornhecker.me", true },
+ { "dorpshuis-dwarsgracht.nl", true },
{ "dorpshuiskesteren.nl", true },
{ "dorquelle.com", true },
{ "dorsetentertainments.co.uk", true },
@@ -10373,7 +10735,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "doska.ru", true },
{ "dosomeworks.biz", true },
{ "dossplumbing.co.za", true },
+ { "dostalsecurity.com", true },
{ "dostlar.fr", true },
+ { "dostrece.net", true },
{ "dosvientoselectric.com", true },
{ "dosvientoselectrical.com", true },
{ "dosvientoselectrician.com", true },
@@ -10383,7 +10747,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dosvientosoutdoorlighting.com", true },
{ "doswap.com", true },
{ "dosyauzantisi.com", true },
- { "dot.ro", true },
{ "dot42.no", true },
{ "dota2huds.com", true },
{ "dotacni-parazit.cz", true },
@@ -10404,20 +10767,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dotphoto.com", true },
{ "dotplex.com", true },
{ "dotplex.de", true },
+ { "dotrox.net", true },
{ "dotshule.ug", true },
{ "dotsiam.co.th", true },
{ "dotsiam.com", true },
{ "dotsiam.in.th", true },
{ "douai.me", true },
+ { "doubleaste.com", true },
{ "doubleavineyards.com", true },
{ "doublefun.net", true },
{ "doublestat.me", true },
{ "doubleup.com.au", true },
{ "doucheba.gs", false },
{ "dougley.com", true },
+ { "dougsautobody.com", true },
{ "doujinshi.info", true },
{ "dounats.com", true },
{ "douzer.de", true },
+ { "douzer.industries", true },
{ "dovenzorgmalawi.nl", true },
{ "dovro.de", true },
{ "dowell.media", true },
@@ -10433,7 +10800,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "downtimerobot.com", true },
{ "downtimerobot.nl", true },
{ "downtownvernon.com", true },
- { "doxcelerate.com", false },
{ "doyoucheck.com", false },
{ "doyouedc.com", true },
{ "doyoutax.com", true },
@@ -10447,12 +10813,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dpg.no", true },
{ "dpi-design.de", true },
{ "dpisecuretests.com", true },
+ { "dpm-ident.de", true },
{ "dprb.biz", true },
{ "dprd-wonogirikab.go.id", false },
- { "dpsg-roden.de", false },
+ { "dpsg-roden.de", true },
{ "dpwsweeps.co.uk", true },
{ "dr-becarelli-philippe.chirurgiens-dentistes.fr", true },
{ "dr-bodendorf.de", true },
+ { "dr-it.co.uk", true },
{ "dr-jakob-zahnaerzte.de", true },
{ "dr-klotz.info", true },
{ "dr-krebs.net", true },
@@ -10465,7 +10833,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dr-stoetter.de", true },
{ "dr-www.de", true },
{ "drabadir.com", true },
- { "drabben.be", true },
{ "drabim.org", true },
{ "drach.xyz", true },
{ "drachenleder.de", true },
@@ -10475,7 +10842,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "draftguru.com.au", true },
{ "drafton.com", true },
{ "drageeparadise.fr", true },
- { "dragfiles.com", true },
{ "draghetti.it", true },
{ "draghive.asia", true },
{ "draghive.ca", true },
@@ -10484,10 +10850,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "draghive.com", true },
{ "draghive.org", true },
{ "draghive.tv", true },
- { "dragon-aspect.com", true },
{ "dragon-chem.eu", true },
{ "dragon-hearts.co.uk", true },
{ "dragoncave.me", true },
+ { "dragonclean.gr", true },
{ "dragonfly.co.uk", true },
{ "dragonheartsrpg.com", true },
{ "dragonkin.net", true },
@@ -10500,22 +10866,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dragonsunited.info", true },
{ "dragonsunited.net", true },
{ "dragonsunited.org", true },
+ { "dragonwolfpackaquaria.com", true },
{ "dragonwork.me", true },
{ "drahcro.uk", true },
+ { "drakecommercial.com", true },
{ "drakeluce.com", true },
{ "drakenson.de", true },
{ "dramaticpeople.com", true },
{ "dramyalderman.com", true },
{ "dranderle.com", true },
{ "dranek.com", true },
+ { "dras.hu", true },
{ "draugr.de", true },
{ "draw.uy", true },
{ "drawesome.uy", true },
{ "drawingcode.net", true },
+ { "drawtwo.gg", true },
{ "drawxp.com", true },
- { "drbarnabus.com", true },
{ "drbethanybarnes.com", true },
{ "drbriones.com", true },
+ { "drcarolynquist.com", true },
{ "drchrislivingston.com", true },
{ "drchristinehatfield.ca", true },
{ "drchristophepanthier.com", true },
@@ -10524,21 +10894,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drdipilla.com", true },
{ "dreamcreator108.com", true },
{ "dreamday-with-dreamcar.de", true },
+ { "dreamdivers.com", true },
{ "dreamersgiftshopec.com", true },
{ "dreamhack.com", true },
{ "dreamhostremixer.com", true },
{ "dreamithost.com.au", true },
+ { "dreamkitchenbath.com", true },
{ "dreamlandmagic.com", true },
{ "dreamlinehost.com", false },
+ { "dreamlordpress.it", true },
{ "dreamlux.cz", true },
{ "dreamlux.sk", true },
+ { "dreammaker-nw.com", true },
+ { "dreammakerremodelil.com", true },
+ { "dreammakerutah.com", true },
+ { "dreamof.net", true },
{ "dreamonkey.com", true },
{ "dreamrae.net", true },
{ "dreamtechie.com", true },
+ { "dreatho.com", true },
{ "drei01.com", true },
{ "drei01.de", true },
{ "dreid.org", true },
{ "dreiweiden.de", true },
+ { "dresden-kaffee-24.de", true },
+ { "dresden-kaffeeroesterei.de", true },
+ { "dresdener-mandelstollen.de", true },
+ { "dresdens-pfefferkuchenprinzessin.de", true },
+ { "dresdner-christstollen-von-reimann.de", true },
+ { "dresdner-kaffeeroesterei.de", true },
+ { "dresdner-mandelstollen.de", true },
+ { "dresdner-stollen.shop", true },
{ "dress-cons.com", true },
{ "dressify.co", true },
{ "dressify.in", true },
@@ -10565,20 +10951,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drillion.net", true },
{ "drillshackresort.com", true },
{ "drinkcontrolapp.com", true },
+ { "drinkgas-jihlava.cz", true },
{ "drinkplanet.eu", true },
- { "dripdoctors.com", true },
{ "drive.google.com", false },
{ "driven2shine.eu", true },
{ "drivenes.net", true },
{ "driver.ru", true },
{ "driver61.com", true },
- { "drivercopilot.com", true },
{ "driverless.id", true },
{ "driverprofiler.co.uk", true },
{ "driverscollection.com", true },
{ "drivinghorror.com", true },
{ "drivingtestpro.com", true },
+ { "drivinhors.com", true },
{ "drivya.com", true },
+ { "drizz.com.br", false },
{ "drjacquesmalan.com", true },
{ "drjenafernandez.com", true },
{ "drjoe.ca", true },
@@ -10588,6 +10975,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drkmtrx.xyz", true },
{ "drlandis.com", true },
{ "drlangsdon.com", true },
+ { "drlinkcheck.com", true },
+ { "drlutfi.com", true },
{ "drmayakato.com", true },
{ "drmcdaniel.com", true },
{ "drms.us", true },
@@ -10607,6 +10996,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "droni.cz", true },
{ "dronnet.com", false },
{ "dronografia.es", true },
+ { "dronova-art.ru", true },
{ "drop.com", true },
{ "dropbox.com", true },
{ "dropboxer.net", true },
@@ -10614,18 +11004,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dropq.nl", true },
{ "dropscloud.spdns.de", true },
{ "dropshare.cloud", true },
+ { "dropshell.net", true },
{ "droso.dk", true },
{ "drown.photography", true },
+ { "drpetervoigt.ddns.net", true },
{ "drpetervoigt.de", true },
{ "drpico.com.au", true },
{ "drrodina.com", true },
{ "drrr.chat", true },
{ "drrr.wiki", true },
{ "drsajjadian.com", true },
+ { "drsamuelkoo.com", true },
+ { "drschlarb.eu", true },
{ "drschruefer.de", true },
{ "drsturgeonfreitas.com", true },
{ "drtimmarch.com", true },
- { "drubn.de", false },
{ "druckerei-huesgen.de", true },
{ "drugs.com", true },
{ "drumbe.at", true },
@@ -10639,6 +11032,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "druwe.net", true },
{ "druznek.me", true },
{ "drvr.xyz", true },
+ { "drwang.group", true },
{ "drweissbrot.net", true },
{ "drwxr.org", true },
{ "dryan.com", false },
@@ -10648,20 +11042,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drydrydry.com", true },
{ "dryerventcleaningarlington.com", true },
{ "dryerventcleaningcarrollton.com", true },
+ { "drywallresponse.gov", true },
{ "ds67.de", true },
{ "dsancomics.com", true },
{ "dsanraffleshangbai.xyz", true },
{ "dsayce.com", true },
{ "dsbrowser.com", true },
+ { "dschwarzachtaler.de", true },
{ "dsdalismerkezi.com", true },
{ "dsebastien.net", true },
{ "dsektionen.se", false },
{ "dsgarms.com", true },
{ "dsgholsters.com", true },
+ { "dsgnet.hu", true },
{ "dsgvo.name", true },
{ "dshield.org", true },
{ "dsm5.com", true },
{ "dsmjs.com", true },
+ { "dsne.com.mx", true },
{ "dso-imaging.co.uk", true },
{ "dso-izlake.si", true },
{ "dsol.hu", true },
@@ -10669,6 +11067,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dssale.com", true },
{ "dstamou.de", true },
{ "dsteiner.at", true },
+ { "dstvinstallalberton.co.za", true },
+ { "dstvinstallrandburg.co.za", true },
{ "dt27.org", true },
{ "dtbouncycastles.co.uk", true },
{ "dtdsh.com", true },
@@ -10681,14 +11081,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dtnx.eu", true },
{ "dtnx.net", true },
{ "dtnx.org", true },
+ { "dtoweb.be", true },
+ { "dtp-mstdn.jp", false },
+ { "dtpak.cz", true },
{ "dtuaarsfest.dk", true },
{ "dtx.sk", true },
- { "dualias.xyz", false },
+ { "dualascent.com", true },
{ "dub.cz", true },
{ "dubai-company.ae", true },
{ "dubaieveningsafari.com", true },
- { "dubaosheng.com", true },
{ "dubbingkursus.dk", true },
+ { "dubious-website.com", true },
{ "dublin-traceroute.net", true },
{ "dubrovnik-dental.clinic", true },
{ "dubrovskiy.net", true },
@@ -10701,6 +11104,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "duckbase.com", true },
{ "duckduck.horse", true },
{ "duckduckstart.com", true },
+ { "duckeight.win", true },
{ "duckinc.net", true },
{ "duct.me", true },
{ "due-diligence-security.com", true },
@@ -10715,6 +11119,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dugnet.org", false },
{ "dugunedavet.com", true },
{ "duh.se", true },
+ { "dui805.com", true },
{ "duijf.info", true },
{ "duijfathome.nl", true },
{ "duitang.com", true },
@@ -10755,13 +11160,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dupree.pe", true },
{ "durand.tf", true },
{ "durbanlocksmiths.co.za", true },
- { "durchblick-shop.de", true },
{ "durdle.com", true },
{ "dureuil.info", true },
- { "durexwinkel.nl", true },
{ "durfteparticiperen.nl", true },
{ "duria.de", true },
{ "duriaux-dentiste.ch", true },
+ { "duroterm.ro", true },
{ "durys.be", true },
{ "dusmomente.com", true },
{ "dusnan.com", true },
@@ -10776,11 +11180,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dutchrank.nl", true },
{ "dutchwanderers.nl", true },
{ "dutchweballiance.nl", true },
+ { "duval.paris", true },
{ "dv189.com", true },
{ "dvbris.co.uk", true },
{ "dvbris.com", true },
+ { "dvdinmotion.com", true },
{ "dvdland.com.au", true },
{ "dvhosting.be", true },
+ { "dvipadmin.com", true },
{ "dvnatura.ch", true },
{ "dvorupotocnych.sk", true },
{ "dvwc.org", true },
@@ -10804,12 +11211,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dybuster.es", true },
{ "dybuster.it", true },
{ "dybuster.se", true },
- { "dycoa.com", true },
{ "dyeager.org", true },
{ "dyktig.as", true },
{ "dyktig.no", true },
{ "dylanboudro.com", true },
- { "dylancl.cf", true },
{ "dylankatz.com", true },
{ "dylanknoll.ca", true },
{ "dylanspcrepairs.com", true },
@@ -10834,6 +11239,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dynamics-365.no", true },
{ "dynamics365.no", true },
{ "dynamicsnetwork.net", true },
+ { "dynamicsretailnotes.com", true },
{ "dynamictostatic.com", true },
{ "dynamicyou.co.uk", true },
{ "dynamo.city", true },
@@ -10853,11 +11259,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dzet.de", true },
{ "dziary.com", true },
{ "dziurdzia.pl", true },
- { "dzndk.com", true },
- { "dzndk.net", true },
- { "dzndk.org", true },
+ { "dzivniekubriviba.lv", true },
{ "dznn.nl", true },
{ "dzomo.org", true },
+ { "dzsibi.com", true },
{ "dzsula.hu", true },
{ "dzyabchenko.com", true },
{ "dzyszla.pl", true },
@@ -10875,12 +11280,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "e-lambre.com", true },
{ "e-learningbs.com", true },
{ "e-lifetechnology.com", true },
- { "e-planetelec.fr", false },
{ "e-ptn.com", true },
+ { "e-speak24.pl", true },
{ "e-standardstore.org", true },
{ "e-surveillant.nl", true },
{ "e-sw.co.jp", true },
{ "e-teacher.pl", true },
+ { "e-teachers.me", true },
{ "e-tech-solution.com", true },
{ "e-tech-solution.net", true },
{ "e-techsolution.com", true },
@@ -10894,20 +11300,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "e-worksmedia.com", true },
{ "e.mail.ru", true },
{ "e11even.nl", false },
- { "e1488.com", true },
{ "e15r.co", true },
{ "e2feed.com", true },
{ "e30.ee", true },
{ "e4metech.com", true },
- { "e52888.com", true },
- { "e52888.net", true },
- { "e53888.com", true },
- { "e53888.net", true },
- { "e59888.com", true },
- { "e59888.net", true },
{ "e5tv.hu", true },
{ "e64.com", true },
{ "e6e.io", true },
+ { "e6ex.com", true },
{ "e7d.io", true },
{ "e7fun.net", true },
{ "e965.ru", true },
@@ -10927,6 +11327,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ealev.de", true },
{ "eapestudioweb.com", true },
{ "earl.org.uk", true },
+ { "earlydocs.com", true },
{ "earlyyearshub.com", true },
{ "earmarks.gov", true },
{ "earn.com", true },
@@ -10937,14 +11338,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "easez.net", true },
{ "eashwar.com", true },
{ "eason-yang.com", true },
- { "east-line.su", true },
{ "eastarm.net", true },
{ "eastblue.org", true },
- { "eastcoastbubbleandbounce.co.uk", true },
{ "easterncapebirding.co.za", true },
{ "eastlothianbouncycastles.co.uk", true },
{ "eastmanbusinessinstitute.com", true },
+ { "eastnorschool.co.uk", true },
+ { "eastplan.co.kr", true },
{ "eastsidecottages.co.uk", true },
+ { "eastsideroofingcontractor.com", true },
{ "easy-rpg.org", false },
{ "easy2bathe.co.uk", true },
{ "easyadsnbanners.tk", false },
@@ -10954,24 +11356,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "easycosmetic.ch", true },
{ "easycup.com", false },
{ "easydumpsterrental.com", false },
+ { "easyeigo.com", true },
{ "easyfiles.ch", true },
{ "easyhaul.com", true },
- { "easykraamzorg.nl", false },
+ { "easymun.com", true },
{ "easyocm.hu", true },
{ "easyoutdoor.nl", true },
{ "easypay.bg", true },
{ "easyproperty.com", true },
- { "easypv.ch", true },
{ "easyqr.codes", true },
{ "easyroad.fr", true },
- { "easyschools.org", true },
{ "easyslide.be", true },
{ "easyssl.com.cn", true },
{ "easystore.co", true },
{ "easytechguides.com", true },
{ "easytechsecurity.com", true },
{ "easyweenies.com", true },
- { "eat-mine.ml", true },
{ "eat-sleep-code.com", true },
{ "eatery.co.il", true },
{ "eatmebudapest.hu", true },
@@ -10979,6 +11379,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eatry.io", true },
{ "eatsleeprepeat.net", true },
{ "eatson.com", true },
+ { "eatz-and-treatz.com", true },
{ "eatz.com", true },
{ "eaucube.com", true },
{ "eauxdespleiades.ch", true },
@@ -10994,9 +11395,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ebayinc.com", true },
{ "ebaymotorssucks.com", true },
{ "ebene-bpo.com", true },
+ { "ebenezersbarnandgrill.com", true },
+ { "ebenvloedaanleggen.nl", true },
{ "ebermannstadt.de", false },
{ "eberwe.in", true },
{ "ebest.co.jp", true },
+ { "ebiebievidence.com", true },
{ "ebiografia.com", true },
{ "ebisi.be", true },
{ "ebizarts.com", true },
@@ -11006,6 +11410,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ebooklaunchers.com", true },
{ "eboutic.ch", true },
{ "eboyer.com", true },
+ { "ebpglobal.com", false },
{ "ebrnd.de", true },
{ "ec-baran.de", true },
{ "ec-current.com", true },
@@ -11020,13 +11425,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ecclesia-koeln.de", true },
{ "ecco-verde.com", false },
{ "ecdn.cz", true },
- { "ecelembrou.ovh", true },
{ "ecfnorte.com.br", true },
{ "echatta.net", true },
{ "echatta.org", true },
{ "echidna-rocktools.eu", true },
{ "echo-security.co", true },
{ "echoanalytics.com", true },
+ { "echobridgepartners.com", true },
{ "echodio.com", true },
{ "echofoxtrot.co", true },
{ "echopaper.com", true },
@@ -11036,15 +11441,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "echoteam.gq", true },
{ "echoteen.com", true },
{ "echoworld.ch", true },
+ { "echtes-hutzelbrot.de", true },
+ { "echtgeld-casinos.de", true },
{ "ecir.pro", true },
{ "ecir.ru", true },
{ "ecirtam.net", true },
{ "eckel.co", true },
+ { "eclanet.ca", true },
{ "eclipse.ws", true },
+ { "ecliptic.cc", true },
{ "ecnetworker.com", true },
{ "eco-derattizzazione.it", true },
{ "eco-wiki.com", true },
{ "eco-work.it", true },
+ { "eco2u.ru", true },
{ "ecobee.com", false },
{ "ecobergerie.fr", true },
{ "ecobin.nl", true },
@@ -11073,6 +11483,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "economias.pt", true },
{ "economic-sanctions.com", true },
{ "economicinclusion.gov", true },
+ { "economics-colleges.com", true },
{ "economiefidu.ch", true },
{ "economies.ch", true },
{ "econsumer.gov", true },
@@ -11091,6 +11502,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ecpannualmeeting.com", true },
{ "ecrandouble.ch", true },
{ "ecupcafe.com", false },
+ { "ecuteam.com", true },
{ "ecxforum.com", true },
{ "ed.gs", true },
{ "ed4becky.net", true },
@@ -11103,6 +11515,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eddyn.net", true },
{ "edeca.net", true },
{ "edehsa.com", true },
+ { "eden.co.uk", true },
+ { "edenming.info", true },
{ "edesseglabor.hu", true },
{ "edfinancial.com", true },
{ "edge-cloud.net", true },
@@ -11111,8 +11525,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edgevelder.com", true },
{ "edhesive.com", true },
{ "edholm.pub", true },
+ { "edi-gate.com", true },
+ { "edi-gate.de", true },
{ "edibarcode.com", true },
{ "edicct.com", true },
+ { "edilane.com", true },
+ { "edilane.de", true },
{ "edinburghsportsandoutdoorlearning.com", true },
{ "edincmovie.com", true },
{ "ediscomp.sk", true },
@@ -11132,7 +11550,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edoss.co.za", true },
{ "edp-collaborative.com", true },
{ "edplan.io", true },
- { "edpubs.gov", false },
{ "edragneainpuscarie.ro", true },
{ "edsby.com", true },
{ "edservicing.com", true },
@@ -11151,6 +11568,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eductf.org", true },
{ "eduid.se", false },
{ "edumundo.nl", true },
+ { "edupool.in", true },
{ "eduroam.no", true },
{ "eduroam.uy", true },
{ "edusanjal.com", true },
@@ -11160,6 +11578,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edv-bv.de", true },
{ "edv-kohls.de", true },
{ "edv-lehrgang.de", true },
+ { "edv-schmittner.de", true },
+ { "edvgarbe.de", true },
{ "edvmesstec.de", true },
{ "edwar.do", true },
{ "edwards.me.uk", true },
@@ -11177,7 +11597,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eelsden.net", true },
{ "eelzak.nl", true },
{ "eemcevn.com", true },
- { "eengoedenotaris.nl", true },
{ "eentweevijf.be", true },
{ "eer.io", true },
{ "eerlijktransport.nl", true },
@@ -11185,7 +11604,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eery.de", true },
{ "eesti.xyz", true },
{ "eewna.org", true },
- { "ef-georgia.org", true },
{ "ef.gy", true },
{ "efa-football.com", true },
{ "efaas.nl", true },
@@ -11200,24 +11618,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "effectivecoffee.com", true },
{ "effero.net", true },
{ "effex.ru", true },
+ { "effinfun.com", true },
{ "effizienta.ch", true },
{ "efflam.net", true },
+ { "effortlesshr.com", true },
{ "efg-darmstadt.de", false },
+ { "efinity.io", true },
+ { "efipsactiva.com", true },
+ { "eflorashop.be", true },
+ { "eflorashop.ch", true },
+ { "eflorashop.co.uk", true },
+ { "eflorashop.com", true },
+ { "eflorashop.de", true },
+ { "eflorashop.es", true },
+ { "eflorashop.fr", true },
+ { "eflorashop.it", true },
+ { "eflorashop.mx", true },
+ { "eflorashop.net", true },
+ { "eflorashop.us", true },
{ "efmcredentialing.org", true },
{ "eft.boutique", true },
+ { "eftelingcraft.net", true },
{ "egablo.black", true },
{ "egamespw.com", true },
{ "egami.ch", true },
{ "eganassociates.com.au", true },
+ { "egarden.it", true },
{ "egb.at", false },
- { "egbert.net", true },
{ "egeozcan.com", true },
{ "egg-ortho.ch", true },
{ "eggblast.com", true },
{ "eggert.org", false },
{ "eggplant.today", true },
{ "egiftcards.be", true },
- { "eglek.com", true },
{ "egles.eu", true },
{ "ego4u.com", true },
{ "ego4u.de", true },
@@ -11242,11 +11675,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ehmtheblueline.com", true },
{ "ehne.de", true },
{ "ehomusicgear.com", true },
+ { "ehrenburg.info", true },
{ "ehub.cz", true },
{ "ehub.hu", true },
{ "ehub.pl", true },
{ "ehub.sk", true },
{ "eichel.eu", true },
+ { "eichler.work", true },
{ "eichornenterprises.com", true },
{ "eickemeyer.nl", true },
{ "eickhof.co", true },
@@ -11259,6 +11694,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eighty-aid.com", true },
{ "eigpropertyauctions.co.uk", true },
{ "eihaikyo.com", true },
+ { "eika.as", true },
{ "eilhan.com", true },
{ "eimacs.com", true },
{ "einaros.is", true },
@@ -11270,6 +11706,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "einsatzstellenverwaltung.de", true },
{ "einser.com", true },
{ "einsteinathome.org", true },
+ { "einsteincapital.ca", true },
{ "eintageinzug.de", true },
{ "eintragsservice24.de", true },
{ "eipione.com", true },
@@ -11286,7 +11723,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ejkmuseum.nl", true },
{ "ejknet.nl", true },
{ "ejkwebdesign.nl", true },
- { "ejuicelab.co.uk", true },
{ "ek-networks.de", true },
{ "ekaigotenshoku.com", true },
{ "ekati.ru", true },
@@ -11300,6 +11736,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ekokontakt.cz", true },
{ "ekonbenefits.com", true },
{ "ekostecki.de", true },
+ { "ekostrateg.com", true },
{ "ekpyroticfrood.net", true },
{ "ekrana.info", true },
{ "eksisozluk.com", true },
@@ -11314,19 +11751,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elainerock.com", true },
{ "elaon.de", true },
{ "elars.de", true },
- { "elarvee.xyz", true },
{ "elb500ttl.nl", true },
{ "elbetech.net", true },
- { "elbohlyart.com", true },
+ { "elblogdegoyo.mx", true },
{ "elcambiador.es", true },
{ "elcontadorsac.com", true },
{ "eldapoint.co.uk", true },
+ { "eldenelesat.com", true },
+ { "eldercare.gov", true },
+ { "elderjustice.gov", true },
+ { "elderoost.com", true },
{ "eldertons.co.uk", true },
{ "eldevo.com", true },
- { "eldietista.es", true },
{ "eldinhadzic.com", true },
- { "eldisagjapi.com", true },
- { "eldisagjapi.de", true },
{ "eldrid.ge", true },
{ "eldritchfiction.net", true },
{ "eleaut.com.br", true },
@@ -11338,12 +11775,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electric-vault.co.uk", true },
{ "electricagoura.com", true },
{ "electricagourahills.com", true },
+ { "electrical-schools.com", true },
{ "electricalagoura.com", true },
{ "electricalagourahills.com", true },
{ "electricalcalabasas.com", true },
{ "electricalcamarillo.com", true },
{ "electricalconejovalley.com", true },
{ "electricaldosvientos.com", true },
+ { "electricalfencingbedfordview.co.za", true },
{ "electricalfencingedenvale.co.za", true },
{ "electricalhiddenhills.com", true },
{ "electricallakesherwood.com", true },
@@ -11375,6 +11814,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricianconejovalley.com", true },
{ "electriciandosvientos.com", true },
{ "electricianhiddenhills.com", true },
+ { "electriciankemptonpark24-7.co.za", true },
{ "electricianlakesherwood.com", true },
{ "electricianlalucia.co.za", true },
{ "electricianmalibu.com", true },
@@ -11395,6 +11835,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricsimivalley.com", true },
{ "electricthousandoaks.com", true },
{ "electricwestlakevillage.com", true },
+ { "electroinkoophardenberg.nl", true },
{ "electronic-ignition-system.com", true },
{ "electronicafacil.net", true },
{ "electronicfasteners.com", true },
@@ -11435,23 +11876,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elemental.software", true },
{ "elementalsoftware.net", true },
{ "elementalsoftware.org", true },
+ { "elementarty.com", true },
{ "elementarywave.com", true },
{ "elements.guide", true },
{ "elementshop.co.uk", true },
+ { "elena-baykova.ru", false },
{ "elenatranslations.nl", true },
{ "elephants.net", true },
{ "elephpant.cz", true },
{ "elepover.com", true },
{ "elerizoentintado.es", true },
- { "elestanteliterario.com", true },
+ { "eletor.com", true },
+ { "eletor.pl", true },
{ "elettricista-roma.org", true },
{ "eleusis-zur-verschwiegenheit.de", true },
{ "elevator.ee", true },
{ "elevatoraptitudetest.com", true },
+ { "elexel.ru", true },
{ "elexprimidor.com", true },
{ "elfe.de", true },
{ "elfnon.com", true },
{ "elfring.eu", true },
+ { "elfussports.com", true },
{ "elgalponazo.com.ar", true },
{ "elglobo.com.mx", false },
{ "elgosblanc.com", false },
@@ -11461,15 +11907,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elhossari.com", true },
{ "elia.cloud", true },
{ "elian-art.de", true },
+ { "elias-nicolas.com", true },
+ { "eliaskordelakos.com", true },
{ "elibom.com", true },
{ "elie.net", true },
+ { "elielaloum.com", true },
{ "elifesciences.org", true },
+ { "eligibilis.com", true },
{ "eligible.com", true },
{ "eligibleapi.com", true },
{ "eligrey.com", true },
{ "elijahgrey.com", true },
{ "eliminercellulite.com", true },
- { "eline168.com", true },
{ "elinevanhaaften.nl", true },
{ "elinvention.ovh", true },
{ "eliolita.com", true },
@@ -11483,6 +11932,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elitebouncingfun.com", true },
{ "elitegameservers.net", true },
{ "elitehosting.de", false },
+ { "elitenutritionoficial.com", true },
{ "elixi.re", true },
{ "elixir.bzh", true },
{ "eliyah.co.il", true },
@@ -11507,6 +11957,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elmermx.ch", true },
{ "elnan.do", true },
{ "elnoorandelmohanad.com", true },
+ { "elo-forum.org", true },
{ "elodieclerc.ch", true },
{ "elohellp.com", false },
{ "elonaspitze.de", true },
@@ -11514,6 +11965,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elosrah.com", true },
{ "elosuite.com", true },
{ "eloxt.com", true },
+ { "elpado.de", true },
+ { "elpo.net", true },
{ "elpoderdelespiritu.org", true },
{ "elrinconderovica.com", true },
{ "elsagradocoran.org", true },
@@ -11527,10 +11980,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elternbeiratswahl.online", true },
{ "elternforum-birmensdorf.ch", true },
{ "elternverein-utzenstorf.ch", true },
+ { "eltip.click", true },
+ { "eltlaw.com", true },
{ "elucron.com", true },
- { "eluft.de", true },
{ "eluhome.de", true },
{ "eluvio.com", true },
+ { "elvcino.com", true },
{ "elvidence.com.au", true },
{ "elviraszabo.com", true },
{ "elvispresley.net", true },
@@ -11553,9 +12008,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emailtools.io", true },
{ "emaily.eu", true },
{ "emanuel.photography", true },
+ { "emanuela-gabriela.co.uk", true },
{ "emanuelduss.ch", true },
{ "emanueleanastasio.com", true },
{ "emanuelemazzotta.com", true },
+ { "emarketingmatters.com", true },
{ "embassycargo.eu", true },
{ "emberlife.com", true },
{ "embox.net", true },
@@ -11563,10 +12020,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "embroideryexpress.co.uk", true },
{ "emby.cloud", true },
{ "emcspotlight.com", true },
+ { "emdrupholm.dk", true },
{ "emecew.com", true },
{ "emeliefalk.se", true },
{ "ememsei.com", true },
- { "emeraldcbdshop.com", true },
+ { "emeraldcbdshop.com", false },
{ "emeraldcityswagger.com", true },
{ "emeraldcoastrideshare.com", true },
{ "emeraldonion.org", true },
@@ -11576,20 +12034,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emi-air-comprime.com", true },
{ "emi.im", true },
{ "emielraaijmakers.nl", true },
+ { "emil-dein-baecker.com", true },
+ { "emil-dein-baecker.de", true },
+ { "emil-reimann.com", true },
{ "emil.click", true },
{ "emilecourriel.com", true },
{ "emiliendevos.be", true },
{ "emilong.com", true },
+ { "emilreimann.de", true },
+ { "emils-1910.de", true },
+ { "emils-chemnitz.de", true },
+ { "emils1910.de", true },
{ "emilstahl.dk", true },
{ "emilvarga.com", true },
{ "emily.moe", true },
+ { "emilyjohnson.ga", true },
{ "emirabiz.com", false },
{ "emirichardson.com", true },
+ { "emisia.com", true },
{ "emivauthey.com", true },
{ "emkanrecords.com", true },
{ "emkei.cz", true },
{ "emkrivoy.com", true },
- { "emma-o.com", true },
{ "emma.ca", true },
{ "emmababy420.com", true },
{ "emmagraystore.com", true },
@@ -11622,7 +12088,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emresaglam.com", true },
{ "emtradingacademy.com", true },
{ "emultiagent.pl", true },
- { "emupedia.net", true },
{ "emvoice.net", true },
{ "emvoiceapp.com", true },
{ "emw3.com", true },
@@ -11648,6 +12113,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "encrypt.org.uk", true },
{ "encryptallthethings.net", true },
{ "encrypted.google.com", true },
+ { "encryptmy.site", true },
+ { "encryptmycard.com", true },
+ { "encryptmysite.net", true },
{ "encuentraprecios.es", true },
{ "encycarpedia.com", true },
{ "ende-x.com", true },
@@ -11674,7 +12142,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "energy.eu", true },
{ "energyatlas.com", true },
{ "energyaupair.se", true },
+ { "energycodes.gov", true },
{ "energydrinkblog.de", true },
+ { "energyefficientservices.com", true },
{ "energyelephant.com", true },
{ "energyled.com.br", true },
{ "energystar.gov", true },
@@ -11685,12 +12155,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "enfu.se", true },
{ "engarde.net", true },
{ "engaugetools.com", true },
+ { "engelke-optik.de", true },
{ "engelundlicht.ch", true },
{ "engelwerbung.com", true },
{ "engg.ca", true },
{ "engie-laadpalen.nl", true },
{ "engiedev.net", true },
- { "engineowning.com", true },
{ "enginepit.com", true },
{ "enginsight.com", true },
{ "enginx.net", true },
@@ -11709,8 +12179,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "enjinwallet.io", true },
{ "enjinx.io", true },
{ "enjoy-drive.com", true },
+ { "enjoy-israel.ru", true },
{ "enjoyphoneblog.it", true },
- { "enlazaresbueno.cl", true },
+ { "enlight.no", true },
{ "enlighten10x.ga", true },
{ "enlightenedhr.com", true },
{ "enlightenment.org", true },
@@ -11734,8 +12205,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ensembling.com", true },
{ "ensley.tech", true },
{ "ensons.de", true },
- { "ensured.com", true },
- { "ensured.nl", true },
{ "ensurtec.com", true },
{ "ent-london.com", true },
{ "entabe.jp", true },
@@ -11744,6 +12213,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "entercenter.ru", true },
{ "enterprisey.enterprises", true },
{ "entersoftsecurity.com", true },
+ { "entersynapse.com", false },
{ "entheogens.com", true },
{ "enthusiaformazione.com", true },
{ "entradaweb.cl", true },
@@ -11758,31 +12228,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "envant.co.uk", true },
{ "enveloppenopmaat.nl", true },
{ "envescent.com", true },
+ { "enviatufoto.com", true },
{ "enviaya.com.mx", true },
+ { "environmental-colleges.com", true },
{ "environmentkirklees.org", true },
{ "enviroprobasements.com", true },
{ "envirotech.com.au", true },
{ "envoie.moi", true },
- { "envoutement-desenvoutement.com", true },
{ "envoyez.moi", true },
- { "envygeeks.io", true },
{ "eocservices.co.uk", true },
{ "eoitek.com", true },
- { "eonet.cc", true },
{ "eonhive.com", true },
{ "eoonglobalresources.jp", true },
{ "eopugetsound.org", false },
+ { "eosol.de", true },
+ { "eosol.net", true },
+ { "eosol.services", true },
{ "epa.com.es", true },
{ "epassafe.com", true },
- { "epave.paris", true },
{ "epay.bg", true },
{ "epdeveloperchallenge.com", true },
{ "ephesusbreeze.com", true },
+ { "epi-lichtblick.de", true },
{ "epi.one", true },
{ "epic-vistas.com", true },
{ "epic-vistas.de", true },
{ "epicbouncycastlehirenorwich.co.uk", true },
{ "epicbouncycastles.co.uk", true },
+ { "epicdowney.com", true },
{ "epicenter.work", true },
{ "epicenter.works", true },
{ "epicentre.works", true },
@@ -11833,13 +12306,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "epreskripce.cz", true },
{ "epsilon.dk", true },
{ "epsorting.cz", true },
+ { "epspolymer.com", true },
{ "epublibre.org", true },
- { "epulsar.ru", true },
- { "epvin.com", true },
{ "epyonsuniverse.net", true },
{ "eq-serve.com", true },
{ "equalcloud.com", true },
- { "equallyy.com", true },
{ "equeim.ru", true },
{ "equidam.com", true },
{ "equinecoaching.ca", true },
@@ -11848,7 +12319,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "equipandoloja.net.br", true },
{ "equipedefrance.tv", true },
{ "equipeferramentas.com.br", true },
- { "equipsupply.com", true },
{ "equk.co.uk", true },
{ "er-mgmt.com", true },
{ "er.tl", true },
@@ -11856,10 +12326,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erasmusplusrooms.com", true },
{ "erate.fi", true },
{ "erath.fr", true },
- { "erawanarifnugroho.com", false },
{ "erdethamburgeronsdag.no", true },
{ "ereader.uno", true },
- { "erecciontotalal100.com", true },
{ "erectiepillenwinkel.nl", true },
{ "erethon.com", true },
{ "erf-neuilly.com", true },
@@ -11882,6 +12350,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erico.jp", true },
{ "ericoc.com", true },
{ "erics.site", true },
+ { "ericschwartzlive.com", true },
{ "ericvaughn-flam.com", true },
{ "ericwie.se", true },
{ "eridanus.uk", true },
@@ -11899,22 +12368,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erisrenee.com", true },
{ "erixschueler.de", true },
{ "erkaelderbarenaaben.dk", true },
- { "ernaehrungsberatung-rapperswil.ch", true },
{ "ernest.ly", true },
+ { "ero.ink", true },
{ "eroma.com.au", true },
{ "eron.info", true },
{ "eroskines.com", true },
- { "eroticforce.com", true },
{ "erp-band.ru", true },
{ "erp.band", true },
{ "erpax.com", true },
{ "erpband.ru", true },
{ "erpcargo.com", false },
{ "erperium.com", true },
- { "erpiv.com", true },
{ "errietta.me", true },
{ "errlytics.com", true },
- { "error418.nl", true },
+ { "error418.nl", false },
{ "ers35.com", true },
{ "ersa-shop.com", true },
{ "ershiwo.com", true },
@@ -11922,6 +12389,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ersinerce.com", true },
{ "erstehilfeprodukte.at", true },
{ "eru.im", false },
+ { "eru.me", true },
{ "eru.moe", true },
{ "erudicia.com", true },
{ "erudicia.de", true },
@@ -11932,7 +12400,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erudicia.se", true },
{ "erudicia.uk", true },
{ "erudikum.cz", true },
- { "ervaarjapan.nl", true },
+ { "erverydown.ml", true },
{ "erwanlepape.com", true },
{ "erwin.saarland", true },
{ "erwinpaal.nl", true },
@@ -11941,94 +12409,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erythroxylum-coca.com", true },
{ "es-geenen.de", true },
{ "es.search.yahoo.com", false },
- { "es888.net", true },
- { "es999.net", true },
- { "es9999.net", true },
{ "esaborit.ddns.net", true },
{ "esagente.com", true },
{ "esailinggear.com", true },
{ "esalesdata.com", true },
{ "esamievalori.com", true },
{ "esample.info", true },
- { "esb-in.net", true },
- { "esb-top.com", true },
- { "esb-top.net", true },
- { "esb116.com", true },
- { "esb168168.com", true },
- { "esb168168.info", true },
- { "esb168168.net", true },
- { "esb168168.org", true },
- { "esb1688.biz", true },
- { "esb1688.com", true },
- { "esb1688.info", true },
- { "esb1688.net", true },
- { "esb1688.org", true },
- { "esb1711.com", true },
- { "esb1711.net", true },
- { "esb1788.com", true },
- { "esb1788.info", true },
- { "esb1788.net", true },
- { "esb1788.org", true },
- { "esb2013.com", true },
- { "esb2013.net", true },
- { "esb2099.com", true },
- { "esb2099.net", true },
- { "esb258.net", true },
- { "esb325.com", true },
- { "esb325.net", true },
- { "esb333.net", true },
- { "esb336.com", true },
- { "esb369.com", true },
- { "esb433.com", true },
- { "esb518.com", true },
- { "esb553.com", true },
- { "esb555.biz", true },
- { "esb555.cc", true },
- { "esb5889.com", true },
- { "esb5889.net", true },
- { "esb6.net", true },
- { "esb677.net", true },
- { "esb775.net", true },
- { "esb777.biz", true },
- { "esb777.me", true },
- { "esb777.org", true },
- { "esb886.com", true },
- { "esb888.net", true },
- { "esb8886.com", true },
- { "esb9527.com", true },
- { "esb9588.com", true },
- { "esb9588.net", true },
- { "esb9588.org", true },
- { "esb999.org", true },
- { "esba11.com", true },
- { "esba11.in", true },
- { "esball-in.com", true },
- { "esball-in.net", true },
- { "esball.bz", true },
- { "esball.cc", true },
- { "esball.me", true },
- { "esball.mx", true },
- { "esball.online", true },
- { "esball.org", true },
- { "esball.tv", true },
- { "esball.win", true },
- { "esball.ws", true },
- { "esball518.com", true },
- { "esball518.info", true },
- { "esball518.net", true },
- { "esball518.org", true },
- { "esballs.com", true },
- { "esbbon.com", true },
- { "esbbon.net", true },
- { "esbfun.com", true },
- { "esbfun.net", true },
- { "esbgood.com", true },
- { "esbin.net", true },
- { "esbjon.com", true },
- { "esbjon.net", true },
- { "esbm4.net", true },
- { "esbm5.net", true },
+ { "esb9588.info", false },
{ "esc.chat", true },
+ { "esc.gov", true },
{ "escael.org", true },
{ "escape2rooms.fr", true },
{ "escapeplaza.de", true },
@@ -12036,8 +12425,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "escargotbistro.com", true },
{ "escavador.com", true },
{ "esclear.de", true },
+ { "escolibri.com", true },
{ "escontact.ch", true },
- { "escort-byuro.net", true },
{ "escortmantra.com", true },
{ "escritoriodearte.com", false },
{ "escuelabiblica.com", true },
@@ -12047,17 +12436,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esdiscuss.org", true },
{ "eservices-greece.com", true },
{ "esg-abi2001.de", true },
+ { "esgen.org", true },
{ "esgr.in", true },
- { "eshobe.com", true },
{ "eshop-prices.com", true },
+ { "eshspotatoes.com", true },
{ "esibun.net", true },
{ "esigmbh.de", true },
{ "esipublications.com", true },
{ "esite.ch", true },
{ "eskdale.net", true },
{ "eskriett.com", true },
- { "esmoney.cc", true },
- { "esmoney.me", true },
+ { "eslint.org", true },
{ "esoa.net", true },
{ "esoko.eu", true },
{ "esolcourses.com", true },
@@ -12072,6 +12461,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "espacetheosophie.fr", true },
{ "espacio-cultural.com", true },
{ "espanol.search.yahoo.com", false },
+ { "espanolseguros.com", true },
{ "espanova.com", true },
{ "espci.fr", true },
{ "especificosba.com.ar", true },
@@ -12079,13 +12469,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "espgg.org", true },
{ "esphigmenou.gr", true },
{ "espigol.org", true },
+ { "esport-battlefield.com", true },
{ "esports-network.de", true },
+ { "espower.com.sg", true },
{ "espritrait.com", true },
{ "esquirou-trieves.fr", true },
{ "esquisse.fr", true },
{ "esrhd.com", true },
{ "esrinfo.com", true },
{ "ess-cert.ru", true },
+ { "essayace.co.uk", true },
{ "essayads.com", true },
{ "essaybrand.com", true },
{ "essaychecker.com", true },
@@ -12094,8 +12487,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "essaynews.com", true },
{ "essaypro.net", true },
{ "essaytalk.com", true },
- { "essaywebsite.com", true },
{ "essaywriting.biz", true },
+ { "essca.fr", true },
{ "essenalablog.de", true },
{ "essencesdeprana.org", true },
{ "essex.cc", true },
@@ -12115,6 +12508,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esterilizacion-perros.es", true },
{ "esteticanorte.com.br", true },
{ "estetista.net", true },
+ { "estherlew.is", true },
{ "esthesoleil.jp", true },
{ "estilopack-loja.com.br", true },
{ "estoic.net", true },
@@ -12123,6 +12517,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "estudiarparaser.com", true },
{ "estudiserradal.com", true },
{ "esurety.net", true },
+ { "esuretynew.azurewebsites.net", true },
{ "esw00.com", true },
{ "esw06.com", true },
{ "esw07.com", true },
@@ -12130,6 +12525,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esw09.com", true },
{ "eswap.cz", true },
{ "et-inf.de", true },
+ { "eta.cz", true },
{ "etaes.eu", true },
{ "etajerka-spb.ru", true },
{ "etalent.net", true },
@@ -12156,7 +12552,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ethack.org", true },
{ "ethaligan.fr", true },
{ "ethan.pm", true },
- { "ethandelany.me", true },
{ "ethercalc.com", true },
{ "ethercalc.org", true },
{ "etherderbies.com", true },
@@ -12172,7 +12567,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ethosinfo.com", true },
{ "etienne.cc", true },
{ "etikus-hacker.hu", true },
- { "etincelle.ml", true },
{ "etiquetaunica.com.br", true },
{ "etoile-usedcars.com", true },
{ "etre-soi.ch", true },
@@ -12193,8 +12587,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eu-gamers.com", true },
{ "eu-stellenangebot.de", true },
{ "euaggelion.blog.br", true },
+ { "euanbarrett.com", true },
{ "euchre.us", true },
- { "eucl3d.com", true },
{ "eugenechae.com", true },
{ "eugenekay.com", true },
{ "eugenetech.org", true },
@@ -12222,27 +12616,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eurekaarchitecture.com", true },
{ "euro-servers.de", true },
{ "euroalter.com", true },
+ { "eurocars2000.es", true },
{ "eurocenterobuda.hu", true },
{ "eurocomcompany.cz", true },
+ { "euroconthr.ro", true },
+ { "eurodentaire.com", true },
+ { "euroflora.com", true },
+ { "euroflora.mobi", true },
{ "eurofrank.eu", true },
{ "eurolocarno.es", true },
- { "europapier.at", true },
- { "europapier.ba", true },
- { "europapier.bg", true },
- { "europapier.com", true },
- { "europapier.cz", true },
- { "europapier.hr", true },
{ "europapier.hu", true },
{ "europapier.net", true },
- { "europapier.rs", true },
- { "europapier.si", true },
{ "europapier.sk", true },
- { "europapier.ua", true },
{ "europarts-sd.com", true },
{ "europastudien.de", true },
{ "european-agency.org", true },
{ "europeancupinline.eu", true },
- { "europeanpreppers.com", true },
{ "europeantimberconnectors.ca", true },
{ "europeantransportmanagement.com", true },
{ "europeanwineresource.com", true },
@@ -12251,22 +12640,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "europop.com", true },
{ "eurora.de", true },
{ "euroscot.de", true },
- { "euroservice.com.gr", true },
{ "euroshop.or.at", true },
+ { "euroskano.nl", true },
{ "eurotime.ua", true },
{ "eurotramp.com", true },
{ "eurotravelstar.eu", true },
{ "eurousa.us", true },
{ "eurovision.ie", true },
+ { "euteamo.cn", true },
{ "eutotal.com", true },
{ "eutram.com", true },
- { "euvo.tk", false },
{ "euwid.de", true },
{ "ev-zertifikate.de", true },
{ "eva-select.com", true },
{ "eva.cz", true },
{ "evaartinger.de", true },
- { "evades.io", true },
{ "evadifranco.com", true },
{ "evafojtova.cz", true },
{ "evailoil.ee", true },
@@ -12278,11 +12666,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evanfiddes.com", true },
{ "evangelicalmagazine.com", true },
{ "evangelosm.com", true },
- { "evanreev.es", true },
- { "evantage.org", true },
{ "evantageglobal.com", true },
{ "evanwang0.com", true },
{ "evapp.org", true },
+ { "evasioncreole.com", true },
{ "evasovova.cz", true },
{ "evavolfova.cz", true },
{ "eve.ac", true },
@@ -12290,22 +12677,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evelienzorgt.nl", true },
{ "evelyndayman.com", true },
{ "evemarketer.com", true },
- { "evemodx.com", true },
{ "evenementenhoekvanholland.nl", true },
{ "evenstargames.com", true },
{ "event4fun.no", true },
{ "eventaro.com", true },
+ { "eventide.space", true },
{ "eventive.org", true },
{ "eventnexus.co.uk", true },
{ "eventosenmendoza.com.ar", true },
{ "events-hire.co.uk", true },
{ "eventtech.com", false },
+ { "evenwallet.com", true },
+ { "eveonline.com", true },
{ "ever.sale", true },
{ "everain.me", true },
+ { "everettsautorepair.com", true },
{ "everfine.com.tw", true },
{ "evergladesrestoration.gov", true },
+ { "evergreenmichigan.com", true },
{ "everhome.de", true },
- { "everitoken.io", true },
{ "everling.lu", true },
{ "everlong.org", true },
{ "evermarkstudios.com", true },
@@ -12315,6 +12705,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "everybodyhertz.co.uk", true },
{ "everyday.eu.org", true },
{ "everydaygary.com", true },
+ { "everydaywot.com", true },
{ "everydaywp.com", true },
{ "everyex.com", true },
{ "everyfad.com", true },
@@ -12322,6 +12713,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "everything-everywhere.com", true },
{ "everythingaccess.com", true },
{ "everythingstech.com", true },
+ { "everythinq.com", true },
{ "everytrycounts.gov", false },
{ "everywhere.cloud", true },
{ "eveshamglass.co.uk", true },
@@ -12333,14 +12725,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evidencija.ba", true },
{ "evidentiasoftware.com", true },
{ "evilarmy.com", true },
- { "evilbeasts.ru", true },
{ "evilbunnyfufu.com", true },
{ "evilcult.me", true },
{ "evilized.de", true },
{ "evilmartians.com", true },
- { "evilness.nl", true },
{ "evilsite.cf", true },
- { "evilvolcanolairs.com", true },
{ "evion.nl", true },
{ "evlear.com", true },
{ "evoco.vc", true },
@@ -12352,6 +12741,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evolutioninflatables.co.uk", true },
{ "evolutionlending.co.uk", true },
{ "evolutionpets.com", true },
+ { "evolutionsmedicalspa.com", true },
{ "evolvetechnologies.co.uk", true },
{ "evolvingthoughts.net", true },
{ "evonews.com", true },
@@ -12364,6 +12754,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evrica.me", true },
{ "evromandie.ch", true },
{ "evstatus.com", true },
+ { "evtasima.name.tr", true },
{ "evtripping.com", true },
{ "ewaipiotr.pl", true },
{ "ewanm89.co.uk", true },
@@ -12375,7 +12766,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ewout.io", true },
{ "ewsfeed.com", true },
{ "ewtl.es", true },
- { "ewuchuan.com", true },
{ "ewus.de", true },
{ "ewycena.pl", true },
{ "ex-deli.jp", true },
@@ -12383,26 +12773,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exactphilosophy.net", true },
{ "exagoni.com.au", true },
{ "exagoni.com.my", true },
+ { "examedge.com", true },
{ "example.sc", true },
{ "example.wf", true },
+ { "examplesu.com", true },
{ "examsmate.in", true },
{ "exaplac.com", true },
{ "exarpy.com", true },
{ "exatmiseis.net", false },
{ "exceed.global", true },
{ "exceedagency.com", true },
+ { "excelhot.com", true },
{ "exceltechdubai.com", true },
{ "exceltechoman.com", true },
{ "exceltobarcode.com", true },
{ "excentos.com", true },
{ "exceptionalservers.com", true },
+ { "excessamerica.com", true },
{ "excesssecurity.com", true },
{ "exchaser.com", true },
{ "exclusivebouncycastles.co.uk", true },
+ { "exclusivecarcare.co.uk", true },
{ "exclusivedesignz.com", true },
{ "exdamo.de", false },
{ "exe-boss.tech", true },
- { "exebouncycastles.co.uk", true },
{ "execution.biz.tr", true },
{ "exehack.net", true },
{ "exeintel.com", true },
@@ -12420,29 +12814,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exit9wineandliquor.com", true },
{ "exitooutdoor.com", true },
{ "exmoe.com", true },
- { "exocen.com", true },
+ { "exnovin.co", true },
{ "exon.io", true },
{ "exoplatform.com", true },
+ { "exordiumconcepts.com", true },
{ "exoscale.ch", true },
{ "exoscale.com", true },
{ "exoten-spezialist.de", true },
{ "exousiakaidunamis.pw", true },
{ "exp.de", true },
- { "expancio.com", true },
{ "expandeco.com", true },
{ "expatmortgage.uk", true },
+ { "expe.voyage", true },
+ { "expeditiegrensland.nl", true },
{ "experienceoutdoors.org.uk", true },
{ "experienceoz.com.au", true },
+ { "experise.fr", true },
{ "expert-korovin.ru", true },
{ "expert.cz", true },
{ "experteasy.com.au", true },
+ { "expertofficefitouts.com.au", true },
{ "expertohomestaging.com", true },
- { "experts-en-gestion.fr", true },
{ "expertsverts.com", true },
+ { "expertvagabond.com", true },
{ "expertviolinteacher.com", true },
{ "expiscor.solutions", true },
{ "explodie.org", true },
{ "exploflex.com.br", true },
+ { "exploit.cz", true },
{ "exploit.party", true },
{ "exploit.ph", true },
{ "exploited.cz", true },
@@ -12462,10 +12861,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "expoort.fr", true },
{ "expoort.it", true },
{ "expopodium.com", true },
- { "exporo.de", true },
{ "exporta.cz", true },
{ "express-shina.ru", true },
{ "express-vpn.com", true },
+ { "expressemotion.net", true },
{ "expresshosting.org", true },
{ "expressmarket.ru", true },
{ "expresstinte.de", true },
@@ -12476,7 +12875,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exside.com", true },
{ "exsora.com", true },
{ "extasic.com", true },
- { "extendwings.com", true },
{ "extensia.it", true },
{ "extensibility.biz.tr", true },
{ "extensiblewebmanifesto.org", true },
@@ -12501,6 +12899,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exteriorlightingwestlakevillage.com", true },
{ "extintormadrid.com", true },
{ "extradesktops.com", false },
+ { "extradivers-worldwide.com", true },
{ "extranetpuc.com.br", true },
{ "extrapagetab.com", true },
{ "extreme-gaming.de", true },
@@ -12508,10 +12907,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "extreme-players.com", true },
{ "extreme-players.de", true },
{ "extreme.co.th", true },
- { "extremeservicesandrestoration.com", true },
{ "exultcosmetics.co.uk", true },
+ { "exxo.tk", true },
{ "exyplis.com", true },
- { "eyasc.nl", true },
{ "eydesignguidelines.com", true },
{ "eyeandfire.com", true },
{ "eyecandy.gr", true },
@@ -12522,7 +12920,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eyes-berg.ch", true },
{ "eyes-berg.com", true },
{ "eyesandearsrescue.org", true },
- { "eyesonly.cc", true },
{ "eynio.com", true },
{ "eyona.com", true },
{ "eyps.net", true },
@@ -12552,14 +12949,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "f2h.io", true },
{ "f3nws.com", true },
{ "f43.me", true },
+ { "f5.hk", true },
{ "f5nu.com", true },
{ "f5w.de", true },
{ "fa-works.com", true },
+ { "fabbro-roma.org", true },
{ "faber.org.ru", true },
{ "fabian-fingerle.de", true },
+ { "fabian-klose.com", true },
+ { "fabian-klose.de", true },
+ { "fabian-klose.net", true },
{ "fabian-koeppen.de", true },
{ "fabianackle.ch", true },
- { "fabianasantiago.com", true },
{ "fabianbeiner.com", false },
{ "fabianbeiner.de", false },
{ "fabianfranke.de", true },
@@ -12572,7 +12973,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fabrica360.com", true },
{ "fabriceleroux.com", true },
{ "fabriziocavaliere.it", true },
- { "fabriziorocca.com", true },
{ "fabriziorocca.it", true },
{ "fabse.net", true },
{ "facanabota.com", true },
@@ -12582,13 +12982,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "face-mania.com", true },
{ "facealacrise.fr", true },
{ "facebook-atom.appspot.com", true },
- { "facebook.com", false },
+ { "facebook.com", true },
{ "facebydrh.com", true },
{ "facebylouise.co.uk", true },
{ "facekungfu.com", true },
{ "facepainting.gr", true },
- { "facepunch.org", true },
{ "facerepo.com", true },
+ { "faceresources.org", true },
{ "fach-journalist.de", true },
{ "fachschaftslisten.at", true },
{ "fachschaftslisten.org", true },
@@ -12606,6 +13006,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fackovec.sk", true },
{ "factbytefactbox.com", true },
{ "factcool.com", true },
+ { "factor.cc", false },
{ "factureenlinea.com", true },
{ "factuur.pro", true },
{ "factuursturen.be", true },
@@ -12619,12 +13020,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "faelix.net", true },
{ "faerb.it", true },
{ "faerie-art.com", true },
+ { "fahnamporn.com", true },
{ "fahnen-fanwelt.de", true },
{ "fahrenwal.de", true },
{ "fahrenwalde.de", true },
{ "fahrschule-laux.de", true },
{ "fahrwerk.io", true },
{ "fai.gov", true },
+ { "faidanoi.it", true },
+ { "faidatefacile.it", true },
{ "fail.coach", true },
{ "fail4free.de", true },
{ "failover.de", true },
@@ -12633,12 +13037,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fairbill.com", true },
{ "fairedeseconomies.info", true },
{ "fairgolfteams.com", true },
+ { "fairleighcrafty.com", true },
{ "fairmarketing.com", true },
{ "fairplay.im", true },
{ "fairssl.dk", true },
{ "fairssl.se", true },
{ "fairviewmotel-simcoe.com", true },
{ "fairydust.space", true },
+ { "faithcentercogop.net", true },
{ "faithgrowth.com", true },
{ "faithindemocracy.eu", false },
{ "faithleaks.org", true },
@@ -12646,18 +13052,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "faithwatch.org", true },
{ "faixaazul.com", true },
{ "fakeapple.nl", true },
+ { "fakerli.com", true },
{ "fakti.bg", true },
+ { "faktotum.tech", true },
{ "fakturi.com", true },
{ "fakturoid.cz", true },
{ "falaeapp.org", true },
+ { "falaland.com", true },
{ "falaowang.com", true },
{ "falbros.com", true },
+ { "falcona.io", true },
{ "falconfrag.com", true },
{ "falconvintners.com", true },
{ "falcoz.co", true },
{ "faldoria.de", true },
{ "falegname-roma.it", true },
{ "falkhusemann.de", true },
+ { "falldennismarketing.com", true },
{ "fallenangeldrinks.co.uk", true },
{ "fallenangeldrinks.com", true },
{ "fallenangelspirits.co.uk", true },
@@ -12665,12 +13076,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fallenmystic.com", true },
{ "fallenspirits.co.uk", true },
{ "falling.se", true },
+ { "fallofthecitadel.com", true },
{ "falsum.net", true },
{ "fam-kreibich.de", true },
{ "fam-stemmer.de", false },
{ "fam-weyer.de", true },
{ "famcloud.de", true },
- { "famdouma.nl", true },
{ "fameng.nl", true },
{ "fameus.fr", true },
{ "famfi.co", true },
@@ -12683,9 +13094,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "familie-remke.de", true },
{ "familiegrottendieck.de", true },
{ "familieholme.de", true },
+ { "familiekiekjes.nl", true },
{ "familjenfrodlund.se", true },
{ "familjenm.se", true },
- { "familletouret.fr", true },
{ "familylawhotline.org", true },
{ "familyparties.co.uk", true },
{ "familyreal.ru", true },
@@ -12696,27 +13107,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "famoushostels.com", true },
{ "famvangelder.nl", true },
{ "famvsomeren.nl", true },
+ { "fan.gov", true },
{ "fanactu.com", true },
{ "fanatical.com", true },
{ "fanboi.ch", true },
+ { "fancy-bridge.com", true },
{ "fancy.org.uk", true },
+ { "fancygaming.dk", true },
{ "fander.it", true },
{ "fandler.cz", true },
{ "fandomservices.com", true },
{ "fanfareunion.ch", true },
{ "fangs.ink", true },
- { "fanhouwan.com", true },
{ "fanjoe.be", true },
{ "fansided.com", true },
{ "fantasiapainter.com", true },
+ { "fantasiatravel.hr", true },
{ "fantasticcleaners.com.au", true },
{ "fantastichandymanmelbourne.com.au", true },
{ "fantastici.de", true },
{ "fantasticservices.com", true },
+ { "fantasticservicesgroup.com.au", true },
{ "fantasycastles.co.uk", true },
{ "fantasyescortsbirmingham.co.uk", true },
{ "fantasypartyhire.com.au", true },
- { "fantasyprojections.com", true },
{ "fantasyspectrum.com", true },
{ "fantopia.club", true },
{ "fanvoice.com", true },
@@ -12725,7 +13139,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fanyue123.tk", true },
{ "fanz.pro", true },
{ "fanzlive.com", true },
- { "fap.no", true },
{ "faq.ie", true },
{ "fara.gov", true },
{ "faradji.nu", true },
@@ -12752,11 +13165,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "farrelf.blog", true },
{ "farsil.eu", true },
{ "fart.wtf", true },
+ { "farthing.xyz", true },
{ "farwat.ru", true },
{ "faschingmd.com", true },
+ { "fascia.fit", true },
{ "fashion-stoff.de", true },
{ "fashion24.de", true },
{ "fashion4ever.pl", true },
+ { "fashionhijabers.com", true },
{ "fashionunited.be", true },
{ "fashionunited.cl", true },
{ "fashionunited.com", true },
@@ -12783,7 +13199,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fastblit.com", true },
{ "fastcash.com.br", true },
{ "fastcommerce.org", true },
- { "fastconfirm.com", true },
{ "fastcp.top", true },
{ "fastest-hosting.co.uk", true },
{ "fastforwardsociety.nl", true },
@@ -12794,19 +13209,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fastpresence.com", true },
{ "fastrevision.com", true },
{ "fastvistorias.com.br", true },
- { "fastwebsites.com.br", true },
{ "faszienrollen-info.de", false },
{ "fateandirony.com", true },
{ "fatecdevday.com.br", true },
{ "fatedata.com", true },
+ { "fateitalia.it", true },
{ "fathers4equalrights.org", true },
{ "fatidique.com", true },
{ "fatimamoldes.com.br", true },
{ "fatmixx.com", true },
{ "fatowltees.com", true },
- { "fattorino.it", true },
{ "faucetbox.com", false },
- { "faui2k17.de", true },
+ { "faui2k17.de", false },
+ { "faultlines.org", true },
{ "faulty.equipment", true },
{ "fauvettes.be", true },
{ "favirei.com", true },
@@ -12817,6 +13232,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fb.me", true },
{ "fbcdn.net", true },
{ "fbcopy.com", true },
+ { "fbi.gov", true },
{ "fbigame.com", true },
{ "fbiic.gov", true },
{ "fbijobs.gov", true },
@@ -12827,25 +13243,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fc.media", true },
{ "fca-tools.com", true },
{ "fcburk.de", true },
+ { "fccarbon.com", true },
+ { "fcdn.nl", true },
{ "fcforum.net", true },
{ "fcingolstadt.de", true },
- { "fcitasc.com", true },
{ "fckd.net", true },
{ "fcosinus.com", true },
{ "fcprovadia.com", true },
{ "fcsic.gov", true },
+ { "fdalawboston.com", true },
+ { "fdaregs.com", true },
{ "fdevs.ch", true },
{ "fdicig.gov", true },
{ "fdicoig.gov", true },
{ "fdlibre.eu", true },
- { "fdm.ro", true },
{ "fdms.gov", true },
{ "fdn.one", true },
{ "fdos.me", true },
{ "fdp-brig-glis.ch", true },
+ { "fdresearch.ca", true },
{ "fdsys.gov", false },
{ "feac.us", true },
{ "feaden.me", true },
+ { "feandc.com", true },
{ "fearby.com", true },
{ "fearghus.org", true },
{ "fearsomegaming.com", true },
@@ -12880,13 +13300,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feedkovacs.hu", true },
{ "feedough.com", true },
{ "feedthefuture.gov", true },
+ { "feeeei.com", true },
{ "feel-events.com", true },
{ "feel.aero", true },
+ { "feelgood-workouts.de", true },
{ "feelmom.com", true },
{ "feeltennis.net", true },
{ "feen.us", true },
{ "feepod.com", true },
- { "feeriedesign-event.com", true },
{ "feetpa.ws", true },
{ "feezmodo.com", false },
{ "fefelovalex.ru", true },
@@ -12909,16 +13330,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feld.saarland", true },
{ "feldhousen.com", true },
{ "felett.es", true },
- { "felgitscher.xyz", true },
+ { "feli.games", true },
{ "felicifia.org", true },
{ "felinepc.com", true },
{ "felisslovakia.sk", true },
{ "felistirnavia.sk", true },
+ { "felixaufreisen.de", true },
{ "felixbarta.de", true },
{ "felixcrux.com", true },
{ "felixgenicio.com", true },
{ "felixkauer.de", true },
- { "felixqu.com", true },
{ "felixsanz.com", true },
{ "felixseele.de", true },
{ "felsing.net", true },
@@ -12930,8 +13351,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "femradio.es", true },
{ "femtomind.com", true },
{ "fence-stlouis.com", true },
- { "feng-in.com", true },
- { "feng-in.net", true },
+ { "feng-hhcm.com", true },
{ "feng.si", true },
{ "fengyi.tel", true },
{ "fenster-bank.at", true },
@@ -12945,6 +13365,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ferienhaeuser-krummin.de", true },
{ "ferienhaus-polchow-ruegen.de", false },
{ "ferienhausprovence.ch", true },
+ { "ferienwohnung-hafeninsel-stralsund.de", true },
{ "feriespotter.dk", true },
{ "ferm-rotterdam.nl", true },
{ "fermabel.com.br", true },
@@ -12965,11 +13386,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "festaprylar.se", true },
{ "festival-tipps.com", true },
{ "festivaljapon.com", true },
+ { "festx.co.za", true },
{ "fettlaus.de", true },
{ "feudalisten.de", true },
{ "feuerhuhn.de", true },
{ "feuerloescher-arten.de", true },
{ "feuerloescher-test.de", true },
+ { "feuerwehr-coesfeld.de", true },
+ { "feuerwehr-gebirge.de", true },
{ "feuerwehr-heiligenberg.de", true },
{ "feuerwehr-illmensee.de", true },
{ "feuerwehr-mehring.de", true },
@@ -12978,6 +13402,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feuerwehr-vechta.de", true },
{ "feuerwerksmanufaktur.de", true },
{ "feuetgloire.com", true },
+ { "fewo-hafeninsel-stralsund.de", true },
{ "fewo-thueringer-wald.de", true },
{ "fexco.com", true },
{ "feybiblia.com", true },
@@ -13015,6 +13440,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fiasgo.dk", true },
{ "fiasgo.i.ng", true },
{ "fibo-forex.org", true },
+ { "fibra.click", true },
{ "fibretv.co.nz", true },
{ "fibretv.tv", true },
{ "fichier-pdf.fr", true },
@@ -13030,7 +13456,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fiduciaire-ratio.ch", true },
{ "fieldwork-paysage.com", true },
{ "fierlafijn.net", true },
+ { "fierscleaning.nl", true },
{ "fiery.me", true },
+ { "fifautstore.com", true },
{ "fifei.de", true },
{ "fifichachnil.paris", true },
{ "fifieldtech.com", true },
@@ -13050,13 +13478,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fijnefeestdageneneengelukkignieuwjaar.nl", true },
{ "fijnewoensdag.nl", true },
{ "fiken.no", true },
+ { "fikst.com", true },
{ "fil.fi", true },
- { "filamentia.nl", true },
{ "filanthropystar.org", true },
{ "file-cloud.eu", true },
{ "file-pdf.it", true },
{ "filecopa.com", true },
{ "files.from-me.org", true },
+ { "fileservicios.com.ar", true },
{ "filestar.io", true },
{ "filestartest.io", true },
{ "filetransfer.one", true },
@@ -13069,11 +13498,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "filiio.com", true },
{ "filingsmadeeasy.com", true },
{ "filiosoft.cloud", true },
- { "filip-prochazka.com", true },
+ { "filip-prochazka.com", false },
{ "filippo.io", true },
{ "filipsebesta.com", true },
{ "filleritemsindia.com", true },
{ "fillo.sk", true },
+ { "film-colleges.com", true },
{ "film-storyboards.com", true },
{ "film-storyboards.fr", true },
{ "film-tutorial.com", true },
@@ -13087,13 +13517,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "filmsphoto.com", true },
{ "filoo.de", true },
{ "filstop.com", true },
- { "filterflasche-kaufen.de", true },
{ "filterlists.com", true },
{ "filtr.me", true },
{ "fimsquad.com", true },
{ "final-expense-quotes.com", true },
+ { "finalprice.net", true },
{ "finalrewind.org", true },
{ "finalx.nl", true },
+ { "finance-colleges.com", true },
{ "financejobs.ch", true },
{ "financepark.ch", true },
{ "financniexperti.sk", true },
@@ -13104,7 +13535,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "finchnest.co.uk", true },
{ "find-job-in.com", true },
{ "find-mba.com", true },
- { "find-your-happy-place.de", true },
{ "findapinball.com", true },
{ "findcarspecs.com", true },
{ "findhoustonseniorcare.com", true },
@@ -13123,23 +13553,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "finefriends.nl", true },
{ "finelovedolls.com", true },
{ "finenet.com.tw", true },
+ { "finevegashomes.com", true },
{ "finfev.de", true },
{ "finflix.net", true },
{ "finform.ch", true },
{ "fini-de-jouer.ch", true },
{ "finisron.in", true },
{ "finkelstein.fr", true },
- { "finkenberger.org", false },
+ { "finkmartin.com", true },
+ { "finn.io", true },
{ "finnclass.cz", true },
{ "finnwea.com", true },
{ "finpt.com", false },
{ "finsprings.org", true },
+ { "fintandunleavy.com", false },
{ "fintechnics.com", false },
{ "fintry.ca", true },
{ "finvantage.com", true },
+ { "finwe.info", true },
{ "fionamcbride.com", true },
+ { "fioristionline.it", true },
+ { "fioristionline.net", true },
{ "fioulmarket.fr", true },
{ "fir3net.com", true },
+ { "fire-schools.com", true },
{ "firebaseio.com", true },
{ "firebirdrangecookers.com", true },
{ "firebounty.com", true },
@@ -13153,8 +13590,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firefly-iii.org", true },
{ "firegoby.jp", true },
{ "firegore.com", true },
+ { "firekoi.com", true },
{ "fireleadership.gov", true },
{ "firemudfm.com", true },
+ { "firenza.org", true },
{ "fireplex.co.uk", true },
{ "fireportal.cz", true },
{ "fireportal.sk", true },
@@ -13167,7 +13606,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fireworksshowvr.com", true },
{ "firma-cerny.cz", true },
{ "firma-offshore.com", true },
- { "firmale.com", true },
+ { "firmament.space", true },
{ "firmapi.com", true },
{ "firmen-assekuranz.de", true },
{ "firmenwerbung-vermarktung.de", true },
@@ -13188,6 +13627,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firstq.xyz", true },
{ "fischer-its.com", false },
{ "fischer-kundendienst.de", true },
+ { "fischers.cc", true },
{ "fischers.it", true },
{ "fischers.srv.br", true },
{ "fise.cz", true },
@@ -13199,6 +13639,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fishermansbendcorporation.com.au", true },
{ "fishermansbendtownhouses.com.au", true },
{ "fishexport.eu", true },
+ { "fishfinders.info", true },
{ "fishgen.no", true },
{ "fishserver.net", true },
{ "fishtacos.blog", true },
@@ -13208,13 +13649,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fit-mit-system.eu", true },
{ "fit365.jp", true },
{ "fitchannel.com", true },
- { "fitfitup.com", true },
{ "fitinclass.com", true },
{ "fitkram.cz", true },
{ "fitmeat.at", true },
{ "fitness-challenge.co.uk", true },
{ "fitness.gov", true },
- { "fitseven.ru", true },
{ "fittelo.cz", true },
{ "fitzsim.org", true },
{ "fiuxy.bz", true },
@@ -13223,13 +13662,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fiveboosts.xyz", true },
{ "fivethirtyeight.com", true },
{ "fixatom.com", true },
+ { "fixed.supply", true },
{ "fixel.express", true },
{ "fixforce.nl", true },
{ "fixhotsauce.com", true },
{ "fixingscrews.co.uk", true },
{ "fixitfelix.us", true },
+ { "fixlasvegas.com", true },
{ "fixmyalarmpanel.co.uk", true },
{ "fixmycomputerdude.com", true },
+ { "fiziktedavi.name.tr", true },
+ { "fizyoterapi.name.tr", true },
{ "fizz.buzz", false },
{ "fj.search.yahoo.com", false },
{ "fj.simple.com", false },
@@ -13239,7 +13682,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fkcdn.de", true },
{ "fkfev.de", true },
{ "fktpm.ru", true },
- { "flacandmp3.ml", true },
{ "flaemig42.de", false },
{ "flagburningworld.com", true },
{ "flagfox.net", true },
@@ -13255,25 +13697,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flanga.org", true },
{ "flangaapis.com", true },
{ "flapoverspeed.com", true },
+ { "flare.cloud", true },
{ "flashback.org", true },
{ "flashbeing.com", true },
{ "flashcomp.cz", true },
{ "flashgot.net", true },
{ "flat.io", true },
- { "flatlandchurch.com", true },
{ "flatmail.pl", true },
{ "flatmatehub.com.au", true },
{ "flatpackmates.co.uk", true },
{ "flauschig.net", true },
+ { "flavinus.fr", true },
{ "flaviu.co.uk", true },
{ "flavo.io", true },
{ "flavr.be", true },
{ "flawlesscowboy.xyz", true },
- { "fleamarketgoods.com", true },
{ "fleep.io", true },
+ { "fleetcor.at", true },
{ "fleetcor.ch", true },
{ "fleetcor.cz", true },
+ { "fleetcor.de", true },
+ { "fleetcor.fr", true },
+ { "fleetcor.hu", true },
{ "fleetcor.lu", true },
+ { "fleetcor.nl", true },
+ { "fleetcor.pl", true },
{ "fleetcor.sk", true },
{ "fleetcorcards.be", true },
{ "fleetsmith.com", true },
@@ -13298,6 +13746,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flextribly.xyz", true },
{ "fliacuello.com.ar", true },
{ "flickcritter.com", true },
+ { "fliesen-waldschmidt.de", true },
{ "flight.school", true },
{ "flightdeckfriend.com", true },
{ "flightmedx.com", true },
@@ -13310,16 +13759,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fliino.net", true },
{ "fliino.org", true },
{ "fliio.com", true },
- { "flikmsg.co", true },
{ "flinch.io", true },
{ "flip.kim", true },
{ "flipneus.net", true },
{ "fliptable.org", true },
{ "flirt-norden.de", true },
- { "flirtee.net", true },
+ { "flirtee.net", false },
{ "flirtfaces.de", true },
{ "flirtos.de", true },
- { "flirtycourts.com", true },
+ { "flixhaven.net", true },
{ "flixports.com", true },
{ "flmortgagebank.com", true },
{ "floatationlocations.com", true },
@@ -13330,18 +13778,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "floffi.media", true },
{ "floj.tech", true },
{ "flokinet.is", true },
+ { "floless.co.uk", true },
{ "flomeyer.de", true },
{ "floobits.com", true },
- { "flood.io", true },
+ { "floogulinc.com", true },
{ "floorballpoint.cz", true },
{ "flooringnightmares.com", true },
{ "flooringsourcetx.com", true },
{ "floors4lessbay.com", true },
{ "floort.net", false },
+ { "floraclick.net", true },
+ { "floraexpress.it", true },
{ "florence.uk.net", true },
{ "florenceapp.co.uk", true },
{ "florent-tatard.fr", true },
{ "florentynadawn.co.uk", true },
+ { "floresvilleedc.org", true },
{ "florian-bachelet.fr", true },
{ "florian-thie.de", true },
{ "florian2833z.de", true },
@@ -13352,7 +13804,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "floriantanner.ch", true },
{ "floridafabrication.net", true },
{ "floridafieros.org", true },
+ { "floridagulfbeachrealty.com", true },
{ "floridahomesinvest.com", true },
+ { "floridasexhealth.com", true },
{ "florinlungu.it", true },
{ "florismoo.nl", true },
{ "florismouwen.com", false },
@@ -13380,6 +13834,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flunschi.goip.de", true },
{ "fluoxetine.net", true },
{ "flurp.de", false },
+ { "flushlife.com", true },
{ "fluteandpianoteaching.co.uk", true },
{ "flux.by", true },
{ "flux.healthcare", true },
@@ -13403,25 +13858,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flynn.io", true },
{ "flyserver.co.il", true },
{ "flyshe.co.uk", true },
- { "flyspace.ml", true },
{ "flyssh.net", true },
{ "flyswoop.com", true },
{ "flyt.online", true },
{ "flytoadventures.com", true },
{ "fm-cdn.de", true },
{ "fm.ie", true },
- { "fmapplication.com", true },
{ "fmarchal.fr", true },
{ "fmc.gov", true },
{ "fmdance.cl", true },
- { "fmi.gov", true },
{ "fminsight.net", true },
{ "fmodoux.biz", true },
- { "fmovies.fyi", true },
{ "fmussatmd.com", true },
{ "fnanen.net", true },
{ "fnb-griffinonline.com", true },
{ "fnbnokomis.com", true },
+ { "fnh-expert.net", true },
{ "fnkr.net", true },
{ "fnof.ch", true },
{ "fnordserver.eu", true },
@@ -13438,6 +13890,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fogway.net", true },
{ "foia.gov", true },
{ "foiaonline.gov", true },
+ { "foixet.com", true },
{ "fojing.com", true },
{ "fojt.cz", true },
{ "fojtova.cz", true },
@@ -13445,11 +13898,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fokan.be", true },
{ "fokep.no", true },
{ "fokkusu.fi", true },
- { "fol.tf", true },
{ "folio.no", true },
{ "foljeton.dk", true },
{ "folk.as", true },
- { "folkfests.org", true },
{ "follandviolins.com", true },
{ "followback.net", true },
{ "follower98.ir", true },
@@ -13493,6 +13944,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foot.fr", true },
{ "footagecrate.com", true },
{ "footballforum.de", true },
+ { "footloose.co.uk", true },
{ "for.care", true },
{ "foray-jero.me", true },
{ "forbusiness.ca", true },
@@ -13508,6 +13960,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foreclosureattorneyhouston.com", true },
{ "forefrontcloud.com", true },
{ "foregroundweb.com", true },
+ { "foreign-language-colleges.com", true },
{ "forellenpark.com", true },
{ "forento.be", true },
{ "foresdon.jp", true },
@@ -13524,11 +13977,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forextimes.ru", false },
{ "forfunssake.co.uk", true },
{ "forge-goerger.eu", true },
- { "forglemmigej.net", true },
{ "forgotten-legends.org", true },
+ { "form3w.nl", true },
{ "forman.store", true },
{ "formapi.io", true },
- { "formasdemaquillarse.com", true },
{ "format-paysage.ch", true },
{ "formation-assureur.com", true },
{ "formation-mac.ch", true },
@@ -13536,8 +13988,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "formbetter.com", true },
{ "formini.dz", true },
{ "formkiq.com", true },
+ { "formsbyair.com", true },
{ "formula-ot.ru", true },
{ "formulacionquimica.com", true },
+ { "formulastudent.de", true },
{ "fornoreason.net.au", true },
{ "fornwall.net", true },
{ "foro.io", false },
@@ -13546,7 +14000,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forologikidilosi.com.gr", true },
{ "forourselves.com", true },
{ "forpc.us", true },
- { "forquilhinhanoticias.com.br", true },
{ "forrestheller.com", true },
{ "forro.info", true },
{ "forsakringsarkivet.se", true },
@@ -13557,11 +14010,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fort.eu", true },
{ "forteggz.nl", true },
{ "fortesanshop.it", true },
+ { "fortknox.cz", true },
{ "fortnine.ca", true },
{ "fortnitemagic.ga", true },
{ "fortran.io", true },
{ "fortress.no", true },
{ "fortress.sk", true },
+ { "fortuna-apotheke-lahnstein.de", true },
{ "forty-two.nl", true },
{ "forty8creates.com", true },
{ "fortytwo.cloud", true },
@@ -13580,7 +14035,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foscamcanada.com", true },
{ "fosdem.org", true },
{ "foshanshequ.com", false },
- { "fossguard.com", true },
+ { "fossforward.com", true },
{ "fossilfreeyale.org", true },
{ "fotella.com", true },
{ "fotikpro.ru", true },
@@ -13592,6 +14047,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foto-robitsch.at", true },
{ "foto-roma.ru", true },
{ "foto.by", true },
+ { "fotoboxvysocina.cz", true },
+ { "fotofaerie.net", true },
{ "fotoflits.net", true },
{ "fotografechristha.nl", true },
{ "fotografiadellalucerossa.com", true },
@@ -13599,6 +14056,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fotokomorkomania.pl", true },
{ "fotoleitner.com", true },
{ "fotoleitner.de", true },
+ { "fotonjan.com", true },
{ "fotostudio-leitner.com", true },
{ "fotostudio-leitner.de", true },
{ "fotostudio-schweiz.ch", true },
@@ -13606,6 +14064,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fotowolfy.com", true },
{ "fougner.co", true },
{ "found.website", true },
+ { "foundationrepairnebraska.com", true },
{ "foundationspecialisteast.com", true },
{ "foundationspecialistmi.com", true },
{ "foundchurch.co.uk", true },
@@ -13627,12 +14086,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foxontheinter.net", true },
{ "foxphotography.ch", true },
{ "foxquill.com", true },
- { "foxterrier.com.br", true },
- { "fpc.gov", true },
+ { "foxstreetcomms.co.za", true },
+ { "fpaci.org", true },
+ { "fpc.gov", false },
{ "fpersona.com", true },
{ "fpgradosuperior.com", true },
+ { "fpsclasico.de", true },
+ { "fpt-technojapan.com", true },
+ { "fptravelling.com", false },
{ "fpvr.org", true },
{ "fpy.cz", true },
+ { "fq.mk", true },
{ "fr.search.yahoo.com", false },
{ "fr33tux.org", true },
{ "frack.nl", true },
@@ -13647,17 +14111,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "framezdakkapellen.nl", true },
{ "fran.cr", true },
{ "francescopalazzo.com", true },
+ { "francescopandolfibalbi.it", true },
+ { "francescoservida.ch", true },
{ "francetraceur.fr", true },
{ "franchini.email", true },
{ "franchini.engineer", true },
{ "francis.tokyo", true },
{ "francisli.net", false },
- { "franckgirard.net", true },
{ "franckyz.com", true },
{ "francois-gaillard.fr", true },
{ "francois-occasions.be", true },
+ { "francoisbelangerboisclair.com", true },
{ "francoiscarrier.com", true },
{ "francoise-paviot.com", true },
+ { "francoisharvey.ca", true },
{ "francoislepage.com", true },
{ "francoz.me", true },
{ "frandor.co.uk", true },
@@ -13672,13 +14139,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frankierprofi.de", true },
{ "frankierstar.de", true },
{ "frankinteriordesign.co.uk", true },
+ { "frankl.in", true },
{ "frankmorrow.com", true },
{ "frankopol-sklep.pl", true },
{ "franksiler.com", true },
{ "frankslaughterinsurance.com", true },
{ "frankwei.xyz", true },
{ "frankyan.com", true },
- { "fransallen.com", true },
{ "frantic1048.com", true },
{ "frantorregrosa.me", true },
{ "franz-vatter.de", true },
@@ -13687,6 +14154,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "franzknoll.de", true },
{ "frappant.cc", true },
{ "fraselab.ru", true },
+ { "frasesconemocion.com", true },
{ "frasesdodia.com", true },
{ "frasesparaface.com.br", true },
{ "frasesytarjetas.com", true },
@@ -13701,10 +14169,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fraurichter.net", true },
{ "fraye.net", true },
{ "frbracch.it", true },
+ { "frccsgo.tk", true },
{ "frdl.ch", true },
{ "freaksites.dk", true },
{ "freaksports.com.au", true },
- { "freakyawesome.com", true },
{ "frebi.org", true },
{ "frebib.co.uk", true },
{ "frebib.com", true },
@@ -13718,6 +14186,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frederikvig.com", true },
{ "fredloya.com", true },
{ "fredriksslekt.se", true },
+ { "fredtec.ru", true },
{ "fredvoyage.fr", true },
{ "free-your-pc.com", true },
{ "free.ac.cn", true },
@@ -13726,9 +14195,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freebarrettbrown.org", true },
{ "freebcard.com", true },
{ "freebetoffers.co.uk", true },
+ { "freebies.id", true },
{ "freebookmakersbetsandbonuses.com.au", true },
{ "freeboson.org", true },
+ { "freecam2cam.site", true },
{ "freecloud.at", true },
+ { "freecookies.nl", true },
{ "freedev.cz", true },
{ "freedom.nl", true },
{ "freedom.press", true },
@@ -13759,7 +14231,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freelifer.jp", true },
{ "freelo.cz", true },
{ "freelysurf.cf", true },
+ { "freemanlogistics.com", true },
{ "freemans.com", true },
+ { "freemomhugs.org", true },
{ "freemyipod.org", true },
{ "freend.me", false },
{ "freenetproject.org", true },
@@ -13776,6 +14250,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freesoft-board.to", true },
{ "freesoftlab.com", true },
{ "freesolitaire.win", true },
+ { "freessl.tech", true },
+ { "freesslcertificate.me", true },
{ "freethetv.ie", true },
{ "freetsa.org", true },
{ "freevps.us", false },
@@ -13798,6 +14274,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freitasul.com.br", true },
{ "freitasul.io", true },
{ "freiwurst.net", true },
+ { "freizeitbad-riff.de", true },
{ "freizeitplaza.de", true },
{ "frejasdal.dk", true },
{ "frenchcreekcog.org", true },
@@ -13813,40 +14290,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freshislandfish.com", true },
{ "freshkiss.com.au", true },
{ "freshmaza.com", true },
- { "freshmaza.io", true },
{ "freshmaza.net", true },
{ "fretscha.com", true },
- { "frettboard.com", true },
{ "frettirnar.is", true },
{ "fretworksec.com", true },
+ { "freundinnen-ausflug.de", true },
+ { "freundinnen-kurzurlaub.de", true },
+ { "freundinnen-urlaub.de", true },
{ "friarsonbase.com", true },
{ "fribourgviking.net", true },
{ "frickelmeister.de", true },
{ "fridayfoucoud.ma", true },
{ "fridolinka.cz", true },
+ { "friedenauer-herbstfest.de", true },
{ "friederes.lu", true },
{ "friederloch.de", true },
{ "friedrich-foto-art.de", true },
{ "friedsamphotography.com", true },
{ "friendlysiberia.com", true },
+ { "friendowment.us", true },
{ "friends-of-naz.com", true },
{ "friends-socialgroup.org", true },
{ "friends24.cz", true },
- { "friendship-quotes.co.uk", true },
{ "friendshipismagicsquad.com", true },
+ { "friendsofgfwpc.org", true },
{ "frieslandrail.nl", true },
{ "friet.org", true },
{ "frietbesteld.nl", true },
{ "friezy.ru", true },
{ "frigi.ch", true },
{ "frigolit.net", true },
- { "friller.com.au", true },
{ "frillip.com", true },
{ "frinkiac.com", true },
{ "frino.de", true },
{ "frippz.se", true },
{ "friss.com", true },
- { "fritteli.ch", true },
{ "fritzrepair.com", true },
{ "frizo.com", true },
{ "frly.de", true },
@@ -13858,20 +14336,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frogsonamission.de", true },
{ "froh.co.jp", true },
{ "frolova.org", true },
+ { "from-the-net.com", true },
{ "fromscratch.rocks", true },
{ "fromthesoutherncross.com", true },
{ "fronteers.nl", false },
{ "frontier-ad.co.jp", true },
+ { "frontier.bet", true },
{ "frontierdiscount.com", true },
{ "frontiers.nl", true },
+ { "frontlinemessenger.com", true },
{ "fropky.com", true },
{ "frostprotection.co.uk", true },
{ "frostwarning.com", true },
{ "frostysummers.com", true },
{ "frothy.coffee", true },
{ "froufe.com", true },
+ { "frownonline.co.uk", true },
{ "frozen-geek.net", true },
{ "frozen-solid.net", true },
+ { "frozenjam.com", true },
+ { "frpg.gov", true },
{ "frprn.es", true },
{ "frtn.com", true },
{ "frtr.gov", true },
@@ -13879,7 +14363,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fruchthof24.de", true },
{ "fruchtikus.net", true },
{ "fruend-hausgeraeteshop.de", true },
- { "frugal-millennial.com", true },
{ "frugalfamilyhome.com", true },
{ "frugalmechanic.com", true },
{ "frugro.be", true },
@@ -13889,6 +14372,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frydrychit.cz", true },
{ "fs-community.nl", true },
{ "fs-fitness.eu", true },
+ { "fs-g.org", true },
{ "fs-maistadt.de", true },
{ "fs257.com", true },
{ "fsapubs.gov", false },
@@ -13902,7 +14386,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fscott.de", true },
{ "fsdress.com", true },
{ "fsfxpackages.com", true },
+ { "fsg.one", true },
{ "fsj4u.ch", true },
+ { "fsk.fo", true },
{ "fsky.info", true },
{ "fsm2016.org", true },
{ "fsps.ch", true },
@@ -13918,8 +14404,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ftptest.net", true },
{ "ftrsecure.com", true },
{ "ftv.re", true },
- { "fu-li88.com", true },
- { "fu-li88.net", true },
+ { "fu639.top", true },
+ { "fu898.top", true },
{ "fuantaishenhaimuli.net", true },
{ "fuck-your-false-positive.de", true },
{ "fuckav.ru", true },
@@ -13933,16 +14419,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fuckup.dk", true },
{ "fuckyoupaypal.me", true },
{ "fuechschen.org", true },
+ { "fuelfirebrand.com", true },
{ "fuelingyourdreams.com", true },
{ "fuerstenfelder-immobilien.de", true },
{ "fugamo.de", true },
{ "fuglede.dk", true },
{ "fuite.ch", true },
{ "fuites.ch", true },
- { "fujiorganics.com", false },
{ "fujiwaraqol.com", true },
{ "fukakukeiba.com", true },
{ "fukikaeru.com", true },
+ { "fukuiedu.com", true },
{ "fukushimacoffee.com", true },
{ "fulfilmentcrowd.com", true },
{ "fulgenzis.com", true },
@@ -13957,6 +14444,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fullhost.com", true },
{ "fullhub.ru", true },
{ "fullmatch.net", true },
+ { "fullstack.love", true },
{ "fullstacknotes.com", true },
{ "fumblers.ca", true },
{ "fumerolles.ch", true },
@@ -13965,6 +14453,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fun-tasia.co.uk", true },
{ "fun4kidzbouncycastles.co.uk", true },
{ "fun4ubouncycastles.co.uk", true },
+ { "fun888city.com", true },
+ { "fun888city.net", true },
{ "funadvisor.ca", true },
{ "funadvisorfrance.com", true },
{ "funandbounce.com", true },
@@ -13995,6 +14485,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "funniestclip.com", true },
{ "funnybikini.com", true },
{ "funoverip.net", true },
+ { "funsochi.ru", true },
{ "funspins.com", true },
{ "funtasticinflatablesdurham.co.uk", true },
{ "funtime-inflatables.co.uk", true },
@@ -14003,9 +14494,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "funtimeentertainment.co.uk", true },
{ "funtimesbouncycastles.co.uk", true },
{ "fur.red", true },
+ { "furaje-iasi.com", true },
{ "furcity.me", true },
{ "furgo.love", true },
{ "furigana.info", true },
+ { "furikake.xyz", true },
{ "furkancaliskan.com", true },
{ "furkot.com", true },
{ "furkot.de", true },
@@ -14016,22 +14509,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "furlan.co", true },
{ "furlog.it", true },
{ "furnfurs.com", true },
- { "furnitureconcept.co.uk", true },
{ "furry.cat", true },
{ "furry.dk", true },
- { "furry.zone", false },
{ "furrybot.me", true },
{ "furrytech.network", true },
{ "furrytf.club", true },
{ "furryyiff.site", true },
- { "fursuitbutts.com", true },
- { "furtherfood.com", true },
+ { "fusa-miyamoto.jp", true },
{ "fuselight.nl", true },
{ "fuseos.net", true },
{ "fushee.com", true },
{ "fusiongaming.de", true },
{ "fussball-xxl.de", true },
- { "futa.agency", true },
+ { "futaba-works.com", true },
{ "futagro.com", true },
{ "futbomb.com", true },
{ "futcre.com", true },
@@ -14069,7 +14559,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fxopen.ru", true },
{ "fxp.co.il", true },
{ "fxseo.com.au", true },
- { "fxtalk.cn", true },
{ "fxthai.com", true },
{ "fxtrade-lab.com", true },
{ "fxweb.co", true },
@@ -14089,11 +14578,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fysiotherapienieuwveen.nl", true },
{ "fysiovdberg.nl", true },
{ "fysuite.com", true },
+ { "fytcart.com", true },
{ "fzbrweb.cz", true },
{ "fzhyzamt.com", true },
{ "fzx750.ru", true },
+ { "g-ds.de", true },
{ "g-m-w.eu", true },
- { "g-marketing.ro", true },
{ "g-o.pl", true },
{ "g-p-design.com", true },
{ "g-rom.net", true },
@@ -14110,6 +14600,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "g3rv4.com", true },
{ "g4w.co", true },
{ "g5.gov", true },
+ { "g6666g.tk", true },
{ "g8energysolutions.co.uk", true },
{ "gaaz.fr", true },
{ "gabe565.com", true },
@@ -14127,8 +14618,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gadgethacks.com", true },
{ "gadse.games", true },
{ "gae123.com", true },
+ { "gaengler.com", true },
{ "gaest.com", true },
{ "gaestehaus-monika.com", true },
+ { "gaetanosonline.com", true },
{ "gaff-rig.co.uk", true },
{ "gaflooring.com", true },
{ "gafunds.com", true },
@@ -14137,6 +14630,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gagne.tk", true },
{ "gagnerplusdargent.info", true },
{ "gagniard.org", true },
+ { "gagor.pl", true },
{ "gagygnole.ch", true },
{ "gaiavanderzeyp.com", true },
{ "gaichon.com", true },
@@ -14149,7 +14643,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gakkainavi-epsilon.jp", true },
{ "gakkainavi-epsilon.net", true },
{ "gakkainavi.jp", true },
- { "gakkainavi.net", true },
{ "gakkainavi4.jp", true },
{ "gakkainavi4.net", true },
{ "gaku-architect.com", true },
@@ -14161,11 +14654,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "galanight.cz", true },
{ "galecia.com", true },
{ "galeria42.com", true },
- { "galerieautodirect.com", true },
+ { "galeriart.xyz", true },
{ "galeries.photo", true },
- { "galgopersa.com.br", true },
{ "galilahiskye.com", true },
{ "galileanhome.org", true },
+ { "galilel.cloud", true },
{ "galinas-blog.de", true },
{ "galinos.gr", true },
{ "galle.cz", true },
@@ -14185,39 +14678,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gambitnash.co.uk", true },
{ "gambitnash.com", true },
{ "gambitprint.com", true },
+ { "gamblerhealing.com", true },
{ "gamblersgaming.eu", true },
{ "game4less.com", true },
{ "game7.de", true },
+ { "game88city.net", true },
+ { "gameanalytics.com", true },
{ "gameblabla.nl", true },
{ "gamebrott.com", true },
{ "gamecard-shop.nl", true },
+ { "gamechefpummarola.eu", true },
{ "gameclue.jp", true },
{ "gamecollector.be", true },
{ "gameconservation.org.uk", true },
{ "gamedevelopers.pl", true },
{ "gamegix.com", true },
{ "gameguardian.net", true },
+ { "gameindustry.de", true },
{ "gameisbest.jp", true },
{ "gamekaitori.jp", true },
{ "gamekeepers.cz", true },
+ { "gamemodding.com", true },
{ "gamenerd.net", true },
- { "gameofpwnz.com", true },
{ "gamepad.com.br", true },
{ "gameplaysforkids.com", true },
{ "gamepreorders.com", true },
{ "gamequest.info", true },
+ { "gamer-portal.com", true },
{ "gamercredo.com", true },
{ "gamereader.de", true },
{ "gamerezo.com", true },
{ "gamerzdot.com", true },
{ "games4theworld.org", true },
{ "gamesaviour.com", true },
+ { "gamesdepartment.co.uk", true },
{ "gameserver-sponsor.me", true },
{ "gameshowchallenge.ie", true },
{ "gamesided.com", true },
{ "gamesplanet.com", true },
{ "gamesputnik.ru", true },
{ "gamestats.gg", true },
+ { "gametilt.com", true },
{ "gametube.website", true },
{ "gamilab.com", true },
{ "gamilab.no", true },
@@ -14226,7 +14727,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gamingrealms.net", true },
{ "gamingwithcromulent.com", true },
{ "gamingzoneservers.com", true },
+ { "gamisalya.com", true },
{ "gamishou.fr", true },
+ { "gamismodelbaru.com", true },
+ { "gamismu.com", true },
{ "gamivo.com", true },
{ "gamoloco.com", true },
{ "gan.wtf", true },
@@ -14240,14 +14744,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gandgliquors.com", true },
{ "ganggalbichler.at", true },
{ "gansleit.com", false },
- { "ganyouxuan.com", true },
{ "ganztagplus.de", true },
+ { "gao.ci", true },
{ "gao.rocks", true },
+ { "gaojianli.me", true },
{ "gaojianli.tk", true },
{ "gaos.org", true },
{ "gapdirect.com", true },
{ "gapfa.org", true },
- { "gaptek.id", false },
+ { "gaphag.ddns.net", true },
+ { "gar-nich.net", false },
{ "garage-leone.com", true },
{ "garage-meynard.com", true },
{ "garageenginuity.com", true },
@@ -14255,26 +14761,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "garagemhermetica.org", true },
{ "garagevanhulle-used.be", true },
{ "garanteasy.com", true },
- { "garbage-juice.com", true },
{ "garbomuffin.com", true },
{ "garciagerman.com", true },
{ "garda-see.mobi", true },
{ "gardedenfantspourtous.fr", true },
- { "garden-life.org", true },
{ "gardengameshireuk.com", true },
{ "garderobche.eu", true },
{ "gardikagigih.com", true },
{ "gardinte.com", true },
{ "garedtech.com", false },
{ "garethbowker.com", true },
- { "garethkirk.com", true },
- { "garethkirkreviews.com", true },
{ "garethrhugh.es", true },
{ "garforthgolfclub.co.uk", true },
{ "gargazon.net", true },
{ "garron.net", true },
{ "garrowmediallc.com", true },
- { "gartenhauszentrum.de", true },
+ { "gartenbaur.de", true },
{ "gartenplanung-brendes.de", true },
{ "garycarmell.com", true },
{ "garycwaite.com", true },
@@ -14290,6 +14792,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gastrotiger.de", true },
{ "gate2home.com", true },
{ "gateaucreation.fr", true },
+ { "gatekiller.co.uk", true },
{ "gatewaybridal.com", true },
{ "gatewaybronco.com", true },
{ "gauche.com", true },
@@ -14297,16 +14800,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gaudere.co.jp", true },
{ "gaurl.ga", true },
{ "gaussianwaves.com", true },
- { "gautham.it", true },
{ "gauthier.dk", true },
{ "gautvedt.no", true },
{ "gavins.stream", true },
{ "gavinsblog.com", true },
{ "gawrimanecuta.com", true },
- { "gay-jays.com", true },
- { "gaya-sa.org", true },
{ "gayforgenji.com", true },
- { "gayjays.com", true },
{ "gaymerconnect.net", true },
{ "gaymerx.com", true },
{ "gaymerx.net", true },
@@ -14314,7 +14813,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gaysexpositions.guide", true },
{ "gayukai.net", true },
{ "gazachallenge.org", true },
- { "gazee.net", true },
{ "gazellegames.net", false },
{ "gazete.org", true },
{ "gazette.govt.nz", true },
@@ -14326,7 +14824,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gc.gy", true },
{ "gc.ru.net", true },
{ "gcbit.dk", true },
- { "gccm-events.com", true },
{ "gcfadvisors.com", true },
{ "gcgeeks.com.au", true },
{ "gcguild.net", true },
@@ -14343,12 +14840,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gdpr-pohotovost.cz", true },
{ "gdv.me", true },
{ "gdz-spishy.com", true },
+ { "gdz.tv", true },
{ "ge3k.net", false },
{ "gear4you.shop", true },
{ "gearallnews.com", true },
{ "gearev.net", true },
{ "gearfinder.nl", true },
- { "gearseo.com.br", true },
{ "gearset.com", true },
{ "geass.xyz", true },
{ "geba-online.de", true },
@@ -14360,7 +14857,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gecem.org", true },
{ "gechr.io", true },
{ "geckler-ee.de", true },
- { "gedankenworks.com", true },
{ "geder.at", true },
{ "gedlingcastlehire.co.uk", true },
{ "gee.is", true },
@@ -14377,13 +14873,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geekles.net", true },
{ "geeknik.com", true },
{ "geekpad.com", true },
- { "geeks.one", true },
{ "geekshirts.cz", true },
{ "geektopia.es", true },
{ "geekwhack.org", true },
{ "geekwithabudget.com", true },
{ "geekwu.org", true },
- { "geekystudios.us", true },
{ "geekz.sk", true },
{ "geekzone.co.nz", true },
{ "geekzone.fr", true },
@@ -14422,8 +14916,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gemgroups.in", true },
{ "gemini.com", true },
{ "gemquery.com", true },
+ { "genbright.com", true },
{ "genchev.io", true },
- { "gencmedya.com", false },
+ { "gencmedya.com", true },
{ "genderidentiteit.nl", true },
{ "gendrin.com", true },
{ "gendundrupa.ch", true },
@@ -14460,7 +14955,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geniuszone.biz", true },
{ "genocidediary.org", true },
{ "genodeftest.de", true },
- { "genome.gov", true },
+ { "genome.gov", false },
{ "genomequestlive.com", true },
{ "genosse-einhorn.de", true },
{ "genoveve.de", true },
@@ -14470,7 +14965,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gensicke.de", true },
{ "genslerapps.com", true },
{ "genslerwisp.com", true },
- { "gensokyo.chat", true },
{ "gensokyo.re", true },
{ "gensonline.eu", true },
{ "gentianes.ch", true },
@@ -14479,12 +14973,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "genusshotel-riegersburg.at", true },
{ "genuxtsg.com", true },
{ "genxnotes.com", true },
- { "geocommunicator.gov", true },
{ "geocompass.at", true },
{ "geofox.org", true },
+ { "geography-schools.com", true },
{ "geoip.fedoraproject.org", true },
{ "geoip.stg.fedoraproject.org", true },
{ "geojs.io", true },
+ { "geology-schools.com", true },
{ "geometra.roma.it", true },
{ "geomex.be", true },
{ "geoponika.gr", true },
@@ -14497,11 +14992,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "georgehalachev.com", true },
{ "georgemaschke.com", true },
{ "georgemaschke.net", true },
+ { "georgepancescu.ro", true },
{ "georgescarryout.com", true },
{ "georgewbushlibrary.gov", true },
{ "georgiaautoglass.net", true },
{ "georgiaglassrepair.com", true },
{ "georgiastuartyoga.co.uk", true },
+ { "georgiaurologist.com", true },
{ "georgioskontaxis.com", true },
{ "georgioskontaxis.net", true },
{ "georgioskontaxis.org", true },
@@ -14517,14 +15014,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gerald-zojer.com", true },
{ "geraldsonrealty.com", true },
{ "gerardinden.nl", true },
+ { "gerardobsd.com", true },
{ "gerardozamudio.mx", true },
{ "gerbyte.co.uk", true },
{ "gerbyte.com", true },
{ "gerbyte.uk", true },
{ "germancraft.net", true },
{ "germandarknes.net", true },
- { "germansoldiers.net", true },
{ "germanssky.de", true },
+ { "germanticz.de", true },
{ "gernert-server.de", true },
{ "gero.io", true },
{ "gerritcodereview.com", true },
@@ -14534,14 +15032,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geschmacksache.online", true },
{ "geschwinder.net", true },
{ "gesica.cloud", true },
- { "gestorehotel.com", true },
+ { "gessettirotti.it", true },
{ "gestormensajeria.com", true },
{ "gesundheitmassage.com", true },
{ "gesundheitswelt24.de", true },
{ "get-erp.ru", true },
{ "get-it-live.com", true },
{ "get-it-live.de", true },
- { "get-link.info", true },
{ "get-on.bid", true },
{ "get-refer.com", true },
{ "get.how", true },
@@ -14559,6 +15056,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getdash.io", true },
{ "getdeveloper.de", true },
{ "geteckeld.nl", true },
+ { "geteduroam.no", true },
+ { "getenv.io", true },
{ "geterp.ru", true },
{ "getfedora.org", true },
{ "getfirstalert.com", true },
@@ -14582,7 +15081,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getoutofdebt.org", true },
{ "getpagespeed.com", true },
{ "getpanelapp.com", true },
- { "getpei.com", true },
+ { "getpei.com", false },
{ "getprivacy.de", true },
{ "getprivacy.net", true },
{ "getpublii.com", true },
@@ -14595,20 +15094,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getsilknow.com", true },
{ "getsmartaboutdrugs.gov", true },
{ "getsport.mobi", true },
- { "getsubs.net", true },
{ "getswadeshi.com", true },
{ "getteamninja.com", true },
{ "getthefriendsyouwant.com", true },
{ "getticker.com", true },
+ { "gettopquality.com", true },
{ "getts.ro", true },
{ "getupandbounce.co.uk", true },
{ "getvdownloader.com", true },
- { "getweloop.io", true },
{ "getwemap.com", true },
{ "getwisdom.io", true },
{ "getyeflask.com", true },
- { "getyou.onl", true },
+ { "getyou.onl", false },
{ "getyourlifestraight.com", true },
+ { "gevelreinigingtiel.nl", true },
{ "geyduschek.be", true },
{ "gf-franken.de", true },
{ "gf5fcalc.com", true },
@@ -14621,13 +15120,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gfestival.fo", true },
{ "gfk-kunststoff-luebben.de", true },
{ "gflame.de", true },
- { "gflclan.ru", true },
{ "gfms.ru", true },
{ "gfnetfun.cf", true },
{ "gforce.ninja", true },
{ "gfoss.eu", true },
{ "gfournier.ca", true },
- { "gfwno.win", true },
{ "gfxbench.com", true },
{ "ggdcpt.com", true },
{ "gginin.today", true },
@@ -14641,20 +15138,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ggx.us", true },
{ "gha.st", true },
{ "ghaglund.se", true },
- { "ghid-pitesti.ro", true },
{ "ghini.com", true },
{ "ghislainphu.fr", true },
{ "ghostblog.info", false },
{ "ghostcir.com", true },
{ "ghou.me", true },
- { "ghowell.io", true },
{ "ghrelinblocker.info", true },
{ "ghrelinblocker.org", true },
+ { "ghuntley.com", false },
{ "giac.org", true },
{ "giacomodrago.com", true },
{ "giacomodrago.it", true },
{ "giacomopelagatti.it", true },
{ "giaithich.net", true },
+ { "giakki.eu", false },
+ { "giannademartini.com", true },
{ "gianproperties.com", true },
{ "giant-panda.com", true },
{ "giant-tortoise.com", true },
@@ -14666,7 +15164,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gibraltar.at", true },
{ "gichigamigames.com", true },
{ "gicl.dk", true },
- { "giduv.com", true },
{ "giebel.it", true },
{ "gierds.de", true },
{ "giethoorn.com", true },
@@ -14677,6 +15174,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "giftmaniabrilhos.com.br", true },
{ "gifts.best", true },
{ "gifts365.co.uk", true },
+ { "gifudodo.com", true },
{ "gig-raiffeisen.de", true },
{ "giga.nl", true },
{ "gigabitz.pw", true },
@@ -14704,9 +15202,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gillmanandsoame.co.uk", true },
{ "gillyscastles.co.uk", true },
{ "gilmoreid.com.au", true },
+ { "gilmourluna.com", true },
{ "gilnet.be", true },
+ { "gilpinmanagement.com", true },
+ { "gilpinrealty.com", true },
{ "gimme.money", true },
{ "gina-architektur.design", true },
+ { "ginabaum.com", true },
{ "gingersutton.com", true },
{ "ginionusedcars.be", true },
{ "ginja.co.th", true },
@@ -14728,16 +15230,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "girlan.net", true },
{ "girlsforum.com", true },
{ "girlsgenerationgoods.com", true },
- { "girlsgonesporty.com", true },
- { "girlsnet.work", true },
{ "girlz.jp", true },
- { "girsa.org", true },
{ "girvas.ru", true },
{ "gisch.tk", true },
{ "gisgov.be", true },
{ "gisher.news", true },
{ "gisher.org", true },
{ "gisher.video", true },
+ { "gishiko.net", true },
{ "gistr.io", true },
{ "git.ac.cn", true },
{ "git.market", true },
@@ -14754,6 +15254,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gittigidiyor.com", true },
{ "gittr.ch", true },
{ "giuem.com", true },
+ { "giulianosdeli.com", true },
{ "giunchi.net", true },
{ "giuseppemacario.men", true },
{ "givastar.com", true },
@@ -14768,7 +15269,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "givip.eu", true },
{ "gixtools.com", true },
{ "gixtools.net", true },
- { "gizmo.ovh", true },
{ "gj-bochum.de", true },
{ "gjcampbell.co.uk", true },
{ "gjengset.com", true },
@@ -14777,7 +15277,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gkoenig-innenausbau.de", true },
{ "gkralik.eu", true },
{ "gl.search.yahoo.com", false },
+ { "gla-hyperloop.com", true },
{ "glaciernursery.com", true },
+ { "gladiatorboost.com", true },
{ "gladwellentertainments.co.uk", true },
{ "glahcks.com", true },
{ "glamguru.co.il", true },
@@ -14789,8 +15291,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glasfaser-im-hanseviertel.de", true },
{ "glasgestaltung.biz", true },
{ "glasner.photo", true },
+ { "glaspe.com", true },
{ "glass.google.com", true },
{ "glasschmuck-millefiori.de", true },
+ { "glassexpertswa.com", true },
+ { "glassrainbowtrust.org.je", true },
{ "glasweld.com", true },
{ "glavsudexpertiza.ru", true },
{ "glazedmag.fr", true },
@@ -14798,7 +15303,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gleanview.com", true },
{ "gleich-aluminium-shop.de", true },
{ "glenberviegolfclub.com", true },
- { "glencambria.com", true },
{ "glencarbide.com", true },
{ "glendarraghbouncycastles.co.uk", true },
{ "glenhuntlyapartments.com.au", true },
@@ -14818,25 +15322,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "globalcanineregistry.com", true },
{ "globalchokepoints.org", true },
{ "globalcomix.com", true },
- { "globalgivingtime.com", true },
{ "globalgovernancewatch.org", true },
{ "globalhealth.gov", true },
{ "globalhorses.de", true },
{ "globalipaction.ch", true },
{ "globalisierung-fakten.de", true },
+ { "globalitac.com", true },
{ "globalityinvestment.com", true },
- { "globalmoneyapp.com", true },
{ "globalonetechnology.com", true },
{ "globalprojetores.com.br", true },
{ "globalresearchcouncil.org", true },
- { "globalresistancecorporation.com", true },
{ "globalventil.com", true },
{ "globcoin.io", true },
- { "globeinform.com", true },
{ "globelink-group.com", true },
{ "glocalworks.jp", true },
{ "glofox.com", true },
{ "gloneta.com", false },
+ { "gloning.name", true },
{ "glosiko.com", true },
{ "glossopnorthendafc.co.uk", true },
{ "glotech.co.uk", true },
@@ -14851,11 +15353,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glutenfreelife.co.nz", true },
{ "glutenfreevr.com", true },
{ "glykofridis.nl", true },
+ { "glyph.ws", true },
{ "glyxins.com", true },
{ "gm-net.jp", true },
{ "gm.search.yahoo.com", false },
+ { "gmacedo.com", true },
{ "gmail.com", false },
- { "gmantra.org", true },
{ "gmbh-kiekin.de", true },
{ "gmc.uy", true },
{ "gmccar.it", true },
@@ -14865,7 +15368,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gmod.de", true },
{ "gmpark.dk", true },
{ "gmpartsdb.com", true },
- { "gmplab.com", true },
+ { "gmslparking.co.uk", true },
{ "gmta.nl", true },
{ "gmtplus.co.za", true },
{ "gmw-hannover.de", true },
@@ -14891,10 +15394,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gnucashtoqif.us", true },
{ "gnunet.org", true },
{ "gnuplus.me", true },
- { "gnwp.eu", true },
- { "gnylf.com", true },
{ "go-dutch.eu", true },
{ "go-embedded.de", true },
+ { "go-propiedades.cl", true },
{ "go-wild.co.uk", true },
{ "go-zh.org", true },
{ "go.microsoft.com", true },
@@ -14905,7 +15407,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goalongtravels.com", true },
{ "goanalyse.co.uk", true },
{ "goand.run", true },
- { "goatbot.xyz", true },
+ { "goarmy.eu", true },
{ "goatcloud.com", true },
{ "gobarrelroll.com", true },
{ "gobouncy.co.uk", true },
@@ -14915,13 +15417,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gochu.se", true },
{ "gocleanerslondon.co.uk", true },
{ "god-clan.hu", true },
- { "god-esb.com", true },
{ "godaxen.tv", true },
- { "godbo9.cc", true },
- { "godbo9.com", true },
- { "godbo9.net", true },
{ "godclan.hu", true },
- { "godesb.com", true },
{ "godesigner.ru", true },
{ "godofnea.com", true },
{ "godrive.ga", true },
@@ -14929,12 +15426,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "godsofhell.com", true },
{ "godsofhell.de", true },
{ "goededoelkerstkaarten.nl", true },
+ { "goedkopelaptopshardenberg.nl", true },
{ "goedkopeonesies.nl", true },
{ "goedverzekerd.net", true },
{ "goemail.me", true },
{ "goerlitz-zgorzelec.org", true },
{ "goerres2014.de", true },
- { "goesta-hallenbau.de", true },
{ "goetemp.de", true },
{ "goetic.space", true },
{ "goettinger-biergarten.de", true },
@@ -14956,7 +15453,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goingreen.com.au", true },
{ "gokhankesici.com", true },
{ "gokmenguresci.com", true },
+ { "golang.org", true },
{ "golang.zone", true },
+ { "golangnews.com", true },
{ "gold24.ru", true },
{ "goldcoastasian.com", true },
{ "goldcoasthypnotherapyhypnosis.com.au", true },
@@ -14968,6 +15467,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goldenhillsoftware.com", true },
{ "goldenhost.ca", true },
{ "goldenplate.com.sg", true },
+ { "goldenruleemail.com", true },
{ "goldfmromania.ro", true },
{ "goldmark.com.au", true },
{ "goldpreisfinder.at", true },
@@ -14985,9 +15485,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gomasy.jp", true },
{ "gomelchat.com", true },
{ "gomena.io", true },
- { "gomiblog.com", true },
{ "gommista.roma.it", true },
{ "gondawa.com", true },
+ { "gondelvaartdwarsgracht.nl", true },
+ { "gongjianwei.com", true },
{ "gongjuhao.com", true },
{ "gonx.dk", true },
{ "goo.gl", true },
@@ -14996,9 +15497,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gooday.life", true },
{ "gooddomainna.me", true },
{ "goodenough.nz", false },
- { "goodfeels.net", true },
{ "goodhealthtv.com", true },
+ { "goodquote.gq", true },
{ "goodshepherdmv.com", true },
+ { "goodth.ink", true },
{ "google", true },
{ "google-analytics.com", true },
{ "googleandroid.cz", true },
@@ -15009,14 +15511,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goonersworld.co.uk", true },
{ "goooo.info", true },
{ "gootlijsten.nl", true },
+ { "goover.de", true },
+ { "goow.in", true },
{ "goozp.com", true },
{ "gopher.tk", true },
{ "goproallaccess.com", true },
+ { "goproinspectiongroup.com", true },
{ "goquiq.com", true },
- { "gordonobrecht.com", true },
{ "gordonscouts.com.au", true },
- { "gorf.chat", true },
- { "gorf.club", true },
+ { "gorealya.com", true },
{ "gorgias.me", true },
{ "gorky.media", true },
{ "gorn.ch", true },
@@ -15032,8 +15535,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gostaffer.com", true },
{ "gostest.org", false },
{ "gosu.pro", true },
- { "gosuland.org", true },
- { "got-tty.de", true },
{ "goteborgsklassikern.se", true },
{ "gotech.com.eg", false },
{ "gothamlimo.com", true },
@@ -15065,8 +15566,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "govype.com", true },
{ "gowe.wang", false },
{ "gowildrodeo.co.uk", true },
- { "gowin9.com", true },
- { "gowin9.net", true },
{ "gowithflo.de", true },
{ "gozenhost.com", true },
{ "gpcsolutions.fr", true },
@@ -15076,13 +15575,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gplans.us", true },
{ "gpm.ltd", true },
{ "gprs.uk.com", true },
- { "gps.com.br", true },
{ "gpsarena.ro", true },
{ "gpscamera.nl", true },
{ "gpsfix.cz", true },
{ "gpsolarpanels.com", true },
{ "gpsvideocanada.com", true },
+ { "gpureport.cz", true },
{ "gpws.ovh", true },
+ { "gqmstore.com.br", true },
{ "gr.search.yahoo.com", false },
{ "gra2.com", true },
{ "graasp.net", false },
@@ -15106,13 +15606,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grafcaps.com", true },
{ "graffen.dk", true },
{ "grafmag.pl", true },
- { "grafmurr.de", true },
{ "grafoteka.pl", true },
{ "graft.community", true },
{ "graft.observer", true },
{ "grahamcarruthers.co.za", true },
{ "grahamcluley.com", true },
- { "grahamofthewheels.com", true },
{ "grailians.com", true },
{ "grailify.com", true },
{ "graingert.co.uk", true },
@@ -15120,7 +15618,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gram.tips", true },
{ "gramati.com.br", true },
{ "grammysgrid.com", true },
- { "grana.com", true },
{ "granary-demo.appspot.com", false },
{ "grancellconsulting.com", true },
{ "grandcafecineac.nl", true },
@@ -15131,13 +15628,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grandcapital.ru", true },
{ "grandcastles.co.uk", true },
{ "grandchene.ch", true },
+ { "grande.coffee", true },
{ "grandefratellonews.com", true },
{ "grandeto.com", true },
{ "grandjunctionbrewing.com", true },
{ "grandmusiccentral.com.au", true },
{ "grandpadusercontent.com", true },
{ "granfort.es", false },
- { "granian.pro", true },
{ "granishe.com", true },
{ "graniteind.com", true },
{ "grannys-stats.com", true },
@@ -15145,14 +15642,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grantcooper.com", true },
{ "grantdb.ca", true },
{ "grantmorrison.net", true },
+ { "grantplatform.com", true },
+ { "grantsplatform.com", true },
{ "granular.ag", true },
{ "graonatural.com.br", true },
{ "grapee.jp", true },
{ "grapeintentions.com", true },
{ "graphcommons.com", true },
{ "graphene.software", true },
+ { "graphic-schools.com", true },
{ "graphic-shot.com", true },
- { "graphified.nl", false },
{ "graphire.io", true },
{ "grapholio.net", true },
{ "grasmark.com", true },
@@ -15169,6 +15668,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "graumeier.de", true },
{ "gravilink.com", true },
{ "gravitascreative.net", true },
+ { "gravitation.pro", false },
{ "gravitechthai.com", true },
{ "gravity-inc.net", true },
{ "gravityformspdfextended.com", true },
@@ -15176,6 +15676,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grawe-blog.at", true },
{ "grayclub.co.il", true },
{ "grayhatter.com", true },
+ { "grayiron.io", true },
{ "graymalk.in", true },
{ "grayowlworks.com", true },
{ "grayscale.co", true },
@@ -15185,15 +15686,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "greatagain.gov", true },
{ "greatestwebsiteonearth.com", true },
{ "greatfire.org", true },
+ { "greathairtransplants.com", true },
{ "greatislandarts.ca", true },
{ "greatlakeside.de", true },
- { "greatlengthshairextensionssalon.com", true },
{ "greatlifeinsurancegroup.com", true },
+ { "greatskillchecks.com", true },
{ "greboid.co.uk", true },
{ "greboid.com", true },
{ "greditsoft.com", true },
{ "greedbutt.com", true },
{ "greek.dating", true },
+ { "greeklish.gr", true },
{ "green-attitude.be", true },
{ "green-care.nl", true },
{ "green-light.cf", true },
@@ -15225,15 +15728,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "greensdictofslang.com", true },
{ "greensquare.tk", true },
{ "greenteamtwente.nl", true },
+ { "greenwaylog.net", true },
{ "greenwithdecor.com", true },
{ "greer.ru", true },
{ "greg.red", true },
{ "gregbrimble.com", true },
{ "greger.me", true },
- { "gregmarziomedia.co.za", true },
+ { "gregmarziomedia-dev.com", true },
{ "gregmarziomedia.com", true },
{ "gregmilton.com", true },
- { "gregmilton.org", true },
{ "gregmote.com", true },
{ "grego.pt", true },
{ "gregoirow.be", true },
@@ -15243,6 +15746,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gregorykelleher.com", true },
{ "gregoryrealestategroup.com", true },
{ "gregorywiest.com", true },
+ { "greice.de", true },
{ "grenadiercorps-kaarst.de", true },
{ "grenadiere-kaarst.de", true },
{ "grenadierkorps-kaarst.de", true },
@@ -15257,7 +15761,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grexx.nl", true },
{ "grey.house", true },
{ "greybeards.ca", true },
- { "greyhash.se", true },
{ "greymattertechs.com", true },
{ "greysky.me", true },
{ "greyskymedia.com", true },
@@ -15284,7 +15787,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grimneko.de", true },
{ "grimstveit.no", true },
{ "grinnellplans.com", true },
- { "gripnijmegen.rip", true },
{ "grippe-impftermin.de", true },
{ "gritte.ch", true },
{ "grizzlys.com", true },
@@ -15314,6 +15816,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grothoff.org", true },
{ "grottenthaler.eu", true },
{ "grouchysysadmin.com", true },
+ { "groundlevelup.com", true },
{ "group4layers.net", true },
{ "groupe-neurologique-nord.lu", true },
{ "groupebaillargeon.com", true },
@@ -15324,6 +15827,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "growingallthings.co.uk", true },
{ "growit.events", true },
{ "growy.ch", true },
+ { "grozter.se", true },
{ "grrmmll.com", true },
{ "grsecurity.net", true },
{ "gruble.de", true },
@@ -15341,20 +15845,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grupomakben.com", true },
{ "grupomedlegal.com", true },
{ "grupoparco.com", true },
- { "gruppoipl.it", true },
+ { "grupoproabienesraices.com.mx", true },
{ "gruselgrotte.com", true },
{ "grusenmeyer.be", true },
+ { "grusig-geil.ch", true },
{ "gruwa.net", true },
- { "grytics.com", true },
{ "gs93.de", true },
{ "gsaj114.net", true },
{ "gscloud.xyz", true },
- { "gsdb.net", true },
{ "gsi-network.com", true },
{ "gsimagebank.co.uk", true },
{ "gslink.me", true },
{ "gsmbrick.com", true },
{ "gsmsecurity.net", true },
+ { "gsoc.se", true },
{ "gsrc.io", true },
{ "gst.name", true },
{ "gst.priv.at", true },
@@ -15376,10 +15880,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gtravers-basketmaker.co.uk", true },
{ "gts-dp.de", true },
{ "gtts.space", true },
+ { "gtxbbs.com", true },
{ "guajars.cl", true },
{ "guanyembadalona.org", true },
{ "guanzhong.ca", true },
{ "guardian360.nl", true },
+ { "guardianportal.us", true },
{ "guardianproject.info", true },
{ "guardiansoftheearth.org", true },
{ "gubagoo.com", true },
@@ -15388,6 +15894,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "guegan.de", true },
{ "guelo.ch", true },
{ "guenthereder.at", true },
+ { "guenthernoack.de", true },
{ "guerard.info", true },
{ "guerrilla.technology", true },
{ "guesthouse-namaste.com", true },
@@ -15417,7 +15924,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "guildbase.de", true },
{ "guildofmusicsupervisors.co.uk", true },
{ "guillaume-briand.fr", true },
- { "guillaumecote.me", true },
+ { "guillaumeperrin.io", true },
{ "guillemaud.me", true },
{ "guim.co.uk", true },
{ "guineapigmustach.es", true },
@@ -15426,19 +15933,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gulchuk.com", true },
{ "gulenbase.no", true },
{ "gulfstream.ru", true },
+ { "gulshankumar.net", true },
{ "gumballs.com", true },
{ "gume4you.com", true },
{ "gumi.ca", true },
{ "gunauc.net", true },
{ "gunceloyunhileleri.com", true },
+ { "gunsofshadowvalley.com", true },
{ "gunwatch.co.uk", true },
{ "gunworld.com.au", true },
{ "guochang.xyz", true },
+ { "guodong.net", true },
{ "guoke.com", true },
{ "guoliang.me", true },
{ "guozeyu.com", true },
{ "gupfen.ch", true },
- { "guphi.net", false },
{ "gurkan.in", true },
{ "gurmel.ru", true },
{ "gurpusmaximus.com", true },
@@ -15449,13 +15958,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gus.host", true },
{ "gustaff.de", true },
{ "gustiaux.com", true },
+ { "gustom.io", true },
{ "gut8er.com.de", true },
{ "gutschein-spezialist.de", true },
{ "gutscheingeiz.de", true },
{ "gutuia.blue", true },
{ "guus-thijssen.nl", true },
{ "guusvandewal.nl", true },
- { "guvernalternativa.ro", true },
{ "guyeskens.be", true },
{ "gv-neumann.de", true },
{ "gv-salto.nl", true },
@@ -15471,6 +15980,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gw2efficiency.com", true },
{ "gw2treasures.com", true },
{ "gw2zone.net", true },
+ { "gwa-verwaltung.de", true },
{ "gwerder.net", true },
{ "gwhois.org", true },
{ "gwrtech.com", true },
@@ -15478,9 +15988,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gxmyqy.net", true },
{ "gyara.moe", true },
{ "gyas.nl", true },
- { "gycis.me", false },
{ "gymagine.ch", true },
{ "gymhero.me", true },
+ { "gymjp.com", true },
{ "gymkirchenfeld.ch", true },
{ "gymnaserenens.ch", true },
{ "gymnasium-farmsen.de", true },
@@ -15497,9 +16007,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gz-benz.com", true },
{ "gz-bmw.com", true },
{ "gza.jp", true },
- { "gzitech.com", true },
- { "gzitech.net", true },
- { "gzitech.org", true },
{ "gzom.ru", true },
{ "h-jo.net", true },
{ "h-suppo.com", true },
@@ -15520,12 +16027,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "h404bi.com", true },
{ "ha-kunamatata.de", true },
{ "ha3.eu", true },
+ { "ha6.ru", true },
{ "haarlemsesaxofoonschool.nl", true },
{ "haavard.me", true },
{ "haazen.xyz", true },
{ "habarisoft.com", true },
{ "habbig.cc", true },
{ "habbos.es", true },
+ { "haberer.me", true },
{ "habitat-domotique.fr", true },
{ "habr.com", true },
{ "habtium.com", true },
@@ -15538,26 +16047,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hacertest.com", true },
{ "hacettepeteknokent.com.tr", true },
{ "hachre.de", false },
- { "hack.cz", true },
+ { "hack.club", true },
{ "hackademix.net", true },
{ "hackanders.com", true },
- { "hackattack.com", true },
{ "hackbarth.guru", true },
{ "hackbeil.name", true },
{ "hackcraft.net", true },
{ "hackdown.me", true },
{ "hackenkunjeleren.nl", true },
{ "hackenturet.dk", true },
+ { "hacker.club", true },
{ "hacker.holiday", true },
{ "hacker.im", true },
{ "hacker.one", true },
{ "hacker.parts", true },
{ "hacker1.com", true },
{ "hacker101.com", true },
- { "hackerchai.com", true },
- { "hackerco.com", true },
{ "hackereyes.com", true },
{ "hackergateway.com", true },
+ { "hackerlite.xyz", true },
{ "hackernet.se", true },
{ "hackerone-ext-content.com", true },
{ "hackerone-user-content.com", true },
@@ -15577,6 +16085,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hackreone.com", true },
{ "hacksecu.re", true },
{ "hacksoc.co.uk", true },
+ { "hackthissite.org", true },
{ "hacktic.info", true },
{ "hacktivis.me", true },
{ "hackworx.com", false },
@@ -15587,11 +16096,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hadret.sh", true },
{ "hadrons.org", true },
{ "haefligermedia.ch", true },
+ { "haemka.de", true },
{ "haens.li", true },
{ "haerwu.biz", true },
{ "haferman.net", true },
{ "haferman.org", true },
{ "hafniatimes.com", true },
+ { "haggeluring.su", true },
{ "hagiati.gr", true },
{ "hagueaustralia.com.au", true },
{ "haha-raku.com", true },
@@ -15607,7 +16118,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hairraisingphotobooths.co.uk", true },
{ "hairtonic-lab.com", true },
{ "haixihui.cn", true },
- { "haizum.pro", true },
{ "hajekdavid.cz", true },
{ "hajekj.net", true },
{ "hajnzic.at", true },
@@ -15617,7 +16127,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hakase.pw", true },
{ "hakatabijin-mind.com", true },
{ "hake.me", true },
- { "hal-9th.space", true },
+ { "hakkasangroup.com", true },
+ { "hakkasannightclub.com", true },
{ "halacs.hu", true },
{ "halbich.design", true },
{ "haleo.net", true },
@@ -15634,8 +16145,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "halliday.work", true },
{ "halligladen.de", true },
{ "hallmarkestates.ca", true },
+ { "halloweenthings.website", true },
{ "hallucinogen.com", true },
{ "hallucinogens.org", true },
+ { "hallumlaw.com", true },
{ "halo.fr", true },
{ "halongbaybackpackertour.com", true },
{ "haloobaloo.com", true },
@@ -15655,6 +16168,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hampshiretechservices.co.uk", true },
{ "hamsters-uk.org", true },
{ "hana.ondemand.com", true },
+ { "hanakaraku.com", true },
{ "hanashi.eu", true },
{ "hanbing.it", true },
{ "handbrake.fr", true },
@@ -15698,30 +16212,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hansvaneijsden.nl", true },
{ "hantse.com", true },
{ "hanu.la", true },
- { "hanxv.pw", true },
{ "hanyibo.com", true },
{ "hanzubon.jp", true },
{ "hao-zhang.com", true },
{ "haogoodair.ca", true },
+ { "haoqi.men", true },
+ { "haorenka.cc", true },
{ "haotown.cn", true },
{ "haozhang.org", true },
+ { "haozhexie.com", true },
{ "haozi.me", true },
{ "hapheemraadssingel.nl", true },
- { "hapijs.cn", true },
- { "hapissl.com", true },
- { "hapivm.com", true },
{ "happndin.com", true },
{ "happy-baby.info", true },
{ "happy-end-shukatsu.com", true },
{ "happyagain.de", true },
{ "happyagain.se", true },
{ "happyandrelaxeddogs.eu", true },
+ { "happybirthdaywisher.com", true },
{ "happybounce.co.uk", true },
{ "happycarb.de", true },
{ "happycoder.net", false },
{ "happydietplan.com", true },
{ "happydoq.ch", true },
{ "happygadget.me", true },
+ { "happyhealthylifestyle.com", true },
{ "happykidscastles.co.uk", true },
{ "happylifestyle.com", true },
{ "happyschnapper.com", true },
@@ -15734,6 +16249,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "harald-pfeiffer.de", true },
{ "harapecorita.com", true },
{ "harbor-light.net", true },
+ { "hardeman.nu", true },
{ "hardenize.com", true },
{ "hardergayporn.com", true },
{ "hardertimes.com", true },
@@ -15746,11 +16262,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hardrain980.com", true },
{ "hardtfrieden.de", true },
{ "hardwareschotte.de", true },
+ { "harekaze.info", true },
{ "haribilalic.com", true },
{ "harilova.fr", true },
{ "harion.fr", true },
{ "harisht.me", false },
- { "haritsa.co.id", true },
{ "harjitbhogal.com", true },
{ "harlor.de", true },
{ "harmfarm.nl", true },
@@ -15764,7 +16280,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "harringtonca.com", true },
{ "harrisonswebsites.com", true },
{ "harrisonvillenaz.org", true },
- { "harry-baker.com", true },
{ "harrymclaren.co.uk", true },
{ "harryphoto.fr", true },
{ "harrysgardengamehire.co.uk", true },
@@ -15780,6 +16295,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "harvestapp.com", true },
{ "harvester.fr", true },
{ "harveyauzorst.com", true },
+ { "harveysautoservice.net", true },
{ "has-no-email-set.de", false },
{ "has.work", true },
{ "hasdf.de", true },
@@ -15789,10 +16305,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hash.army", true },
{ "hash.works", true },
{ "hashcat.net", true },
+ { "hashemian.com", true },
{ "hashes.org", true },
{ "hashi.dk", true },
{ "hashiconf.eu", true },
{ "hashicorp.com", true },
+ { "hashimah.ca", true },
{ "hashimoto-jimusho.com", true },
{ "hashinteractive.com", true },
{ "hashish.net", true },
@@ -15821,6 +16339,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hautaka.com", true },
{ "hautarztzentrum.ch", true },
{ "hauteslatitudes.com", true },
+ { "havarijna-sluzba-bratislava.sk", true },
{ "havasuhomepage.com", true },
{ "havasuinsurance.com", true },
{ "havasutacohacienda.com", true },
@@ -15830,15 +16349,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "haveibeenpwned.com", true },
{ "havellab.de", true },
{ "havelland-obstler.de", true },
+ { "havencyber.com", true },
{ "havenstrategies.com", true },
+ { "havernbenefits.com", true },
{ "haverstack.com", true },
{ "havetherelationshipyouwant.com", true },
{ "hawaar.com", true },
{ "hawaya.com", true },
{ "hawkeyeinsight.com", true },
{ "hawkinsonkiaparts.com", true },
- { "hawkofgeorgia.com", true },
+ { "hawkon.dk", true },
{ "hawksguild.com", true },
+ { "hawksracing.de", true },
{ "haxdroid.com", true },
{ "haxo.nl", false },
{ "hayai.space", true },
@@ -15848,13 +16370,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "haydentomas.com", true },
{ "hayfordoleary.com", true },
{ "haynes-davis.com", true },
- { "hayvid.com", true },
+ { "hayvid.com", false },
+ { "hayzepvp.us", true },
{ "haz.cat", true },
{ "haze.productions", true },
{ "hazeover.com", true },
{ "hazloconlapix.com", true },
{ "hazukilab.com", true },
{ "hb8522.com", true },
+ { "hbcu-colleges.com", true },
{ "hbkonsult.com", true },
{ "hboeck.de", true },
{ "hbpowell.com", true },
@@ -15872,10 +16396,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hdfgroup.org", true },
{ "hdguru.com", true },
{ "hdhoang.space", true },
+ { "hdkandsons.com", true },
{ "hdnastudio.com", true },
+ { "hdritalyphotos.com", true },
{ "hdrsource.com", true },
{ "hdrtranscon.com", true },
{ "hds-lan.de", true },
+ { "hdv.paris", true },
{ "heaaart.com", true },
{ "head.org", true },
{ "head.ru", true },
@@ -15884,13 +16411,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "headshopinternational.com", true },
{ "headshotharp.de", true },
{ "healey.io", true },
+ { "health-and-beauty-news.net", true },
{ "health-booster.com", true },
- { "health-match.com.au", true },
{ "health-plan-news.com", true },
{ "health.gov", true },
{ "health.graphics", true },
+ { "healthand-beautynews.net", true },
+ { "healthandskinbeauty.com", true },
{ "healthcare.gov", false },
{ "healthcultureexpo.com", true },
+ { "healthdata.gov", true },
{ "healtheals.com", true },
{ "healtheffectsofasbestos.com", true },
{ "healthery.com", true },
@@ -15900,8 +16430,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "healthiercompany.com", true },
{ "healthiergenerations.co.uk", true },
{ "healthit.gov", true },
- { "healthlabs.com", true },
- { "healthmatchapp.com", true },
{ "healthplansamerica.org", true },
{ "healthstar-dev.io", true },
{ "healthstar.io", true },
@@ -15914,13 +16442,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heap.zone", true },
{ "heapkeeper.org", true },
{ "hearmeraw.uk", true },
- { "heart.taxi", true },
+ { "heart.taxi", false },
{ "heartbeat24.de", true },
{ "heartgames.pl", true },
{ "heartlandbiomed.com", true },
{ "heartmdinstitute.com", true },
{ "heartsintrueharmony.com", true },
- { "heartsucker.com", false },
{ "hearttruth.gov", true },
{ "heartview.com.br", true },
{ "heartwoodart.com", true },
@@ -15932,10 +16459,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hearty.ooo", true },
{ "hearty.org.tw", true },
{ "hearty.taipei", true },
+ { "hearty.tw", true },
{ "hearty.us", true },
{ "heartycraft.com", true },
{ "heatershop.co.uk", true },
{ "heatingandairconditioningdallastx.com", true },
+ { "heatingpartswarehouse.co.uk", true },
{ "heavensattic.co.uk", true },
{ "heavensinferno.net", true },
{ "heavyequipments.org", true },
@@ -15943,7 +16472,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hebikhiv.nl", true },
{ "hebingying.cn", true },
{ "hebocon.nl", true },
- { "hebriff.com", true },
{ "hec-espace-entreprise.ch", true },
{ "hec.global", true },
{ "hechamano.es", true },
@@ -15958,8 +16486,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hedweb.co.uk", true },
{ "hedweb.net", true },
{ "hedweb.org", true },
- { "heeler.blue", true },
- { "heeler.red", true },
{ "heello.es", true },
{ "hefengautoparts.com", true },
{ "heftkaufen.de", true },
@@ -15974,6 +16500,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heidisheroes.org", true },
{ "heijblok.com", true },
{ "heijdel.nl", true },
+ { "heikegastmann.com", true },
{ "heikorichter.name", true },
{ "heiland.io", true },
{ "heiliger-gral.info", true },
@@ -15995,13 +16522,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hejahanif.se", true },
{ "hejianpeng.cn", true },
{ "heka.ai", true },
- { "helber-it-services.de", true },
{ "helden-spielen.de", true },
{ "heldenhalde.de", true },
{ "heldundsexgott.de", true },
{ "heleendebruyne.be", true },
{ "helenaknowledge.com", true },
{ "helencrump.co.uk", true },
+ { "helenekurtz.com", true },
{ "helenelefauconnier.com", true },
{ "helenkellersimulator.org", true },
{ "helfordriversc.co.uk", true },
@@ -16012,10 +16539,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heliosnet.com", true },
{ "heliosvoting.org", true },
{ "helix.am", true },
+ { "hellenicagora.co.uk", true },
{ "hellersgas.com", true },
{ "helles-koepfchen.de", true },
{ "helloacm.com", true },
- { "hellomouse.net", true },
+ { "hellobrian.me", true },
+ { "helloworldhost.com", false },
{ "hellsgamers.pw", true },
{ "hellsh.com", true },
{ "helmut-a-binser.de", true },
@@ -16026,7 +16555,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "helpscoutdocs.com", true },
{ "helpstarloja.com.br", true },
{ "helsinki.dating", true },
- { "helup.com", true },
{ "helvella.de", true },
{ "hematoonkologia.pl", true },
{ "hemdal.se", true },
@@ -16034,13 +16562,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hen.ne.ke", true },
{ "henchman.io", true },
{ "hendersonvalleyautomotive.co.nz", true },
+ { "hendric.us", false },
{ "hendrik.li", true },
{ "hendrinortier.nl", true },
{ "hendyisaac.com", true },
{ "hengelsportdeal.com", true },
{ "hengstumone.com", true },
{ "henkboelman.com", true },
- { "henkbrink.com", true },
+ { "henke-home.eu", true },
{ "henker.net", true },
{ "henkverlinde.com", false },
{ "henley-computer-repairs.co.uk", true },
@@ -16054,9 +16583,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "henriksen.is", true },
{ "henrikwelk.de", true },
{ "henrilammers.nl", true },
- { "henrock.net", true },
{ "henry.gg", true },
{ "henryphan.com", false },
+ { "henrysautodetail.com", true },
{ "hentaiworld.cc", true },
{ "hentschke-bau.de", true },
{ "hentschke-betonfertigteilwerk.de", true },
@@ -16064,8 +16593,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "henzenhoning.nl", true },
{ "heppler.net", true },
{ "heptafrogs.de", true },
+ { "her25.com", false },
+ { "heracles-hotel.eu", true },
{ "herbal-id.com", true },
- { "herbandpat.org", true },
{ "herberichfamily.com", true },
{ "herbert.io", true },
{ "herbhuang.com", true },
@@ -16086,6 +16616,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "herminghaus24.de", true },
{ "herndl.org", true },
{ "herni-kupony.cz", true },
+ { "hernn.com", true },
{ "herocentral.de", true },
{ "herofil.es", true },
{ "herohirehq.co.uk", true },
@@ -16093,20 +16624,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heroicpixel.com", true },
{ "heroku.com", true },
{ "herpes-no.com", true },
- { "herr-webdesign.de", true },
{ "herranzramia.com", false },
{ "herrderzeit.de", true },
{ "herrenmuehle-wein.de", true },
+ { "herringboneeats.com", true },
{ "herringsresidence.be", true },
{ "herrkaschke.com", true },
{ "herrsmith.com", true },
{ "herrtxbias.net", false },
- { "herrtxbias.org", true },
{ "hertsbouncycastles.com", true },
{ "hertz.bj", true },
{ "herzbotschaft.de", true },
{ "herzfuersoziales.at", true },
{ "herzig.cc", true },
+ { "herzogglass.com", true },
{ "hesaplama.net", true },
{ "hessen-liebe.de", true },
{ "hestervanderheijden.nl", true },
@@ -16117,8 +16648,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hesyifei.com", true },
{ "hetene.nl", true },
{ "hethely.ch", true },
+ { "hetluisterbos.be", true },
+ { "hetzflix.stream", true },
{ "heute-kaufen.de", true },
{ "heute.training", true },
+ { "heverhagen.rocks", true },
{ "hevertonfreitas.com.br", true },
{ "hex.bz", true },
{ "hex.nl", true },
@@ -16131,13 +16665,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hexicurity.com", true },
{ "hexid.me", true },
{ "hexieshe.com", true },
+ { "hexo.io", false },
{ "hexony.com", true },
{ "hexr.org", true },
+ { "hexstream.net", true },
{ "hexstream.xyz", true },
{ "hexstreamsoft.com", true },
{ "hexxagon.com", true },
- { "heyfringe.com", true },
- { "heyjournal.com", true },
{ "heywood.cloud", true },
{ "hf-tekst.nl", true },
{ "hf51.nl", true },
@@ -16145,7 +16679,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hg.gg", true },
{ "hg.python.org", true },
{ "hgbet.com", true },
- { "hgvnet.de", true },
{ "hgw168.com", true },
{ "hh-medic.com", true },
{ "hh-wolke.dedyn.io", true },
@@ -16160,7 +16693,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hicl.org", true },
{ "hicoria.com", true },
{ "hidbo.de", true },
- { "hiddendepth.ie", false },
+ { "hiddendepth.ie", true },
{ "hiddenhillselectric.com", true },
{ "hiddenhillselectrical.com", true },
{ "hiddenhillselectrician.com", true },
@@ -16176,7 +16709,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "higgsboson.tk", true },
{ "higgstools.org", true },
{ "higherpress.org", true },
- { "highland-webcams.com", true },
{ "highlatitudestravel.com", true },
{ "highlegshop.com", true },
{ "highlevelwoodlands.com", true },
@@ -16188,11 +16720,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hightechbasementsystems.com", true },
{ "highwaytohoell.de", true },
{ "higilopocht.li", true },
+ { "hijackpost.com", true },
+ { "hijoan.com", true },
{ "hikarukujo.com", true },
{ "hike.pics", true },
+ { "hikerone.com", true },
+ { "hikinggearlab.com", true },
{ "hikingguy.com", true },
{ "hilahdih.cz", true },
- { "hilaolu.studio", true },
{ "hilaryhutler.com", true },
{ "hilchenba.ch", true },
{ "hilde.link", true },
@@ -16211,11 +16746,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "himekomi.com", true },
{ "himens.com", true },
{ "hin10.com", true },
+ { "hinata-hidetoshi.com", true },
{ "hintergrundbewegung.de", true },
{ "hinterhofbu.de", true },
{ "hinterposemuckel.de", true },
- { "hiojbk.com", true },
- { "hipi.jp", true },
+ { "hiparish.org", true },
+ { "hiphop.ren", true },
{ "hippies.com.br", true },
{ "hippo.ge", true },
{ "hippomovers.com", true },
@@ -16231,7 +16767,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiratake.xyz", true },
{ "hire-a-coder.de", true },
{ "hireabouncycastle.net", true },
- { "hirefitness.co.uk", true },
{ "hiresteve.ca", true },
{ "hirevo.eu", true },
{ "hirezzportal.com", true },
@@ -16239,16 +16774,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiromuogawa.com", true },
{ "hirotaka.org", true },
{ "hirte-digital.de", true },
+ { "hirtzfr.eu", true },
{ "hirzaconsult.ro", true },
{ "hisbrucker.net", true },
{ "hisgifts.com.au", true },
{ "hisingensck.se", true },
- { "hisnet.de", true },
{ "hispanic.dating", true },
{ "histocamp.de", true },
{ "histoire-cite.ch", true },
{ "historia-arte.com", true },
- { "history.google.com", true },
+ { "history-schools.com", true },
+ { "history.google.com", false },
{ "hitandhealth.nl", true },
{ "hiteco.com", true },
{ "hititgunesi-tr.com", true },
@@ -16259,7 +16795,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hitokoto-mania.com", true },
{ "hitokoto.cn", true },
{ "hitomecha.com", true },
- { "hitrek.ml", true },
{ "hitter-lauzon.com", true },
{ "hitter.family", true },
{ "hitterfamily.com", true },
@@ -16267,14 +16802,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiv.com.tw", true },
{ "hiv.gov", true },
{ "hivatalinfo.hu", true },
- { "hiverlune.net", true },
+ { "hiverlune.net", false },
{ "hiwiki.tk", true },
{ "hiyacar.co.uk", true },
{ "hiyobi.me", true },
+ { "hiyuki2578.net", true },
{ "hizzacked.xxx", true },
{ "hj-mosaiques.be", true },
{ "hj.rs", true },
- { "hj2999.com", true },
{ "hj3455.com", true },
{ "hjartasmarta.se", true },
{ "hjkbm.cn", true },
@@ -16300,7 +16835,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hlidacnajemneho.cz", true },
{ "hlin.cloud", true },
{ "hlinformatics.nl", true },
- { "hloe0xff.ru", true },
{ "hlsmandarincentre.com", true },
{ "hlucas.de", true },
{ "hm773.net", true },
@@ -16311,6 +16845,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hmsseahawk.com", true },
{ "hn.search.yahoo.com", false },
{ "hnfertilizermachine.com", true },
+ { "hnn.net.br", true },
{ "hnonline.sk", true },
{ "hnwebi.com", true },
{ "hnyp.hu", true },
@@ -16326,7 +16861,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hochzeitsfotograf-deinfoto.ch", true },
{ "hochzeitsgezwitscher.de", true },
{ "hochzeitsplanerin-hamburg.de", true },
- { "hockey.academy", true },
{ "hockeyapp.ch", true },
{ "hockeymotion.ch", true },
{ "hodgephotography.com", true },
@@ -16337,6 +16871,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hoepli.it", true },
{ "hoeren.club", true },
{ "hoesnelwasik.nl", true },
+ { "hoeveiligismijn.nl", true },
{ "hoevenstein.nl", true },
{ "hoewler.ch", true },
{ "hoezzi.nl", true },
@@ -16344,18 +16879,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hofapp.de", true },
{ "hofauer.de", true },
{ "hoflerlawfirm.com", true },
- { "hogepad.com", true },
{ "hogl.dk", true },
{ "hogrebe.de", true },
{ "hogwarts.io", true },
{ "hohenleimbach.de", true },
{ "hohm.in", true },
+ { "hoikuen-now.top", true },
{ "hoiquanadida.com", true },
+ { "hoish.in", true },
{ "hoken-wakaru.jp", true },
{ "hokieprivacy.org", true },
{ "hokify.at", true },
{ "hokify.ch", true },
{ "hokify.de", true },
+ { "hokioisecurity.com", true },
{ "holad.de", true },
{ "holboxwhalesharktours.com", true },
{ "holebedeljek.hu", true },
@@ -16378,9 +16915,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "holoxplor.space", true },
{ "holstphoto.com", true },
{ "holvonix.com", true },
+ { "holycrossphl.org", true },
+ { "holycrossverobeach.org", true },
{ "holydragoon.jp", true },
+ { "holyfamilyphilly.org", true },
+ { "holyfamilyrussell.org", true },
+ { "holyghost-church.org", true },
{ "holygrail.games", true },
{ "holyhiphopdatabase.com", true },
+ { "holymartyrschurch.org", true },
+ { "holyspiritpalmyra.com", true },
+ { "holyspiritweb.org", true },
{ "holytransaction.com", true },
{ "holywhite.com", true },
{ "holz.nu", true },
@@ -16392,29 +16937,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "holzundgarten.de", true },
{ "holzvergaser-forum.de", true },
{ "homatism.com", true },
+ { "home-handymen.co.uk", true },
{ "home-insurance-quotes.tk", true },
{ "homeautomated.com", true },
{ "homebasedsalons.com.au", true },
{ "homebodyalberta.com", true },
{ "homecareassociatespa.com", true },
- { "homecarpetcleaning.co.uk", true },
{ "homecheck.gr", true },
{ "homefacialpro.com", false },
{ "homegardeningforum.com", true },
{ "homegardenresort.nl", true },
{ "homegreenmark.com", true },
{ "homehuntertoronto.com", true },
- { "homehunting.pt", true },
{ "homeimagician.com.au", true },
{ "homem-viril.com", true },
{ "homeodynamics.com", true },
- { "homeoesp.org", true },
{ "homeofjones.net", true },
{ "homeogenium.com", true },
{ "homeownersinsurancenevada.com", true },
{ "homeownersinsurancenv.com", true },
{ "homepage.shiga.jp", true },
+ { "homeporn.stream", true },
{ "homeprivate.de", true },
+ { "homes-in-norcal.com", true },
+ { "homes-in-stockton.com", true },
{ "homeseller.com", true },
{ "homeserver-kp.de", true },
{ "homesteadandprepper.com", true },
@@ -16429,6 +16975,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "honda-centrum.cz", true },
{ "hondart.cz", true },
{ "hondenoppasfraneker.nl", true },
+ { "honey.beer", true },
{ "honey.is", true },
{ "honeybadger.io", false },
{ "honeycome.net", true },
@@ -16437,17 +16984,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "honeypot.net", true },
{ "hong.io", true },
{ "hongoi.com", true },
+ { "honkion.net", true },
{ "honovere.de", true },
{ "hontoir.eu", true },
{ "hoodtrader.com", true },
{ "hoofddorp-centraal.nl", true },
{ "hookany.com", true },
+ { "hoooc.com", true },
{ "hooowl.com", true },
{ "hoop.la", true },
{ "hoopertechnicalsolutions.com", true },
{ "hooplessinseattle.com", true },
+ { "hooray.beer", true },
{ "hoorr.com", true },
{ "hootworld.net", false },
+ { "hoovism.com", true },
{ "hoowhen.cn", true },
{ "hopconseils.ch", true },
{ "hopconseils.com", true },
@@ -16455,24 +17006,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hopesanddreams.org.uk", true },
{ "hopla.sg", true },
{ "hoplongtech.com", true },
+ { "hoponmedia.de", true },
{ "hopps.me", true },
{ "hoppyx.com", true },
{ "hor.website", true },
{ "horaceli.com", true },
- { "horackova.info", true },
+ { "horairetrain.fr", true },
{ "hord.ca", true },
{ "horecaapparatuurkobezuijen.nl", true },
{ "horecatiger.eu", true },
+ { "horeco.com", true },
{ "horeizai.net", true },
{ "horizonhomes-samui.com", true },
{ "horizonlawncare.tk", true },
+ { "horizonresourcesinc.com", true },
{ "horizonshypnosis.ca", true },
- { "horkel.cf", true },
{ "horn.co", true },
{ "hornertranslations.com", true },
{ "hornyforhanzo.com", true },
{ "horodance.dk", true },
{ "horrell.ca", true },
+ { "horror-forum.de", true },
{ "horrormovies.gr", true },
{ "horsehunter.co.uk", true },
{ "horstmanshof.eu", true },
@@ -16486,6 +17040,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hosiet.me", true },
{ "hosmussynergie.nl", false },
{ "hospitalhomelottery.org", true },
+ { "hospitality-colleges.com", true },
{ "hostadvice.com", true },
{ "hostarea51.com", true },
{ "hostcoz.com", true },
@@ -16494,6 +17049,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hostedtalkgadget.google.com", true },
{ "hostfission.com", true },
{ "hostgigz.com", true },
+ { "hostico.ro", true },
+ { "hostinecpodlipou.cz", true },
{ "hosting-swiss.ch", true },
{ "hostingactive.it", true },
{ "hostinghelp.guru", true },
@@ -16504,15 +17061,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hostingsolutions.cz", true },
{ "hostix.de", true },
{ "hostma.ma", true },
+ { "hostmark.pl", true },
{ "hostme.co.il", false },
{ "hostmijnpagina.nl", true },
{ "hostmodern.com.au", true },
{ "hosts.cf", true },
{ "hostserv.org", true },
+ { "hostworkz.com", true },
{ "hotcandlestick.com", true },
{ "hotchillibox.com", true },
{ "hotcoin.io", true },
{ "hotdoc.com.au", true },
+ { "hotel-kontorhaus-stralsund.de", true },
+ { "hotel-kontorhaus.de", true },
{ "hotel-kronjuwel.de", true },
{ "hotel-le-vaisseau.ch", true },
{ "hotel-pension-sonnalp.eu", true },
@@ -16525,6 +17086,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hotello.io", true },
{ "hotelmap.com", true },
{ "hotelpostaorvieto.it", true },
+ { "hotelromacuernavaca.com.mx", true },
{ "hotels-insolites.com", true },
{ "hotels3d.com", true },
{ "hotels4teams.com", true },
@@ -16533,8 +17095,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hotelsinncoventry.com", true },
{ "hotelvalena.com", true },
{ "hotelvillaluisa.de", true },
- { "hotesb.com", true },
- { "hotesb.net", true },
{ "hothbricks.com", true },
{ "hotnewhiphop.com", true },
{ "hoto.us", true },
@@ -16563,6 +17123,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "houstoncreditlaw.com", true },
{ "houstontxlocksmiths.com", true },
{ "houtinee.com", true },
+ { "hoverboardbarato.com", true },
{ "how2play.pl", true },
{ "howa-n.net", true },
{ "howardtyson.com", true },
@@ -16581,7 +17142,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "howtogeek.com", true },
{ "howtogeekpro.com", true },
{ "howtogosolar.org", true },
- { "howtoinstall.co", true },
{ "howtolaser.com", true },
{ "howtoteachviolin.com", true },
{ "howtotech.de", true },
@@ -16589,6 +17149,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hp-work.net", true },
{ "hp42.de", true },
{ "hpac-portal.com", true },
+ { "hpage.com", true },
{ "hpbn.co", true },
{ "hpepub.com", true },
{ "hpisavageforum.com", true },
@@ -16609,13 +17170,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hreflang.info", true },
{ "hrjfeedstock.com", true },
{ "hrjfeedstock.org", true },
- { "hrk.io", true },
- { "hrobert.hu", true },
{ "hroling.nl", true },
{ "hroschyk.cz", true },
+ { "hrsa.gov", true },
{ "hrstapps-dev.com", true },
{ "hrtech.shop", true },
- { "hru.gov", true },
{ "hryniewski.net", true },
{ "hryx.net", true },
{ "hs-arbeitsschutz.de", true },
@@ -16651,6 +17210,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "htmlyse.com", true },
{ "htmue.net", true },
{ "htmue.org", true },
+ { "htp2.top", true },
{ "htsure.ma", true },
{ "http2.eu", true },
{ "http2.pro", true },
@@ -16658,6 +17218,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "https.dk", true },
{ "https.jetzt", true },
{ "https4all.org", true },
+ { "httpsalarm.com", true },
{ "httpsecured.net", true },
{ "httpsecurityreport.com", true },
{ "httpsiseasy.com", true },
@@ -16673,26 +17234,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hu8588.com", true },
{ "hu8777.com", true },
{ "hu8bet.com", true },
- { "hua-in.com", true },
- { "hua-in.net", true },
- { "hua-li88.com", true },
- { "hua-li88.net", true },
+ { "hu8hu8.com", true },
{ "huagati.com", true },
{ "huahinpropertylisting.com", true },
+ { "huang-haitao.com", true },
{ "huangjiaint.com", true },
{ "huangjingjing.com", true },
{ "huangliangbo.com", true },
- { "huangting.me", true },
{ "huangzenghao.cn", false },
{ "huaqian.art", true },
{ "huashan.co.uk", true },
- { "huaxueba.com", true },
{ "hub.org.ua", true },
{ "hub385.com", true },
{ "hubapi.com", true },
{ "huber-informatik.de", true },
{ "hubok.net", true },
- { "hubrecht.at", true },
{ "hubspot.com", true },
{ "huchet.me", true },
{ "hudebnibazarmixer.cz", true },
@@ -16708,6 +17264,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hugi.is", true },
{ "hugizrecords.com", true },
{ "huglen.info", true },
+ { "hugo.pro", true },
{ "hugo6.com", true },
{ "hugofs.com", true },
{ "hugolynx.fr", true },
@@ -16715,9 +17272,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "huguesditciles.com", true },
{ "huh.gdn", true },
{ "huh.today", true },
- { "hui-in.com", true },
- { "hui-in.net", true },
- { "huihui.moe", true },
+ { "huininga.com", true },
+ { "huininga.nl", true },
+ { "huininga.org", true },
{ "huirongis.me", true },
{ "huisartsenpraktijkheemraadssingel.nl", true },
{ "huisartsenpraktijksonmezer.nl", true },
@@ -16732,14 +17289,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hulldevs.net", true },
{ "hulpbijmarketing.nl", true },
{ "hulpmiddelenshop.nl", true },
- { "hulsoft.co.uk", true },
{ "human-clone.com", true },
{ "humanenrich.com", true },
{ "humanesources.com", true },
{ "humanity.com", true },
- { "humankode.com", true },
{ "humans.io", true },
{ "humanzee.com", true },
+ { "humass.nl", true },
{ "humblebee.at", true },
{ "humblebee.be", true },
{ "humblebee.bg", true },
@@ -16750,7 +17306,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "humblebee.com.ph", true },
{ "humblebee.cz", true },
{ "humblebee.dk", true },
- { "humblebee.es", true },
{ "humblebee.eu", true },
{ "humblebee.foundation", true },
{ "humblebee.fr", true },
@@ -16766,10 +17321,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "humblebeeshop.ca", true },
{ "humblebeeshop.com.au", true },
{ "humbledot.com", true },
+ { "humboldthomeguide.com", true },
{ "humboldtmfg.com", true },
{ "humeur.de", true },
+ { "humexe.com", true },
{ "hummy.tv", true },
{ "humorcaliente.com", true },
+ { "humorce.com", false },
{ "humpchies.com", true },
{ "humpen.se", true },
{ "humppakone.com", true },
@@ -16778,13 +17336,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hundesport-psvhalle.de", true },
{ "hundeverwaltung.de", true },
{ "hundter.com", true },
+ { "hunger.im", true },
+ { "huniverse.co", true },
{ "hunstoncanoeclub.co.uk", true },
- { "hunter-read.com", true },
{ "hunter.io", true },
+ { "hunterjohnson.io", true },
{ "hunterkehoe.com", true },
{ "huntexpired.com", true },
{ "huntingdonbouncers.co.uk", true },
{ "huntingdonlifesciences.com", true },
+ { "huntshomeinspections.com", false },
{ "huntsmansecurity.com", true },
{ "huntsvillecottage.ca", true },
{ "huonit.com.au", true },
@@ -16794,7 +17355,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "huren.nl", true },
{ "hurleyhomestead.com", true },
{ "huroji.com", true },
- { "hurricanelabs.com", false },
{ "hurtigtinternet.dk", true },
{ "husakbau.at", true },
{ "hushfile.it", true },
@@ -16823,11 +17383,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hwaddress.com", true },
{ "hwag-pb.de", true },
{ "hwinfo.com", true },
+ { "hwlibre.com", true },
{ "hx53.de", true },
{ "hxp.io", true },
{ "hxsf.me", true },
{ "hxying.com", true },
- { "hybridragon.net", true },
{ "hybridworx.com", true },
{ "hybridworx.de", true },
{ "hybridworx.eu", true },
@@ -16841,7 +17401,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hydrazin.pw", true },
{ "hydro17.com", true },
{ "hydroagro.pl", true },
- { "hydrocloud.net", true },
{ "hydrographicsocietybenelux.eu", true },
{ "hydroturbine.info", true },
{ "hydrozone.fr", true },
@@ -16849,12 +17408,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hygo.com", true },
{ "hyk.me", true },
{ "hylemorphica.org", true },
- { "hylians.com", true },
{ "hynek.me", true },
{ "hyparia.fr", true },
{ "hype.ru", true },
{ "hypemgmt.com", true },
{ "hyper-text.org", true },
+ { "hyperactive.am", true },
{ "hyperalgesia.com", true },
{ "hyperautomotive.com.au", true },
{ "hyperbolic-mayonnaise-interceptor.ovh", true },
@@ -16870,9 +17429,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hypotheekbond.nl", true },
{ "hypothes.is", true },
{ "hypothyroidmom.com", true },
+ { "hysh.jp", true },
+ { "hytzongxuan.com", true },
{ "hyundai.no", true },
{ "hyvanilmankampaamo.fi", true },
{ "hyvinvointineuvoja.fi", true },
+ { "hztgzz.com", true },
{ "i-aloks.ru", true },
{ "i-geld.de", true },
{ "i-hakul.net", true },
@@ -16887,15 +17449,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "i-telligence.de", true },
{ "i-verbi.it", true },
{ "i00.eu", true },
- { "i1314.gdn", false },
+ { "i1314.gdn", true },
{ "i1place.com", true },
{ "i2b.ro", true },
{ "i5y.co.uk", true },
{ "i5y.org", true },
{ "i66.me", true },
{ "i879.com", true },
+ { "i95.me", false },
{ "ia.net", true },
{ "iaco.li", true },
+ { "iacono.com.br", false },
{ "iactu.info", true },
{ "iaeste.no", true },
{ "iaeste.or.jp", true },
@@ -16904,20 +17468,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iainsimms.co.uk", true },
{ "iainsimms.com", true },
{ "iainsimms.me", true },
+ { "iaitouzi.com", true },
{ "ialis.me", true },
{ "iam.lc", true },
{ "iam.soy", true },
+ { "iamanewme.com", true },
{ "iambozboz.co.uk", true },
{ "iamcarrico.com", true },
+ { "iamcryptoki.com", true },
{ "iamhansen.xyz", true },
+ { "iaminashittymood.today", true },
{ "iamjoshellis.com", true },
{ "iamlbk.com", true },
+ { "iamlizu.com", true },
{ "iamlzh.com", true },
{ "iamtheib.me", true },
{ "iamtonyarthur.com", true },
{ "iamusingtheinter.net", true },
{ "iamwoodbeard.com", true },
- { "ian.sh", true },
+ { "ianbrault.com", true },
{ "iandouglasscott.com", true },
{ "iane-ccs.com", true },
{ "ianix.com", true },
@@ -16937,23 +17506,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ibaq.nl", true },
{ "ibauruapan.com.mx", true },
{ "ibcmed.org", true },
+ { "ibe.de", true },
{ "iberiaversicherungen.com", true },
{ "ibericaderedes.es", true },
{ "ibexcore.com", true },
{ "ibigawamizueco.com", true },
{ "ibin.co", true },
{ "ibiz.mk", true },
+ { "iblackfriday.ro", true },
{ "ibodyiq.com", true },
- { "ibpegasus.tk", true },
{ "ibrainmedicine.org", true },
{ "ibrom.eu", true },
{ "ibstyle.tk", true },
{ "ibuki.run", true },
{ "ibwc.gov", true },
+ { "ibykos.com", true },
{ "ic-lighting.com.au", true },
{ "ic-spares.com", true },
{ "ic3.gov", true },
- { "icabanken.se", true },
{ "icafecash.com", true },
{ "icake.life", true },
{ "icanhasht.ml", true },
@@ -16966,24 +17536,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "icebook.co.uk", true },
{ "icecars.net", true },
{ "icedream.tech", true },
- { "ich-hab-die-schnauze-voll-von-der-suche-nach-ner-kurzen-domain.de", true },
+ { "icetiger.eu", true },
{ "ich-tanke.de", true },
{ "ichasco.com", true },
{ "ichbinein.org", true },
{ "ichbinkeinreh.de", true },
{ "ichmachdas.net", true },
- { "ickerseashop.com", true },
{ "iclart.com", true },
{ "iclinic.ua", true },
{ "icloudlogin.com", true },
{ "icmhd.ch", true },
{ "icmp2018.org", true },
- { "icnsoft.me", true },
- { "icnsoft.org", true },
+ { "icmshoptrend.com", true },
{ "icobench.com", true },
{ "icodeconnect.com", true },
{ "icoh.it", true },
{ "iconomi.net", true },
+ { "icowhitepapers.co", true },
{ "icpc.pp.ua", true },
{ "icq-project.net", true },
{ "icsadviseurs.nl", true },
@@ -17022,9 +17591,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "idealtruss.com.tw", true },
{ "idealwhite.space", true },
{ "ideaman924.com", true },
+ { "ideasenfoto.com", true },
{ "ideashop.com", true },
{ "ideaweb.de", true },
- { "ideiasefinancas.com.br", true },
{ "idenamaislami.com", true },
{ "idensys.nl", false },
{ "ident-clinic.be", true },
@@ -17032,8 +17601,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "identifyme.net", true },
{ "identigraf.center", true },
{ "identity.plus", true },
+ { "identitytheft.gov", true },
{ "idered.net", true },
{ "idesignstudio.de", true },
+ { "idesoft.cloud", true },
+ { "idesoftinnovacion.com", true },
+ { "idesoftinnovacion.es", true },
{ "idexxpublicationportal.com", true },
{ "idfy.io", true },
{ "idgard.de", false },
@@ -17065,6 +17638,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "idubaj.cz", true },
{ "idunno.org", true },
{ "idvl.de", true },
+ { "idxforza.com", true },
{ "ie.search.yahoo.com", false },
{ "iea-annex61.org", true },
{ "ieedes.com", true },
@@ -17079,19 +17653,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ies-italia.it", true },
{ "ieval.ro", true },
{ "iewar.com", true },
- { "ifamily.top", false },
{ "ifangpei.cn", true },
{ "ifangpei.com.cn", true },
{ "ifcfg.jp", true },
{ "ifelse.io", true },
{ "ifengge.cn", true },
{ "ifengge.me", true },
+ { "ifgcdn.com", true },
{ "ifibe.com", true },
{ "ifightsurveillance.com", true },
{ "ifightsurveillance.net", true },
{ "ifightsurveillance.org", true },
{ "ifixe.ch", true },
{ "iflare.de", true },
+ { "ifly.pw", true },
{ "ifort.fr", true },
{ "ifosep.fr", true },
{ "ifoss.me", true },
@@ -17104,7 +17679,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ifxd.bid", true },
{ "ifyou.live", true },
{ "ig.com", true },
- { "igaryhe.io", true },
+ { "iga-semi.jp", true },
{ "igcc.jp", true },
{ "igeh-immo.at", true },
{ "igglabs.com", true },
@@ -17125,6 +17700,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ignet.gov", true },
{ "ignitedlocal.com", true },
{ "ignitedmindz.in", true },
+ { "ignitelocal.com", true },
+ { "igorrealestate.com", true },
{ "igorw.org", true },
{ "igotoffer.com", false },
{ "igrivi.com", true },
@@ -17134,31 +17711,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ihacklabs.com", true },
{ "ihakkitekin.com", true },
{ "ihatethissh.it", true },
- { "ihc.im", true },
+ { "ihcr.top", true },
{ "ihkk.net", true },
{ "ihls.stream", true },
{ "ihls.world", true },
- { "ihls.xyz", true },
{ "ihoey.com", true },
{ "ihollaback.org", true },
{ "ihopeit.works", true },
{ "ihostup.net", true },
+ { "ihotel.io", false },
{ "ihrhost.com", true },
{ "ihtdenisjaccard.com", true },
{ "ii74.com", true },
{ "iiit.pl", true },
+ { "iimarckus.org", true },
{ "iiong.com", false },
{ "iirii.com", true },
{ "iix.se", true },
{ "ijm.io", true },
{ "ijohan.nl", true },
+ { "ijr.com", true },
{ "ijsblokjesvormen.nl", true },
{ "ijsclubtilburg.nl", true },
+ { "ijsclubwanneperveen.nl", true },
{ "ijunohana.jp", true },
+ { "ik-life.com", true },
{ "ikachalife.com", true },
{ "ikarate.ru", true },
{ "ikarr.com", true },
{ "ikeacareers.co.uk", true },
+ { "ikebuku.ro", true },
{ "ikebukuro-shame.com", true },
{ "ikedaquotes.org", true },
{ "ikespta.com", true },
@@ -17172,9 +17754,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ikkev.de", true },
{ "ikkoku.de", true },
{ "iklive.org", false },
+ { "ikraenglish.com", true },
{ "ikulist.me", true },
+ { "ikumi.us", true },
+ { "ikuuuu.com", true },
{ "ikvts.de", true },
{ "ikwilthepiratebay.org", true },
+ { "ikxkx.com", true },
{ "ila.fi", true },
{ "ilamparas.at", true },
{ "ilamparas.co.uk", true },
@@ -17188,7 +17774,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ile-sapporo.jp", true },
{ "ileci.de", true },
{ "ilektronika-farmakeia-online.gr", true },
- { "ilemonrain.com", false },
{ "ilhan.name", true },
{ "ilhansubasi.com", true },
{ "iliastsi.net", true },
@@ -17209,24 +17794,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "illumed.net", true },
{ "illuminationis.com", true },
{ "illusionephemere.com", true },
+ { "illusionunlimited.com", true },
{ "illustrate.biz", true },
{ "illuxat.com", true },
{ "ilmataat.ee", true },
{ "ilmiobusinessonline.it", true },
{ "ilmiogiardiniere.it", true },
{ "ilmuk.org", false },
+ { "ilonewolfs.com", true },
{ "ilookz.nl", true },
{ "ilove.fish", true },
+ { "ilovequiz.ru", true },
+ { "ilovethiscampsite.com", true },
{ "ilrg.com", true },
- { "iltisim.ch", true },
+ { "iltec-prom.ru", true },
+ { "iltec.ru", true },
{ "ilweb.es", true },
{ "ilya.pp.ua", true },
{ "im-c-shop.com", true },
+ { "im-haus-sonnenschein.de", true },
{ "im2net.com", true },
+ { "im4h.de", true },
+ { "im4h.eu", true },
+ { "im4h.info", true },
{ "im66.net", true },
{ "ima-tourcoing.fr", true },
{ "imacs.org", true },
- { "imadalin.ro", true },
{ "image-drive.de", true },
{ "imagebin.ca", true },
{ "imagefu.com", true },
@@ -17243,6 +17836,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imanageproducts.co.uk", true },
{ "imanageproducts.uk", true },
{ "imanesdeviaje.com", true },
+ { "imanolbarba.net", true },
+ { "imap2imap.de", true },
{ "imaple.org", true },
{ "imarkethost.co.uk", true },
{ "imask.ml", true },
@@ -17250,6 +17845,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imbianchino.roma.it", true },
{ "imbushuo.net", true },
{ "imcsx.co", true },
+ { "imdemos.com", true },
+ { "ime.moe", true },
{ "imedes.de", true },
{ "imediafly.com", true },
{ "imedikament.de", true },
@@ -17259,6 +17856,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imex-dtp.com", true },
{ "imforza.com", true },
{ "img.mg", true },
+ { "img.ovh", true },
{ "imga.ch", true },
{ "imgaa.com", true },
{ "imgbb.com", true },
@@ -17280,10 +17878,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "immatix.xyz", true },
{ "immersion-pictures.com", true },
{ "immersivewebportal.com", true },
+ { "immigrantdad.com", true },
{ "immigrationdirect.com.au", true },
{ "immo-agentur.com", true },
{ "immo-passion.net", true },
- { "immobiliarecapitani.com", true },
{ "immobilien-badlippspringe.de", true },
{ "immobilien-in-istanbul.de", true },
{ "immobilien-zirm.de", true },
@@ -17302,14 +17900,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "impakho.com", true },
{ "impas.se", true },
{ "impelup.com", true },
+ { "impendulo.org", true },
{ "imperdin.com", true },
{ "imperial-legrand.com", true },
{ "imperialmiami.com", true },
+ { "imperiodigital.online", true },
{ "imperiumglass.com.au", true },
{ "imperiumnova.info", true },
{ "impex.com.bd", true },
{ "impiantistica.org", true },
{ "implantologie-dr-loeck.de", true },
+ { "implicitdenial.com", true },
{ "imponet.com.ar", true },
{ "import-shopping.de", true },
{ "importsagt.com", true },
@@ -17322,6 +17923,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "impresa-pulizie.it", true },
{ "impresadipulizie.roma.it", true },
{ "impresaedile.roma.it", true },
+ { "impressivebison.eu", true },
{ "imprimante-3d-store.fr", true },
{ "improfestival.ee", true },
{ "improklinikken.dk", true },
@@ -17369,7 +17971,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "includesubdomains2.preloaded.test", true },
{ "incoherent.ch", true },
{ "incommon.io", true },
- { "incompliance.de", true },
{ "inconcerts.de", true },
{ "incontrixsingle.net", true },
{ "incowrimo.org", true },
@@ -17383,25 +17984,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "independent-operators.com", true },
{ "index-games.com", true },
{ "index-mp3.com", true },
- { "indexyz.me", true },
{ "indiaflowermall.com", true },
{ "indian-elephant.com", true },
- { "indianaantlersupply.com", true },
{ "indianaberry.com", true },
+ { "indianafoundationpros.com", true },
{ "indianapolislocksmithinc.com", true },
{ "indiatrademarkwatch.com", true },
- { "indiawise.co.uk", true },
{ "indiayogastudio.net", true },
{ "indicateurs-flash.fr", true },
+ { "indie.dog", true },
+ { "indiecongdr.it", true },
{ "indiegame.space", true },
{ "indievelopment.nl", true },
{ "indigitalagency.com", true },
{ "indigoinflatables.com", true },
{ "indigosakura.com", true },
- { "indiraactive.com", true },
+ { "indigotreeservice.com", true },
{ "inditip.com", true },
- { "indochina.io", true },
- { "indogerman.de", true },
+ { "indogerman.de", false },
{ "indogermanstartup.com", true },
{ "indogermantrade.de", true },
{ "indoorcomfortteam.com", true },
@@ -17413,6 +18013,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "indust.me", true },
{ "industriafranchini.com", true },
{ "industrialstarter.com", true },
+ { "industriemeister.io", true },
{ "indybay.org", true },
{ "ineardisplay.com", true },
{ "inebula.it", true },
@@ -17421,7 +18022,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inesfinc.es", true },
{ "inesta.nl", true },
{ "inet.se", true },
- { "inetpub.cn", true },
{ "inetserver.eu", true },
{ "inetsoftware.de", true },
{ "inevitavelbrasil.com.br", true },
@@ -17432,6 +18032,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inficom.org", true },
{ "infinite.hosting", true },
{ "infinitegroup.info", true },
+ { "infinitescript.com", true },
{ "infinitiofallentownparts.com", true },
{ "infinitiofaugustaparts.com", true },
{ "infinitioflynnwoodparts.com", true },
@@ -17454,6 +18055,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infmed.com", true },
{ "info-beamer.com", true },
{ "info-d-74.com", true },
+ { "info-screen-usercontent.me", true },
{ "info-screen.me", true },
{ "info-screw.com", true },
{ "infobae.com", true },
@@ -17461,6 +18063,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infocommsociety.com", true },
{ "infocon.org", true },
{ "infocusvr.net", true },
+ { "infogram.com", true },
{ "infogrfx.com", true },
{ "infomegastore.com", true },
{ "infomir.eu", true },
@@ -17484,32 +18087,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infosimmo.com", true },
{ "infotainworld.com", true },
{ "infotolium.com", true },
+ { "infotrac.net", true },
{ "infotune.nl", true },
{ "infovision-france.com", true },
{ "infoweb.ee", true },
{ "infr.red", true },
{ "infra.land", true },
{ "infra.press", true },
+ { "infrabeep.com", true },
+ { "infraclass.com", true },
+ { "infradrop.com", true },
{ "infrafire.com", true },
{ "infraflip.com", true },
{ "infraflux.com", true },
{ "infrafusion.com", true },
+ { "infralist.com", true },
+ { "inframetro.com", true },
+ { "inframint.com", true },
{ "infranium.com", true },
{ "infranium.eu", true },
{ "infranium.info", true },
{ "infranium.net", true },
{ "infranium.org", true },
{ "infranotes.com", true },
+ { "infranox.com", true },
{ "infrapass.com", true },
+ { "infrapilot.com", true },
+ { "infraping.com", true },
{ "infrapirtis.lt", true },
+ { "infrarank.com", true },
{ "infrarank.net", true },
+ { "infraspin.com", true },
+ { "infratank.com", true },
{ "infrathink.com", true },
+ { "infravideo.com", true },
+ { "infrazine.com", true },
{ "infuzeit.com.au", true },
{ "ing-buero-junk.de", true },
- { "ing89.cc", true },
- { "ing89.com", true },
{ "ingatlanjogaszok.hu", true },
{ "ingatlanneked.hu", true },
+ { "ingatlanrobot.hu", true },
{ "ingber.com", true },
{ "inge-r.nl", true },
{ "ingeeibach.de", true },
@@ -17537,6 +18154,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ink.horse", true },
{ "inkable.com.au", true },
{ "inkeliz.com", true },
+ { "inkhor.se", true },
{ "inkontriamoci.com", true },
{ "inksay.com", true },
{ "inkspire.co.uk", true },
@@ -17547,7 +18165,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inmaps.xyz", true },
{ "inmatefinancial.com", true },
{ "inmateintake.com", true },
- { "inme.ga", true },
{ "inmobillium.fr", true },
{ "inmoodforsex.com", true },
{ "inmusrv.de", true },
@@ -17555,12 +18172,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "innerlightcrystals.co.uk", true },
{ "innermostparts.org", true },
{ "innersafe.com", true },
+ { "inno.ch", true },
{ "innocenceseekers.net", true },
{ "innohb.com", true },
{ "innolabfribourg.ch", true },
{ "innoloop.com", true },
{ "innophate-security.com", true },
{ "innot.net", true },
+ { "innotas.com", true },
{ "innoteil.com", true },
{ "innovaptor.at", true },
{ "innovaptor.com", true },
@@ -17571,8 +18190,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "innsalzachsingles.de", true },
{ "innwan.com", true },
{ "inoa8.com", true },
+ { "inobun.jp", true },
{ "inovat.ma", true },
- { "inovatec.com", true },
{ "inovatecsystems.com", true },
{ "inpas.co.uk", true },
{ "inquant.de", true },
@@ -17586,8 +18205,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "insertcoins.net", true },
{ "insgesamt.net", true },
{ "inshapenutrition.com.br", true },
+ { "insho.fashion", true },
{ "inside19.com", true },
{ "insideaudit.com", true },
+ { "insidebedroom.com", true },
+ { "insidesolutions.nl", true },
{ "insidethefirewall.tk", true },
{ "insightera.co.th", true },
{ "insighti.com", true },
@@ -17600,8 +18222,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "insolent.ch", true },
{ "insolved.com", true },
{ "insping.com", true },
- { "inspirationalquotesuk.co.uk", true },
+ { "inspired-creations.co.za", true },
{ "inspired-lua.org", true },
+ { "inspiredrealtyinc.com", true },
{ "insrt.uk", true },
{ "insside.net", true },
{ "instafind.nl", true },
@@ -17615,8 +18238,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "instant.io", true },
{ "instantkhabar.com", true },
{ "instava.cz", true },
- { "instawi.com", true },
{ "instead.com.au", true },
+ { "insteagle.com", true },
{ "instela.com", true },
{ "instelikes.com.br", true },
{ "instics.com", true },
@@ -17624,13 +18247,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "instinctiveads.com", true },
{ "institut-confucius-montpellier.org", true },
{ "institutmaupertuis.hopto.org", true },
- { "institutolancaster.com", false },
+ { "institutolancaster.com", true },
{ "instrumart.ru", false },
{ "insult.es", true },
{ "insurance321.com", true },
{ "insureon.com", true },
{ "insurgentsmustdie.com", true },
- { "int-ma.in", true },
{ "intae.it", true },
{ "intafe.co.jp", true },
{ "intal.info", true },
@@ -17643,44 +18265,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "integratedintegrations.xyz", true },
{ "integratedmedicalonline.com", true },
{ "integrateur-web-paris.com", true },
- { "integraxor.com.tw", true },
{ "integrity.gov", true },
{ "integrityokc.com", true },
{ "integrityoklahoma.com", true },
{ "integrogroup.com", true },
{ "integromat.com", true },
{ "intelhost.cl", true },
+ { "intelhost.com", true },
{ "intelhost.com.ar", true },
{ "intelhost.com.br", true },
{ "intelhost.com.co", true },
{ "intelhost.com.mx", true },
{ "intelhost.com.pe", true },
- { "intelhost.net", true },
{ "intellar.com", true },
{ "intellectdynamics.com", true },
- { "intelliance.eu", true },
{ "intelligence-explosion.com", true },
{ "intellinetixvibration.com", true },
{ "intelly.nl", true },
{ "intelly365.nl", true },
{ "intencje.pl", true },
+ { "intensifyrsvp.com.au", true },
{ "inter-corporate.com", true },
{ "inter-culinarium.com", true },
{ "interaffairs.com", true },
{ "interaktiva.fi", true },
{ "interasistmen.se", true },
{ "interchangedesign.com", true },
- { "interchanges.io", true },
{ "intercom.com", true },
{ "intercom.io", true },
{ "interessiert-uns.net", true },
{ "interfesse.net", true },
- { "interfloraservices.co.uk", true },
{ "interflores.com.br", true },
+ { "interfug.de", true },
{ "intergozd.si", true },
{ "interiery-waters.cz", true },
{ "interimages.fr", true },
+ { "interior-design-colleges.com", true },
{ "interiordesignsconcept.com", true },
+ { "interiorprofesional.com.ar", true },
{ "interisaudit.com", true },
{ "interlingvo.biz", true },
{ "intermax.nl", true },
@@ -17691,10 +18313,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "international-books.org", true },
{ "international-nash-day.com", true },
{ "internationalfashionjobs.com", true },
+ { "internationalschool.it", true },
{ "internationalschoolnewyork.com", true },
{ "internationaltalento.it", true },
{ "internect.co.za", true },
{ "internet-aukcion.info", true },
+ { "internet-pornografie.de", false },
{ "internet-software.eu", true },
{ "internetaanbieders.eu", true },
{ "internetbank.swedbank.se", true },
@@ -17705,7 +18329,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "internethealthreport.org", true },
{ "internethering.de", true },
{ "internetinhetbuitengebied.nl", true },
- { "internetmarkets.net", true },
{ "internetmuseum.se", true },
{ "internetofdon.gs", true },
{ "internetoffensive.fail", true },
@@ -17714,9 +18337,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "internetpro.me", true },
{ "internetstaff.com", true },
{ "internetzentrale.net", true },
+ { "interpol.gov", true },
{ "interracial.dating", true },
{ "interseller.io", true },
{ "interserved.com", false },
+ { "interstateautomotiveinc.com", true },
{ "intertime.services", true },
{ "interview-suite.com", true },
{ "interways.de", true },
@@ -17739,6 +18364,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "intraobes.com", true },
{ "intrasoft.com.au", true },
{ "intraxia.com", true },
+ { "introverted.ninja", true },
{ "intune.life", true },
{ "intvonline.com", true },
{ "intxt.net", true },
@@ -17748,6 +18374,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inuyasha-petition.tk", true },
{ "invadelabs.com", true },
{ "invasion.com", true },
+ { "invasivespeciesinfo.gov", true },
{ "invasmani.com", true },
{ "inventaire.ch", true },
{ "inventionsteps.com.au", true },
@@ -17759,6 +18386,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inventtheworld.com.au", true },
{ "inventum.cloud", true },
{ "inverselink-user-content.com", true },
+ { "inversioneseconomicas.com", true },
{ "investarholding.nl", true },
{ "investigatore.it", true },
{ "investigazionimoretti.it", true },
@@ -17769,6 +18397,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "investorforms.com", true },
{ "investosure.com", true },
{ "investpay.ru", true },
+ { "invinoaustria.com", true },
+ { "invinoaustria.cz", true },
{ "invioinc.com", true },
{ "inviosolutions.com", true },
{ "invisible-college.com", true },
@@ -17793,6 +18423,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iocheck.com", false },
{ "iochen.com", true },
{ "iocurrents.com", true },
+ { "iodev.nl", true },
{ "iodine.com", true },
{ "ioerror.us", true },
{ "iofort.com", true },
@@ -17802,16 +18433,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iompost.com", true },
{ "iomstamps.com", true },
{ "ionlabs.kr", true },
- { "ionote.me", true },
{ "ionovia.de", true },
{ "ionx.co.uk", true },
{ "ioover.net", true },
{ "iosartstudios.gr", true },
{ "iosjailbreakiphone.com", true },
{ "ioslo.net", true },
+ { "iosmods.com", true },
{ "iosnoops.com", true },
{ "iossifovlab.com", true },
{ "iostream.by", true },
+ { "iowaent.com", true },
{ "iowaschoolofbeauty.com", true },
{ "ip-blacklist.net", true },
{ "ip-hahn.de", true },
@@ -17831,6 +18463,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ipcareers.net", true },
{ "ipconsulting.se", true },
{ "ipemcomodoro.com.ar", true },
+ { "ipfire.org", true },
{ "ipfirebox.de", true },
{ "ipfs.ink", true },
{ "ipfs.io", true },
@@ -17840,6 +18473,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iphonote.com", true },
{ "ipintel.io", true },
{ "iplabs.de", true },
+ { "iplantom.com", true },
{ "iplayradio.net", false },
{ "ipleak.net", true },
{ "ipledgeonline.org", false },
@@ -17847,7 +18481,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ipo-times.jp", true },
{ "ipokabu.net", true },
{ "ipomue.com", false },
+ { "ipop.gr", true },
{ "iposm.net", true },
+ { "ipplans.com", true },
{ "ipresent.com", true },
{ "iprim.ru", true },
{ "iproducemusic.com", true },
@@ -17860,6 +18496,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ipty.de", true },
{ "ipura.ch", true },
{ "ipv4.cf", true },
+ { "ipv4.co.il", true },
{ "ipv4.gr", true },
{ "ipv6-adresse.dk", true },
{ "ipv6-handbuch.de", true },
@@ -17873,16 +18510,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ir1s.com", true },
{ "iramellor.com", true },
{ "iran-geo.com", true },
- { "irandp.net", true },
{ "iranian.lgbt", true },
{ "iranianholiday.com", true },
{ "iranjeunesse.com", true },
- { "irasandi.com", true },
{ "irayo.net", true },
{ "irc-results.com", true },
{ "ircmett.de", true },
{ "irdvb.com", true },
- { "iready.ro", true },
{ "ireef.tv", true },
{ "iren.ch", true },
{ "irenekauer.com", true },
@@ -17894,7 +18528,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iridiumflare.de", true },
{ "iriomote.com", true },
{ "iris-design.info", true },
- { "iris-insa.com", false },
+ { "iris-insa.com", true },
{ "irish.dating", true },
{ "irisjieun.com", true },
{ "irland-firma.com", true },
@@ -17904,7 +18538,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iroise.ch", true },
{ "ironbelly.pro", true },
{ "ironcarnival.com", true },
- { "irondaleirregulars.com", true },
{ "ironfistdesign.com", true },
{ "ironhide.de", true },
{ "ironpeak.be", true },
@@ -17915,7 +18548,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "is-going-to-rickroll.me", true },
{ "is-sw.net", true },
{ "isaacdgoodman.com", true },
- { "isaackabel.cf", true },
{ "isaackabel.ga", true },
{ "isaackabel.gq", true },
{ "isaackabel.ml", true },
@@ -17935,14 +18567,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isamiok.com", true },
{ "isara.com", true },
{ "isarklinikum.de", true },
- { "isastylish.com", true },
+ { "isavings.com", true },
{ "isayoga.de", true },
{ "isbc-telecom.ru", true },
{ "isbengrumpy.com", true },
+ { "isc2chapter-cny.org", true },
{ "iscert.org", true },
+ { "isdecolaop.nl", true },
{ "isdn.jp", true },
{ "isecrets.se", true },
{ "iservicio.mx", true },
+ { "iseulde.com", true },
{ "isfff.com", true },
{ "isgp-studies.com", true },
{ "ishamf.com", true },
@@ -17953,7 +18588,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isil.fi", true },
{ "isimonbrown.co.uk", true },
{ "isincheck.com", true },
- { "isinolsun.com", false },
+ { "isinolsun.com", true },
{ "isistomie.com", true },
{ "isitchristmas.com", true },
{ "isitcoffeetime.com", true },
@@ -17961,16 +18596,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isitpatchtuesday.com", true },
{ "isitrest.info", true },
{ "isitup.org", true },
+ { "iskanderbroere.nl", true },
{ "iskaron.de", true },
{ "iskaz.rs", true },
- { "iskkk.com", true },
- { "iskkk.net", true },
{ "iskogen.nu", true },
+ { "islam.si", true },
{ "islamonline.net", true },
{ "islandhosting.com", true },
+ { "islavolcan.cl", true },
{ "isletech.net", true },
{ "isliada.org", true },
- { "islief.com", true },
{ "islykaithecutest.cf", true },
{ "islykaithecutest.ml", true },
{ "ismailkarsli.com", true },
@@ -17980,6 +18615,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ismywebsitepenalized.com", true },
{ "isn.cz", true },
{ "iso27032.com", true },
+ { "isocom.eu", true },
{ "isognattori.com", true },
{ "isolta.com", true },
{ "isolta.de", true },
@@ -17996,15 +18632,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ispitrade.com", true },
{ "ispo.com.tw", true },
{ "ispsoft.pro", true },
- { "ispweb.es", true },
{ "isqrl.de", true },
{ "israelbiblicalstudies.com", true },
{ "israelbizreg.com", true },
- { "israkurort.com", true },
{ "isreedyinthe.uk", true },
{ "isreedyinthe.us", true },
{ "isreedyintheuk.com", true },
- { "issa.org.pl", true },
+ { "issa.org.pl", false },
{ "issasfrissa.se", true },
{ "issforum.org", true },
{ "issio.net", true },
@@ -18012,6 +18646,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "issues.email", true },
{ "issuesofconcern.in", true },
{ "ist-intim.de", true },
+ { "istanbul.systems", true },
{ "istdieweltschonuntergegangen.de", true },
{ "isteinbaby.de", true },
{ "istheapplestoredown.com", true },
@@ -18024,6 +18659,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "istheservicedowncanada.com", true },
{ "isthisus.org", true },
{ "isthnew.com", true },
+ { "istogether.com", true },
{ "istore.lt", true },
{ "istorrent.is", true },
{ "istrazivac-istine.com", true },
@@ -18032,11 +18668,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isuzupartscenter.com", true },
{ "isvbscriptdead.com", true },
{ "isvsecwatch.org", true },
- { "isyu.xyz", true },
{ "isz-berlin.de", true },
{ "isz.no", true },
{ "it-academy.sk", true },
- { "it-enthusiasts.tech", true },
{ "it-faul.de", true },
{ "it-fernau.com", true },
{ "it-jobbank.dk", true },
@@ -18050,6 +18684,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "it-service24.com", true },
{ "it-shamans.de", true },
{ "it-shamans.eu", true },
+ { "it-sysoft.com", true },
{ "it-ti.me", true },
{ "it-world.eu", true },
{ "it.search.yahoo.com", false },
@@ -18067,14 +18702,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "italserrande.it", true },
{ "italyinspires.com", true },
{ "itamservices.nl", true },
+ { "itap.gov", true },
{ "itb-online.co.uk", true },
{ "itblog.pp.ua", true },
{ "itchy.nl", true },
{ "itcko.sk", true },
{ "itdashboard.gov", true },
- { "itds-consulting.com", true },
- { "itds-consulting.cz", true },
- { "itds-consulting.eu", true },
{ "itecor.net", true },
{ "iteecafe.hu", true },
{ "iteha.de", true },
@@ -18089,13 +18722,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itfix.cz", true },
{ "itforge.nl", true },
{ "itgirls.rs", true },
- { "ithakama.com", true },
{ "ithakama.cz", true },
{ "ithenrik.com", true },
{ "ithinc.net", true },
{ "itikon.com", true },
{ "itis.gov", true },
{ "itis4u.ch", true },
+ { "itjob.ma", true },
{ "itkaufmann.at", true },
{ "itlitera.com", true },
{ "itludens.com", true },
@@ -18104,7 +18737,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itneeds.tech", true },
{ "itnota.com", true },
{ "itochan.jp", true },
- { "itogoyomi.com", true },
{ "itooky.com", true },
{ "itpro.ua", true },
{ "itraveille.fr", true },
@@ -18132,17 +18764,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itsok.de", true },
{ "itspartytimeonline.co.uk", true },
{ "itspartytimesweetinflations.com", true },
+ { "itspecialista.eu", true },
{ "itspersonaltraining.nl", true },
{ "itsryan.com", true },
{ "itsstefan.eu", true },
{ "itstatic.tech", true },
+ { "itsuitsyou.co.za", true },
+ { "itsundef.in", true },
+ { "itsv.at", true },
{ "itswincer.com", true },
{ "itzap.com.au", true },
+ { "iurisnow.com", true },
{ "iusedtosmoke.com", true },
{ "iuyos.com", true },
{ "ivact.co.jp", true },
{ "ivanbenito.com", true },
+ { "ivanboi.com", true },
{ "ivancacic.com", false },
+ { "ivanilla.org", true },
{ "ivanmeade.com", true },
{ "ivaoru.org", true },
{ "ivfausland.de", true },
@@ -18162,21 +18801,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ivor.is", true },
{ "ivorvanhese.com", true },
{ "ivorvanhese.nl", true },
+ { "ivoryonsunset.com", true },
{ "ivpn.net", true },
{ "ivre.rocks", true },
+ { "ivsign.net", true },
{ "ivusn.cz", true },
{ "ivvl.ru", true },
- { "ivxv.ee", true },
+ { "ivy-league-colleges.com", true },
{ "iwader.co.uk", true },
{ "iwalton.com", true },
+ { "iwantexchange.com", true },
{ "iwanttoliveinabunker.com", true },
{ "iwch.tk", true },
+ { "iwebolutions.com", true },
{ "iwell.de", true },
{ "iwizerunek.pl", true },
{ "iworos.com", true },
{ "iww.me", true },
+ { "iwyc.cn", true },
{ "ixds.org", true },
- { "ixio.cz", true },
{ "ixnext.de", true },
{ "ixquick-proxy.com", true },
{ "ixquick.co.uk", true },
@@ -18187,6 +18830,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ixquick.info", true },
{ "ixquick.nl", true },
{ "iyassu.com", true },
+ { "iyinolaashafa.com", true },
{ "iyouewo.com", true },
{ "iyuanbao.net", true },
{ "iz8mbw.net", true },
@@ -18207,12 +18851,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "j0s.at", true },
{ "j0s.eu", true },
{ "j15h.nu", true },
- { "j2ee.cz", true },
{ "j2h.de", true },
{ "j3e.de", true },
{ "ja-dyck.de", true },
{ "ja-gps.com.au", true },
- { "ja-publications.agency", false },
{ "ja.md", true },
{ "jaakkohannikainen.fi", true },
{ "jaalits.com", true },
@@ -18227,24 +18869,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jabberzac.org", true },
{ "jaberg-rutschi.ch", true },
{ "jabergrutschi.ch", true },
- { "jability.ovh", true },
{ "jabjab.de", true },
{ "jaccblog.com", true },
{ "jacekowski.org", true },
{ "jacik.cz", true },
+ { "jack2celebrities.com", true },
+ { "jackassofalltrades.org", true },
{ "jackdawphoto.co.uk", true },
{ "jackdelik.de", true },
{ "jackf.me", true },
{ "jackhoodtransportation.com", true },
{ "jackingramnissanparts.com", true },
{ "jackpothappy.com", true },
- { "jackrusselterrier.com.br", true },
{ "jackson-quon.com", true },
{ "jackson.jp", true },
+ { "jacksonhu.com", true },
{ "jacksonvillestation.com", true },
+ { "jacksorrell.com", true },
{ "jacksutton.info", true },
{ "jackyliao123.tk", true },
- { "jackyyf.com", false },
{ "jaco.by", true },
{ "jacobamunch.com", true },
{ "jacobdevans.com", true },
@@ -18253,9 +18896,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jacobian.org", true },
{ "jacobjangles.com", true },
{ "jacobphono.com", true },
+ { "jacobsenarquitetura.com", true },
{ "jacuzziprozone.com", true },
- { "jadara.info", true },
{ "jadchaar.me", true },
+ { "jadopado.com", true },
{ "jaegerlacke.de", true },
{ "jaetech.org", true },
{ "jagbouncycastles.co.uk", true },
@@ -18293,6 +18937,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jakubarbet.eu", true },
{ "jakubboucek.cz", true },
{ "jakubklimek.com", true },
+ { "jakubtopic.cz", true },
{ "jakubvrba.cz", true },
{ "jala.co.jp", true },
{ "jaleo.cn", true },
@@ -18300,15 +18945,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jamaat.hk", true },
{ "jamacha.org", true },
{ "jamalfi.bio", true },
- { "jamberry.com.mx", true },
{ "jamberrynails.co.uk", true },
{ "james-bell.co.uk", true },
{ "james-digital.com", true },
{ "james-loewen.com", true },
{ "jamesachambers.com", true },
{ "jamesaimonetti.com", true },
+ { "jamesandpame.la", true },
{ "jamesbillingham.com", true },
{ "jameschorlton.co.uk", true },
+ { "jamesclark.com", true },
{ "jamesdorf.com", true },
{ "jamesgreenfield.com", true },
{ "jameshemmings.co.uk", true },
@@ -18327,7 +18973,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jamessmith.me.uk", true },
{ "jamesturnerstickley.com", true },
{ "jamhost.org", true },
- { "jamie-read-photography.com", true },
{ "jamie.ie", true },
{ "jamielarter.ca", true },
{ "jamielinux.com", true },
@@ -18354,6 +18999,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jandev.de", true },
{ "janduchene.ch", true },
{ "janehamelgardendesign.co.uk", true },
+ { "janelauhomes.com", true },
{ "janhuelsmann.com", true },
{ "jani.media", true },
{ "janiat.com", true },
@@ -18361,7 +19007,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "janikrabe.com", true },
{ "janjoris.nl", true },
{ "jankoepsel.com", true },
- { "janmg.com", true },
{ "jann.is", true },
{ "jannekekaasjager.nl", true },
{ "jannisfink.de", true },
@@ -18372,17 +19017,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "janssenwigman.nl", true },
{ "janterpstra.eu", true },
{ "jantinaboelens.nl", true },
+ { "janvari.com", true },
+ { "janvaribalint.com", true },
{ "jaot.info", true },
+ { "japanesemotorsports.net", true },
{ "japaniac.de", false },
+ { "japanphilosophy.com", false },
{ "japanwatches.xyz", true },
{ "japon-japan.com", true },
{ "jardin-exotique-rennes.fr", true },
{ "jardinderline.ch", true },
+ { "jardineriaon.com", true },
{ "jardiniersduminotaure.fr", true },
{ "jaredeberle.org", false },
{ "jaredfernandez.com", true },
- { "jaredfraser.com", true },
- { "jarivisual.com", true },
{ "jarniashop.se", true },
{ "jaroku.com", true },
{ "jarondl.net", true },
@@ -18390,27 +19038,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jarrettgraham.com", true },
{ "jarroba.com", true },
{ "jas-team.net", true },
+ { "jashvaidya.com", true },
{ "jasl.works", true },
{ "jasmijnwagenaar.nl", true },
{ "jasminefields.net", true },
{ "jason.re", true },
{ "jasonamorrow.com", true },
{ "jasongerber.ch", true },
- { "jasonian-photo.com", false },
{ "jasonmili.online", true },
{ "jasonsansone.com", true },
{ "jasper.link", true },
{ "jasperhammink.com", true },
{ "jasperhuttenmedia.com", true },
{ "jasperpatterson.me", true },
- { "jastrow.me", true },
{ "jaszbereny-vechta.eu", true },
{ "javalestari.com", true },
{ "javamilk.com", true },
{ "javierburgos.net", true },
+ { "javierlorente.es", true },
+ { "javik.net", true },
+ { "jaxfstk.com", true },
{ "jaxxnet.co.uk", true },
{ "jaxxnet.org", true },
{ "jaycouture.com", true },
+ { "jayf.de", true },
{ "jayfreestone.com", true },
{ "jaymecd.rocks", true },
{ "jayrl.com", true },
@@ -18418,11 +19069,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jaytx.com", true },
{ "jayxon.com", true },
{ "jayxu.com", true },
+ { "jazminguaramato.com", true },
{ "jazz-alliance.com", true },
{ "jazz-alliance.org", true },
{ "jazzanet.com", true },
{ "jazzfeet.co.uk", true },
{ "jazzncheese.com", true },
+ { "jazzy-feet.com", true },
{ "jazzy.id.au", true },
{ "jazzy.pro", true },
{ "jazzysumi.com", true },
@@ -18437,6 +19090,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jcb.com", true },
{ "jcbgolfandcountryclub.com", true },
{ "jci.cc", true },
+ { "jclynne.com", true },
{ "jcra.net", true },
{ "jctf.team", true },
{ "jcwodan.nl", true },
@@ -18475,9 +19129,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jedidiah.eu", false },
{ "jedipedia.net", true },
{ "jediweb.com.au", true },
+ { "jedmud.com", true },
{ "jedwarddurrett.com", true },
{ "jeec.ist", true },
- { "jeepmafia.com", true },
+ { "jeepeg.com", true },
{ "jeffanderson.me", true },
{ "jeffcasavant.com", false },
{ "jeffcloninger.net", true },
@@ -18487,15 +19142,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeffhaferman.com", true },
{ "jeffmcneill.com", true },
{ "jeffreyhaferman.com", true },
+ { "jeffrhinelander.com", true },
{ "jeffri.me", true },
{ "jeffsanders.com", true },
{ "jefftickle.com", true },
{ "jeffwebb.com", true },
{ "jefrydco.id", true },
+ { "jehovahsays.net", true },
{ "jej.cz", true },
{ "jej.sk", true },
{ "jekhar.com", true },
+ { "jekkt.com", false },
{ "jelena-adeli.com", true },
+ { "jelenkovic.rs", true },
{ "jelewa.de", true },
{ "jell.ie", true },
{ "jelle.pro", true },
@@ -18506,7 +19165,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jelleluteijn.nl", true },
{ "jelleluteijn.pro", true },
{ "jelleraaijmakers.nl", true },
- { "jelleschneiders.com", true },
+ { "jelleschneiders.com", false },
{ "jelly.cz", true },
{ "jellybeanbooks.com.au", true },
{ "jelmer.co.uk", true },
@@ -18517,7 +19176,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jembatankarir.com", true },
{ "jemefaisdesamis.com", true },
{ "jena.space", true },
- { "jennedebleser.com", false },
+ { "jennierobinson.com", true },
{ "jenniferengerwingaantrouwen.nl", true },
{ "jennifermason.eu", true },
{ "jennifersauer.nl", true },
@@ -18535,11 +19194,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeremycantu.com", true },
{ "jeremycrews.com", true },
{ "jeremynally.com", true },
+ { "jeremyness.com", true },
{ "jeremypaul.me", true },
{ "jeremytcd.com", true },
{ "jericamacmillan.com", true },
+ { "jering.tech", true },
{ "jeroendeneef.com", true },
- { "jeroenensanne.wedding", true },
{ "jeroensangers.com", true },
{ "jerret.de", true },
{ "jerryweb.org", true },
@@ -18561,10 +19221,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jet-stream.fr", true },
{ "jetapi.org", true },
{ "jetbbs.com", true },
- { "jetbrains.pw", true },
- { "jetflex.de", true },
{ "jetkittens.co.uk", true },
- { "jetmirshatri.com", true },
{ "jetsetboyz.net", true },
{ "jetsieswerda.nl", true },
{ "jettlarue.com", true },
@@ -18575,11 +19232,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jexler.net", true },
{ "jf-fotos.de", true },
{ "jfbst.net", true },
- { "jfr.im", true },
+ { "jfmhero.me", true },
{ "jfreitag.de", true },
{ "jfsa.jp", true },
{ "jgid.de", true },
{ "jgke.fi", true },
+ { "jglover.com", true },
+ { "jgoldgroup.com", true },
+ { "jgregory.co.uk", true },
{ "jgwb.de", true },
{ "jgwb.eu", true },
{ "jhalderm.com", true },
@@ -18589,7 +19249,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jhill.de", true },
{ "jhollandtranslations.com", true },
{ "jhuang.me", true },
- { "jhw-profiles.de", true },
{ "jhwestover.com", true },
{ "jiacl.com", true },
{ "jiahao.codes", true },
@@ -18601,23 +19260,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jicaivvip.com", true },
{ "jichi.io", true },
{ "jichi000.win", true },
+ { "jikegu.com", true },
{ "jimbiproducts.com", true },
{ "jimbraaten.com", true },
{ "jimbutlerkiaparts.com", true },
{ "jimdorf.com", true },
{ "jimfranke.com", true },
{ "jimfranke.nl", true },
+ { "jimizhou.xyz", true },
{ "jimmycai.com", false },
{ "jimmycn.com", false },
{ "jimmyroura.ch", true },
{ "jimshaver.net", true },
{ "jimslop.nl", true },
- { "jinancy.fr", true },
{ "jinanshen.com", true },
{ "jinbo123.com", false },
{ "jinbowiki.org", true },
- { "jing-in.com", true },
- { "jing-in.net", true },
{ "jing.su", true },
{ "jingjo.com.au", true },
{ "jinja.ai", true },
@@ -18631,9 +19289,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jirosworld.com", true },
{ "jisai.net.cn", true },
{ "jisha.site", true },
- { "jiveiaktivno.bg", true },
{ "jixun.moe", true },
{ "jiyusu.com", true },
+ { "jjhampton.com", true },
{ "jjj.blog", true },
{ "jjjconnection.com", true },
{ "jjlvk.nl", true },
@@ -18645,7 +19303,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jk-entertainment.biz", true },
{ "jkchocolate.com", true },
{ "jkest.cc", true },
- { "jkinteriorspa.com", true },
{ "jkirsche.com", true },
{ "jkrippen.com", true },
{ "jkyuan.tk", true },
@@ -18653,11 +19310,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jl-dns.nl", true },
{ "jl-exchange.nl", true },
{ "jl-mail.nl", true },
- { "jldp.org", true },
{ "jlink.nl", true },
{ "jlkhosting.com", true },
{ "jloh.codes", true },
{ "jlot.org", true },
+ { "jlpn.eu", true },
+ { "jlpn.nl", true },
{ "jlponsetto.com", true },
{ "jlr-luxembourg.com", true },
{ "jltctech.com", true },
@@ -18670,22 +19328,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jmcataffo.com", true },
{ "jmce.eu", true },
{ "jmcleaning.services", true },
+ { "jmdekker.it", true },
{ "jmedved.com", true },
{ "jmentertainment.co.uk", true },
{ "jmfjltd.com", true },
{ "jmk.hu", true },
+ { "jmorahan.net", true },
{ "jmoreau.ddns.net", true },
- { "jmotion.co.uk", true },
{ "jmpb.hu", true },
- { "jmpmotorsport.co.uk", true },
{ "jmsolodesigns.com", true },
+ { "jmssg.jp", true },
{ "jmvdigital.com", true },
{ "jnjdj.com", true },
{ "jnm-art.com", true },
+ { "jnordell.com", true },
{ "joa-ebert.com", true },
{ "joacimeldre.com", true },
+ { "joanofarcmtcarmel.org", true },
{ "joaoaugusto.net", true },
{ "joaosampaio.com.br", true },
+ { "job-ofertas.info", true },
+ { "job-offer.de", true },
{ "job.biz.tr", true },
{ "jobatus.com.br", true },
{ "jobatus.es", true },
@@ -18698,7 +19361,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jobcorpsy2y.com", true },
{ "jobify.in", true },
{ "jobindex.dk", true },
- { "joblab.com.ua", true },
{ "joblife.co.za", true },
{ "jobmi.com", true },
{ "jobmiplayground.com", true },
@@ -18709,6 +19371,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jobs4sales.ch", true },
{ "jobseekeritalia.it", true },
{ "jobsisbrown.com", true },
+ { "jobsnet.eu", true },
{ "jobsuchmaschine.ch", true },
{ "jobwinner.ch", true },
{ "jobzninja.com", true },
@@ -18719,12 +19382,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jodlajodla.si", true },
{ "joduska.me", true },
{ "jodyboucher.com", false },
+ { "jodyshop.com", true },
{ "joe262.com", true },
{ "joedavison.me", true },
{ "joedinardo.com", true },
{ "joedoyle.us", true },
{ "joefixit.co", true },
- { "joefixit.co.uk", true },
{ "joehenry.co.uk", true },
{ "joejohnson.name", true },
{ "joel.coffee", true },
@@ -18740,6 +19403,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joelmunch.com", true },
{ "joelnichols.uk", true },
{ "joemotherfuckingjohnson.com", true },
+ { "joepitt.co.uk", false },
+ { "joergschneider.com", true },
{ "joerosca.com", true },
{ "joerss.at", true },
{ "joeskup.com", true },
@@ -18751,11 +19416,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joeygitalian.com", true },
{ "joeyhoer.com", true },
{ "joeysmith.com", true },
+ { "joeyvanvenrooij.nl", true },
{ "joeyvilaro.com", true },
{ "jogi-server.de", true },
{ "jogorama.com.br", false },
{ "jogwitz.de", true },
- { "johand.io", true },
{ "johanli.com", true },
{ "johannes-bauer.com", true },
{ "johannes-zinke.de", true },
@@ -18765,9 +19430,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "johannesen.tv", true },
{ "johanneskonrad.de", true },
{ "johannespichler.com", false },
+ { "johanpeeters.com", true },
{ "johansf.tech", true },
{ "johego.org", true },
+ { "johnaltamura.com", true },
{ "johnbeil.com", true },
+ { "johnberan.com", true },
{ "johnblackbourn.com", true },
{ "johnbpodcast.com", true },
{ "johncook.ltd.uk", true },
@@ -18781,20 +19449,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "johnmcintosh.pro", true },
{ "johnmh.me", true },
{ "johnmichel.org", true },
- { "johnmorganpartnership.co.uk", true },
{ "johnno.be", true },
{ "johnnybet.com", true },
{ "johnnybsecure.com", true },
{ "johnroach.io", true },
{ "johnroberts.me", true },
{ "johnrockefeller.net", true },
+ { "johnsanchez.io", true },
{ "johnsegovia.com", true },
- { "johnsiu.com", true },
{ "johnsonho.net", true },
{ "johnvanhese.nl", true },
{ "johnyytb.be", true },
{ "joi-dhl.ch", true },
+ { "joinhonor.com", true },
{ "jointotem.com", true },
+ { "joinus-outfits.nl", true },
{ "jojosplaycentreandcafeteria.co.uk", true },
{ "jokedalderup.nl", true },
{ "joker.menu", true },
@@ -18811,22 +19480,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jomofojo.com", true },
{ "jonahperez.com", true },
{ "jonandnoraswedding.com", true },
- { "jonarcher.info", true },
{ "jonas-thelemann.de", true },
{ "jonas-wenk.de", false },
{ "jonaskjodt.com", true },
+ { "jonasled.de", true },
{ "jonaswitmer.ch", true },
{ "jonathan-apps.com", true },
{ "jonathancarter.org", true },
{ "jonathandupree.com", true },
{ "jonathanha.as", true },
{ "jonathanj.nl", true },
+ { "jonathanlara.com", true },
{ "jonathanschle.de", true },
+ { "jonathanselea.se", true },
{ "jonblankenship.com", true },
{ "jondarby.com", true },
{ "jondevin.com", true },
{ "jondowdle.com", true },
- { "jonesopolis.xyz", true },
{ "jonespayne.com", false },
{ "jonferwerda.net", true },
{ "jong030.nl", true },
@@ -18841,12 +19511,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jonnybarnes.uk", true },
{ "jonnystoten.com", true },
{ "jonoalderson.com", true },
+ { "jonola.com", true },
{ "jonpads.com", true },
{ "jonpavelich.com", true },
+ { "jons.org", true },
{ "jonscaife.com", true },
{ "jooksms.com", true },
{ "jooksuratas.ee", true },
{ "joomlant.org", true },
+ { "joompress.biz", true },
{ "joonatoona.me", true },
{ "joostrijneveld.nl", true },
{ "joostvanderlaan.nl", true },
@@ -18854,18 +19527,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joran.org", true },
{ "jorcus.com", true },
{ "jordan-jungk.de", true },
+ { "jordandevelopment.com", true },
{ "jordanhamilton.me", true },
{ "jordankmportal.com", true },
{ "jordans.co.uk", true },
+ { "jordanscorporatelaw.com", true },
{ "jordanstrustcompany.com", true },
{ "jordhy.com", true },
{ "jorgerosales.org", true },
{ "jorisdalderup.nl", true },
{ "jornalalerta.com.br", true },
+ { "josc.com.au", true },
{ "joscares.com", true },
{ "jose-alexand.re", true },
{ "jose-lesson.com", true },
- { "jose.eti.br", true },
{ "joseetesser.nl", true },
{ "josef-lotz.de", true },
{ "josefjanosec.com", true },
@@ -18875,15 +19550,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "josemikkola.fi", true },
{ "josepbel.com", true },
{ "josephbleroy.com", true },
+ { "josephre.es", false },
{ "josephsniderman.com", true },
{ "josephsniderman.net", true },
{ "josephsniderman.org", true },
{ "josephv.website", true },
- { "josericaurte.com", true },
{ "joshgilson.com", true },
{ "joshgrancell.com", true },
{ "joshharkema.com", true },
{ "joshharmon.me", true },
+ { "joshics.in", true },
{ "joshlovephotography.co.uk", true },
{ "joshpanter.com", true },
{ "joshrickert.com", true },
@@ -18894,17 +19570,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joshua.bio", true },
{ "joshuadmiller.info", true },
{ "joshuajohnson.ca", true },
+ { "joshuameunier.com", true },
{ "joshuarogers.net", true },
{ "josoansi.de", true },
- { "jouetspetitechanson.com", true },
+ { "journalism-schools.com", true },
{ "journeyfriday.rocks", true },
{ "journeytomastery.net", true },
+ { "jouwpaardenbak.nl", true },
{ "jovani.com", false },
{ "jovic.hamburg", true },
{ "joyceseamone.com", true },
{ "joyful.house", true },
{ "joyfulexpressions.gallery", true },
+ { "joynadvisors.com", true },
{ "joyofcookingandbaking.com", true },
+ { "joysinventingblog.com", true },
{ "jpdeharenne.be", true },
{ "jpeg.io", true },
{ "jphandjob.com", true },
@@ -18912,6 +19592,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jpmelos.com", true },
{ "jpmelos.com.br", true },
{ "jpod.cc", true },
+ { "jpralves.net", true },
{ "jps-selection.co.uk", true },
{ "jps-selection.com", true },
{ "jps-selection.eu", true },
@@ -18930,6 +19611,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jross.me", true },
{ "jrtapsell.co.uk", true },
{ "jrxpress.com", true },
+ { "js-web.eu", true },
+ { "js3311.com", true },
+ { "js8855.com", true },
{ "js93029.com", true },
{ "jschoi.org", true },
{ "jschumacher.info", true },
@@ -18940,15 +19624,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jsevilleja.org", true },
{ "jskier.com", false },
{ "jskoelliken.ch", true },
- { "jslidong.top", true },
{ "jsmetallerie.fr", true },
{ "jsnfwlr.com", true },
{ "jsnfwlr.io", true },
+ { "jsonsinc.com", true },
{ "jsteward.moe", true },
{ "jstore.ch", true },
- { "jsuse.xyz", true },
- { "jsxc.ch", true },
{ "jtcat.com", true },
+ { "jtcjewelry.com", true },
+ { "jtconsultancy.sg", true },
{ "jthackery.com", false },
{ "jtl-software.com", true },
{ "jtmar.me", true },
@@ -18959,21 +19643,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "juan23.edu.uy", true },
{ "juanfrancisco.tech", true },
{ "juanmaguitar.com", true },
+ { "juanmazzetti.com", true },
{ "juanxt.ddns.net", true },
+ { "jubee.nl", true },
{ "jubileum.online", true },
+ { "jubileumfotograaf.nl", true },
{ "jucca-nautica.si", true },
{ "juch.cc", true },
{ "juchit.at", true },
{ "jucktehkeinen.de", true },
{ "judc-ge.ch", true },
+ { "judge2020.com", true },
{ "judge2020.me", true },
{ "judoprodeti.cz", true },
{ "judosaintdenis.fr", true },
+ { "judytka.cz", true },
{ "juef.space", true },
{ "juegosycodigos.es", true },
{ "juegosycodigos.mx", true },
{ "juelda.com", true },
{ "juergen-elbert.de", true },
+ { "juergen-roehrig.de", true },
{ "juergenhecht.de", true },
{ "juergenklieber.de", true },
{ "juergenspecht.com", true },
@@ -18984,8 +19674,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jugh.de", true },
{ "juhakoho.com", true },
{ "juice.codes", true },
- { "juk.life", true },
+ { "juk.life", false },
+ { "juku-info.top", true },
+ { "juku-wing.jp", true },
{ "jule-spil.dk", true },
+ { "julenlanda.com", false },
{ "julian-uphoff.de", true },
{ "julian-weigle.de", true },
{ "juliangonggrijp.com", true },
@@ -19008,6 +19701,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "juliemaurel.fr", true },
{ "julienc.io", true },
{ "julienpaterne.com", true },
+ { "julienschmidt.com", true },
{ "julientartarin.com", true },
{ "julius-zoellner.de", true },
{ "jullensgroningen.com", true },
@@ -19032,6 +19726,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jumpingjacksbouncycastles.co.uk", true },
{ "jumpinjaes.co.uk", true },
{ "jumpinmonkeys.co.uk", true },
+ { "jumpintogreenerpastures.com", true },
{ "jumpnplay.co.uk", true },
{ "junespina.com", true },
{ "junethack.net", true },
@@ -19050,6 +19745,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "junjun-web.net", true },
{ "junkdrome.org", true },
{ "juno.co.uk", true },
+ { "junoaroma.com", true },
{ "junodownload.com", true },
{ "jura-reiseschutz.de", true },
{ "jurassicbarkharrogate.co.uk", true },
@@ -19058,11 +19754,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jurijbuga.de", true },
{ "jurisprudent.by", true },
{ "juristas.com.br", true },
- { "jurriaan.ninja", true },
{ "just-a-clanpage.de", true },
{ "just-vet-and-drive.fr", true },
{ "justanothercompany.name", true },
- { "justbelieverecovery.com", true },
{ "justbelieverecoverypa.com", true },
{ "justbookexcursions.com", true },
{ "justbookhotels.com", true },
@@ -19075,12 +19769,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "justice.gov", true },
{ "justice4assange.com", true },
{ "justin-tech.com", false },
- { "justinellingwood.com", true },
{ "justinharrison.ca", true },
{ "justinho.com", true },
{ "justinstandring.com", true },
{ "justmensgloves.com", true },
{ "justpaste.it", true },
+ { "justsmart.io", true },
+ { "justsome.info", true },
+ { "justtalk.site", true },
{ "justthinktwice.gov", true },
{ "justupdate.me", true },
{ "justyy.com", true },
@@ -19091,12 +19787,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "juusujanar.eu", true },
{ "juvenex.co", true },
{ "juwelierstoopman.nl", true },
- { "juzgalo.com", true },
{ "jva-wuerzburg.de", true },
{ "jvandenbroeck.com", true },
{ "jvanerp.nl", true },
{ "jvbouncycastlehire.co.uk", true },
{ "jvega.me", true },
+ { "jvlandscapingservices.com", true },
{ "jvphotoboothhire.co.uk", true },
{ "jvsticker.com", true },
{ "jvwdev.nl", true },
@@ -19107,8 +19803,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jwjwjw.com", true },
{ "jwmmarketing.com", true },
{ "jwnotifier.org", true },
+ { "jwod.gov", true },
{ "jwschuepfheim.ch", true },
{ "jwsoft.nl", true },
+ { "jxltom.com", true },
+ { "jxm.in", true },
{ "jydemarked.dk", true },
{ "jyggen.com", true },
{ "jym.fit", true },
@@ -19116,12 +19815,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jzachpearson.com", true },
{ "jzbk.org", true },
{ "jzcapital.co", true },
+ { "k-bone.com", true },
{ "k-homes.net", true },
{ "k-netz.de", true },
{ "k-pan.com", true },
{ "k-plant.com", true },
{ "k-pture.com", true },
{ "k-scr.me", true },
+ { "k-system.de", true },
{ "k-tube.com", true },
{ "k258059.net", true },
{ "k2mts.org", true },
@@ -19142,11 +19843,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kaatha-kamrater.se", true },
{ "kab-s.de", true },
{ "kabaca.design", true },
+ { "kabarlinux.id", true },
{ "kabashop.com.br", true },
+ { "kabat-fans.cz", true },
{ "kabeltv.co.nz", true },
{ "kabeuchi.com", true },
{ "kaboom.pw", true },
{ "kabu-abc.com", true },
+ { "kabulpress.org", true },
+ { "kabus.org", true },
+ { "kacgal.com", true },
{ "kachelfm.nl", true },
{ "kachlikova2.cz", true },
{ "kack.website", true },
@@ -19158,13 +19864,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kagitreklam.com", true },
{ "kaheim.de", true },
{ "kai-ratzeburg.de", true },
- { "kaibol.com", true },
{ "kaigojj.com", true },
{ "kaikei7.com", true },
{ "kaileymslusser.com", true },
{ "kairion.de", false },
{ "kaisakura.net", true },
- { "kaisev.net", true },
+ { "kaisev.net", false },
{ "kaitol.click", true },
{ "kaiusaltd.com", true },
{ "kaivac-emea.com", true },
@@ -19174,11 +19879,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kaka.farm", true },
{ "kakao-karten.de", true },
{ "kakaravaara.fi", true },
+ { "kakie-gobocha.jp", true },
{ "kakie-kolesa.ru", true },
{ "kakolightingmuseum.or.jp", true },
- { "kakoo-media.nl", true },
- { "kakoo.nl", true },
- { "kakoomedia.nl", true },
{ "kakuto.me", true },
{ "kalakarclub.com", true },
{ "kalamos-psychiatrie.be", true },
@@ -19189,6 +19892,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kaliaa.fi", true },
{ "kalian.cz", true },
{ "kalifornien-tourismus.de", true },
+ { "kalkulacka-havarijni.cz", true },
{ "kall.is", true },
{ "kallies-net.de", true },
{ "kalmar.com", true },
@@ -19199,11 +19903,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kalterersee.ch", true },
{ "kalwestelectric.com", true },
{ "kam-serwis.pl", true },
- { "kamatajisyaku.tokyo.jp", true },
{ "kamikaichimaru.com", false },
+ { "kamikatse.net", true },
{ "kaminbau-laub.de", true },
{ "kamixa.se", true },
{ "kamppailusali.fi", true },
+ { "kamranmirhazar.com", true },
{ "kamui.co.uk", true },
{ "kan3.de", true },
{ "kana-mono.biz", true },
@@ -19216,7 +19921,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kandianshang.com", true },
{ "kanecastles.com", true },
{ "kanehusky.com", true },
- { "kaneisdi.com", true },
{ "kanetix.ca", true },
{ "kangaroo-bouncycastle.co.uk", true },
{ "kangarooislandholidayaccommodation.com.au", true },
@@ -19239,33 +19943,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kantanmt.com", true },
{ "kantorkita.net", true },
{ "kantorosobisty.pl", true },
+ { "kanuvu.de", true },
{ "kany.me", false },
- { "kanzakiranko.jp", true },
{ "kanzashi.com", true },
+ { "kanzlei-gaengler.de", true },
{ "kanzlei-myca.de", true },
{ "kanzlei-oehler.com", true },
{ "kanzlei-sixt.de", true },
- { "kanzshop.com", true },
+ { "kaotik4266.com", true },
{ "kap-genial.de", true },
{ "kapgy-moto.com", true },
- { "kapiorr.duckdns.org", true },
{ "kappenstein.org", true },
{ "kapseli.net", true },
{ "kaptadata.com", true },
{ "kaptamedia.com", true },
{ "kara-fabian.com", true },
+ { "kara-fabian.de", true },
{ "karabas.com", true },
{ "karabijnhaken.nl", false },
{ "karachi.dating", true },
- { "karaface.com", true },
{ "karalane.com", true },
+ { "karamomo.net", true },
{ "karanjthakkar.com", true },
- { "karanlyons.com", true },
{ "karasik.by", true },
{ "karateka.org", true },
{ "karateka.ru", true },
{ "kardize24.pl", true },
{ "karenledger.ca", true },
+ { "karewan.ovh", true },
{ "kargl.net", true },
{ "karguine.in", true },
{ "karhm.com", true },
@@ -19274,12 +19979,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "karlbowden.com", true },
{ "karlic.net", true },
{ "karlin.run", true },
- { "karlis-kavacis.id.lv", true },
{ "karlloch.de", true },
{ "karlsmithmn.org", true },
{ "karlzotter.com", true },
{ "karmaassurance.ca", true },
{ "karmabaker.com", true },
+ { "karmaflux.com", true },
{ "karmainsurance.ca", true },
{ "karmaplatform.com", true },
{ "karmaspa.se", true },
@@ -19309,7 +20014,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kastorsky.ru", true },
{ "kat.marketing", true },
{ "katagena.com", true },
+ { "katalogbajugamismu.com", true },
{ "katalogbutikker.dk", true },
+ { "katata-kango.ac.jp", true },
{ "katcleaning.com.au", true },
{ "katedra.de", true },
{ "kateduggan.net", true },
@@ -19319,7 +20026,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "katex.org", true },
{ "kathardt.de", true },
{ "kathegiraldo.com", true },
- { "kathrinbaumannphotography.com", true },
{ "kati-raumplaner.de", true },
{ "katiechai.xyz", true },
{ "katieskandy.co.uk", true },
@@ -19334,20 +20040,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "katyusha.net", false },
{ "katzenbrunnen-test.de", true },
{ "katzensklave.me", true },
- { "katzspeech.com", true },
+ { "katzrkool.xyz", true },
{ "kau-boys.com", true },
{ "kau-boys.de", true },
{ "kaufberatung.community", true },
+ { "kaufmanbankruptcylaw.com", true },
{ "kaverti.com", true },
- { "kavik.no", true },
{ "kavovary-kava.cz", true },
{ "kawaii.io", true },
+ { "kawaiii.link", true },
{ "kaweus.de", true },
{ "kay.la", true },
{ "kayakabovegroundswimmingpools.com", true },
- { "kayleen.net", true },
{ "kayscs.com", true },
- { "kaysis.gov.tr", true },
{ "kazakov.lt", true },
{ "kazand.lt", true },
{ "kazandaemon.ru", true },
@@ -19358,7 +20063,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kazumi.ooo", true },
{ "kazumi.ro", true },
{ "kazy111.info", true },
- { "kb3.net", true },
+ { "kb88.com", true },
{ "kba-online.de", true },
{ "kbb-ev.de", true },
{ "kbbouncycastlehire.co.uk", true },
@@ -19371,10 +20076,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kc1hbk.com", true },
{ "kc3.moe", true },
{ "kc5mpk.com", true },
+ { "kcc.sh", true },
{ "kcliner.com", true },
{ "kcmicapital.com", true },
{ "kcolford.com", false },
- { "kcptun.com", true },
{ "kcshipping.co.uk", true },
{ "kcsordparticipation.org", true },
{ "kd.net.nz", true },
@@ -19394,6 +20099,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kecht.at", true },
{ "kedarastudios.com", true },
{ "kedibizworx.com", true },
+ { "kediri.win", true },
{ "keditor.biz", true },
{ "kedv.es", true },
{ "keeleysam.com", true },
@@ -19406,11 +20112,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "keepersecurity.com", true },
{ "keepingtheplot.co.uk", true },
{ "keepiteasy.eu", true },
+ { "keevitaja.com", true },
{ "keeweb.info", true },
{ "keezin.ga", true },
{ "keganthorrez.com", true },
{ "kehlenbach.net", true },
- { "keifel.de", true },
{ "kein-design.de", true },
{ "keinanung.nl", true },
{ "keinefilterblase.de", true },
@@ -19449,7 +20155,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kengilmour.com", true },
{ "kenguntokku.jp", true },
{ "kenia-vakantie.nl", true },
- { "kennedy.ie", true },
{ "kenners.org", true },
{ "kennethaasan.no", true },
{ "kennethferguson.com", true },
@@ -19462,6 +20167,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kenrogers.co", false },
{ "kens.pics", true },
{ "kensbouncycastles.co.uk", true },
+ { "kenscustomfloors.com", true },
+ { "kensparkesphotography.com", true },
{ "kentec.net", true },
{ "kenterlis.gr", true },
{ "kenvix.com", true },
@@ -19470,7 +20177,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "keops-spine.fr", true },
{ "keops-spine.us", true },
{ "kepkonyvtar.hu", true },
- { "keralit.nl", true },
{ "kerebro.com", true },
{ "kerem.xyz", true },
{ "kerforhome.com", true },
@@ -19478,6 +20184,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kernel-error.de", true },
{ "kernelpanics.nl", true },
{ "kerrfrequencycombs.org", true },
+ { "kerrnel.com", true },
{ "kersbergen.nl", true },
{ "kersmexico.com", true },
{ "kerstkaart.nl", true },
@@ -19486,30 +20193,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kerzyte.net", true },
{ "kescher.site", true },
{ "kessawear.com", true },
- { "kessel-runners.com", true },
{ "kesslerwine.com", true },
{ "kesteren.org", true },
{ "ketamine.co.uk", true },
+ { "ketaminecareclinic.com", true },
{ "ketosecology.co.uk", true },
{ "ketotadka.com", true },
{ "kettlebellkrusher.com", true },
{ "kettner.com", true },
{ "ketty-voyance.com", true },
{ "keutel.net", true },
+ { "kevin-darmor.eu", true },
{ "kevinapease.com", true },
{ "kevinbowers.me", true },
{ "kevinbusse.de", true },
{ "kevincox.ca", false },
+ { "kevingsky.com", true },
+ { "kevinheslinphoto.com", true },
{ "kevinhill.nl", true },
{ "kevinhq.com", true },
{ "kevinkla.es", true },
{ "kevinlocke.name", true },
{ "kevinmeijer.nl", true },
{ "kevinmorssink.nl", true },
- { "kevinpirnie.com", true },
+ { "kevinpirnie.com", false },
{ "kevinrandles.com", true },
{ "kevinratcliff.com", true },
{ "kevyn.lu", true },
+ { "kexueboy.com", true },
{ "keybase.io", true },
{ "keybored.co", true },
{ "keybored.me", true },
@@ -19523,9 +20234,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "keyihao.cn", true },
{ "keyinfo.io", true },
{ "keylaserinstitute.com", true },
+ { "keylength.com", true },
{ "keymach.com", true },
{ "keypersonins.com", true },
{ "keys.fedoraproject.org", true },
+ { "keys.jp", true },
{ "keystoneok.com", false },
{ "keysupport.org", true },
{ "keywebdesign.nl", true },
@@ -19547,16 +20260,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "khetzal.info", true },
{ "khipu.com", true },
{ "khlee.net", true },
- { "khmb.ru", true },
+ { "khmb.ru", false },
{ "khoury-dulla.ch", true },
{ "khs1994.com", true },
+ { "khslaw.com", true },
{ "khudothiswanpark.vn", true },
+ { "khushiandjoel.com", true },
{ "kiadoapartman.hu", true },
{ "kiahoriane.com", true },
{ "kiano.net", true },
{ "kiapartscenter.net", true },
{ "kiapartsdepartment.com", true },
- { "kiapps.ovh", true },
{ "kibea.net", true },
{ "kibibit.net", true },
{ "kibriscicek.net", true },
@@ -19581,12 +20295,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kidsneversleep.com", true },
{ "kidsplay-plymouth.co.uk", true },
{ "kidsplaybouncycastles.co.uk", true },
- { "kidswallstickers.com.au", true },
{ "kidtoyshop.ru", true },
{ "kidzpartiesllp.co.uk", true },
{ "kidzsmile.co.uk", true },
{ "kiebel.de", true },
{ "kiedys.net", true },
+ { "kiehls.pt", true },
{ "kiekin.org", true },
{ "kiekko.pro", true },
{ "kiel-kind.de", true },
@@ -19599,11 +20313,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kiki-voice.jp", true },
{ "kikimilyatacado.com.br", true },
{ "kiku.pw", true },
- { "kilerd.me", true },
{ "kilianvalkhof.com", true },
{ "killaraapartments.com.au", true },
{ "killdeer.com", true },
+ { "killedbynlp.com", true },
{ "killerit.in", true },
+ { "killerkink.net", true },
{ "killerrobots.com", true },
{ "killymoonbouncycastles.com", true },
{ "kilobyte22.de", true },
@@ -19617,6 +20332,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kimmel.com", true },
{ "kimmel.in", true },
{ "kimo.se", true },
+ { "kimono-rental-one.com", true },
{ "kimotodental.com", true },
{ "kimsufi-jordi.tk", true },
{ "kimtran.kim", true },
@@ -19628,12 +20344,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kinderkleding.news", true },
{ "kindertagespflege-rasselbande-halle.de", true },
{ "kinderzahn-bogenhausen.de", true },
+ { "kindfotografie.nl", true },
{ "kindleworth.com", true },
{ "kindlezs.com", true },
{ "kine-duthil.fr", true },
{ "kinepolis-studio.be", true },
{ "kinetiq.com", true },
- { "king-henris-castles.co.uk", true },
{ "king-of-the-castles.com", true },
{ "kingant.net", true },
{ "kinganywhere.eu", true },
@@ -19645,16 +20361,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kingofthecastlesentertainments.co.uk", true },
{ "kingofthecastlesouthwales.co.uk", true },
{ "kingofthecastlesrhyl.co.uk", true },
+ { "kingsfoot.com", true },
+ { "kingsgateseptic.com", true },
+ { "kingsley.cc", true },
{ "kingstclinic.com", true },
{ "kingtecservices.com", true },
{ "kini24.ru", true },
+ { "kinkcafe.net", true },
{ "kinkenonline.com", true },
- { "kinnettmemorial.org", true },
{ "kinnikinnick.com", true },
{ "kinniyaonlus.com", true },
{ "kinocheck.de", true },
{ "kinohled.cz", true },
- { "kinomoto.me", true },
{ "kinomoto.ovh", false },
{ "kinos.nl", true },
{ "kinozal-tv.appspot.com", true },
@@ -19669,15 +20387,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kippenbart.gq", true },
{ "kipriakipita.gr", true },
{ "kiragameforum.net", true },
+ { "kirainmoe.com", true },
{ "kiraku.co", true },
{ "kirbear.com", true },
{ "kirche-dortmund-ost.de", true },
- { "kirchen-im-web.de", true },
+ { "kirchen-im-web.de", false },
{ "kirchengemeinde-markt-erlbach.de", true },
- { "kircp.com", true },
{ "kirei.se", true },
{ "kirig.ph", true },
{ "kirikira.moe", true },
+ { "kirill.ws", true },
{ "kirillaristov.com", true },
{ "kirillpokrovsky.de", true },
{ "kirinas.com", true },
@@ -19691,16 +20410,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kirschbaum.me", true },
{ "kirslis.com", true },
{ "kirstenbos.ca", true },
+ { "kirstin-peters.de", true },
{ "kirwandigital.com", true },
{ "kis-toitoidixi.de", true },
{ "kisallatorvos.hu", true },
+ { "kisalt.im", true },
{ "kisiselveri.com", true },
+ { "kiskeedeesailing.com", true },
{ "kisma.de", true },
- { "kissesb.com", true },
- { "kissesb.net", true },
{ "kissflow.com", true },
{ "kissgyms.com", true },
{ "kissmycreative.com", true },
+ { "kissoft.ro", true },
{ "kisstube.tv", true },
{ "kitabnamabayi.com", true },
{ "kitbag.com.au", true },
@@ -19711,7 +20432,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kitchenalley.com", true },
{ "kitchenpunx.com", false },
{ "kiteadventure.nl", true },
- { "kitegarage.eu", true },
{ "kiteschooledam.nl", true },
{ "kiteschoolijmuiden.nl", true },
{ "kiteschoolkatwijk.nl", true },
@@ -19728,6 +20448,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kiwi.digital", true },
{ "kiwi.wiki", true },
{ "kiwico.com", true },
+ { "kix.moe", false },
{ "kiyotatsu.com", true },
{ "kj-prince.com", true },
{ "kj1396.net", true },
@@ -19737,19 +20458,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kjarrval.is", true },
{ "kjchernov.info", true },
{ "kjellner.com", true },
- { "kjellvn.net", true },
+ { "kjelltitulaer.com", true },
{ "kjg-ummeln.de", true },
{ "kk-neudorf-duissern.de", false },
{ "kkaefer.com", true },
{ "kki.org", true },
{ "kkovacs.eu", true },
{ "kkr-bridal.net", true },
+ { "kkren.me", true },
{ "kks-karlstadt.de", true },
{ "kksg.com", true },
{ "kkws.co", true },
{ "kkyy.me", true },
{ "kkzxak47.com", true },
{ "kl-diaetist.dk", true },
+ { "klaasmeijerbodems.nl", true },
{ "klaim.us", true },
{ "klamathrestoration.gov", true },
{ "klanggut.at", true },
@@ -19757,7 +20480,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "klarika.com", true },
{ "klarmobil-empfehlen.de", true },
{ "klasfauseweh.de", true },
- { "klausbrinch.dk", true },
+ { "klausbrinch.dk", false },
{ "klausen.dk", true },
{ "klaver.it", true },
{ "klaw.xyz", true },
@@ -19767,15 +20490,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kleaning.by", true },
{ "klebeband.eu", true },
{ "klebetape.de", true },
+ { "kleding.website", true },
{ "kledingrekken.nl", false },
{ "kleim.fr", true },
{ "kleinblogje.nl", false },
{ "kleine-dingen.nl", true },
+ { "kleine-strandburg-heringsdorf.de", true },
+ { "kleine-strandburg.com", true },
{ "kleine-strolche-lich.de", true },
{ "kleineanfragen.de", true },
+ { "kleinestrandburg-heringsdorf.de", true },
+ { "kleinestrandburg-usedom.de", true },
+ { "kleineviecherei.de", true },
{ "kleinfein.co", true },
{ "kleinreich.de", true },
{ "kleinsys.com", true },
+ { "kleintransporte.net", true },
{ "kleteckova.cz", true },
{ "klicke-gemeinsames.de", true },
{ "klickstdu.com", true },
@@ -19786,6 +20516,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "klimapartner.net", true },
{ "klimchuk.by", true },
{ "klimchuk.com", true },
+ { "klingenundmesser.com", true },
{ "klinikac.co.id", false },
{ "klinkenberg.ws", true },
{ "klinkerstreet.com.ua", false },
@@ -19794,19 +20525,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "klocker-ausserlechner.com", true },
{ "klocksnack.se", true },
{ "kloia.com", true },
+ { "klose.family", true },
{ "klosko.net", true },
{ "klotz-labs.com", true },
{ "kloudboy.com", true },
{ "kls-agency.com.ua", false },
{ "klseet.com", true },
{ "klssn.com", true },
+ { "klubxanadu.cz", true },
{ "kluck.me", true },
{ "klugemedia.de", true },
{ "klustekeningen.nl", true },
{ "klustermedia.com", true },
{ "klva.cz", true },
{ "klzwzhi.com", true },
- { "km-net.pl", true },
{ "kmashworth.co.uk", true },
{ "kmkz.jp", true },
{ "kmsci.com.ph", true },
@@ -19826,6 +20558,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kngk-group.ru", true },
{ "kngk-transavto.ru", true },
{ "kngk.org", true },
+ { "kngkng.com", true },
{ "kniga.market", false },
{ "knight-industries.org", true },
{ "knightsblog.de", true },
@@ -19834,7 +20567,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "knip.ch", true },
{ "knispel-online.de", true },
{ "knitfarious.com", true },
- { "kniwweler.com", true },
{ "knmv.nl", true },
{ "knockendarroch.co.uk", true },
{ "knop.info", true },
@@ -19843,7 +20575,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "knowledgeforce.com", true },
{ "knowlevillagecc.co.uk", true },
{ "knthost.com", true },
- { "knuckles.tk", true },
{ "knurps.de", true },
{ "knutur.is", true },
{ "knygos.lt", true },
@@ -19855,9 +20586,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kobezda.net", true },
{ "kobofarm.com", true },
{ "koboldcraft.ch", true },
+ { "kobolya.hu", true },
{ "kocherev.org", true },
{ "kochereva.com", true },
{ "kochhar.net", true },
+ { "kochinke.com", true },
+ { "kochinke.us", true },
{ "kockanakocko.si", true },
{ "kodak-ism.com", true },
{ "kodden.com.br", true },
@@ -19872,8 +20606,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koelnmafia.de", true },
{ "koenen-bau.de", true },
{ "koenigsbrunner-tafel.de", true },
- { "koenleemans.nl", false },
- { "koerper-wie-seele.de", false },
+ { "koenleemans.nl", true },
+ { "koenrouwhorst.nl", true },
+ { "koenzk.nl", true },
{ "koerperkult.ch", true },
{ "koertner-muth.com", true },
{ "koertner-muth.de", true },
@@ -19881,6 +20616,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koetjesenkanker.nl", true },
{ "kofler.info", true },
{ "kogak.ninja", true },
+ { "kogax.com", true },
{ "kogcoder.com", true },
{ "kogi.fr", true },
{ "kogro.de", true },
@@ -19889,7 +20625,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kohlchan.net", true },
{ "kohlistkool.tk", true },
{ "koho.fi", true },
+ { "kohoutsautomotive.com", true },
{ "kohsandra.com", true },
+ { "kohu.nz", true },
{ "koi-lexikon.de", true },
{ "koi-sama.net", true },
{ "koicenter-thuine.de", true },
@@ -19898,12 +20636,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koka-shop.de", true },
{ "kokensupport.com", true },
{ "koketteriet.se", true },
- { "kokoiroworks.com", true },
+ { "kokobaba.com", true },
{ "kokona.ch", true },
{ "kokumoto.com", true },
{ "kolania.com", true },
{ "kolania.de", true },
{ "kolania.net", true },
+ { "kolaykaydet.com", true },
{ "kolbeinsson.se", true },
{ "kolcsey.eu", true },
{ "koldanews.com", true },
@@ -19928,7 +20667,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "komidoc.com", true },
{ "komiksbaza.pl", true },
{ "kominfo.go.id", true },
- { "kominfo.net", true },
+ { "kominfo.net", false },
{ "kominki-sauny.pl", true },
{ "komintek.ru", true },
{ "komischkeszeug.de", true },
@@ -19937,14 +20676,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "komoju.com", true },
{ "komok.co.uk", true },
{ "kompetenzkurs.de", true },
+ { "komplet.sk", true },
{ "kon-sil.de", true },
{ "kondi.net", true },
{ "kondou-butsudan.com", true },
{ "kongar.org", true },
{ "koniecfica.sk", true },
{ "konijntjes.nl", true },
- { "konings.it", true },
+ { "koningskwartiertje.nl", true },
{ "koninkrijk.net", true },
+ { "konkai.store", true },
{ "konklone.com", true },
{ "konoe.studio", true },
{ "konosuke.jp", true },
@@ -19954,12 +20695,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "konst.se", true },
{ "kontaxis.org", true },
{ "kontorhaus-schlachte.de", true },
+ { "kontorhaus-stralsund.de", true },
+ { "kontrolapovinnosti.cz", true },
{ "konventa.net", true },
{ "konyalian.com", true },
{ "konzertheld.de", true },
{ "koodaklife.com", true },
{ "koodimasin.ee", true },
{ "koodimasin.eu", true },
+ { "kooer.org", true },
{ "kooli.ee", true },
{ "koolikatsed.ee", true },
{ "koolitee.ee", true },
@@ -19969,16 +20713,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koozal.de", true },
{ "kopfkrieg.org", true },
{ "kopfundseele.de", true },
- { "kopio.jp", true },
{ "kopjethee.nl", true },
+ { "koplancpa.com", true },
{ "koptev.ru", true },
{ "kopteva.ru", true },
{ "korben.info", true },
{ "korea.dating", true },
{ "koreaboo.com", true },
{ "koretech.nl", true },
+ { "korinar.com", true },
+ { "kornrunner.net", true },
{ "korobi.io", true },
{ "korobkovsky.ru", true },
+ { "koroknaimedical.hu", true },
{ "korono.de", true },
{ "korosiprogram.hu", true },
{ "korp.fr", true },
@@ -19991,7 +20738,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kosho.org", true },
{ "kosonaudioteca.com", true },
{ "kost-magazin.de", true },
- { "kostal.com", true },
+ { "kostal.com", false },
{ "kostecki.com", true },
{ "kostecki.org", true },
{ "kostecki.tel", true },
@@ -20006,10 +20753,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kotois.com", true },
{ "kotonoha.cafe", true },
{ "kotori.love", true },
- { "kottur.is", true },
{ "kouki-food.com", true },
+ { "koumakan.cc", true },
{ "koumuwin.com", true },
{ "koushinjo.org", true },
+ { "kouten-jp.com", true },
{ "kov.space", true },
{ "koval.io", true },
{ "kovaldo.ru", true },
@@ -20032,19 +20780,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kplnet.net", true },
{ "kpmgpublications.ie", true },
{ "kpop.re", true },
+ { "kpopsource.com", false },
{ "kpumuk.info", true },
{ "kpx1.de", true },
{ "kr.search.yahoo.com", false },
{ "kr0n.dk", true },
{ "krachtinverbinding.nl", true },
- { "kradalby.no", true },
{ "kraft.blog", true },
{ "kraft.im", true },
{ "kraftfleisch.de", true },
{ "kraftzeiten.de", true },
{ "krag.be", true },
{ "kraga.sk", true },
- { "kraiwan.com", true },
{ "kraiwon.com", true },
{ "kraken.io", true },
{ "kraken.site", true },
@@ -20053,20 +20800,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kralovstvimap.cz", true },
{ "kram.nz", true },
{ "krambeutel.de", true },
- { "krampus-fischamend.at", true },
{ "kramsj.uk", true },
{ "krang.org.uk", true },
{ "krankenpflege-haushaltshilfe.de", true },
{ "krasnodar-avia.ru", true },
{ "krasovsky.me", true },
- { "krausoft.hu", true },
{ "krautomat.com", true },
- { "kraynik.com", true },
{ "krazyboi.com", true },
{ "krazykastles.co.uk", true },
{ "krazykoolkastles.com", true },
{ "krazyphotobooths.co.uk", true },
- { "krc.link", true },
{ "kreationnext.com", true },
{ "kreativelabs.ch", true },
{ "kreativstrecke.de", true },
@@ -20083,11 +20826,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "krfuli.com", true },
{ "kriechel.de", true },
{ "krinetzki.de", true },
+ { "kringloopwinkelsteenwijk.nl", true },
{ "kriptosec.com", true },
{ "kris.click", true },
{ "krise-chance.ch", true },
+ { "krisftp.fr", true },
{ "krishnenduayur.org", true },
{ "krishofer.com", true },
+ { "krishouse.fr", true },
{ "krislamoureux.com", true },
{ "krismurray.co.uk", true },
{ "krisstarkey.co.uk", true },
@@ -20100,12 +20846,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "krizevci.info", true },
{ "krmeni.cz", false },
{ "krokedil.se", true },
- { "krokodent.de", true },
{ "kromamoveis.com.br", true },
- { "kromonos.net", true },
{ "kronaw.it", true },
{ "krony.de", true },
- { "kronych.cz", true },
{ "kroon.email", true },
{ "kropkait.pl", true },
{ "kroy.io", true },
@@ -20115,14 +20858,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kruin.net", true },
{ "kruisselbrink.com", true },
{ "kruk.co", true },
+ { "krukhmer.com", true },
{ "krumberconsulting.com", true },
{ "krupa.net.pl", false },
+ { "krusesec.com", true },
{ "krutka.cz", true },
{ "kruu.de", true },
{ "kruzhki-s-kartinkami.ru", true },
{ "kry.no", true },
{ "kry.se", true },
{ "kryglik.com", true },
+ { "krypmonet.com", true },
{ "krypsys.com", true },
{ "krypt.com", true },
{ "kryptera.se", true },
@@ -20135,6 +20881,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kselenia.ee", true },
{ "ksero.center", true },
{ "ksero.wroclaw.pl", true },
+ { "ksham.net", true },
{ "kshlm.in", true },
{ "kspg.tv", true },
{ "kssk.de", true },
@@ -20144,8 +20891,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kthnxbai.xyz", true },
{ "kts-thueringen.de", true },
{ "ktsee.eu.org", true },
+ { "ktsofas.gr", true },
{ "ktw.lv", true },
{ "ku-7.club", true },
+ { "ku.io", false },
+ { "kuaitiyu.org", true },
{ "kualiti.net", true },
{ "kualo.co.uk", true },
{ "kualo.com", true },
@@ -20157,17 +20907,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kubik-rubik.de", false },
{ "kubkprf.ru", true },
{ "kublis.ch", true },
+ { "kuchen-am-stiel.de", true },
+ { "kuchenfeelisa.de", true },
{ "kuchentraum.eu", true },
{ "kucnibudzet.com", true },
{ "kucukayvaz.com", true },
{ "kudo.co.id", true },
- { "kueche-co.de", true },
+ { "kueche-co.de", false },
{ "kuechenprofi-group.de", false },
{ "kuehndel.org", true },
{ "kuehnel-bs.de", true },
{ "kuehnel-online.eu", true },
+ { "kuehnel.org", false },
{ "kuemmerlin.eu", true },
{ "kuemmling.eu", true },
+ { "kugelblitz.co", true },
{ "kuhn-elektrotechnik.de", true },
{ "kuhne-electronic.de", true },
{ "kuhnelautorepair.com", true },
@@ -20182,8 +20936,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kumachan.biz", true },
{ "kumalog.com", true },
{ "kumasanda.jp", true },
- { "kundo.se", true },
+ { "kumilasvegas.com", true },
{ "kungerkueken.de", true },
+ { "kunra.de", true },
{ "kunstdrucke-textildruck.de", true },
{ "kunstfehler.at", true },
{ "kunstundunrat.de", true },
@@ -20203,7 +20958,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kuroinu.jp", true },
{ "kurona.ga", true },
{ "kuronekogaro.com", true },
- { "kurrende.nrw", true },
+ { "kurrende.nrw", false },
{ "kurrietv.nl", true },
{ "kurschies.de", true },
{ "kurserne.dk", true },
@@ -20221,9 +20976,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kutukupret.com", true },
{ "kutus.ee", true },
{ "kuzbass-pwl.ru", true },
- { "kuzdrowiu24.pl", true },
{ "kvadratnimeter.si", true },
{ "kvalita-1a.cz", true },
+ { "kvalitetsaktiepodden.se", true },
{ "kvalitnitesneni.cz", true },
{ "kvantel.no", true },
{ "kvcc.com.au", true },
@@ -20238,13 +20993,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kwcolville.com", true },
{ "kwedo.com", true },
{ "kwench.com", true },
- { "kwiknews.com", true },
- { "kwmr.me", true },
{ "kwok.cc", true },
+ { "kwoll.de", true },
{ "kwyxz.org", true },
{ "kx197.com", true },
{ "kxah35.com", true },
+ { "kxline.com", true },
{ "kxnrl.com", false },
+ { "kxway.com", true },
{ "kybi.sk", true },
{ "kydara.com", true },
{ "kyledrake.net", true },
@@ -20252,9 +21008,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kylejohnson.io", true },
{ "kylelaker.com", true },
{ "kylescastles.co.uk", true },
- { "kyliehunt.com", true },
{ "kylinj.com", false },
- { "kynaston.org.uk", true },
{ "kynastonwedding.co.uk", true },
{ "kyobostory-events.com", true },
{ "kyoko.org", true },
@@ -20262,6 +21016,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kyoto-mic.com", true },
{ "kyoto-sake.net", true },
{ "kyoto-tomikawa.jp", true },
+ { "kyoto-tomoshibi.jp", true },
{ "kyprexxo.com", true },
{ "kyras-castles.co.uk", true },
{ "kyunyuki.com", true },
@@ -20277,22 +21032,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "l4n-clan.de", true },
{ "l7plumbing.com.au", true },
{ "l7world.com", true },
- { "l9.fr", true },
+ { "l9.fr", false },
{ "la-baldosa.fr", true },
- { "la-cave-a-nodo.fr", false },
+ { "la-cave-a-nodo.fr", true },
{ "la-compagnie-des-elfes.fr", true },
+ { "la-fenice-neheim.de", true },
{ "la-ganiere.com", true },
{ "la-kaz-a-velo.fr", true },
{ "la-maison.ch", true },
{ "la-maison.eu", true },
{ "la-petite-entreprise.com", true },
{ "la-tourmaline.ch", true },
+ { "laac.io", true },
{ "laassari.me", false },
{ "laatikko.io", true },
{ "laatjeniethackmaken.nl", true },
- { "laballoons.com", true },
{ "labande-annonce.fr", true },
+ { "labcenter.com", true },
{ "labcoat.jp", true },
+ { "labms.com.au", true },
{ "labobooks.com", true },
{ "laboitebio-logique.ca", true },
{ "labortogether.com", true },
@@ -20314,6 +21072,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lachlan-harris.com", true },
{ "lachlan.com", true },
{ "lachosetypo.com", true },
+ { "lachyoga-schwieberdingen.de", true },
{ "lacicloud.net", true },
{ "lacigf.org", true },
{ "laclaque.ch", true },
@@ -20332,12 +21091,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ladraiglaan.com", true },
{ "lady-2.jp", true },
{ "ladyanna.de", true },
- { "ladybugjam.com", true },
+ { "ladyofhopeparish.org", true },
{ "laeso.es", true },
{ "laextra.mx", true },
{ "lafayette-rushford.com", true },
{ "lafcheta.info", true },
- { "lafeemam.fr", true },
{ "lafema.de", true },
{ "lafillepolyvalente.ca", true },
{ "lafillepolyvalente.com", true },
@@ -20350,17 +21108,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lagazzettadigitale.it", true },
{ "lagerauftrag.info", true },
{ "lagit.in", true },
- { "laglab.org", false },
- { "lagodny.eu", true },
{ "lagout.org", true },
{ "lagriffeduservice.fr", true },
{ "laguiadelvaron.com", true },
{ "laguinguette.fr", true },
+ { "lagunacoastrealestate.com", true },
{ "lahipotesisgaia.com", true },
{ "lahnau-akustik.de", true },
{ "lahora.com.ec", true },
{ "lai.is", true },
{ "lain.at", true },
+ { "lain.li", true },
{ "laindonleisure.co.uk", true },
{ "lak-berlin.de", true },
{ "lakarwebb.se", true },
@@ -20381,6 +21139,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lakesherwoodlighting.com", true },
{ "lakesherwoodoutdoorlighting.com", true },
{ "lakeshowlife.com", true },
+ { "lakewoodcityglass.com", true },
{ "lakhesis.net", true },
{ "lakonia.com.br", true },
{ "lalalab.com", true },
@@ -20402,6 +21161,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lamiaposta.email", false },
{ "lamikvah.org", true },
{ "laminine.info", true },
+ { "lamontre.ru", true },
{ "lamp.re", false },
{ "lamp24.se", true },
{ "lampade.it", true },
@@ -20415,7 +21175,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lampenwelt.de", true },
{ "lampposthomeschool.com", true },
{ "lampy.pl", true },
+ { "lamunyon.com", true },
{ "lan.biz.tr", true },
+ { "lana.swedbank.se", true },
{ "lanahallen.com", true },
{ "lanbroa.eu", true },
{ "lancashirecca.org.uk", true },
@@ -20454,6 +21216,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lanetix.com", true },
{ "lanforalla.se", true },
{ "lang-php.com", true },
+ { "langatang.com", true },
{ "langbein.org", true },
{ "langguth.io", true },
{ "langkahteduh.com", true },
@@ -20464,6 +21227,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "languageterminal.com", true },
{ "langworth.com", true },
{ "langzijn.nl", true },
+ { "lanhhuyet510.tk", true },
{ "lanna.io", true },
{ "lannainnovation.com", true },
{ "lanodan.eu", true },
@@ -20484,7 +21248,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "laozhu.me", true },
{ "laparoscopia.com.mx", true },
{ "lapassiondutrading.com", true },
- { "laperfumista.es", true },
+ { "lapicena.eu", true },
{ "lapidge.net", true },
{ "lapix.com.co", true },
{ "laplacesicherheit.de", true },
@@ -20508,7 +21272,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "largeviewer.com", true },
{ "lariposte.org", true },
{ "lariscus.eu", true },
- { "larky.top", true },
{ "larondinedisinfestazione.com", true },
{ "larptreff.de", true },
{ "larraz.es", true },
@@ -20522,8 +21285,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "larsklene.nl", true },
{ "larsklint.com", true },
{ "laruga.co.uk", true },
+ { "larvatoken.org", true },
{ "lasalle.wa.edu.au", true },
{ "lasarmas.com", true },
+ { "lasavonnerieducroisic.fr", true },
{ "lascana.co.uk", true },
{ "lasereyess.net", true },
{ "laserfuchs.de", true },
@@ -20534,6 +21299,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lask.in", true },
{ "laskas.pl", true },
{ "laspequenassemillas.com", true },
+ { "lasrecetascocina.com", true },
{ "lasrecetasdeguada.com", true },
{ "lasse-it.dk", true },
{ "lasseleegaard.com", true },
@@ -20543,7 +21309,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lassesworld.com", true },
{ "lassesworld.se", true },
{ "lastchancetraveler.com", true },
- { "lastharo.com", true },
{ "lastpass.com", false },
{ "lastrada-minden.de", true },
{ "lastweekinaws.com", true },
@@ -20573,7 +21338,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lattyware.com", true },
{ "laubacher.io", true },
{ "lauchundei.at", true },
- { "lauensteiner.de", true },
+ { "lauensteiner.de", false },
{ "laufers.pl", true },
{ "laufpix.de", true },
{ "lauftreff-himmelgeist.de", true },
@@ -20581,6 +21346,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "laukstein.com", true },
{ "launayflorian.net", true },
{ "launchkey.com", false },
+ { "launchmylifend.com", true },
{ "launchpad-app2.com", true },
{ "launchpadder2.com", true },
{ "lauraandwill.wedding", false },
@@ -20599,6 +21365,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "laut.digital", true },
{ "lauxzahnheilkunde.de", true },
{ "lauzon-hitter.com", true },
+ { "lavabit.no", true },
{ "lavalite.de", true },
{ "lavamob.com", true },
{ "lavanderia.roma.it", true },
@@ -20609,28 +21376,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lavinya.net", true },
{ "lavishlooksstudio.com.au", true },
{ "lavita.de", true },
+ { "lavitaura.com", true },
{ "lavitrine-une-collection.be", true },
{ "lavoieducoeur.be", true },
{ "lavoiepharmd.com", true },
{ "lavolte.net", true },
- { "lavval.com", false },
+ { "law-colleges.com", true },
{ "law-peters.de", true },
{ "law.co.il", true },
+ { "law22.com", true },
+ { "lawbirduk.com", true },
{ "lawformt.com", true },
{ "lawn-seeds.com", true },
{ "lawnuk.com", true },
{ "lawrenceberg.nl", true },
{ "lawrencemurgatroyd.com", true },
+ { "lawrencewhiteside.com", true },
+ { "lawyerdigital.co.bw", true },
{ "lawyerkf.com", true },
- { "layfully.me", true },
- { "laylo.io", true },
- { "laylo.nl", true },
+ { "laylo.io", false },
+ { "laylo.nl", false },
{ "layoutsatzunddruck.de", true },
+ { "lazistance.com", true },
{ "lazowik.pl", true },
{ "lazurit.com", true },
{ "lazyboston.com", true },
{ "lazyclock.com", true },
{ "lazyframe.com", true },
+ { "lazyhelp.com", true },
{ "lazytux.org", true },
{ "lb-toner.de", true },
{ "lbayer.com", true },
@@ -20638,6 +21411,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lbgconsultores.com", true },
{ "lbihrhelpdesk.com", true },
{ "lbls.me", true },
+ { "lbmblaasmuziek.nl", true },
{ "lbphacker.pw", true },
{ "lbs-logics.com", true },
{ "lbsi-nordwest.de", true },
@@ -20646,6 +21420,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lc-promiss.de", true },
{ "lca-pv.de", true },
{ "lca.gov", true },
+ { "lcacommons.gov", true },
{ "lcars-sv.info", true },
{ "lcbizsolutions.com", true },
{ "lce-events.com", true },
@@ -20678,19 +21453,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leadbox.cz", true },
{ "leaderoftheresistance.com", false },
{ "leaderoftheresistance.net", false },
- { "leadinfo.com", true },
{ "leadingsalons.com", true },
{ "leadquest.nl", true },
- { "leadstart.org", true },
{ "leafandseed.co.uk", true },
- { "leafans.tk", true },
+ { "leafans.tk", false },
{ "leafinote.com", true },
{ "leakforums.net", true },
{ "leamsigc.com", true },
{ "leandre.cn", true },
+ { "leankit.com", true },
{ "leanplando.com", true },
{ "leap-it.be", true },
{ "leapandjump.co.uk", true },
+ { "learn-smart.uk", true },
+ { "learndev.info", true },
{ "learnflakes.net", true },
{ "learnforestry.com", true },
{ "learning-id.com", true },
@@ -20699,10 +21475,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "learningman.top", true },
{ "learnpianogreece.com", true },
{ "learnplayground.com", true },
- { "learntale.com", true },
{ "learntube.cz", true },
{ "leaseit24.com", true },
{ "leaseit24.de", true },
+ { "leaseplan.com", true },
{ "leasit.at", true },
{ "leasit.de", true },
{ "leastsignificantbit.de", true },
@@ -20724,6 +21500,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leclaire.com.br", true },
{ "lecoinchocolat.com", true },
{ "lectricecorrectrice.com", true },
+ { "led-jihlava.cz", true },
{ "led.xyz", true },
{ "ledecologie.com.br", true },
{ "ledeguisement.com", true },
@@ -20732,13 +21509,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ledscontato.com.br", true },
{ "ledzom.ru", false },
{ "lee-fuller.co.uk", true },
- { "leebiblestudycenter.co.uk", true },
- { "leebiblestudycenter.com", true },
+ { "leeaaronsrealestate.com", true },
{ "leebiblestudycentre.co.uk", true },
- { "leebiblestudycentre.com", true },
{ "leech360.com", false },
{ "leeclemens.net", false },
{ "leedev.org", true },
+ { "leekspin.ml", true },
{ "leelaylay.com", true },
{ "leere.me", true },
{ "leerliga.de", true },
@@ -20760,9 +21536,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "legacy.bank", true },
{ "legadental.com", true },
{ "legaillart.fr", true },
+ { "legaldesk.com", true },
{ "legalinmotion.es", true },
{ "legalrobot.com", true },
- { "legatofmrc.fr", true },
{ "legendarycamera.com", true },
{ "legendesdechine.ch", true },
{ "legendofkrystal.com", true },
@@ -20782,28 +21558,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lehti-tarjous.net", true },
{ "leibniz-remscheid.de", false },
{ "leideninternationalreview.com", true },
- { "leigh.life", true },
{ "leilautourdumon.de", true },
{ "leilonorte.com", true },
- { "leiming.co", true },
{ "leinfelder.in", true },
{ "leipzig.photo", true },
{ "leipziger-triathlon.de", true },
{ "leisure-blog.com", true },
{ "leisure-supplies-show.co.uk", true },
- { "leition.com", true },
- { "leitionusercontent.com", true },
{ "leiyun.me", true },
{ "lejardindesmesanges.fr", true },
+ { "lektier.cf", true },
{ "lel.ovh", true },
{ "lelambiental.com.br", true },
{ "lemarcheelagrandeguerra.it", true },
+ { "lemazol.fr", true },
{ "lemni.top", true },
{ "lemoine.at", true },
{ "lemondenumerique.com", true },
{ "lemondrops.xyz", true },
{ "lemonop.com", true },
{ "lemonparty.co", true },
+ { "lemonrockbiketours.com", true },
{ "lemonthy.ca", true },
{ "lemonthy.com", true },
{ "lemouillour.fr", true },
@@ -20818,6 +21593,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lenidh.de", true },
{ "leninalbertop.com.ve", true },
{ "lennyobez.be", true },
+ { "lenou.nl", true },
{ "lenr-forum.com", true },
{ "lensdoctor.com", true },
{ "lenspirations.com", true },
@@ -20827,7 +21603,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lenyip.me", true },
{ "lenyip.works", true },
{ "leoandpeto.com", true },
- { "leochedibracchio.com", true },
{ "leodaniels.com", true },
{ "leodraxler.at", true },
{ "leola.cz", true },
@@ -20840,8 +21615,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leonax.net", true },
{ "leonbuitendam.nl", true },
{ "leondenard.com", true },
- { "leonhooijer.nl", false },
{ "leonklingele.de", true },
+ { "leontiekoetter.de", true },
+ { "leopoldina.net", true },
{ "leowkahman.com", true },
{ "lep.gov", true },
{ "lepenetapeti.com", true },
@@ -20868,10 +21644,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lesarts.com", true },
{ "lesberger.ch", true },
{ "lesconteursavis.org", true },
+ { "lescourtiersbordelais.com", true },
{ "leseditionsbraquage.com", true },
{ "lesfilmsavivre.com", true },
{ "lesgoodnews.fr", true },
- { "lesharris.com", true },
{ "leshervelines.com", true },
{ "lesjardinsdemathieu.net", true },
{ "lesmamy.ch", true },
@@ -20888,7 +21664,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lesterrassesdusoleil.ch", true },
{ "lesyndicat.info", true },
{ "letemps.ch", true },
+ { "leto12.xyz", true },
{ "letraba.com", true },
+ { "letranif.net", true },
{ "lets-bounce.com", true },
{ "lets-go-acoustic.de", true },
{ "lets-ktai.jp", true },
@@ -20902,12 +21680,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "letsgowhilewereyoung.com", true },
{ "letskick.ru", true },
{ "letspartyrugby.co.uk", true },
+ { "letssackcancer.org", true },
{ "letstalkcounseling.com", true },
{ "letterbox-online.de", true },
{ "letterdance.de", true },
{ "letteringinstitute.com", true },
{ "lettersblogatory.com", true },
{ "lettori.club", true },
+ { "letzchange.org", true },
{ "leuenhagen.com", true },
{ "leulu.com", true },
{ "leumi-how-to.co.il", true },
@@ -20916,18 +21696,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "levanscatering.com", true },
{ "levelaccordingly.com", true },
{ "levelcheat.com", true },
+ { "leveluplv.com", true },
{ "leveluprails.com", true },
{ "levendwater.org", true },
{ "levensbron.nl", true },
{ "leverj.io", true },
{ "levermann.eu", true },
{ "leviaan.nl", true },
+ { "levineteamestates.com", true },
{ "levinus.de", true },
{ "leviscop.com", true },
{ "leviscop.de", true },
{ "lew.im", true },
{ "lewdawson.com", true },
{ "lewis.li", true },
+ { "lewiscollard.com", true },
{ "lewisdatasecurity.com", true },
{ "lewislaw.com", true },
{ "lewisllewellyn.me", true },
@@ -20943,25 +21726,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lfgss.com", true },
{ "lfklzw.com", true },
{ "lfrconseil.com", true },
+ { "lfullerdesign.com", true },
+ { "lg-waps.go.jp", true },
+ { "lg-waps.jp", true },
+ { "lg0.site", true },
+ { "lgbt-colleges.com", true },
{ "lgbt.io", true },
{ "lgbt.ventures", true },
- { "lgbtventures.com", true },
{ "lghfinancialstrategy.ch", true },
{ "lgpecasoriginais.com.br", true },
{ "lhajn.cz", true },
{ "lhakustik.se", true },
{ "lhalbert.xyz", true },
+ { "lhamaths.online", true },
{ "lhconsult.tk", false },
+ { "lhgavarain.com", true },
{ "lhost.su", true },
{ "li-ke.co.jp", true },
{ "li.search.yahoo.com", false },
{ "liam-w.io", true },
{ "liamelliott.me", true },
{ "liamlin.me", true },
- { "lian-in.com", true },
- { "lian-in.net", true },
- { "liang-li88.com", true },
- { "liang-li88.net", true },
{ "lianye1.cc", true },
{ "lianye2.cc", true },
{ "lianye3.cc", true },
@@ -20983,13 +21768,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "librarytools.com", false },
{ "librazy.org", true },
{ "libre-service.de", true },
+ { "libre.cr", true },
{ "libre.university", true },
{ "libreboot.org", true },
{ "librebox.de", true },
{ "libreduca.com", true },
{ "librelamp.com", true },
{ "libremail.nl", true },
- { "librends.org", true },
{ "libreoffice-from-collabora.com", true },
{ "libreofficefromcollabora.com", true },
{ "librervac.org", true },
@@ -21017,36 +21802,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lidogr.com", true },
{ "lidong.me", true },
{ "lidow.eu", true },
+ { "lidtkemotors.com", true },
{ "liduan.net", false },
+ { "lie.as", true },
{ "liebel.org", true },
{ "lieberwirth.biz", true },
{ "lieblingsholz.de", true },
+ { "liemen.net", true },
+ { "lierrmm.space", true },
{ "lieuu.com", true },
{ "lifanov.com", true },
{ "life-emotions.pt", true },
{ "lifeartstudios.net", true },
{ "lifebetweenlives.com.au", true },
+ { "lifeboxhealthcare.co.uk", true },
{ "lifecism.com", true },
+ { "lifeenrichmentnc.com", true },
{ "lifegrip.com.au", true },
{ "lifeinhex.com", true },
{ "lifeinsurancepro.org", true },
{ "lifekiss.ru", true },
+ { "lifelenz.com", true },
{ "lifematenutrition.com", true },
{ "lifemstyle.com", true },
{ "lifeqa.net", true },
- { "lifequotes-uk.co.uk", true },
+ { "lifereset.it", true },
{ "lifesafety.com.br", true },
{ "lifestyle7788.com", true },
{ "lifestylefinancial.ca", true },
+ { "lifetree.network", true },
{ "lifi.digital", true },
{ "lifi.is", true },
{ "liftie.info", true },
+ { "ligadosgames.com", true },
{ "light-up.xyz", true },
{ "light.mail.ru", true },
{ "lightbox.co", true },
- { "lightdark.xyz", true },
{ "lightdream.tech", true },
- { "lighthouseinstruments.com", true },
{ "lighting-centres.co.uk", true },
{ "lightingagoura.com", true },
{ "lightingagourahills.com", true },
@@ -21073,14 +21865,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lightsheep.no", true },
{ "lightspeed.com", false },
{ "lightspeedta.co", true },
- { "lighttp.com", true },
{ "lightupcollective.co.uk", true },
{ "lignite.com", true },
{ "lignoma.com", true },
{ "ligonier.com", true },
{ "lihaul.dnsalias.net", true },
- { "lijero.co", true },
{ "lijncoaching.nl", true },
+ { "lijstje.be", true },
+ { "lijstje.nl", true },
{ "likc.me", true },
{ "likeablehub.com", true },
{ "likeabox.de", true },
@@ -21088,15 +21880,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "likegeeks.com", true },
{ "likehifi.de", true },
{ "likemovies.de", true },
- { "likenewhearing.com.au", true },
{ "likere.com", true },
{ "likesforinsta.com", true },
{ "likui.me", true },
{ "lilaccakeboutique.com", true },
+ { "liliang13.com", true },
+ { "liljohnsanitary.net", true },
{ "lillepuu.com", true },
{ "lily-bearing.com", true },
{ "lily-inn.com", true },
{ "lilyfarmfreshskincare.com", true },
+ { "lilylasvegas.com", true },
{ "lilysbouncycastles.com", true },
{ "lim-light.com", true },
{ "limap.ch", true },
@@ -21106,7 +21900,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "limeburst.net", true },
{ "limelabs.de", true },
{ "limelabs.io", true },
- { "limeres.com", true },
{ "limereslaw.com", true },
{ "limitededitioncomputers.com", true },
{ "limitededitionsolutions.com", true },
@@ -21116,17 +21909,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "limousineservicezurich.com", true },
{ "limpid.nl", true },
{ "limules.ch", true },
- { "limunana.com", true },
{ "lin.fi", true },
{ "linan.blog", true },
{ "lincdavis.com", true },
+ { "linchpin-it.com", true },
{ "lincnaarzorg.nl", true },
{ "lincolnfinewines.com", true },
+ { "lincolnpedsgroup.com", true },
{ "lincolnsfh.com", true },
{ "lincolnwayflorist.com", true },
{ "lindalap.fi", true },
+ { "lindaolsson.com", true },
{ "lindemann.space", true },
- { "linden.me", true },
{ "lindeskar.se", true },
{ "lindholmen.club", true },
{ "lindnerhof-taktik.de", true },
@@ -21142,7 +21936,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linearaudio.net", true },
{ "linearaudio.nl", true },
{ "linearmap.com", true },
- { "linernotekids.com", true },
{ "linfamilygc.com", true },
{ "lingerie.com.br", true },
{ "lingeriesilhouette.com", true },
@@ -21172,6 +21965,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linost.com", true },
{ "linqhost.nl", true },
{ "linss.com", true },
+ { "lintellift.com", true },
{ "lintmx.com", true },
{ "linusdrop.tips", true },
{ "linux-audit.com", true },
@@ -21184,6 +21978,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linux.im", true },
{ "linux.pizza", true },
{ "linux3.org", true },
+ { "linuxadictos.com", true },
{ "linuxbabe.com", true },
{ "linuxbierwanderung.com", true },
{ "linuxchick.se", true },
@@ -21191,7 +21986,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linuxdays.cz", true },
{ "linuxforum.ch", true },
{ "linuxhostsupport.com", true },
- { "linuxincluded.com", true },
{ "linuxiuvat.de", true },
{ "linuxlounge.net", true },
{ "linuxos.org", true },
@@ -21207,6 +22001,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lipartydepot.com", true },
{ "lipex.com", true },
{ "lipoabaltimore.org", true },
+ { "lipthink.com", true },
{ "liqd.net", true },
{ "liquid.cz", true },
{ "liquidhost.co", true },
@@ -21219,8 +22014,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lirnberger.com", true },
{ "lisamccorrie.com", true },
{ "lisamortimore.com", true },
+ { "lisanzauomo.com", true },
{ "lisburnhottubnbounce.co.uk", true },
- { "lisieuxarquitetura.com.br", true },
{ "liskgdt.net", true },
{ "lisky.ru", true },
{ "lislan.org.uk", true },
@@ -21237,6 +22032,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "litebits.com", true },
{ "litemind.com", true },
{ "literarymachin.es", true },
+ { "literature-schools.com", true },
{ "litfin.name", true },
{ "lithan.com", true },
{ "lithesalar.se", true },
@@ -21306,34 +22102,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "livetoride.co.za", true },
{ "livetube.tv", true },
{ "livi.co", true },
+ { "livi.co.uk", true },
+ { "livi.fr", true },
{ "living-space.co.nz", true },
{ "living24.de", true },
{ "livingforreal.com", true },
+ { "livinginhimalone.com", true },
+ { "livingkingsinc.net", true },
{ "livinglocalnashville.com", true },
{ "livingworduk.org", true },
{ "livnev.me", true },
{ "livnev.xyz", true },
{ "livolett.de", true },
{ "livrariacoad.com.br", true },
+ { "livres-et-stickers.com", true },
{ "livroseuniformes.com.br", true },
{ "lixtick.com", true },
+ { "liyang.pro", false },
{ "liyin.date", true },
- { "liyinjia.com", true },
+ { "liyunbin.com", true },
{ "liz.ee", true },
{ "lizardsystems.com", true },
{ "lizhi.io", true },
{ "lizhi123.net", true },
+ { "lizmooredestinationweddings.com", true },
{ "lizzaran.io", true },
{ "ljason.cn", true },
+ { "ljc.ro", true },
{ "ljs.io", true },
{ "lk-hardware.cz", true },
{ "lknw.de", true },
{ "lkp111138.me", true },
{ "llamacuba.com", true },
+ { "llemoz.com", true },
{ "ller.xyz", true },
{ "llm-guide.com", true },
+ { "llnl.gov", true },
{ "lloyd-day.me", true },
+ { "llslb.com", false },
{ "lm-pumpen.de", false },
+ { "lmcm.io", true },
{ "lmddgtfy.net", true },
{ "lmerza.com", true },
{ "lmintlcx.com", true },
@@ -21341,17 +22149,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lmsptfy.com", true },
{ "lmtls.me", true },
{ "lmtm.eu", true },
+ { "lng-17.org", true },
{ "lnhequipmentltd.com", true },
{ "lntu.org", true },
{ "lnx.li", true },
{ "lnyltx.cn", true },
{ "load-ev.de", true },
{ "loadlow.me", true },
- { "loadtraining.com", true },
{ "loadwallet.com", true },
{ "loanaway.ca", true },
{ "loancompare.co.za", true },
{ "loandolphin.com.au", true },
+ { "loanreadycredit.com", true },
{ "loanstreet.nl", true },
{ "lob-staging.com", true },
{ "lob.com", true },
@@ -21362,7 +22171,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "local360.net", true },
{ "localbandz.com", true },
{ "localbitcoins.com", true },
- { "localblitz.com", true },
{ "localblock.co.za", true },
{ "localbouncycastle.com", true },
{ "localdecor.com.br", true },
@@ -21382,22 +22190,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locationvoitureportugal.com", true },
{ "locatorplus.gov", true },
{ "locauxrama.fr", true },
- { "locker.email", false },
+ { "locker.email", true },
{ "locker.plus", true },
{ "lockify.com", true },
{ "lockpick.nl", true },
{ "lockpicks.se", true },
{ "lockr.io", true },
- { "locksmith-durbannorth.co.za", true },
{ "locksmith-sanantonio-tx.com", true },
{ "locksmithbalchsprings.com", true },
{ "locksmithballito.com", true },
{ "locksmithbluff.co.za", true },
- { "locksmithdearborn.com", true },
{ "locksmithedmonds.com", true },
{ "locksmithgarland-tx.com", true },
{ "locksmithgrapevinetx.com", true },
- { "locksmithhillcrest.co.za", true },
{ "locksmithindurban.co.za", true },
{ "locksmithlivoniami.com", true },
{ "locksmithmadisonheights.com", true },
@@ -21406,7 +22211,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locksmithopen.com", true },
{ "locksmithsammamishwa.com", true },
{ "locksmithsanantoniotexas.com", true },
- { "locksmithsbluff.com", true },
{ "locksmithscottsdaleaz.com", true },
{ "locksmithseattleco.com", true },
{ "locksmithservice-houston.com", true },
@@ -21414,8 +22218,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locksmithspringtx.com", true },
{ "locksmithswestville.com", true },
{ "locksmiththewoodlands.com", true },
+ { "locomocosec.com", true },
{ "locomore.com", true },
{ "locomotionds.com", true },
+ { "locomotive.net.br", true },
{ "locurimunca.co", true },
{ "lodash.com", false },
{ "loddeke.eu", true },
@@ -21434,13 +22240,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "logentries.com", false },
{ "logexplorer.net", true },
{ "logfile.at", true },
- { "logfro.de", true },
- { "logicchen.com", true },
+ { "logfile.ch", true },
{ "logiciel-entreprise-seurann.fr", true },
{ "logicio.ch", false },
{ "logicio.de", false },
{ "logicio.net", false },
{ "logicne-hise.si", true },
+ { "logicoma.com", true },
{ "logicz.top", true },
{ "login.corp.google.com", true },
{ "login.gov", false },
@@ -21480,7 +22286,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lojamagicalx.com", true },
{ "lojamascate.com.br", true },
{ "lojamoleco.com.br", true },
- { "lojamulticapmais.com.br", true },
{ "lojaprimemed.com.br", true },
{ "lojaprojetoagua.com.br", true },
{ "lojasceletro.com.br", true },
@@ -21496,13 +22301,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "loket.nl", true },
{ "lolcorp.pl", true },
{ "lolcow.farm", true },
- { "lolhax.org", true },
{ "loli.net", true },
{ "loli.pet", true },
{ "loli.ski", true },
{ "loli.tube", true },
{ "loli.world", true },
{ "lolibrary.org", true },
+ { "lolic.xyz", true },
+ { "lolico.moe", true },
{ "lolicon.eu", true },
{ "lolkot.ru", true },
{ "lolnames.gg", true },
@@ -21513,19 +22319,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lommyfleet.com", true },
{ "lon-so.com", true },
{ "lona.io", true },
+ { "lonal.com", true },
{ "london-transfers.com", true },
{ "london.dating", true },
{ "londongallery.net", true },
{ "londongynaecologist.co", true },
+ { "londonkan.jp", true },
{ "londonkeyholdingcompany.co.uk", true },
{ "lonelytweets.com", true },
{ "lonesomecosmonaut.com", true },
+ { "lonestarlandandcommercial.com", true },
{ "long-journey.com", true },
+ { "long139.com", true },
+ { "long18.cc", true },
+ { "long688.com", true },
{ "longhaircareforum.com", true },
{ "longhorn-imports.com", true },
{ "longhorn.id.au", true },
- { "longma.pw", true },
{ "longstride.net", true },
+ { "longtermcare.gov", true },
{ "lonniec.com", true },
{ "lonniemason.net", true },
{ "look.co.il", true },
@@ -21543,6 +22355,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lookastic.ru", true },
{ "lookatmysco.re", true },
{ "lookbetweenthelines.com", true },
+ { "looker.wang", true },
{ "lookup-dns.net", true },
{ "lookyman.net", true },
{ "lookzook.com", true },
@@ -21550,25 +22363,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "loony.info", true },
{ "loopower.com", true },
{ "loopstart.org", true },
+ { "looseleafsecurity.com", true },
{ "loothole.com", true },
{ "loovto.net", true },
+ { "loposchokk.com", true },
{ "loqu8.com", true },
+ { "lord.sh", true },
{ "lordofthebrick.com", true },
{ "lore.azurewebsites.net", true },
{ "lorenadumitrascu.ro", true },
{ "loreofthenorth.com", true },
{ "loreofthenorth.nl", true },
+ { "loricozengeller.com", true },
{ "lorientlejour.com", true },
{ "loritaboegl.de", true },
{ "lormansas.com", true },
{ "losangelestown.com", true },
{ "losless.fr", true },
- { "losrascadoresparagatos.com", true },
{ "losreyesdeldescanso.com.ar", true },
{ "lost.host", true },
{ "lost.report", true },
{ "lostkeys.co.uk", true },
{ "lostserver.com", true },
+ { "loteamentomontereiitu.com.br", true },
{ "lothlorien.ca", false },
{ "lotl.ru", true },
{ "lotn.mobi", true },
@@ -21583,24 +22400,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "louange-reconvilier.ch", true },
{ "loucanfixit.com", true },
{ "louerunhacker.fr", true },
+ { "louisemisellinteriors.co.uk", true },
{ "louisvillecarguys.com", true },
- { "louisvillevmug.info", true },
{ "loune.net", true },
{ "loungecafe.net", true },
{ "loungecafe.org", true },
+ { "loungepapillon.com", true },
{ "love4taylor.me", true },
{ "loveandadoreboutique.com", true },
{ "lovebigisland.com", true },
- { "lovebo9.com", true },
- { "lovebo9.net", true },
{ "lovecrystal.co.uk", true },
{ "loveislandgames.com", true },
{ "loveisourweapon.com", true },
- { "lovelens.ch", false },
{ "lovelens.li", false },
{ "lovelivewiki.com", true },
{ "lovelovenavi.jp", true },
{ "lovelytimes.net", true },
+ { "lovemanagementaccounts.co.uk", true },
{ "lovemomiji.com", true },
{ "lovenwishes.com", true },
{ "loveph.one", true },
@@ -21609,12 +22425,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lovesmagical.com", true },
{ "lovesupremefestival.com", true },
{ "lovetravel360.com", true },
+ { "lovevape.co", true },
{ "loveyounastya.com", true },
{ "loveysa.ch", true },
{ "lovg.ren", true },
{ "lovingearth.co", true },
+ { "lovingthermo.com", true },
{ "lovizaim.ru", true },
{ "low-diets.com", true },
+ { "lowcarblab.com", true },
{ "lowcostwire.com.au", true },
{ "lowerpricefinder.com", true },
{ "lowmagnitude.com", true },
@@ -21622,12 +22441,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lowsidetna.com", true },
{ "lowson.ca", true },
{ "loxal.net", true },
- { "loxal.org", true },
+ { "loyaleco.it", true },
{ "loyaltyondemand.club", true },
{ "loyaltyondemand.eu", true },
{ "lp-support.nl", true },
+ { "lpcom.de", true },
+ { "lprcommunity.co.za", true },
{ "lpt-nebreziny.eu", true },
+ { "lqs.me", true },
{ "lra-cloud.de", true },
+ { "lrdo.net", true },
{ "lrssystems.com", true },
{ "ls-alarm.de", true },
{ "lsal.me", true },
@@ -21636,8 +22459,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lshiy.com", true },
{ "lsmpx.com", true },
{ "lsquo.com", true },
- { "lsws.de", true },
- { "lsys.ac", true },
+ { "lsscreens.de", true },
{ "lt.search.yahoo.com", false },
{ "ltaake.com", true },
{ "ltecode.com", true },
@@ -21651,6 +22473,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lublin.toys", true },
{ "lubomirkazakov.com", true },
{ "luc-oberson.ch", true },
+ { "luca-steeb.com", true },
{ "luca.swiss", true },
{ "lucacastelnuovo.nl", false },
{ "lucafontana.net", true },
@@ -21669,17 +22492,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lucidframeworks.com", true },
{ "lucidlight.de", true },
{ "lucidoccult.com", true },
+ { "lucie.jp", true },
{ "lucielavickova.com", true },
{ "luckycastles.co.uk", true },
{ "luckyfrog.hk", true },
{ "luckyxf.com", true },
{ "lucy.science", true },
{ "lucyparsonslabs.com", true },
+ { "lucysan.net", true },
{ "lucz.co", true },
{ "ludek.biz", true },
{ "ludikovsky.name", true },
{ "ludogue.net", true },
{ "ludovic-muller.fr", true },
+ { "ludum.pl", true },
{ "ludwig.im", true },
{ "ludwiggrill.de", true },
{ "ludwigjohnson.se", true },
@@ -21693,7 +22519,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luftbild-siegerland.de", true },
{ "luftreiniger.biz", true },
{ "lufu.io", true },
- { "luganskservers.net", true },
{ "lugbb.org", true },
{ "luginbuehl.be", true },
{ "luginbuehl.eu", true },
@@ -21761,17 +22586,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luoh.me", true },
{ "luohua.im", true },
{ "luongvu.com", true },
+ { "luowu.cc", true },
{ "lupecode.com", true },
{ "lupinencyclopedia.com", true },
{ "lupinenorthamerica.com", true },
{ "luqsus.pl", true },
+ { "lusitom.com", true },
{ "luso-livros.net", true },
- { "lusteniny.cz", false },
+ { "lusteniny.cz", true },
{ "lustige-zitate.com", true },
{ "lustin.fr", true },
{ "lustrum.ch", true },
{ "lusynth.com", true },
- { "luteijn.biz", true },
{ "luteijn.cloud", true },
{ "luteijn.email", true },
{ "luteijn.pro", true },
@@ -21782,9 +22608,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luuppi.fi", true },
{ "luvare.com", true },
{ "luvbridal.com.au", true },
+ { "luvplay.co.uk", true },
{ "luxcraft.eng.br", true },
- { "luxescreenprotector.nl", true },
- { "luxofit.de", true },
+ { "luxescreenprotector.nl", false },
{ "luxsci.com", true },
{ "luxurynsight.net", true },
{ "luxurytimepieces.net", true },
@@ -21795,6 +22621,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luxwatch.com", true },
{ "luyckx.net", true },
{ "luzat.com", true },
+ { "luzfaltex.com", true },
{ "lv.search.yahoo.com", false },
{ "lv0.it", true },
{ "lv5.top", true },
@@ -21805,6 +22632,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lwl12.com", true },
{ "lxd.cc", true },
{ "lxd.pm", true },
+ { "lyam.fr", true },
{ "lycee-saintjoseph-mesnieres.fr", true },
{ "lychankiet.name.vn", false },
{ "lydudlejning.net", true },
@@ -21817,6 +22645,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lyngvaer.no", true },
{ "lynnlaytonnissanparts.com", true },
{ "lynnmosher.com", true },
+ { "lynsec.com", true },
{ "lynthium.com", true },
{ "lynx.nl", true },
{ "lynxbroker.de", true },
@@ -21829,16 +22658,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lys.ch", true },
{ "lyst.co.uk", true },
{ "lyukaacom.ru", true },
- { "lyuly.com", true },
{ "lyx.dk", true },
{ "lzh.one", true },
{ "lzwc.nl", true },
+ { "lzzr.me", true },
{ "m-22.com", true },
{ "m-chemical.com.hk", true },
- { "m-edmondson.co.uk", true },
{ "m-gh.info", true },
+ { "m-idea.jp", true },
{ "m-kleinert.de", true },
{ "m-mail.fr", true },
+ { "m-monitor.pl", true },
{ "m-orthodontic.com", true },
{ "m-ses.fr", true },
{ "m.facebook.com", true },
@@ -21848,6 +22678,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "m132.eu", true },
{ "m134.eu", true },
{ "m2epro.com", true },
+ { "m2il.co", true },
{ "m2os.com", true },
{ "m4rcus.de", true },
{ "ma-eir.nl", true },
@@ -21872,9 +22703,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mach-politik.ch", true },
{ "macha.cloud", true },
{ "machbach.com", true },
- { "machbach.net", true },
{ "machetewp.com", true },
{ "machikka.com", false },
+ { "machinetransport.com", true },
{ "macht-elektro.de", true },
{ "machtweb.de", true },
{ "machu-picchu.nl", true },
@@ -21897,10 +22728,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "macosxfilerecovery.com", true },
{ "macoun.de", true },
{ "macros.co.jp", true },
+ { "macstore.pe", true },
{ "mactools.com.co", true },
{ "mad.ninja", true },
{ "madae.nl", true },
{ "madars.org", false },
+ { "madbicicletas.com", true },
{ "madbin.com", true },
{ "madbouncycastles.co.uk", true },
{ "maddi.biz", true },
@@ -21909,6 +22742,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maddistonpsa.co.uk", true },
{ "maddreefer.com", true },
{ "made-in-earth.co.jp", true },
+ { "made-to-usb.com", true },
{ "madebydusk.com", true },
{ "madebyshore.com", true },
{ "madeinchezmoi.net", true },
@@ -21917,13 +22751,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "madeloc.com", true },
{ "mademoiselledemargaux.com", true },
{ "mader.jp", true },
- { "maderasbrown.com", true },
{ "madin.ru", true },
{ "madirc.net", true },
+ { "madisonent-facialplasticsurgery.com", true },
+ { "madisonsquarerealestate.com", true },
{ "madmar.ee", true },
{ "madoka.nu", true },
+ { "madokami.pw", true },
{ "madreacqua.org", true },
+ { "madrecha.com", true },
{ "madridartcollection.com", true },
+ { "madscientistwebdesign.com", true },
{ "madtec.de", true },
{ "madusecurity.com", true },
{ "mae-berlinistanbul.com", true },
@@ -21933,7 +22771,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maelstrom-fury.eu", true },
{ "maelstrom.ninja", true },
{ "maeplasticsurgery.com", true },
- { "maerzpa.de", true },
{ "maestrano.com", true },
{ "maff.co.uk", true },
{ "maff.scot", false },
@@ -21958,10 +22795,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magewell.nl", true },
{ "maggie.com", true },
{ "magi-cake.com", true },
+ { "magi.systems", true },
{ "magic-cards.info", true },
{ "magical-secrets.com", true },
{ "magical.rocks", true },
{ "magicalcircuslv.com", true },
+ { "magicalshuttle.fr", true },
{ "magicbroccoli.de", true },
{ "magiccards.info", true },
{ "magicdaysomagh.co.uk", true },
@@ -21970,9 +22809,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magicspaceninjapirates.de", true },
{ "magictable.com", true },
{ "magicvodi.at", true },
- { "magieamour.com", true },
{ "magilio.com", true },
{ "magnacarebroker.com", true },
+ { "magnate.co", true },
{ "magnatronic.com.br", true },
{ "magneticattraction.com.au", true },
{ "magnetpass.uk", true },
@@ -21983,7 +22822,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magnoliastrong.com", true },
{ "magnunbaterias.com.br", true },
{ "magonote-nk.com", true },
- { "magosmedellin.com", true },
+ { "magravsitalia.com", true },
{ "magu.kz", true },
{ "maguire.email", true },
{ "magwin.co.uk", true },
@@ -22007,6 +22846,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mail.google.com", true },
{ "mail.storage", true },
{ "mail.yahoo.com", false },
+ { "mail180.com", true },
{ "mail4you.in", true },
{ "mailbox.mg", true },
{ "mailbox.org", true },
@@ -22017,6 +22857,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mailjet.tech", true },
{ "maillady-susume.com", true },
{ "mailmag.net", false },
+ { "mailnara.co.kr", true },
{ "mailto.space", true },
{ "mailum.org", false },
{ "mainechiro.com", true },
@@ -22033,23 +22874,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maispa.com", true },
{ "maisretorno.com", true },
{ "maisvitaminas.com.br", true },
+ { "maitheme.com", true },
{ "maitrechaton.fr", true },
{ "maitrise-orthopedique.com", true },
{ "majahoidja.ee", true },
{ "majaweb.cz", true },
{ "majemedia.com", true },
{ "majesnix.org", true },
+ { "majesticcolorado.com", true },
{ "majid.info", true },
{ "majkassab.com", true },
{ "majkassab.net", true },
{ "majkassab.org", true },
{ "majkl.me", true },
+ { "majkl.xyz", true },
+ { "majkl578.cz", true },
{ "majkyto.cz", true },
+ { "majlovesreg.one", true },
{ "majolka.com", true },
+ { "majorpaintingco.com", true },
{ "makaleci.com", true },
{ "makalu.me", true },
{ "make-your-own-song.com", true },
{ "makeaboldmove.com", true },
+ { "makechanges.com.au", true },
{ "makedin.net", true },
{ "makem-bounce.co.uk", true },
{ "makenaiyo-fx.com", true },
@@ -22058,8 +22906,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maketheneighborsjealous.com", true },
{ "makeurbiz.com", true },
{ "maki-chan.de", true },
- { "makino.games", true },
+ { "makinen.ru", true },
{ "makkusu.photo", true },
+ { "makkyon.com", true },
{ "makowitz.cz", true },
{ "maktoob.search.yahoo.com", false },
{ "maku.edu.tr", true },
@@ -22078,6 +22927,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "malibu-electric.com", true },
{ "malibuelectrical.com", true },
{ "malibuexteriorlighting.com", true },
+ { "malik.holdings", true },
{ "malik.id", true },
{ "malikussa.id", true },
{ "malikussaid.com", true },
@@ -22098,24 +22948,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "malscan.com", true },
{ "malscan.org", true },
{ "malta-firma.com", true },
+ { "malte-kiefer.de", true },
{ "malufs.com.br", true },
{ "malware.watch", true },
{ "malwareinvestigator.gov", true },
{ "malwarekillers.com", true },
{ "malwaretips.com", false },
- { "malwareverse.us", true },
{ "maly.cz", true },
{ "malyshata.com", true },
{ "malysvet.net", true },
{ "mamaasia.info", true },
{ "mamadea.be", true },
+ { "mamadoma.com.ua", true },
{ "mamafit.club", true },
{ "mamamoet.ru", true },
{ "mamanecesitaungintonic.com", true },
+ { "mambas.cn", true },
{ "mamiecouscous.com", true },
{ "mammals.net", true },
{ "mammaw.com", true },
+ { "mammeitalianeavienna.com", true },
{ "mammooc.org", true },
+ { "mammothlakesmls.net", true },
{ "mamospienas.lt", true },
{ "mamot.fr", false },
{ "mamuko.nl", true },
@@ -22136,8 +22990,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manatees.net", true },
{ "manavgabhawala.com", true },
{ "manawill.jp", true },
- { "mandanudes.ae", true },
{ "mandcbouncycastlehire.co.uk", true },
+ { "mandynamic.gr", true },
{ "maneggio.milano.it", true },
{ "manesht.ir", true },
{ "manfredgruber.net", true },
@@ -22145,8 +22999,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manfredimatteo.com", true },
{ "manfredschafer.ch", true },
{ "mangahigh.com", true },
- { "mangapoi.com", true },
- { "mangaristica.com", true },
+ { "mangaristica.com", false },
+ { "mangnhuapvc.com.vn", true },
+ { "mangotwoke.co.uk", true },
{ "manhattanchoralensemble.org", true },
{ "manhole.club", true },
{ "manhuagui.com", true },
@@ -22165,15 +23020,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manns-solutions.co.uk", true },
{ "mannschafft.ch", true },
{ "manoirdecontres.com", true },
- { "manonamission.de", true },
+ { "manonandre-avocat.fr", true },
{ "manoro.de", true },
{ "manowarus.com", true },
{ "mansdell.net", true },
{ "mansfeld.pl", true },
{ "manski.net", true },
{ "mantabiofuel.com", true },
+ { "manti.by", true },
{ "mantor.org", false },
{ "mantra.pictures", true },
+ { "manualidadeson.com", true },
{ "manuall.co.uk", true },
{ "manuall.de", true },
{ "manuall.fr", true },
@@ -22201,6 +23058,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manylots.ru", true },
{ "manyue.org", true },
{ "maoi.re", true },
+ { "maomao.blog", true },
{ "maomihz.com", true },
{ "maone.net", true },
{ "maorseo.com", true },
@@ -22213,21 +23071,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mapblender.com", true },
{ "mapeo.io", true },
{ "maplanetebeaute.fr", true },
+ { "maplehome.tk", true },
{ "mapletime.com", true },
{ "maps.net", true },
- { "mapservices.nl", true },
{ "mapstack.org", true },
{ "maquettage.com", true },
{ "maquinariaspesadas.org", true },
+ { "maquininhamercadopoint.com.br", true },
{ "mar-eco.no", true },
{ "marabumadrid.com", false },
{ "marakovits.net", true },
{ "marble.com", true },
{ "marbogardenlidkoping.se", true },
{ "marc-hammer.de", true },
- { "marcaudefroy.com", true },
+ { "marc-schlagenhauf.de", true },
{ "marcbeije.com", true },
{ "marcberndtgen.de", true },
+ { "marcceleiro.cat", true },
{ "marcceleiro.com", true },
{ "marceau.ovh", true },
{ "marcel-preuss.de", true },
@@ -22242,30 +23102,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marcelpreuss.de", true },
{ "marcelsiegert.com", true },
{ "marcelwaldvogel.ch", true },
+ { "marcelwiedemeier.com", true },
{ "marcelwolf.coach", true },
{ "marcgoertz.de", true },
{ "marche-contre-monsanto.ch", true },
+ { "marchhappy.tech", false },
{ "marchukov.com", true },
{ "marchwj.pl", true },
{ "marciaimportados.com.br", true },
+ { "marcianoandtopazio.com", true },
{ "marclay.co.uk", true },
{ "marco-goltz.de", true },
{ "marco-hegenberg.net", true },
{ "marco-polo-reisen.com", true },
{ "marcocasoni.com", true },
- { "marcohager.de", true },
{ "marcoherten.com", true },
+ { "marcoklomp.nl", true },
+ { "marcoslater.com", true },
{ "marcuskoh.com", true },
{ "marcusstafford.com", true },
{ "marechal-company.com", true },
+ { "marek.pro", true },
{ "marek.su", true },
{ "marelijah.org", true },
{ "margagriesser.de", true },
- { "margan.ch", true },
{ "margecommunication.com", true },
{ "margo-co.ch", true },
{ "margo.ml", true },
{ "margotlondon.co.uk", true },
+ { "margots.biz", true },
+ { "margots.life", true },
+ { "margots.tech", true },
{ "marguerite-maison.fr", true },
{ "mariacorzo.com", true },
{ "mariage-photo.ch", true },
@@ -22289,6 +23156,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marinazarza.es", true },
{ "marinbusinesscenter.ch", true },
{ "marine.gov", true },
+ { "marinecadastre.gov", true },
{ "marinekaplama.com", true },
{ "marinela.com.mx", false },
{ "marinelausa.com", false },
@@ -22298,10 +23166,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mariogeckler.de", true },
{ "mariposah.ch", true },
{ "marisamorby.com", false },
+ { "mariskavankasbergen.nl", true },
{ "maritim.go.id", false },
{ "mariushubatschek.de", true },
{ "mariviolin.com", true },
- { "marix.ro", true },
{ "marjeta-gurtner.ch", true },
{ "marjoleindens.be", true },
{ "marjoriecarvalho.com.br", true },
@@ -22322,14 +23190,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marketing-2.de", true },
{ "marketing.limited", true },
{ "marketing91.com", true },
+ { "marketingbrandingnews.com", true },
+ { "marketingbrandingnews.net", true },
{ "marketingco.nl", true },
{ "marketingconverts.com", true },
{ "marketingforfood.com", true },
{ "marketinggenerators.nl", true },
+ { "marketingtrendnews.com", true },
{ "marketingvirtuales.com", true },
{ "marketizare.ro", true },
{ "marketlinks.org", true },
{ "marketnsight.com", true },
+ { "markfordelegate.com", true },
{ "markhaehnel.de", true },
{ "markhenrick.site", true },
{ "markholden.guru", true },
@@ -22348,6 +23220,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "markridgwellcom.appspot.com", true },
{ "markscastles.co.uk", true },
{ "marksm.it", true },
+ { "marksmanhomes.com", true },
{ "marksmit.co", true },
{ "marksouthall.com", true },
{ "markspres.org", true },
@@ -22356,17 +23229,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marktcontact.com", true },
{ "marktissink.nl", true },
{ "markup-ua.com", true },
+ { "markus-blog.de", true },
{ "markus-dev.com", true },
+ { "markus-keppeler.de", true },
{ "markus-musiker.de", true },
{ "markus-ullmann.de", true },
{ "markus.design", true },
{ "markusehrlicher.de", true },
{ "markusgran.de", true },
+ { "markuskeppeler.de", true },
{ "markuskeppeler.no-ip.biz", true },
{ "marl.fr", true },
{ "marloncommunications.com", true },
{ "marlonlosurdopictures.com", true },
- { "marlonschultz.de", true },
{ "marlosoft.net", true },
{ "marmista.roma.it", true },
{ "marmolesromero.com", true },
@@ -22382,19 +23257,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marriage-shrine.jp", true },
{ "marrickvilleapartments.com.au", true },
{ "marsanvet.com", true },
- { "marsble.com", true },
{ "marseillekiteclub.com", true },
{ "marshallscastles.com", true },
{ "marshallwilson.com", true },
{ "marshmallow.co", true },
{ "marshmallow.com", true },
{ "marshyplay.live", true },
+ { "marsikelektro.cz", true },
{ "martasibaja.com", true },
{ "martelange.ovh", true },
{ "marten-buer.de", true },
{ "martensmxservice.nl", true },
{ "martensson.io", true },
{ "marti201.ga", true },
+ { "martialarts-wels.at", true },
{ "martide.com", true },
{ "martiestrimsalon.nl", true },
{ "martijn.site", true },
@@ -22426,24 +23302,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marycliffpress.com", true },
{ "maryeclark.com", true },
{ "maryeileen90.party", true },
+ { "maryjaneroach.com", true },
{ "maryjruggles.com", true },
{ "marykatrinaphotography.com", true },
{ "marylandbasementandcrawlspacewaterproofing.com", true },
+ { "marzio.co.za", true },
{ "masarik.sh", true },
{ "masatotaniguchi.jp", true },
+ { "masautonomo.com", true },
{ "masayahost.com", true },
{ "mascosolutions.com", true },
{ "masdillah.com", true },
+ { "maservant.net", true },
{ "mashandco.it", true },
{ "mashandco.tv", true },
{ "masiniunelte.store.ro", true },
{ "masiul.is", true },
- { "maskice.hr", true },
{ "maskim.fr", true },
{ "maslife365.com", true },
{ "maslin.io", true },
{ "masrur.org", true },
{ "massaboutique.com", true },
+ { "massage-colleges.com", true },
{ "massage-vitalite.fr", true },
{ "massage4u.net", true },
{ "massagecupping.com", true },
@@ -22456,11 +23336,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "massive.tk", true },
{ "massoni.pl", true },
{ "massotherapeutique.com", true },
+ { "massvow.com", true },
{ "masta.ch", true },
{ "mastah.fr", true },
{ "mastd.me", false },
{ "mastellone.us", true },
- { "mastepinnelaand.nl", true },
{ "master-net.org", true },
{ "mastercardpac.com", true },
{ "masterdemolitioninc.com", true },
@@ -22477,9 +23357,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mastodon.at", true },
{ "mastodon.host", true },
{ "mastodon.rocks", true },
+ { "mastodon.top", true },
{ "mat.tt", true },
{ "matanz.de", true },
{ "matatabimix.com", true },
+ { "matatall.com", true },
+ { "matbad.de", true },
{ "match.audio", true },
{ "matcha-iga.jp", true },
{ "matchatea24.com", true },
@@ -22488,16 +23371,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matdogs.com", true },
{ "matejgroma.com", true },
{ "matel.org", true },
+ { "materassi.roma.it", true },
{ "materiaischiquinho.com.br", true },
{ "material-ui.com", true },
{ "material-world-fuyouhin.com", true },
{ "materialism.com", true },
{ "materialyinzynierskie.pl", true },
+ { "maternalsafety.org", true },
{ "maternum.com", true },
{ "mateuszchyla.pl", true },
+ { "math-colleges.com", true },
{ "math.hamburg", true },
{ "mathalexservice.info", true },
- { "mathematik.rocks", true },
+ { "mathematik.rocks", false },
{ "mathematris.com", true },
{ "mathembedded.com", true },
{ "matheo-schefczyk.de", true },
@@ -22508,6 +23394,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mathiasgarbe.de", true },
{ "mathiaswagner.org", true },
{ "mathieuguimond.com", true },
+ { "mathieui.net", true },
+ { "mathis.com.tr", true },
{ "maths.network", true },
{ "mathsource.ga", true },
{ "mathspace.co", true },
@@ -22523,6 +23411,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matome-surume.com", true },
{ "matomeathena.com", true },
{ "matoutepetiteboutique.com", true },
+ { "matratzentester.com", true },
{ "matridiana.com", true },
{ "matrimoni.uk", true },
{ "matriterie-sdv.ro", true },
@@ -22531,6 +23420,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matrixreq.com", true },
{ "matsu-semi.com", true },
{ "matsu-walk.com", true },
+ { "matt-brooks.com", true },
{ "matt-royal.gr", true },
{ "matt.re", true },
{ "mattandyana.com", true },
@@ -22542,6 +23432,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mattcoles.io", true },
{ "mattconstruction.com", true },
{ "mattcorp.com", true },
+ { "mattdbarton.com", true },
{ "matteomarescotti.it", true },
{ "mattferderer.com", true },
{ "mattfin.ch", true },
@@ -22550,6 +23441,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matthewchapman.co.uk", true },
{ "matthewfells.com", true },
{ "matthewgallagher.co.uk", true },
+ { "matthewgrow.com", true },
{ "matthewj.ca", true },
{ "matthewkenny.co.uk", true },
{ "matthewohare.com", true },
@@ -22570,11 +23462,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mattmccutchen.net", true },
{ "mattmcshane.com", true },
{ "mattonline.me", true },
- { "mattwservices.co.uk", true },
{ "matviet.vn", true },
{ "matway.com", true },
{ "matway.net", true },
- { "matze.co", true },
{ "mauerwerkstag.info", true },
{ "mauldincookfence.com", true },
{ "mauran.me", true },
@@ -22596,17 +23486,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mawidabp.com", true },
{ "mawidaca.com", true },
{ "mawo.olkusz.pl", true },
- { "max-mad.com", true },
{ "max-moeglich.de", true },
{ "max-went.pl", true },
{ "max.gov", true },
+ { "maxb.fm", true },
+ { "maxbachmann.de", true },
{ "maxbeenen.de", true },
{ "maxbruckner.de", true },
{ "maxbruckner.org", true },
{ "maxchan.info", true },
{ "maxdev72.freeboxos.fr", true },
- { "maxfox.me", true },
+ { "maxh.me.uk", true },
{ "maxhamon.ovh", true },
+ { "maxhoechtl.at", true },
{ "maximdeboiserie.be", true },
{ "maximdens.be", true },
{ "maximeferon.fr", true },
@@ -22615,13 +23507,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maximiliankaul.de", true },
{ "maximiliankrieg.de", true },
{ "maxims-travel.com", true },
+ { "maxinesbydennees.com", true },
{ "maxipcalls.com", true },
{ "maxisito.it", true },
{ "maxkaul.de", true },
+ { "maxmatthe.ws", true },
{ "maxmilton.com", true },
+ { "maxmind.com", true },
{ "maxp.info", true },
{ "maxpl0it.com", true },
- { "maxr1998.de", true },
{ "maxrandolph.com", true },
{ "maxtruxa.com", true },
{ "maxundlara.at", true },
@@ -22630,11 +23524,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maxwellflynn.com", true },
{ "maxwellmoore.co.uk", true },
{ "may24.tw", true },
- { "maya-ro.com", true },
{ "mayaimplant.com", true },
{ "mayavi.co.in", true },
- { "maydex.info", true },
{ "mayerbrownllz.com", true },
+ { "mayoimobiliare.ro", true },
{ "mayomarquees.com", true },
{ "mayopartyhire.com", true },
{ "maypolevilla.co.uk", true },
@@ -22642,8 +23535,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mazda-mps.de", true },
{ "mazda-thermote.com", true },
{ "mazda626.net", true },
+ { "maze.design", false },
{ "maze.fr", true },
+ { "mazenjobs.com", true },
{ "mazternet.ru", true },
+ { "mazurlabs.tk", true },
{ "mazzotta.me", true },
{ "mb-is.info", true },
{ "mb300sd.com", true },
@@ -22651,6 +23547,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mbaasy.com", true },
{ "mbaestlein.de", true },
{ "mbainflatables.co.uk", true },
+ { "mbanq.com", true },
{ "mbardot.com", true },
{ "mbasic.facebook.com", false },
{ "mbcars.be", true },
@@ -22659,24 +23556,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mbilker.us", true },
{ "mbinf.de", false },
{ "mbits.solutions", true },
+ { "mbk.net.pl", true },
{ "mblankhorst.nl", true },
{ "mble.mg", true },
+ { "mbmcatering.com", true },
{ "mbp.banking.co.at", false },
{ "mbr-net.de", true },
{ "mbrooks.info", true },
{ "mbs-journey.com", true },
{ "mbsec.net", true },
+ { "mburaks.com", true },
{ "mburns.duckdns.org", true },
{ "mbweir.com", true },
{ "mbwis.net", true },
{ "mc-jobs.net", true },
+ { "mc-ruempel-firmen-und-haushaltsaufloesungen.de", true },
{ "mc-venture.net", false },
{ "mc4free.cc", true },
{ "mcatnnlo.org", true },
+ { "mccarty.io", false },
{ "mccoolesredlioninn.com", true },
{ "mccordsvillelocksmith.com", true },
{ "mccrackon.com", true },
- { "mcculloughjchris.com", true },
+ { "mcculloughjchris.com", false },
{ "mcdermottautomotive.com", true },
{ "mcdona1d.me", true },
{ "mcdonalds.be", true },
@@ -22697,14 +23599,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mchristopher.com", true },
{ "mcinterface.de", true },
{ "mcivor.me", true },
- { "mckenry.net", true },
+ { "mckenry.net", false },
{ "mckernan.in", true },
{ "mckinley.school", true },
{ "mcl.de", false },
- { "mcl.gg", true },
{ "mclinflatables.co.uk", true },
{ "mclmotors.co.uk", true },
- { "mclyr.com", true },
{ "mcmillansedationdentistry.com", false },
{ "mcmillanskiclub.com.au", true },
{ "mcneill.io", true },
@@ -22717,6 +23617,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mcprocdn.com", true },
{ "mcrn.jp", true },
{ "mcsinflatables.co.uk", true },
+ { "mcsports.es", true },
{ "mcsrvstat.us", true },
{ "mctools.org", true },
{ "mcuuid.net", true },
@@ -22742,6 +23643,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mdoering.de", true },
{ "mdosch.de", true },
{ "mdpraha.cz", true },
+ { "mdrthmcs.io", true },
{ "mds-paris.com", true },
{ "mdsave.com", true },
{ "mdx.no", true },
@@ -22750,8 +23652,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mdzservers.com", true },
{ "me-center.com", true },
{ "me-groups.com", true },
+ { "me-soft.nl", true },
{ "me.net.nz", true },
{ "meadowfen.farm", true },
+ { "meadowfenfarm.com", true },
{ "mealgoo.com", true },
{ "meamod.com", false },
{ "meany.xyz", true },
@@ -22761,18 +23665,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mebaneattorney.com", true },
{ "mebanesteakhouse.com", true },
{ "mecanicoautomotriz.org", true },
+ { "mecaniquemondor.com", true },
+ { "mechanics-schools.com", true },
{ "mechanus.io", true },
{ "mechmk1.me", true },
+ { "med-colleges.com", true },
{ "med-otzyv.ru", true },
{ "med360.at", true },
{ "medba.se", true },
{ "medcir.com.br", true },
{ "medcrowd.com", true },
- { "meddatix.com", true },
{ "meddelare.com", true },
{ "meddigital.com", false },
{ "mede-handover.azurewebsites.net", true },
{ "medeinos.lt", true },
+ { "medellinapartamentos.com", true },
{ "medexpress.co.uk", true },
{ "medhy.fr", true },
{ "medi-link.co.il", true },
@@ -22781,6 +23688,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "media-instance.ru", true },
{ "media-library.co.uk", true },
{ "media-pi.com", true },
+ { "media-service.fr", true },
{ "media-serwis.com", true },
{ "mediaarea.net", true },
{ "mediabackoffice.co.jp", true },
@@ -22794,13 +23702,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mediagenic.ch", true },
{ "mediagold.it", true },
{ "mediagrand.net", true },
+ { "mediahaus.de", true },
{ "mediajurnal.com", true },
{ "medialab.nrw", true },
{ "mediamarkt.pl", true },
{ "mediapart.fr", true },
{ "mediarithmics.com", true },
+ { "mediarithmics.io", true },
{ "mediarocks.de", true },
{ "mediaselection.eu", true },
+ { "mediathekview.de", true },
{ "mediationculturelleclp.ch", true },
{ "mediatorzy.waw.pl", true },
{ "mediaukkies.nl", true },
@@ -22810,6 +23721,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mediawiki.org", true },
{ "mediawin.pl", true },
{ "medic-world.com", true },
+ { "medical-assistant-colleges.com", true },
{ "medicalabroad.org", true },
{ "medicalcountermeasures.gov", true },
{ "medicare-providers.net", true },
@@ -22822,6 +23734,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medienweite.de", true },
{ "medifi.com", true },
{ "medigap-quote.net", true },
+ { "medik8.com.cy", true },
{ "medikuma.com", true },
{ "medino.com", true },
{ "medinside.ch", true },
@@ -22829,6 +23742,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medinsider.ch", true },
{ "medinsider.li", true },
{ "medireport.fr", true },
+ { "meditadvisors.com", true },
{ "meditel.nl", true },
{ "medium.com", true },
{ "medja.net", true },
@@ -22836,11 +23750,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medmarkt24.com", true },
{ "medo64.com", true },
{ "medovea.ru", true },
+ { "medpeer.co.jp", true },
{ "medpeer.jp", true },
{ "medpics.com", true },
{ "medschat.com", true },
{ "medtalents.ch", true },
- { "medtankers.management", true },
{ "medtehnika.ua", true },
{ "medusa.wtf", true },
{ "meduza.io", true },
@@ -22854,7 +23768,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meehle.com", true },
{ "meeko.cc", true },
{ "meereskunst.de", true },
+ { "meerman.nl", true },
+ { "meermantechnischburo.nl", true },
{ "meerutcake.com", true },
+ { "meesteresmisty.nl", true },
{ "meet.google.com", true },
{ "meetawesomepeople.net", true },
{ "meetbot.fedoraproject.org", true },
@@ -22863,7 +23780,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meetingmanage.nl", true },
{ "meetingmanager.ovh", true },
{ "meetings2.com", true },
+ { "meetmibaby.co.uk", true },
{ "meetmygoods.com", true },
+ { "meetscompany.jp", true },
{ "meeusen-usedcars.be", true },
{ "meeztertom.nl", true },
{ "meg-a-bounce.co.uk", true },
@@ -22876,10 +23795,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "megabounce.co.uk", true },
{ "megabounceni.co.uk", true },
{ "megabouncingcastles.com", true },
- { "megaflix.nl", true },
{ "megaflowers.ru", true },
{ "megagifs.de", true },
{ "megainflatables.co.uk", true },
+ { "megakoncert90.cz", true },
{ "megamarkey.de", true },
{ "megamisja.pl", true },
{ "meganandmarc.us", true },
@@ -22892,6 +23811,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "megasslstore.com", true },
{ "megauction.tk", true },
{ "megaxchange.com", true },
+ { "mego.cloud", true },
{ "megumico.net", true },
{ "megustariasaber.com", true },
{ "megztosidejos.lt", true },
@@ -22931,6 +23851,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mekesh.net", true },
{ "mekesh.ru", true },
{ "meklon.net", true },
+ { "mekongeye.com", true },
{ "melaniebernhardt.com", true },
{ "melaniegruber.de", true },
{ "melbourne.dating", true },
@@ -22962,7 +23883,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "members-only-shopping.com", true },
{ "members.nearlyfreespeech.net", false },
{ "membershipservices.org.uk", true },
- { "membersonline.org", true },
{ "meme-photostudio.com.tw", true },
{ "meme.fi", true },
{ "meme.institute", true },
@@ -22970,7 +23890,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "memepasmal.net", true },
{ "memesbee.com", true },
{ "memfrob.org", true },
- { "memind.net", true },
{ "memiux.com", true },
{ "memo-linux.com", true },
{ "memo.ee", true },
@@ -22983,9 +23902,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mendipbouncycastles.co.uk", true },
{ "mendozagenevieve.com", true },
{ "mendy.jp", true },
- { "menhera.org", true },
{ "menielias.com", true },
{ "menkyo-blog.com", true },
+ { "mennace.com", true },
{ "menntagatt.is", true },
{ "menole.com", true },
{ "menole.de", true },
@@ -22996,21 +23915,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mensagensdeconforto.com.br", true },
{ "mensagensperfeitas.com.br", true },
{ "mensch-peter.me", true },
- { "mentalhealth.gov", true },
{ "mentalhealthmn.org", true },
{ "mentaltraining-fuer-musiker.ch", true },
- { "mentesemprendedoras.net", true },
{ "mentiq.az", true },
{ "mentorithm.com", true },
{ "mentz.info", true },
- { "menu.fyi", true },
{ "menudieta.com", true },
- { "menuel.me", true },
{ "menuonlineordering.com", true },
{ "menzel-motors.com", true },
{ "menzietti.it", true },
{ "mephedrone.org", true },
+ { "meps.net", true },
{ "mer.gd", true },
+ { "merakilp.com", true },
{ "meransuedtirol.com", true },
{ "meraseo.com", true },
{ "mercadobitcoin.com.br", true },
@@ -23024,24 +23941,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "merchant-automotive.com", true },
{ "mercier-auto.com", true },
{ "mercier-cars.co.uk", true },
+ { "mercredifiction.io", true },
{ "mercury.photo", true },
{ "mercuryamericas.com", false },
{ "meremeti-online.gr", true },
+ { "meremobil.dk", true },
{ "merenbach.com", true },
{ "merenita.com", true },
- { "merenita.eu", true },
{ "merenita.net", true },
{ "merenita.nl", true },
{ "meric-graphisme.info", true },
+ { "meridianfresno.com", true },
{ "meridianmetals.com", true },
{ "meridianstore.com.br", true },
{ "merkel.me", true },
{ "merlet.eu", true },
{ "merlinsoap.com", true },
- { "merloat.club", true },
{ "merloat.com", true },
{ "merojob.com", true },
{ "meronberry.jp", true },
+ { "mers.one", true },
{ "merson.org", true },
{ "merson.tv", true },
{ "mertarauh.com", true },
@@ -23056,12 +23975,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mesh.gov", true },
{ "meshok.info", true },
{ "mesicka.com", true },
- { "messagescelestes-archives.ca", true },
+ { "mesomeds.com", true },
{ "messagevortex.com", true },
{ "messagevortex.net", true },
{ "messdorferfeld.de", true },
{ "messenger.co.tz", true },
- { "messenger.com", false },
+ { "messenger.com", true },
{ "messengerwebbrands.com", true },
{ "messer24.ch", true },
{ "messymom.com", true },
@@ -23069,20 +23988,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mestr.es", true },
{ "mesvt.com", true },
{ "meta-db.com", true },
+ { "meta-word.com", true },
{ "meta.sc", true },
{ "metachris.com", true },
{ "metacoda.com", true },
{ "metacode.biz", true },
{ "metadatawiki.com", true },
+ { "metaether.net", true },
{ "metafurquest.net", true },
+ { "metallosajding.ru", true },
{ "metalu.ch", true },
- { "metanic.org", true },
{ "metanic.services", true },
{ "metanodo.com", true },
{ "metapeen.nl", true },
- { "metaregistrar.com", true },
{ "metasquare.com.au", true },
{ "metasquare.nyc", true },
+ { "metasysteminfo.com", true },
+ { "metaurl.io", true },
+ { "metaword.com", true },
+ { "metaword.net", true },
+ { "metaword.org", true },
{ "meteenonline.nl", true },
{ "meteo-parc.com", true },
{ "meteo-r.ovh", true },
@@ -23094,17 +24019,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meteobox.mx", true },
{ "meteobox.pl", true },
{ "meteobox.sk", true },
+ { "meteocat.net", true },
{ "meteorapp.space", true },
+ { "meteorologiaenred.com", true },
{ "meteosherbrooke.com", true },
{ "meteosmit.it", true },
{ "meterhost.com", true },
{ "methamphetamine.co.uk", true },
{ "methylone.com", true },
+ { "metric.ai", true },
+ { "metricmutt.com", true },
{ "metro-lawn-care.com", true },
{ "metro-web.net", true },
{ "metroairvirtual.com", true },
{ "metrobriefs.com", true },
{ "metrolush.com", true },
+ { "metron-eging.com", true },
+ { "metron-networks.com", true },
{ "metronaut.de", true },
{ "metropop.ch", true },
{ "metsasta.com", true },
@@ -23117,6 +24048,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mevs.cz", true },
{ "mexican.dating", true },
{ "mexicanjokes.net", true },
+ { "mexico.sh", true },
{ "mexicom.org", true },
{ "meyash.co", true },
{ "mf-fischer.de", true },
@@ -23127,9 +24059,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mflodin.se", true },
{ "mfxbe.de", true },
{ "mfz.mk", true },
- { "mgcraft.net", true },
{ "mgi.gov", true },
{ "mgknet.com", true },
+ { "mglink.be", true },
{ "mgrossklaus.de", true },
{ "mgrt.net", true },
{ "mgsisk.com", true },
@@ -23147,19 +24079,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mi-beratung.de", true },
{ "mi-so-ji.com", true },
{ "mi80.com", true },
+ { "miadennees.com", true },
{ "miagexport.com", true },
{ "miaonagemi.com", true },
{ "miaoubox.com", true },
{ "miaowo.org", true },
{ "miasarafina.de", true },
+ { "miavierra.org", true },
{ "mibuiin.com", true },
{ "micado-software.com", true },
- { "micaiahparker.com", true },
{ "micalodeal.ch", true },
- { "micasamgmt.com", false },
{ "micbase.com", true },
{ "michadenheijer.com", true },
{ "michael-schefczyk.de", true },
+ { "michael-schilling.de", true },
{ "michael-steinhauer.eu", true },
{ "michael.band", true },
{ "michaelasawyer.com", true },
@@ -23170,16 +24103,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michaelhrehor.com", true },
{ "michaeliscorp.com", true },
{ "michaelismold.com", true },
- { "michaelizquierdo.com", true },
{ "michaeljdennis.com", true },
{ "michaelkuchta.me", true },
{ "michaelleibundgut.com", true },
{ "michaelpelletterie.it", true },
{ "michaelpfrommer.de", true },
{ "michaelpfrommer.pub", true },
- { "michaels-homepage-service.de", true },
{ "michaelschmidt.ch", true },
{ "michaelschubert.com", true },
+ { "michaelschule-rheine.de", true },
+ { "michaelslatkine.com", true },
{ "michaelsnoeren.nl", true },
{ "michaelsweater.com", true },
{ "michaeltaboada.me", true },
@@ -23194,7 +24127,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michalwiglasz.cz", true },
{ "michaonline.de", true },
{ "michel-wein.de", true },
- { "michele.ml", true },
{ "michellavat.com", true },
{ "michiganstateuniversityonline.com", true },
{ "michiganunionoptout.com", true },
@@ -23205,6 +24137,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "miconcinemas.com", true },
{ "micr.io", true },
{ "micr0lab.org", true },
+ { "microbiote-insectes-vecteurs.group", true },
{ "microco.sm", true },
{ "microcomploja.com.br", true },
{ "microdots.de", true },
@@ -23213,12 +24146,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "micromata.de", true },
{ "microsoftaffiliates.azurewebsites.net", true },
{ "microvb.com", true },
+ { "microzubr.com", true },
{ "midair.io", true },
{ "midasjewellery.com.au", true },
{ "midgawash.com", true },
+ { "midislandrealty.com", true },
{ "midkam.ca", true },
{ "midlandgate.de", true },
{ "midlandleisuresales.co.uk", true },
+ { "midlandroofingri.com", true },
{ "midlandsfundays.co.uk", true },
{ "midlandsphotobooths.co.uk", true },
{ "midlgx.com", true },
@@ -23226,9 +24162,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "midnightmango.co.uk", true },
{ "midnightmango.de", true },
{ "midnightmechanism.com", true },
+ { "midrandplumber24-7.co.za", true },
{ "midstatebasement.com", true },
{ "midtowndentistry.com", true },
{ "midwestbloggers.org", true },
+ { "midwestplus.com", true },
{ "midweststructuralrepair.com", true },
{ "miegl.com", true },
{ "miembarcacion.com", true },
@@ -23239,6 +24177,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "miffy.me", true },
{ "mig5.net", true },
{ "miggy.org", true },
+ { "mightysighty.com", true },
{ "miguel.pw", true },
{ "migueldemoura.com", true },
{ "migueldominguez.ch", true },
@@ -23257,7 +24196,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mijnkinderkleding.com", true },
{ "mijnpartijhandel.nl", true },
{ "mijnreisoverzicht.nl", true },
- { "mijnsite.ovh", true },
{ "mijnstembureau.nl", true },
{ "mijntransacties.nl", true },
{ "mika.moe", true },
@@ -23276,7 +24214,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mikeguy.co.uk", true },
{ "mikehamburg.com", true },
{ "mikehilldesign.co.uk", true },
- { "mikerichards.photography", false },
+ { "mikekreuzer.com", true },
+ { "mikerichards.photography", true },
{ "miketabor.com", true },
{ "miketheuer.com", true },
{ "mikevesch.com", true },
@@ -23288,17 +24227,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mikhlevich.ru", true },
{ "miki-boras.de", true },
{ "miki.it", true },
+ { "mikkelladegaard.dk", true },
+ { "mikkelscheike.com", true },
+ { "mikkelvej.dk", true },
{ "mikkonen.bio", true },
{ "miklcct.com", true },
{ "miknight.com", true },
{ "mikonmaa.fi", true },
- { "mikori.sk", true },
{ "mikropixel.de", true },
{ "mikroskeem.eu", true },
{ "miku.cloud", true },
{ "miku.party", true },
{ "mikumaycry.com", true },
{ "mikumiku.stream", true },
+ { "mikupic.com", true },
{ "mikywow.eu", true },
{ "mil-spec.ch", true },
{ "mil0.com", true },
@@ -23337,9 +24279,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "millions19.com", true },
{ "millions20.com", true },
{ "millions22.com", true },
- { "millions25.com", true },
- { "millions26.com", true },
- { "millions27.com", true },
{ "millions28.com", true },
{ "millions29.com", true },
{ "millions31.com", true },
@@ -23408,9 +24347,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mindleaking.org", true },
{ "mindoktor.se", false },
{ "mindorbs.com", true },
+ { "mindox.com.br", true },
{ "mindstretchers.co.uk", true },
- { "mindwork.space", true },
{ "mine-craftlife.com", true },
+ { "mine-pixl.de", true },
{ "mine260309.me", true },
{ "minebier.dk", true },
{ "minecraft-forum.eu", true },
@@ -23418,6 +24358,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "minecraftforum.de", true },
{ "minecraftforum.ovh", true },
{ "minecraftjson.com", true },
+ { "minecraftstal.com", true },
{ "minehattan.de", true },
{ "minehub.de", true },
{ "minei.me", true },
@@ -23431,10 +24372,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "minetracker.dk", true },
{ "minez-nightswatch.com", false },
{ "minf3-games.de", true },
+ { "minfin.gov.ua", true },
{ "mingky.net", true },
{ "mingming.info", true },
{ "mingram.net", true },
+ { "mingtreerealty.com", true },
{ "mingwah.ch", true },
+ { "minh.at", false },
{ "mini2.fi", true },
{ "minigames.com", true },
{ "miniglueck.net", true },
@@ -23448,23 +24392,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "minimayhemsoftplay.co.uk", true },
{ "minimbah.com.au", true },
{ "minimvc.com", true },
+ { "miningtronics.com", true },
{ "ministeriumfuerinternet.de", true },
{ "minitruckin.net", true },
{ "minitrucktalk.com", true },
+ { "miniwallaby.com", true },
{ "minkymoon.jp", true },
{ "minnesotakinkyyouth.org", true },
{ "minnesotamathcorps.org", true },
{ "minnesotareadingcorps.org", true },
{ "minnit.chat", true },
{ "minobar.com", true },
- { "minorshadows.net", true },
{ "minpingvin.dk", true },
{ "minschuns.ch", true },
{ "mintclass.com", true },
{ "mintosherbs.com", true },
{ "mintrak2.com", true },
{ "mintse.com", true },
+ { "minu.link", true },
{ "minube.co.cr", true },
+ { "minutashop.ru", true },
{ "minux.info", true },
{ "mipapo.de", true },
{ "mipla.ch", true },
@@ -23482,7 +24429,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mirepublic.co.nz", true },
{ "mireservaonline.es", true },
{ "mirfire.com", true },
- { "mirjamderijk.nl", true },
+ { "mirjamderijk.nl", false },
{ "mirkofranz.de", true },
{ "mironet.cz", true },
{ "mirrorbot.ga", true },
@@ -23505,6 +24452,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "missdream.org", true },
{ "misseguf.dk", true },
{ "missevent.pl", true },
+ { "missguidedus.com", true },
{ "mission-orange.de", true },
{ "missionsgemeinde.de", true },
{ "missip.nl", true },
@@ -23518,6 +24466,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "missyou.link", true },
{ "mistacms.com", true },
{ "mister-cooks.fr", true },
+ { "mister-matthew.de", true },
{ "mistreaded.com", true },
{ "mistybox.com", true },
{ "misupport.dk", true },
@@ -23531,6 +24480,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mitarbeitermotivation-anleitungen.de", true },
{ "mitchellhandymanservices.co.uk", true },
{ "mitchelmore.ca", true },
+ { "mitdip-mit-group-ch.azurewebsites.net", true },
{ "miticobikes.com", true },
{ "mitigationcommission.gov", true },
{ "mitnetz-gas.de", true },
@@ -23540,14 +24490,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mitrecaasd.org", true },
{ "mitremai.org", true },
{ "mitrostudios.com", true },
- { "mitsign.com", true },
{ "mitsu-szene.de", true },
{ "mitsukabose.com", true },
{ "mittagonggardencentre.com.au", true },
{ "mittagonghomestead.com.au", true },
{ "mittelunsachlich.de", true },
{ "mittenofficesystems.com", true },
- { "mityinc.com", true },
{ "mitylite.com", true },
{ "mitzpettel.com", true },
{ "miui-germany.de", true },
@@ -23574,13 +24522,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mizipack.com", true },
{ "mizque.ch", true },
{ "mizu.coffee", true },
+ { "mizucoffee.net", true },
{ "mizuho-trade.net", true },
{ "mizumax.me", true },
{ "mj420.com", true },
{ "mjacobson.net", true },
{ "mjanja.ch", true },
{ "mjasm.org", true },
- { "mjec.net", true },
{ "mjlaurindo.pt", true },
{ "mjmedia.co.za", true },
{ "mjmnagy.info", true },
@@ -23598,8 +24546,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mkes.com", true },
{ "mkg-chirurgie-bruchsal.de", true },
{ "mkg-scherer.de", true },
+ { "mkg-wiebelskirchen.de", true },
{ "mkhsoft.eu", true },
{ "mkimage.com", true },
+ { "mkjl.ml", true },
{ "mkk.de", true },
{ "mkkkrc.ru", true },
{ "mklpedia.de", true },
@@ -23611,11 +24561,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mkset.ru", true },
{ "mktdigital.info", true },
{ "mktemp.org", true },
- { "mkuznets.com", true },
{ "mlarte.com", true },
{ "mlcnfriends.com", true },
{ "mlemay.com", true },
{ "mlfaw.com", true },
+ { "mlii.net", true },
{ "mlmjam.com", true },
{ "mlp.ee", true },
{ "mlpvector.club", true },
@@ -23626,10 +24576,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mm404.com", true },
{ "mma-acareporting.com", true },
{ "mmalisz.com", true },
- { "mmaps.ddns.net", true },
+ { "mmaps.org", true },
{ "mmbb.org", true },
{ "mmin.us", false },
{ "mmmarco.com", true },
+ { "mmmaximaliselmeny.hu", true },
{ "mmogah.com", true },
{ "mmonit.com", true },
{ "mms.is", true },
@@ -23638,7 +24589,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mna7e.com", true },
{ "mncloud.de", true },
{ "mncr.nl", true },
- { "mnd.sc", true },
{ "mne.moe", true },
{ "mnedc.org", true },
{ "mnemonic.ninja", true },
@@ -23654,9 +24604,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mo-journal.com", true },
{ "mo.nl", true },
{ "mo2021.de", true },
- { "mo3.club", true },
{ "moa.moe", true },
- { "mobag.ru", true },
{ "mobal.com", true },
{ "mobi4.tk", true },
{ "mobidea.com", true },
@@ -23695,7 +24643,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mochanstore.com", true },
{ "mockerel.com", true },
{ "mococo.co.uk", true },
- { "mocurio.com", false },
{ "modaexecutiva.com.br", true },
{ "modafinil.com", true },
{ "modafinil.wiki", true },
@@ -23706,19 +24653,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "modding-welt.com", true },
{ "mode-hautnah.de", true },
{ "mode-individuell.de", true },
+ { "modehaus-marionk.de", true },
{ "modelcase.co.jp", false },
{ "modelclub-draveil.eu", true },
{ "modelcube.com", true },
- { "modeldimension.com", true },
{ "modelisme-rc.net", true },
{ "modelisme-voiture-rc.fr", true },
{ "modelservis.cz", true },
{ "modemaille.com", true },
+ { "modemchild.net", true },
{ "modeportaal.nl", true },
{ "moderatoren.org", true },
{ "moderatorenpool.org", true },
+ { "modern-family.tv", true },
{ "modernapprenticeships.org", true },
{ "moderncoinmart.com", true },
+ { "moderncommercialrealestate.com", true },
{ "modifiedmind.com", true },
{ "modistry.com", true },
{ "modistryusercontent.com", true },
@@ -23728,10 +24678,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "modul21.eu", true },
{ "module.market", true },
{ "modulex-gmbh.de", true },
+ { "moe-max.jp", true },
+ { "moeali.com", true },
{ "moechel.com", true },
+ { "moeclue.com", true },
{ "moefactory.com", true },
+ { "moehrke.cc", true },
+ { "moekes.amsterdam", true },
{ "moeking.me", true },
+ { "moeli.org", true },
{ "moellers.systems", true },
+ { "moeqing.net", true },
{ "moetrack.com", true },
{ "moeyoo.net", true },
{ "mofohome.dyndns.org", true },
@@ -23750,6 +24707,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mojefedora.cz", true },
{ "mojilitygroup.com", true },
{ "mojizuri.com", true },
+ { "mojnet.eu", true },
+ { "mojnet.net", true },
+ { "mojoco.co.za", true },
{ "mojzis.com", true },
{ "mojzis.cz", true },
{ "mojzisova.com", true },
@@ -23765,6 +24725,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "molun.net", false },
{ "molunerfinn.com", true },
{ "molwick.com", true },
+ { "momentsofimpact.info", true },
{ "momentum.photos", true },
{ "momentumdash.com", true },
{ "momirfarooq.com", true },
@@ -23775,8 +24736,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "momut.org", true },
{ "momy-genealogie.info", true },
{ "mon-partage.fr", true },
- { "mon-trafic.com", true },
+ { "mon-trafic.com", false },
{ "mon22.ch", true },
+ { "mona-antenna.com", true },
{ "mona-dress.com", true },
{ "monachatdeco.com", true },
{ "monaco-automaten.de", true },
@@ -23787,6 +24749,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monbudget.org", true },
{ "moncoach.ch", true },
{ "mondedesnovels.com", true },
+ { "mondedie.fr", true },
{ "mondial-movers.nl", true },
{ "mondo-it.ch", true },
{ "moneni.com", true },
@@ -23799,9 +24762,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moneypark.ch", true },
{ "moneytoday.se", true },
{ "mongolieenfrance.fr", true },
- { "monique.io", true },
{ "moniquedekermadec.com", true },
{ "moniquemunhoz.com.br", true },
+ { "monitman.com", true },
{ "monitoring.kalisz.pl", true },
{ "monitzer.com", true },
{ "monix.io", true },
@@ -23814,10 +24777,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monlabs.com", true },
{ "monloyer.quebec", true },
{ "monnyonle.hu", true },
- { "mono.cafe", true },
+ { "mono.cafe", false },
{ "mono0x.net", true },
{ "monobank.no", true },
{ "monodukuri.com", true },
+ { "monokoo.com", true },
{ "monolithapps.com", true },
{ "monolithindustries.com", true },
{ "monolithinteractive.com", true },
@@ -23831,9 +24795,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monpetitmobile.com", true },
{ "monsieursavon.ch", true },
{ "monstermashentertainments.co.uk", true },
- { "montage-kaika.de", true },
+ { "monsterx.cn", true },
+ { "montage-kaika.de", false },
{ "montagne-tendance.ch", true },
{ "montanasky.tv", true },
+ { "montanteaesthetics.com", true },
{ "montanwerk.de", true },
{ "montarfotoaki.com", true },
{ "montas.io", true },
@@ -23841,6 +24807,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "montemanik.com", true },
{ "montenero.pl", true },
{ "montessori.edu.vn", true },
+ { "montgomerysoccer.net", true },
{ "montopolis.com", true },
{ "montpreveyres.ch", true },
{ "montredeal.fr", true },
@@ -23857,16 +24824,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moolah.rocks", true },
{ "moon.fish", true },
{ "moonagic.com", true },
- { "moonagic.io", true },
{ "moonbench.xyz", true },
{ "moonbot.io", true },
+ { "moonchart.co.uk", true },
{ "moondrop.org", true },
{ "moonkin.eu", true },
{ "moonlightcapital.ml", true },
{ "moonmelo.com", true },
{ "moonraptor.co.uk", true },
{ "moonraptor.com", true },
- { "moonrhythm.info", false },
{ "moonshyne.org", true },
{ "moontaj.com", true },
{ "moonvpn.org", true },
@@ -23881,6 +24847,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mooselook.de", true },
{ "moosmann-moehrle.de", true },
{ "moot-info.co.za", true },
+ { "moovablestorage.com", true },
{ "moparcraft.net", true },
{ "moparisthebest.com", true },
{ "moparisthebest.net", true },
@@ -23893,6 +24860,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "morbatex.com", true },
{ "morbiceramicindustry.com", true },
{ "morbitzer.de", true },
+ { "morbius.cz", true },
{ "morbotron.com", true },
{ "morchino.ch", true },
{ "morchstore.com", true },
@@ -23900,16 +24868,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "more-terrain.de", true },
{ "moreal.co", true },
{ "moreapp.co.uk", true },
- { "morenci.ch", true },
+ { "moreniche.com", true },
{ "morepablo.com", true },
{ "morepay.cn", true },
- { "morepopcorn.co.nz", true },
- { "morespacestorage.com.au", true },
{ "moresw.com", true },
{ "morethanautodealers.com", true },
{ "morethancode.be", true },
{ "morethandigital.info", true },
{ "morganino.it", true },
+ { "morgansjewelerspv.com", true },
{ "morgansleisure.co.uk", true },
{ "morgner.com", true },
{ "morhys.com", true },
@@ -23917,18 +24884,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moritztremmel.de", true },
{ "moriz.de", true },
{ "moriz.net", true },
+ { "mormon-colleges.com", true },
{ "mormonleaks.io", true },
{ "morningcurve.com", true },
{ "morningstar.moe", true },
{ "morphy2k.io", true },
{ "morrisby.com", true },
- { "morrodafumacanoticias.com.br", true },
{ "morteruelo.net", true },
{ "mortgagecalculator.biz", true },
{ "mortgagecentersmo.com", true },
{ "mortis.eu", true },
{ "mosaic-design.ru", true },
{ "mosaicadvisors.com", true },
+ { "mosaicmarble.com", true },
{ "moscatalogue.net", true },
{ "moscow.dating", true },
{ "mosfet.cz", true },
@@ -23940,7 +24908,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mosscade.com", true },
{ "mosshi.be", true },
{ "mosstier.com", true },
- { "mostlyinfinite.com", true },
+ { "mostholynameofjesus.org", true },
+ { "mostlikelyto.fail", true },
{ "mostlyoverhead.com", true },
{ "motd.ch", true },
{ "motd.today", true },
@@ -23957,6 +24926,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "motifstudio.com.ua", true },
{ "motionless.nl", true },
{ "motiweb.fr", true },
+ { "motocollection.pl", true },
{ "motohell.com", true },
{ "motojato.com.br", true },
{ "motonauticaibiza.com", true },
@@ -23970,8 +24940,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "motovated.co.nz", true },
{ "motowilliams.com", true },
{ "motstats.co.uk", true },
- { "mottomortgage.com", true },
- { "moucloud.cn", true },
{ "moulinaparoles.ca", true },
{ "mountain-rock.ru", true },
{ "mountainactivitysection.org.uk", true },
@@ -23981,8 +24949,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mountfarmer.de", true },
{ "mousemessages.com", true },
{ "moutiezhaller.com", true },
+ { "movacare.de", true },
{ "move.mil", true },
- { "moveek.com", true },
{ "moveisfit.com.br", true },
{ "movember.com", false },
{ "movewellnesslab.com", true },
@@ -23997,6 +24965,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "movienized.de", true },
{ "moviepilot.com", true },
{ "moviesetc.net", true },
+ { "moviespur.info", false },
{ "moviko.nz", true },
{ "movil.uno", true },
{ "moviltronix.com", true },
@@ -24009,7 +24978,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moyer.pub", true },
{ "moylen.eu", true },
{ "moyoo.net", true },
- { "moysovet.info", true },
{ "mozartgroup.hu", true },
{ "mozektevidi.net", true },
{ "mozilla.cz", true },
@@ -24018,7 +24986,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mpac.ca", false },
{ "mpc-hc.org", true },
{ "mpcompliance.com", true },
- { "mpe.org", true },
{ "mpetroff.net", true },
{ "mpg-universal.com", true },
{ "mpg.ovh", true },
@@ -24026,20 +24993,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mphoto.at", true },
{ "mpintaamalabanna.it", true },
{ "mpkrachtig.nl", true },
+ { "mpkshop.com.br", true },
{ "mplanetphl.fr", true },
{ "mplant.io", true },
{ "mplicka.cz", true },
{ "mplusm.eu", true },
{ "mpnpokertour.com", true },
{ "mpodraza.pl", true },
- { "mpreserver.com", false },
{ "mprsco.eu", true },
{ "mpsgarage.com.au", true },
{ "mpsoundcraft.com", true },
- { "mpu-giessen.com", true },
{ "mpu-vorbereitung.com", true },
{ "mpy.ovh", true },
- { "mqas.net", true },
{ "mr-anderson.org", true },
{ "mr-designer-oman.com", true },
{ "mr-labo.jp", true },
@@ -24067,16 +25032,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mrketolocksmith.com", true },
{ "mrknee.gr", true },
{ "mrkrabat.de", true },
- { "mrmoregame.de", true },
{ "mrnh.de", true },
{ "mrning.com", true },
{ "mrprintables.com", true },
{ "mrs-labo.jp", true },
+ { "mrs-shop.com", true },
{ "mrsbairds.com", false },
{ "mrserge.lv", true },
{ "mrsk.me", true },
{ "mrstat.co.uk", true },
{ "mrtunnel.club", true },
+ { "mruczek.ga", true },
{ "mrv.li", true },
{ "mrx.one", true },
{ "mrxn.net", true },
@@ -24094,6 +25060,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mshemailmarketer.com.au", true },
{ "msi-zlin.cz", true },
{ "msiegmund.com", true },
+ { "msize48.ch", true },
{ "msmails.de", true },
{ "msno.no", true },
{ "msnr.net", true },
@@ -24101,6 +25068,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mspsocial.net", true },
{ "msquadrat.de", true },
{ "msroot.de", true },
+ { "mssora.com", true },
{ "mssys.de", true },
{ "mstdn.blue", true },
{ "mstdn.club", true },
@@ -24111,12 +25079,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "msv-limpezas.pt", true },
{ "msx.org", true },
{ "mszavodumiru.cz", true },
+ { "mt-bank.jp", true },
{ "mt.search.yahoo.com", false },
{ "mt2414.com", true },
+ { "mta.org.ua", true },
{ "mtane0412.com", true },
{ "mtasa.com", true },
{ "mtasa.hu", true },
- { "mtb.wtf", true },
+ { "mtauburnassociates.com", true },
{ "mtcq.jp", true },
{ "mtd.org", true },
{ "mtg-tutor.de", true },
@@ -24133,7 +25103,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mtltransport.com", true },
{ "mtnz.co.za", true },
{ "mtouch.facebook.com", false },
- { "mtr.md", true },
{ "mtrip.com", true },
{ "mtrock.ru", true },
{ "mts-energia.eu", true },
@@ -24153,6 +25122,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mudgezero.one", true },
{ "muehlemann.net", true },
{ "muel.io", true },
+ { "muelhau.pt", true },
{ "muell-weg.de", true },
{ "muellapp.com", true },
{ "muenchberger.com", true },
@@ -24162,7 +25132,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "muh.io", true },
{ "mui.jp", true },
{ "muitadica.com", true },
+ { "mujerfutura.com", true },
{ "muk-kobetsu.com", true },
+ { "mukilteodentalarts.com", true },
+ { "mukilteoeuropeanautorepair.com", true },
{ "mulaccosmetics.com", true },
{ "mulaisehat.com", true },
{ "mulej.net", true },
@@ -24176,7 +25149,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "multigeist.de", true },
{ "multikalender.de", false },
{ "multimail.work", true },
- { "multimatte.com", true },
+ { "multimatte.com", false },
{ "multimed.krakow.pl", true },
{ "multimedia-pool.com", true },
{ "multiplayernow.com", true },
@@ -24189,10 +25162,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "multitek.no", true },
{ "multitenantlaravel.com", true },
{ "multitheftauto.com", true },
- { "multizone.games", true },
{ "multrier.fr", true },
{ "mum.ceo", true },
- { "muma.ml", true },
{ "mumakil.fi", true },
{ "mumbaionlinegifts.com", true },
{ "muminkoykiran.com", true },
@@ -24200,6 +25171,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "munch.me", true },
{ "munchcorp.com", true },
{ "mundoarabe.com.br", true },
+ { "mundodapoesia.com", true },
{ "mundodasmensagens.com", true },
{ "mundokinderland.com.br", true },
{ "mundolarraz.es", true },
@@ -24208,9 +25180,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mundtec.com.br", true },
{ "munduch.cz", true },
{ "munduch.eu", true },
+ { "munirajiwa.com", true },
{ "munki.org", true },
{ "munkibuilds.org", true },
- { "munwr.com", false },
+ { "munwr.com", true },
{ "muqu.co", true },
{ "mur-vegetal-interieur.fr", true },
{ "murakami-sah.com", true },
@@ -24222,11 +25195,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "murof.com.br", true },
{ "murray.xyz", true },
{ "murraya.cn", true },
+ { "murzik.space", true },
+ { "musa.gallery", true },
{ "musaccostore.com", true },
{ "muscle-tg.com", true },
{ "musclecarresearch.com", true },
{ "muscolinomusic.com", true },
- { "musearchengine.com", true },
{ "musehelix.com", true },
{ "muses-success.info", true },
{ "musettishop.com", true },
@@ -24237,13 +25211,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "music-project.eu", true },
{ "music-world.pl", true },
{ "music.amazon.com", true },
- { "musicaconleali.it", true },
{ "musicalive.nl", true },
{ "musicall.com", true },
{ "musicalschwarzenburg.ch", true },
{ "musicapara.net", true },
+ { "musicasbr.com.br", true },
{ "musicchris.de", true },
- { "musiccitycats.com", true },
+ { "musicdemons.com", true },
{ "musicgamegalaxy.de", true },
{ "musician.dating", true },
{ "musickhouseleveling.com", true },
@@ -24254,6 +25228,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "musik-mentaltraining.ch", true },
{ "musikverein-elten.de", true },
{ "musikzentrale.net", true },
+ { "musique2nuit.com", true },
{ "musketonhaken.nl", false },
{ "muslim.singles", true },
{ "musmann.io", true },
@@ -24276,16 +25251,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "muthai.in.th", true },
{ "mutuals.cool", true },
{ "mutuelle.fr", true },
+ { "muurlingoogzorg.nl", true },
{ "muusika.fun", true },
{ "muusikoiden.net", true },
{ "muwatenraqamy.org", true },
+ { "muz2u.ru", true },
{ "muzeumkomiksu.eu", true },
- { "muzhijy.com", true },
+ { "muzhijy.com", false },
{ "muzikantine.nl", true },
+ { "mv-schnuppertage.de", true },
{ "mv-wohnen.de", true },
{ "mvandek.nl", true },
{ "mvbits.com", true },
{ "mvisioncorp.com", true },
+ { "mvistatic.com", true },
{ "mvno.io", true },
{ "mvp-stars.com", true },
{ "mw.search.yahoo.com", false },
@@ -24296,7 +25275,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mwe.st", true },
{ "mwezi-foundation.org", true },
{ "mwezi.org", true },
- { "mwohlfarth.de", true },
{ "mwtdev.se", true },
{ "mww.moe", true },
{ "mx-quad.fr", true },
@@ -24315,6 +25293,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "my-dns.co.il", true },
{ "my-ebook.es", true },
{ "my-floor.com", true },
+ { "my-gode.fr", true },
{ "my-host.ovh", true },
{ "my-hps.de", true },
{ "my-ip.work", true },
@@ -24332,7 +25311,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "my4thtelco.sg", true },
{ "myabcm.com", true },
{ "myaccount.google.com", false },
- { "myactivity.google.com", true },
+ { "myactivity.google.com", false },
{ "myadpost.com", true },
{ "myadself.com", true },
{ "myaggic.com", true },
@@ -24355,7 +25334,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mybodylife.com", true },
{ "mybon.at", false },
{ "mybonfire.com", true },
+ { "mybreastcancerjourney.com", true },
{ "mybusiness.wien", true },
+ { "mycamda.com", true },
{ "mycard.moe", true },
{ "mycareersfuture.sg", true },
{ "mycieokien.info", false },
@@ -24368,7 +25349,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mycofairtrade.com", true },
{ "mycompanion.cz", true },
{ "myconan.net", true },
+ { "myconnect.cn", true },
{ "myconsulting.ch", true },
+ { "mycookrecetas.com", true },
{ "mycr.eu", true },
{ "mycreativeartsconsulting.com", true },
{ "mycreativenook.com", true },
@@ -24376,7 +25359,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mycrypnet.io", true },
{ "mycrypto.com", true },
{ "mycrystalgrove.com", true },
- { "mycuco.it", true },
{ "mycustomwriting.com", true },
{ "mydarkstar.net", true },
{ "mydaywebapp.com", true },
@@ -24387,6 +25369,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mydigitalweek.com", true },
{ "mydjsongbook.com", true },
{ "mydna.bio", true },
+ { "mydoc.fr", true },
{ "mydocserve.com", true },
{ "mydomaindesk.com", true },
{ "mydreamlifelab.com", true },
@@ -24397,14 +25380,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myeberspaecher.com", true },
{ "myeffect.today", true },
{ "myeisenbahn.de", true },
- { "myeml.net", true },
- { "myessaygeek.com", true },
+ { "myeml.net", false },
{ "myetherwallet.com", true },
{ "myf.cloud", true },
{ "myfantasysportstalk.com", true },
{ "myfedloan.org", true },
{ "myfirenet.com", true },
- { "myfishpalace.at", true },
{ "myfloridadeferredcomp.com", true },
{ "myforfaitmobile.com", true },
{ "myfreemp3.click", true },
@@ -24412,11 +25393,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myg21.com", true },
{ "mygadgetguardian.lookout.com", false },
{ "mygallery.homelinux.net", true },
+ { "mygate.at", false },
+ { "mygedit.com", true },
{ "mygeneral.org", true },
{ "mygeotrip.com", true },
+ { "mygest.me", true },
{ "mygigabitnation.com", true },
{ "mygignation.com", true },
{ "mygirlfriendshouse.com", true },
+ { "mygnmr.com", true },
{ "mygoldennetwork.com", true },
{ "mygreatjobs.de", true },
{ "mygreatlakes.org", true },
@@ -24428,23 +25413,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myhealthreviews.com", true },
{ "myhollywoodnews.com", true },
{ "myhome-24.pl", true },
+ { "myhostname.net", true },
+ { "myhuthwaite.com", true },
{ "myimds.com", true },
{ "myimmitracker.com", true },
{ "myinvite.nl", true },
+ { "myipaddr.de", true },
{ "myipv4.de", true },
{ "myjudo.net", true },
{ "myjumparoo.co.uk", true },
- { "myjumpsuit.de", true },
{ "myki.co", true },
{ "mykontool.de", true },
+ { "mykumedir.com", true },
{ "mylatestnews.org", true },
{ "mylawyer.be", true },
{ "myleanfactory.de", true },
+ { "mylife360mag.com", true },
{ "mylifeabundant.com", true },
{ "mylittlechat.ru", true },
{ "myliveupdates.com", true },
{ "mylookout.com", false },
{ "mylstrom.com", true },
+ { "mylucknursinghome.com", true },
+ { "mymadina.com", true },
{ "mymall.co.jp", true },
{ "mymarketingcourses.com", true },
{ "mymb.pm", true },
@@ -24461,12 +25452,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mymx.lu", true },
{ "myna.go.jp", true },
{ "mynameistavis.com", true },
+ { "mynetworkingbuddy.com", true },
{ "mynext.events", true },
{ "mynextmove.org", true },
{ "mynn.io", true },
{ "mynook.info", false },
{ "mynortherngarden.com", true },
{ "myonline.hu", true },
+ { "myonlinevehicleinsurance.com", true },
{ "myoptumhealthcomplexmedical.com", true },
{ "myoptumhealthparentsteps.com", true },
{ "myotopie.de", true },
@@ -24483,17 +25476,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myowndisk.net", true },
{ "myownwebinar.com", true },
{ "mypaperdone.com", true },
+ { "mypartybynoelia.es", true },
{ "mypayoffloan.com", true },
{ "mypcqq.cc", true },
{ "myperfecthome.ca", true },
- { "myperfumecollection.com", true },
{ "myperks.in", true },
{ "myphotoshopbrushes.com", true },
{ "mypillcard.com", true },
+ { "mypizza-bremen.de", true },
{ "myplaceonline.com", true },
+ { "mypnu.net", true },
{ "mypress.mx", true },
{ "myprintcard.de", true },
{ "myproblog.com", true },
+ { "myprotime.eu", true },
{ "myproxy.eu.org", true },
{ "mypup.nl", true },
{ "myrandomtips.com", true },
@@ -24501,6 +25497,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myraytech.net", false },
{ "myrealestatemate.com.au", true },
{ "myrealestateschool.com", true },
+ { "myred.net", true },
{ "myref.net", true },
{ "myrekber.co.id", true },
{ "myrent.quebec", true },
@@ -24560,7 +25557,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myrotvorets.center", true },
{ "myrotvorets.news", true },
{ "myrp.co", true },
- { "mysber.ru", true },
{ "myschoolphoto.org", true },
{ "myseatime.com", true },
{ "mysecretcase.com", false },
@@ -24568,6 +25564,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myself5.de", true },
{ "myseo.ga", true },
{ "myserv.one", true },
+ { "myservicearl.com", true },
{ "myseu.cn", true },
{ "mysexydate24.com", true },
{ "myshirtsize.com", true },
@@ -24578,7 +25575,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mysockfactory.ch", true },
{ "mysockfactory.com", true },
{ "mysocrat.com", true },
- { "mysongbird.xyz", true },
{ "mysoundtalks.com", false },
{ "myspicer.com", true },
{ "mysqldump-secure.org", true },
@@ -24587,7 +25583,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mysteriouscode.io", true },
{ "mysterydata.com", true },
{ "mysterymind.ch", true },
- { "mysterysear.ch", true },
{ "mystic-welten.de", true },
{ "mystickphysick.com", true },
{ "mysticplumes.com", true },
@@ -24596,6 +25591,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mysupboard.de", true },
{ "myswissmailaddress.com", true },
{ "mytfg.de", true },
+ { "mythemeshop.com", false },
{ "mythengay.ch", true },
{ "mythicdelirium.com", true },
{ "myting.net", true },
@@ -24623,25 +25619,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myvoipnews.com", true },
{ "myvpl.com", true },
{ "mywari.com", true },
- { "mywebinar.io", true },
{ "mywebmanager.co.uk", true },
{ "mywebpanel.eu", true },
- { "mywebpanel.nl", true },
+ { "myweddingaway.co.uk", true },
{ "myweddingreceptionideas.com", true },
{ "myworkinfo.com", false },
{ "myworth.com.au", true },
{ "myxnr.com", true },
{ "myyubikey.net", true },
{ "myyubikey.org", true },
+ { "myzhili.com", true },
{ "myzina.cz", false },
{ "mz-mz.net", true },
{ "mza.com", true },
{ "mzh.io", true },
- { "mziulu.me", false },
+ { "mzmtech.com", true },
{ "mznet.de", true },
+ { "mzstatic.cc", true },
{ "mzzj.de", true },
{ "n-a.date", true },
{ "n-design.de", true },
+ { "n-linear.org", true },
{ "n-m.lu", true },
{ "n-man.info", true },
{ "n-pix.com", false },
@@ -24654,11 +25652,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "n4v.eu", true },
{ "n5118.com", true },
{ "n6a.net", true },
- { "n7.education", true },
+ { "n8ch.net", true },
{ "n8mgt.com", true },
{ "n8nvi.com", true },
{ "n8solutions.net", true },
{ "na-school.nl", true },
+ { "naahgluck.de", true },
{ "naam.me", true },
{ "nabaleka.com", true },
{ "nabankco.com", true },
@@ -24669,16 +25668,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nachsenden.info", true },
{ "nachtmuziek.info", true },
{ "nacin.com", true },
+ { "nacktetatsachen.at", false },
{ "nacktwanderfreunde.de", true },
{ "nacyklo.cz", true },
{ "nadaquenosepas.com", true },
{ "nadejeproninu.cz", true },
{ "nadelholzkulturen.de", true },
+ { "naders.com", true },
{ "nadine-chaudier.net", true },
{ "nadsandgams.com", true },
{ "nadyaolcer.fr", true },
{ "nafod.net", true },
{ "naga-semi.com", true },
+ { "nagajanroshiya.info", true },
{ "nagashi.ma", false },
{ "nagaya.biz", true },
{ "nagb.gov", true },
@@ -24692,6 +25694,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nailattitude.ch", true },
{ "nailchiodo.com", true },
{ "nailsalon-aztplus.com", true },
+ { "nailtodayminneapolis.com", true },
{ "nairobibusinessreview.com", true },
{ "naive.network", true },
{ "najany.de", true },
@@ -24699,13 +25702,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "najany.fr", true },
{ "najany.nl", true },
{ "najany.se", true },
+ { "nakada4610.com", true },
{ "nakalabo.jp", true },
{ "nakama.tv", true },
{ "nakandya.com", true },
+ { "nakanishi-paint.com", true },
{ "nakayama.systems", true },
{ "nakedalarmclock.me", true },
{ "nakedtruthbeauty.com", true },
{ "nakene.com", true },
+ { "nakliyat.name.tr", true },
{ "nakliyatsirketi.biz.tr", true },
{ "nako.no", true },
{ "nalepky-na-zed.cz", true },
@@ -24722,7 +25728,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "namethissymbol.com", true },
{ "nametiles.co", true },
{ "nami.bo", true },
- { "nami.exchange", true },
{ "nami.trade", true },
{ "naminam.de", true },
{ "namrs.net", true },
@@ -24730,11 +25735,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "namu.live", true },
{ "namu.moe", true },
{ "namu.wiki", true },
- { "namuwikiusercontent.com", true },
{ "nanarose.ch", true },
{ "nanch.com", true },
+ { "nancytelford.com", true },
{ "nandex.org", true },
+ { "nange.cn", true },
{ "nange.co", true },
+ { "nani.io", true },
{ "nankiseamansclub.com", true },
{ "nannytax.ca", true },
{ "nanofy.org", true },
@@ -24764,6 +25771,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "narenderchopra.com", true },
{ "narfation.org", true },
{ "nargileh.nl", true },
+ { "naric.com", true },
{ "narindal.ch", true },
{ "narmos.ch", true },
{ "naro.se", true },
@@ -24781,15 +25789,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nashdistribution.com", true },
{ "nashikmatka.com", true },
{ "nashira.cz", true },
+ { "nashvillebasements.com", true },
{ "nashvillelidsurgery.com", true },
{ "nashzhou.me", true },
- { "nasme.tk", true },
{ "nasrsolar.com", true },
{ "nassi.me", true },
{ "nastoletni.pl", true },
{ "nataldigital.com", true },
{ "nataliedawnhanson.com", true },
- { "natanaelys.com", false },
{ "natation-nsh.com", false },
{ "natatorium.org", true },
{ "natchmatch.com", true },
@@ -24805,13 +25812,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nathankonopinski.com", true },
{ "nathansmetana.com", true },
{ "nathumarket.com.br", true },
- { "nationalbank.gov", true },
- { "nationalbanknet.gov", true },
{ "nationalcentereg.org", true },
{ "nationalcprfoundation.com", true },
{ "nationalcrimecheck.com.au", true },
{ "nationalhomequotes.com", true },
{ "nationalmap.gov", true },
+ { "nationalpassportservice.info", true },
{ "nationalpriorities.org", true },
{ "nationaltaxprep.com", true },
{ "nationaltrails.ru", true },
@@ -24820,7 +25826,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nativitynj.org", true },
{ "nativs.ch", true },
{ "natlec.com", true },
- { "natropie.pl", true },
{ "natsumihoshino.com", true },
{ "natur.com", true },
{ "natura-sense.com", true },
@@ -24841,7 +25846,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "naturtint.co.uk", true },
{ "natusvita.com.br", true },
{ "naude.co", true },
- { "naughty.audio", true },
{ "nausicaahotel.it", true },
{ "nautiljon.com", true },
{ "nautsch.de", true },
@@ -24850,7 +25854,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "navenlle.com", true },
{ "navienna.com", true },
{ "navient.com", true },
- { "navitime.me", true },
+ { "navigate-it-services.de", false },
{ "navstevnik.sk", true },
{ "navycs.com", true },
{ "nawir.de", true },
@@ -24899,8 +25903,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nba2konline.com", true },
{ "nba2konlinex.com", true },
{ "nba2kx.com", true },
- { "nba669.com", true },
- { "nba686.com", true },
{ "nbad.al", true },
{ "nbadancers.com", true },
{ "nbade.com", true },
@@ -24921,6 +25923,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nbgrooves.de", true },
{ "nbhorsetraining.com", true },
{ "nbib.gov", true },
+ { "nbnnetwork.com", true },
{ "nbp.com.pk", true },
{ "nbrain.de", true },
{ "nbrii.com", true },
@@ -24929,6 +25932,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nc-beautypro.fr", true },
{ "nc-formation.fr", true },
{ "nc-network.io", true },
+ { "nc99.co", true },
{ "ncamarquee.co.uk", true },
{ "ncands.net", true },
{ "ncaq.net", true },
@@ -24941,19 +25945,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nchangfong.com", true },
{ "nchponline.org", true },
{ "ncic.gg", true },
- { "nclvle.co.uk", true },
{ "ncm-malerbetrieb.de", true },
{ "ncsc.gov.uk", true },
{ "ncsccs.com", true },
{ "ncstep.org", true },
+ { "nctx.co.uk", true },
{ "ndarville.com", true },
+ { "ndatc.com", true },
{ "ndbt.com", true },
{ "ndcpolipak.com", true },
{ "ndeoffshore.com", true },
{ "nder.be", true },
{ "ndfa.net", true },
+ { "ndfirefighter.com", true },
{ "ndhlink.com", true },
{ "ndpbrn-research.org", true },
+ { "ndphp.org", true },
+ { "ndpigskin.com", true },
{ "nds-helicopter.de", true },
{ "ndy.sex", true },
{ "ne-on.org", true },
@@ -24963,12 +25971,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neartothesky.com", true },
{ "neatous.cz", true },
{ "neatous.net", true },
+ { "neatzy.co.uk", true },
{ "neave.tv", true },
{ "neba.io", true },
{ "nebelhauch.de", true },
{ "nebelheim.de", true },
{ "nebenbeiblog.ch", true },
{ "nebra.io", true },
+ { "nebracy.com", true },
{ "nebul.at", true },
{ "nebulae.co", true },
{ "nebuluxcapital.com", true },
@@ -24984,23 +25994,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nedys.top", true },
{ "neecist.org", true },
{ "needemand.com", true },
- { "needle.net.nz", true },
- { "needle.nz", true },
{ "needstyle.ru", true },
{ "neeerd.org", true },
{ "neel.ch", true },
{ "neemzy.org", true },
- { "neet-investor.biz", true },
{ "nefertitis.cz", true },
{ "neffat.si", true },
{ "neflabs.com", true },
+ { "nefro-cme.de", true },
{ "neftis.es", true },
{ "neg9.org", false },
{ "negai.moe", true },
- { "negativecurvature.net", true },
{ "neglecteddiseases.gov", true },
+ { "neheim-huesten.de", true },
{ "nehoupat.cz", true },
{ "nehrp.gov", true },
+ { "neighborhoodelectricwa.com", true },
{ "neil-barrett.com", true },
{ "neil-barrett.uk", true },
{ "neildaniels.com", true },
@@ -25011,6 +26020,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neilwynne.com", true },
{ "neio.uk", true },
{ "nejenpneu.cz", true },
+ { "nejkasy.cz", true },
{ "nejlevnejsi-parapety.cz", true },
{ "neko-nyan-nuko.com", true },
{ "neko-nyan.org", true },
@@ -25033,17 +26043,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nemo.run", true },
{ "nemopan.com", true },
{ "nemopret.dk", true },
+ { "nemplex.win", false },
{ "nems.no", true },
{ "nemumu.com", true },
{ "nemunai.re", true },
+ { "nenkin-kikin.jp", true },
+ { "neno.io", true },
{ "neo2shyalien.eu", false },
{ "neobits.nl", true },
{ "neocities.org", true },
{ "neoclick.io", true },
- { "neocoding.com", true },
- { "neodrive.ch", true },
{ "neoedresources.org", true },
{ "neoeliteconsulting.com", true },
+ { "neohu.com", true },
{ "neojo.org", true },
{ "neokobe.city", true },
{ "neolaudia.es", true },
@@ -25057,14 +26069,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neosdesignstudio.co.uk", true },
{ "neostralis.com", true },
{ "neotist.com", true },
+ { "neotiv.com", true },
{ "neowa.tk", true },
+ { "neowin.net", true },
{ "neowlan.net", true },
{ "neoxcrf.com", true },
{ "neoz.com.br", true },
{ "nepageeks.com", true },
{ "nepal-evolution.org", true },
{ "nephelion.org", true },
- { "nephos.xyz", true },
+ { "nephy.jp", true },
{ "nepovolenainternetovahazardnihra.cz", true },
{ "nepremicninar.com", true },
{ "nepremicnine.click", true },
@@ -25082,10 +26096,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nerpa-club.ru", true },
{ "nerull7.info", true },
{ "nerven.se", false },
- { "nesbase.com", true },
{ "nesolabs.com", true },
{ "nesolabs.de", true },
- { "nestedquotes.ca", true },
{ "nesterov.pw", true },
{ "nestor.nu", true },
{ "neswec.org.uk", true },
@@ -25096,7 +26108,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "net4visions.de", true },
{ "netamia.com", true },
{ "netapps.de", true },
- { "netba.net", true },
{ "netbank.com.au", true },
{ "netbears.com", true },
{ "netbears.ro", true },
@@ -25105,6 +26116,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "netbox.org", true },
{ "netbrewventures.com", true },
{ "netbulls.io", true },
+ { "netbuzz.ru", true },
{ "netconnect.at", true },
{ "netcoolusers.org", true },
{ "netdex.co", true },
@@ -25125,7 +26137,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nethunter.top", true },
{ "netki.com", true },
{ "netlentes.com.br", true },
- { "netlocal.ru", true },
{ "netmagicas.com.br", true },
{ "netmeister.org", true },
{ "netnik.de", true },
@@ -25153,7 +26164,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nettools.link", true },
{ "nettopower.dk", true },
{ "nettoyage.email", true },
- { "nettplusultra-rhone.fr", true },
{ "nettx.co.uk", true },
{ "netulo.com", true },
{ "netvizura.co.uk", true },
@@ -25172,13 +26182,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "networkingphoenix.com", true },
{ "networkmidlands.co.uk", true },
{ "networkmidlands.uk", true },
- { "networkmon.net", true },
{ "networkposting.com", true },
{ "networth.at", true },
{ "netz-yokohama.co.jp", true },
{ "netzfabrik.com", true },
{ "netzfrauen.org", true },
{ "netzwerkwerk.de", true },
+ { "neuber.uno", true },
{ "neuflizeobc.net", true },
{ "neuhaus-city.de", true },
{ "neurabyte.com", true },
@@ -25191,10 +26201,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neurolab.no", true },
{ "neuronasdigitales.com", true },
{ "neuropharmacology.com", true },
+ { "neurostimtms.com", true },
{ "neurotransmitter.net", true },
{ "neurozentrum-zentralschweiz.ch", true },
{ "neutralox.com", false },
{ "neuwal.com", true },
+ { "neva.li", true },
{ "never.pet", true },
{ "nevergreen.io", true },
{ "nevermore.fi", true },
@@ -25225,7 +26237,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "newcityinfo.ch", true },
{ "newcitystudio.ch", true },
{ "newcloudwhodis.com", true },
- { "newcreamforface.com", true },
{ "newday.host", true },
{ "newearth.press", true },
{ "newfangledscoop.com", true },
@@ -25241,16 +26252,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "newmarketbouncycastlehire.co.uk", true },
{ "newmed.com.br", true },
{ "newmediaone.net", true },
+ { "newmelalife.com", true },
{ "newmovements.net", true },
{ "newmusicjackson.org", true },
{ "newodesign.com", true },
- { "newpathintegratedtherapy.com", true },
{ "newposts.ru", true },
{ "newreleases.io", true },
{ "news47ell.com", true },
{ "newsa2.com", true },
- { "newsaboutgames.de", true },
- { "newserumforskin.com", true },
{ "newsmotor.info", true },
{ "newspsychology.com", true },
{ "newstone-tech.com", true },
@@ -25263,6 +26272,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nexicafiles.com", true },
{ "nexril.net", true },
{ "next-web.ad.jp", true },
+ { "next176.sk", true },
{ "next24.io", true },
{ "nextads.ch", true },
{ "nextbranders.com", true },
@@ -25271,7 +26281,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nextcloud.co.za", true },
{ "nextcloud.com", true },
{ "nextcloud.nerdpol.ovh", true },
- { "nextend.net", true },
+ { "nextclouddarwinkel.nl", true },
{ "nextevolution.co.uk", true },
{ "nextgen.sk", true },
{ "nextgencel.com", true },
@@ -25279,7 +26289,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nextgreatmess.com", true },
{ "nexthop.jp", true },
{ "nextiot.de", true },
- { "nextlevel-it.co.uk", true },
{ "nextmbta.com", true },
{ "nextme.se", true },
{ "nextnely.com", true },
@@ -25287,6 +26296,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nextrobotics.de", true },
{ "nextstep-labs.gr", true },
{ "nexttv.co.il", true },
+ { "nextwab.com", true },
{ "nexus-exit.de", true },
{ "nexus-vienna.at", true },
{ "nexusconnectinternational.eu", true },
@@ -25302,10 +26312,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nfl.dedyn.io", true },
{ "nfl.duckdns.org", true },
{ "nflmocks.com", true },
- { "nfls.io", true },
{ "nflsic.org", true },
+ { "nfpors.gov", true },
{ "nframe.io", true },
- { "nfrost.me", true },
{ "nfsec.pl", true },
{ "nfz.moe", true },
{ "ng-musique.com", true },
@@ -25315,11 +26324,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nginxconfig.com", true },
{ "nginxconfig.io", true },
{ "ngndn.jp", true },
+ { "ngt.gr", true },
{ "ngvf.de", true },
{ "ngx.hk", true },
{ "ngxpkg.com", true },
{ "nhccnews.org", true },
{ "nhchalton.com", true },
+ { "nhdsilentheroes.org", true },
{ "nhgteam.hu", true },
{ "nhimf.org", true },
{ "nhome.ba", true },
@@ -25342,15 +26353,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nice.ch", true },
{ "niceguyit.biz", true },
{ "nicesco.re", true },
+ { "nicesleepo.com", true },
{ "nicestudio.co.il", false },
{ "nichijou.com", true },
+ { "nicholasperkins.io", true },
{ "nicholaspruss.com", true },
{ "nicholasquigley.com", true },
{ "nicholaswilliams.net", true },
{ "nichteinschalten.de", false },
{ "nichthelfer.de", true },
{ "nicic.gov", true },
- { "nickcleans.co.uk", true },
{ "nickcraver.com", true },
{ "nickdekruijk.nl", true },
{ "nickguyver.com", true },
@@ -25365,17 +26377,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nickscomputers.nl", true },
{ "nickserve.com", true },
{ "nickstories.de", true },
- { "nicktheitguy.com", true },
{ "niclasreich.de", true },
{ "nicn.me", true },
{ "nico.st", true },
{ "nicocourts.com", true },
{ "nicoknibbe.nl", true },
+ { "nicoladixonrealestate.com", true },
{ "nicolajanedesigns.co.uk", true },
{ "nicolas-dumermuth.com", true },
{ "nicolas-hoffmann.net", true },
{ "nicolas-hoizey.com", true },
{ "nicolas-simond.com", true },
+ { "nicolasfriedli.ch", true },
{ "nicolashess.de", true },
{ "nicolasiung.me", true },
{ "nicolaszambetti.ch", true },
@@ -25383,11 +26396,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nicolemathew.com", true },
{ "niconico.ooo", true },
{ "niconode.com", false },
- { "nicoobook.com", true },
{ "nicsezcheckfbi.gov", true },
{ "nicul.in", true },
{ "nidro.de", true },
{ "nidsuber.ch", true },
+ { "niduxcomercial.com", true },
{ "niederohmig.de", true },
{ "niehage.name", true },
{ "nielshoogenhout.be", true },
@@ -25410,6 +26423,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "niesstar.com", true },
{ "nietzsche.com", true },
{ "nieuwslagmaat.nl", true },
+ { "nifc.gov", true },
{ "niftiestsoftware.com", true },
{ "nigelwakefield.com", true },
{ "nigensha.co.jp", true },
@@ -25426,22 +26440,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nightmoose.org", true },
{ "nightsi.de", true },
{ "nightstand.io", true },
- { "nightwinds.tk", true },
{ "nigt.cf", true },
{ "nihon-no-sake.net", true },
+ { "nihtek.in", true },
+ { "nii2.org", true },
+ { "nij.gov", true },
{ "nijiero-ch.com", false },
{ "nijikata.com", true },
{ "nijm.nl", true },
{ "nikandcara.com", true },
{ "nikao-tech.com", true },
{ "nikavandenbos.nl", true },
- { "niki.ai", true },
{ "nikimix.com", true },
{ "nikkasystems.com", true },
{ "nikkila.me", true },
{ "nikklassen.ca", true },
{ "niklas.pw", true },
- { "niklasanderson.com", true },
{ "niklasbabel.com", true },
{ "nikolasgrottendieck.com", true },
{ "nikomo.fi", false },
@@ -25465,6 +26479,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ninepints.co", true },
{ "ninesix.cc", true },
{ "ninespec.com", true },
+ { "ninetailed.ninja", true },
{ "ninetaillabs.com", true },
{ "ninetaillabs.xyz", true },
{ "ninfora.com", true },
@@ -25473,13 +26488,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ninjaworld.co.uk", true },
{ "ninjio.com", true },
{ "ninov.de", true },
- { "ninreiei.jp", true },
{ "nintendoforum.no", true },
{ "ninth.cat", true },
{ "ninthfloor.org", true },
- { "ninverse.com", true },
{ "nipax.cz", true },
{ "nipe-systems.de", true },
+ { "nipit.biz", true },
{ "nippon-oku.com", true },
{ "niqex.com", true },
{ "nirjonmela.com", true },
@@ -25497,10 +26511,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nitrous-networks.com", true },
{ "nitschinger.at", true },
{ "niu.moe", true },
- { "niva.synology.me", true },
{ "nivi.ca", true },
{ "nix.black", true },
{ "nixonlibrary.gov", true },
+ { "nixtest.net", true },
{ "nixx-gel.cz", true },
{ "niyawe.de", true },
{ "niyazpoyilan.com", false },
@@ -25509,7 +26523,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "njguardtraining.com", true },
{ "njilc.com", true },
{ "njpjanssen.nl", true },
+ { "njujb.com", true },
{ "nkapliev.org", true },
+ { "nkforum.pl", true },
{ "nkinka.de", true },
{ "nkp-media.de", true },
{ "nl-ix.net", true },
@@ -25521,13 +26537,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nllboard.co.uk", true },
{ "nlleisure.co.uk", true },
{ "nlm.gov", true },
- { "nlrb.gov", true },
{ "nlt.by", false },
{ "nmd.so", true },
+ { "nmmlp.org", true },
{ "nmnd.de", true },
{ "nmontag.com", true },
+ { "nmsinusdoc.com", true },
{ "nn.cz", true },
- { "nn78.com", true },
{ "nna774.net", true },
{ "nnqc.nl", true },
{ "no-ip.cz", true },
@@ -25551,10 +26567,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nodariweb.com.ar", true },
{ "nodecraft.com", true },
{ "nodejs.de", true },
- { "nodelab-it.de", true },
{ "nodelia.com", true },
{ "nodesec.cc", true },
- { "nodesturut.cl", true },
{ "nodevops.com", true },
{ "noeatnosleep.me", true },
{ "noedidacticos.com", true },
@@ -25566,6 +26580,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "noez.de", true },
{ "nofrillsdns.com", true },
{ "nogerondier.eu", true },
+ { "nogetime.com", true },
{ "noglobalwarrants.org", true },
{ "nohats.ca", true },
{ "nohkan.fr", true },
@@ -25591,19 +26606,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nomesbiblicos.com", true },
{ "nomial.co.uk", true },
{ "nomifensine.com", true },
- { "nomoondev.azurewebsites.net", true },
{ "nomsy.net", true },
{ "nonabytes.xyz", true },
{ "noname-ev.de", true },
{ "nonametheme.com", true },
{ "noncombatant.org", true },
{ "noob-box.net", true },
+ { "noobow.me", true },
{ "noobswhatelse.net", true },
- { "noobunbox.net", true },
{ "noodles.net.nz", true },
{ "noodplan.co.za", true },
{ "noodweer.be", true },
{ "noofficewalls.com", true },
+ { "noomist.com", true },
{ "noon-entertainments.com", true },
{ "noop.ch", true },
{ "noordsee.de", true },
@@ -25614,6 +26629,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "noovell.com", true },
{ "nopaste.xyz", true },
{ "nopaynocure.com", true },
+ { "norad.sytes.net", true },
{ "norbertschneider-music.com", true },
{ "nord-sud.be", true },
{ "nordakademie.de", true },
@@ -25622,6 +26638,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nordlichter-brv.de", true },
{ "nordmoregatebilklubb.com", true },
{ "nordnetz-hamburg.de", true },
+ { "nordseeblicke.de", true },
{ "nordwal.de", true },
{ "nordwaldzendo.de", true },
{ "noreply.mx", true },
@@ -25634,14 +26651,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "normanbauer.com", true },
{ "normandgascon.com", true },
{ "normankranich.de", true },
- { "norrkemi.se", true },
+ { "noroshi-burger.com", true },
{ "norrliden.de", true },
{ "norsewars.com", true },
{ "norskpensjon.no", true },
{ "northatlantalaw.net", true },
+ { "northbridgecre.com", true },
{ "northbrisbaneapartments.com.au", true },
{ "northconsulting.fr", true },
{ "northcountykiaparts.com", true },
+ { "northcreekresort.com", true },
+ { "northdakotahealthnetwork.com", true },
{ "northdevonbouncycastles.co.uk", true },
{ "northeastcdc.org", true },
{ "northeastrodeo.co.uk", true },
@@ -25652,10 +26672,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "northernselfstorage.co.za", true },
{ "northfieldyarn.com", true },
{ "northokanaganbookkeeping.com", true },
+ { "northpointoutdoors.com", true },
{ "northpole.dance", true },
{ "northridgeelectrical.com", true },
{ "northumbriagames.co.uk", true },
- { "northwest-events.co.uk", true },
{ "norys-escape.de", true },
{ "nos-medias.fr", true },
{ "nos-oignons.net", true },
@@ -25676,7 +26696,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "notacooldomain.com", true },
{ "notadd.com", true },
{ "notallmine.net", true },
- { "notalone.gov", true },
{ "notar-glagowski.com", true },
{ "notar-glagowski.de", true },
{ "notar-peikert.com", true },
@@ -25698,7 +26717,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "notoriousdev.com", true },
{ "notrecourrier.net", true },
{ "notsafefor.work", true },
- { "nottres.com", true },
{ "noudjalink.nl", true },
{ "noustique.com", true },
{ "nova-dess.ch", true },
@@ -25709,6 +26727,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "novacoast.com", false },
{ "novadermis.es", true },
{ "novafreixo.pt", true },
+ { "novascan.net", true },
{ "novawave.ca", true },
{ "nove.city", true },
{ "noveciti.com", true },
@@ -25724,16 +26743,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "novgorod-avia.ru", true },
{ "novilaw.com", true },
{ "novilidery.com", true },
+ { "novinivo.com", true },
{ "novodiegomaia.com.br", true },
{ "novojet.cl", true },
{ "novoresume.com", false },
{ "novosibavia.ru", true },
{ "novurania.com", true },
+ { "nowall.online", true },
{ "nowhere.dk", true },
{ "nowitzki.me", true },
{ "nowlas.org", true },
{ "nowloading.co", true },
- { "noxi.ga", true },
{ "noxlogic.nl", true },
{ "noydeen.com", true },
{ "noyocenter.org", true },
@@ -25742,9 +26762,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "npath.de", true },
{ "npcrcss.org", true },
{ "npmcdn.com", true },
+ { "npregion.org", true },
{ "npsas.org", true },
{ "npw.net", true },
- { "nqesh.com", true },
{ "nqeshreviewer.com", true },
{ "nrd.li", true },
{ "nrdstd.io", true },
@@ -25762,12 +26782,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nscnet.jp", true },
{ "nsfw-story.com", true },
{ "nshipster.cn", true },
+ { "nshipster.co.kr", true },
{ "nshipster.com", true },
+ { "nshipster.es", true },
{ "nsm.ee", true },
{ "nsm.stat.no", true },
{ "nso.ie", true },
+ { "nsofficeinteriors.com", true },
{ "nsp.ua", true },
{ "nst-maroc.com", true },
+ { "nstatic.xyz", true },
{ "nstd.net", true },
{ "nstremsdoerfer.ovh", true },
{ "nstrust.co.uk", true },
@@ -25777,12 +26801,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nte.email", true },
{ "nth.sh", true },
{ "nti.de", true },
+ { "ntia.gov", true },
{ "ntotten.com", true },
{ "ntppool.org", false },
+ { "ntsb.gov", true },
{ "ntwt.us", true },
{ "ntx360grad-fallakte.de", true },
{ "ntzwrk.org", true },
- { "nu-pogodi.net", true },
{ "nu3.com", true },
{ "nu3.dk", true },
{ "nu3.fi", true },
@@ -25794,6 +26819,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nuamooreaindonesia.com", true },
{ "nubella.com.au", true },
{ "nubu.at", true },
+ { "nuclea.id", true },
{ "nuclea.site", true },
{ "nuclearcat.com", true },
{ "nucleuscore.org", true },
@@ -25823,8 +26849,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "numerossanos.com.ar", true },
{ "numis.tech", true },
{ "numismed-seniorcare.de", true },
- { "numm.fr", true },
{ "numwave.nl", true },
+ { "nunesgh.com", true },
{ "nunnenmacher.net", true },
{ "nunnun.jp", true },
{ "nunomoura.com", true },
@@ -25844,11 +26870,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nutleyef.org", true },
{ "nutonic-sports.com", true },
{ "nutpanda.com", true },
+ { "nutra-creations.com", true },
{ "nutri-spec.me", true },
{ "nutricaovegana.com", true },
{ "nutriciametabolics-shop.de", true },
+ { "nutridieta.com", true },
{ "nutripedia.gr", true },
{ "nutrishop.com", true },
+ { "nutrition.gov", true },
{ "nutrivisa.com.br", true },
{ "nuvechtdal.nl", true },
{ "nuvini.com", true },
@@ -25858,10 +26887,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nvl-game.tokyo", true },
{ "nvq.nl", true },
{ "nvr.bz", true },
+ { "nvtc.gov", true },
+ { "nwapproval.com", true },
+ { "nwautorebuild.com", true },
{ "nwbc.gov", true },
{ "nwerc.party", true },
{ "nwgh.org", false },
+ { "nwimports.com", true },
{ "nwk1.com", true },
+ { "nwperformanceandoffroad.com", true },
{ "nwr-waffenbuch.de", true },
{ "nwra.com", true },
{ "nwuss.okinawa", true },
@@ -25882,6 +26916,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nycoyote.org", true },
{ "nydig.com", true },
{ "nydnxs.com", true },
+ { "nyghtus.net", true },
{ "nyhaoyuan.net", true },
{ "nyiad.edu", true },
{ "nyip.co.uk", true },
@@ -25907,12 +26942,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "o2careers.co.uk", true },
{ "o3.wf", true },
{ "o3wallet.com", true },
+ { "o5.cx", true },
{ "o6asan.com", true },
{ "o8b.club", true },
{ "oaic.gov.au", true },
{ "oakandresin.co", true },
{ "oakesfam.net", true },
- { "oakington.info", true },
+ { "oakington.info", false },
{ "oaklands.co.za", true },
{ "oakparkelectrical.com", true },
{ "oakparkexteriorlighting.com", true },
@@ -25922,38 +26958,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oakslighting.co.uk", true },
{ "oanalista.com.br", true },
{ "oasisdabeleza.com.br", true },
+ { "oasisim.net", false },
{ "oatmealdome.me", true },
{ "oauth-dropins.appspot.com", false },
{ "obamalibrary.gov", true },
{ "obamawhitehouse.gov", true },
{ "oberhofdrinks.com", true },
{ "obermeiers.eu", true },
+ { "oberoi.de", true },
{ "obesidadlavega.com", true },
{ "obfuscate.xyz", true },
{ "obg-global.com", true },
+ { "obgalslancaster.com", true },
{ "obitech.de", true },
{ "object.earth", true },
{ "objectif-terre.ch", true },
{ "objekt-textil.ch", true },
{ "oblast45.ru", false },
+ { "obligacjekk.pl", true },
{ "oboeta.com", true },
{ "obono.at", true },
+ { "obrienswine.ie", true },
{ "obs.group", true },
{ "obscur.us", true },
+ { "observer.name", true },
{ "obsessharness.com", true },
{ "obsidianirc.net", true },
{ "obsproject.com", true },
{ "obtima.org", true },
{ "obud.cz", true },
+ { "obxlistings.com", true },
{ "obyvateleceska.cz", true },
{ "oc-sa.ch", true },
+ { "ocalaflwomenshealth.com", true },
{ "ocarupo.com", true },
{ "occenterprises.org", true },
{ "occentus.net", true },
{ "occmon.net", true },
{ "occonnections.org", true },
+ { "occupational-therapy-colleges.com", true },
{ "ocd2016.com", true },
{ "ocdadmin.com", true },
+ { "oceancity4sales.com", true },
{ "oceandns.eu", true },
{ "oceandns.net", true },
{ "oceandns.nl", true },
@@ -25971,15 +27017,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ockendenhemming.co.uk", true },
{ "oclausen.com", true },
{ "ocloudhost.com", true },
+ { "ocni-ambulance-most.cz", true },
{ "ocolere.ch", true },
{ "ocotg.com", true },
{ "ocrn.nl", true },
{ "ocsigroup.fr", true },
{ "ocsr.nl", true },
+ { "octagongroup.co", true },
+ { "octal.es", true },
{ "octarineparrot.com", true },
{ "octav.name", false },
+ { "octocaptcha.com", true },
+ { "octofox.de", true },
{ "octohedralpvp.tk", true },
- { "octohost.net", true },
{ "octolopagon.games", true },
{ "octopus-agents.com", true },
{ "octosniff.net", true },
@@ -25995,12 +27045,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oddsandevensbookkeeping.ca", true },
{ "oddtime.net", true },
{ "odensc.me", true },
+ { "odhosc.ca", true },
{ "odifi.com", true },
{ "odinseye.net", true },
{ "odoo.co.th", true },
{ "odpikedoslike.com", true },
{ "odtu.lu", true },
{ "oducs.org", true },
+ { "odvps.com", true },
{ "odysseyofthemind.eu", true },
{ "odzyskaniedomeny.pl", true },
{ "oec-music.com", true },
@@ -26015,8 +27067,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oemspace.nl", true },
{ "oemwolf.com", true },
{ "oenings.eu", true },
+ { "of2m.fr", true },
{ "ofcampuslausanne.ch", true },
{ "ofda.gov", true },
+ { "ofertasadsl.com", true },
{ "offandonagain.org", true },
{ "offbyinfinity.com", true },
{ "offenekommune.de", true },
@@ -26032,13 +27086,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "officefundays.co.uk", true },
{ "officeinteriors.co.nz", true },
{ "officemovepro.com", true },
- { "officeprint.co.th", true },
{ "officiants.wedding", false },
{ "officium.tech", true },
{ "offroadeq.com", true },
+ { "offroadhoverboard.net", true },
{ "offshoot.rentals", true },
{ "offshore.digital", true },
+ { "offshoremarineparts.com", false },
+ { "ofggolf.com", true },
{ "oflow.me", true },
+ { "ofsetas.lt", true },
{ "oftamedic.com", true },
{ "oftn.org", true },
{ "oge.ch", true },
@@ -26053,7 +27110,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ohchouette.com", true },
{ "ohd.dk", true },
{ "oheila.com", true },
- { "ohhdeertrade.com", true },
{ "ohhere.xyz", true },
{ "ohiohealthfortune100.com", true },
{ "ohling.org", true },
@@ -26075,6 +27131,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ojdip.net", true },
{ "ojomovies.com", true },
{ "ojp.gov", true },
+ { "okaidi.es", true },
+ { "okaidi.fr", true },
{ "okakuro.org", true },
{ "okanaganrailtrail.ca", true },
{ "okay.cf", true },
@@ -26097,12 +27155,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oktoberfeststore.nl", true },
{ "oktomus.com", true },
{ "okukan.com.au", true },
+ { "okurapictures.com", true },
{ "okusiassociates.com", true },
{ "olanderflorist.com", true },
{ "olasouris.com", true },
+ { "olastrafford.org", true },
{ "olback.net", true },
{ "olbat.net", true },
{ "olcayanar.com", true },
+ { "olcbrookhaven.org", true },
{ "oldbrookinflatables.co.uk", true },
{ "oldbrookmarqueehire.co.uk", true },
{ "oldchaphome.nl", true },
@@ -26114,6 +27175,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oldoakflorist.com", true },
{ "oldprop.com", true },
{ "oldroutetwo.com", true },
+ { "oldsticker.com", true },
+ { "oldstmary.com", true },
{ "oldtimerreifen-moeller.de", true },
{ "olegon.ru", true },
{ "olegs.be", true },
@@ -26121,10 +27184,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oleodecopayba.com.br", true },
{ "oles-hundehaus.de", true },
{ "olfnewcastle.com", true },
+ { "olfsecane.org", true },
{ "olgiati.org", true },
{ "olgui.net", true },
{ "olgun.eu", true },
- { "olifant.fr", true },
+ { "olhcparish.net", true },
{ "olightstore.com", true },
{ "olightstore.ro", true },
{ "oliode.tk", true },
@@ -26138,11 +27202,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "olivernaraki.com", true },
{ "oliverniebuhr.de", true },
{ "oliverspringer.eu", true },
+ { "oliverst.com", true },
{ "olivierberardphotographe.com", true },
{ "olivierlemoal.fr", true },
{ "olivierpieters.be", true },
{ "oliviervaillancourt.com", true },
- { "olivlabs.com", true },
{ "olizeite.ch", true },
{ "ollie.io", true },
{ "ollieowlsblog.com", true },
@@ -26154,17 +27218,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ollning.com", true },
{ "olltechjob.com", true },
{ "olmari.fi", true },
+ { "olmc-nutley.org", true },
+ { "olmcnewark.com", true },
{ "olmsted.io", true },
+ { "olphseaside.org", true },
+ { "olqoa.org", true },
{ "olygazoo.com", true },
{ "olymp-arts.world", true },
+ { "olympeakgaming.tv", true },
{ "olympiads.ca", true },
{ "olympic-research.com", true },
{ "om1.com", true },
{ "omanko.porn", true },
- { "omarsuniagamusic.ga", true },
+ { "omar.yt", true },
+ { "omarh.net", true },
{ "omdesign.cz", true },
{ "omegahosting.net", true },
{ "omegathermoproducts.nl", true },
+ { "omeopatiadinamica.it", true },
{ "omertabeyond.com", true },
{ "omertabeyond.net", true },
{ "ometepeislandinfo.com", true },
@@ -26172,9 +27243,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "omfg.exposed", true },
{ "omgbouncycastlehire.co.uk", true },
{ "omi-news.fr", true },
- { "omifind.com", true },
+ { "omicron3069.com", true },
{ "omitech.co.uk", true },
{ "omlmetal.co.jp", true },
+ { "omniaclubs.com", true },
{ "omniasig.ro", true },
{ "omniasl.com", true },
{ "omniatv.com", true },
@@ -26194,7 +27266,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "on-tech.co.uk", true },
{ "ona.io", true },
{ "onaboat.se", true },
- { "onahonavi.com", true },
{ "onarto.com", true },
{ "onazikgu.com", true },
{ "onbuzzer.com", false },
@@ -26205,6 +27276,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ond-inc.jp", true },
{ "ondcp.gov", true },
{ "onderwijstransparant.nl", true },
+ { "ondevamosjantar.com", true },
{ "ondrej.org", true },
{ "ondrejhoralek.cz", true },
{ "one---line.com", true },
@@ -26224,6 +27296,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onedrive.live.com", false },
{ "onee3.org", true },
{ "onefour.ga", false },
+ { "onegoodthingbyjillee.com", true },
{ "oneheartbali.church", true },
{ "oneidentity.me", true },
{ "oneiroi.co.uk", true },
@@ -26232,6 +27305,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onemoonmedia.de", true },
{ "oneononeonone.de", true },
{ "oneononeonone.tv", true },
+ { "onepercentrentals.com", true },
{ "onepointsafeband.ca", true },
{ "onepointsafeband.com", true },
{ "onepointzero.com", true },
@@ -26242,6 +27316,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onestopcastles.co.uk", true },
{ "onetcenter.org", true },
{ "onetcodeconnector.org", true },
+ { "onetech.it", true },
{ "onetime.info", true },
{ "onetonline.org", true },
{ "oneway.ga", true },
@@ -26249,12 +27324,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oneweb.hu", true },
{ "onfarma.it", true },
{ "ongea.io", true },
+ { "ongiaenegogoa.com", true },
{ "onhistory.co.uk", true },
{ "onhub1.com", true },
{ "oni.nl", true },
{ "onice.ch", true },
{ "onionbot.me", true },
- { "onionplay.live", true },
{ "onionplay.org", true },
{ "onionscan.org", true },
{ "oniria.ch", true },
@@ -26272,15 +27347,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "online-pr.at", true },
{ "online-results.dk", true },
{ "online-stopwatch.com", true },
+ { "online-textil.com", true },
+ { "online-textil.cz", true },
+ { "online-textil.sk", true },
{ "online.marketing", true },
{ "online.net.gr", true },
+ { "online.swedbank.se", true },
{ "online24.pt", true },
{ "onlinebizdirect.com", false },
{ "onlinecasino.vlaanderen", true },
{ "onlinecensorship.org", true },
{ "onlinecollegeessay.com", true },
- { "onlinecorners.com", true },
{ "onlinefashion.it", true },
+ { "onlinehashfollow.com", true },
{ "onlineinfographic.com", true },
{ "onlinekmc.com", true },
{ "onlinelegalmarketing.com", true },
@@ -26289,18 +27368,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onlinemarketingtraining.co.uk", true },
{ "onlinepokerspelen.be", true },
{ "onlineporno.xyz", true },
+ { "onlineprofecional.com", true },
{ "onlinerollout.de", true },
{ "onlinestoreninjas.com", true },
+ { "onlinetextil.cz", true },
{ "onlineth.com", false },
{ "onlineweblearning.com", true },
{ "onlinexl.nl", true },
- { "onlyesb.com", true },
- { "onlyesb.net", true },
{ "onlylebanon.net", true },
{ "onmaps.de", true },
{ "onmarketbookbuilds.com", true },
{ "onnaguse.com", true },
- { "onnext.cc", true },
{ "onoranze-funebri.biz", true },
{ "onpay.io", true },
{ "onpermit.net", true },
@@ -26313,14 +27391,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ontdekhetzelf.nu", true },
{ "onthebriteside.com", true },
{ "ontras.com", false },
+ { "ontsc.com", true },
+ { "ontservice.com", true },
{ "ontsnappingskamer.nl", true },
{ "onurer.net", true },
{ "onvey.io", true },
+ { "onviga.de", true },
{ "onvirt.de", true },
{ "onvori.com", true },
{ "onvori.de", true },
{ "onvousment.fr", true },
{ "onysix.net", true },
+ { "onyxcts.com", true },
{ "onyxfireinc.com", true },
{ "onyxgen.duckdns.org", true },
{ "onyxmoon.me", true },
@@ -26330,7 +27412,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ooharttemplates.com", true },
{ "ooonja.de", true },
{ "oopsis.com", true },
- { "oosoo.org", true },
{ "ooyo.be", true },
{ "op11.co.uk", false },
{ "opadaily.com", true },
@@ -26342,6 +27423,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "open-bs.com", true },
{ "open-bs.ru", true },
{ "open-desk.org", true },
+ { "open-domotics.info", true },
{ "open-freax.fr", true },
{ "open-gaming.net", true },
{ "open-infrastructure.net", true },
@@ -26350,10 +27432,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "open-sauce-recipes.co.uk", true },
{ "open-source.gr", true },
{ "open.gl", true },
- { "openacademies.com", true },
{ "openacte.ch", true },
- { "openas.org", true },
- { "openbankproject.com", true },
{ "openbayes.com", true },
{ "openbeecloud.com", true },
{ "openblox.org", true },
@@ -26372,15 +27451,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "opengovpartnership.de", true },
{ "openings.ninja", true },
{ "openintelligence.uk", true },
- { "openiocdb.com", true },
{ "openitforum.pl", true },
{ "openkim.org", true },
{ "openkvk.nl", true },
- { "openmirrors.cf", true },
+ { "openmirrors.ml", true },
{ "openmtbmap.org", true },
{ "opennippon.com", true },
{ "opennippon.ru", true },
{ "openpictures.ch", true },
+ { "openpresentes.com.br", true },
{ "openquery.com.au", true },
{ "openrainbow.com", true },
{ "openrainbow.net", true },
@@ -26388,6 +27467,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "openrealestate.co", true },
{ "openresty.com", true },
{ "openreview.net", true },
+ { "openroademail.com", true },
{ "openruhr.de", true },
{ "openscreen.lu", true },
{ "opensource-cms.nl", true },
@@ -26407,9 +27487,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "openwifi.gr", true },
{ "openwireless.org", true },
{ "operationforever.com", true },
+ { "opexterminating.com", true },
{ "opfin.com", true },
{ "ophis-phosphoros.com", true },
{ "opiates.ca", true },
+ { "opic.gov", true },
{ "opin.me", true },
{ "opioids.co.uk", true },
{ "opioids.gov", true },
@@ -26417,8 +27499,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oplop.appspot.com", true },
{ "opoleo.com", false },
{ "oportho.com.br", true },
- { "oportunidadesemfoco.com.br", true },
- { "opp.ag", true },
+ { "oposiciones.com.es", true },
+ { "oposicionescorreos.com.es", true },
+ { "oposicionesertzaintza.com.es", true },
+ { "oppada.com", true },
{ "oppaiti.me", true },
{ "oppejoud.ee", true },
{ "opportunis.me", true },
@@ -26455,6 +27539,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "optmos.at", true },
{ "optometryscotland.org.uk", true },
{ "optoutday.de", true },
+ { "opure.ml", true },
{ "opure.ru", true },
{ "opus-codium.fr", true },
{ "oraculum.cz", true },
@@ -26464,6 +27549,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orangefinanse.com.pl", true },
{ "orangejetpack.com", true },
{ "orangenbaum.at", true },
+ { "orangenuts.in", true },
+ { "orangetravel.eu", true },
{ "orangutan-appeal.org.uk", true },
{ "orbu.net", true },
{ "orca.pet", true },
@@ -26477,7 +27564,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ordernow.at", true },
{ "orderswift.com", true },
{ "ordr.mobi", true },
- { "oreka.online", true },
{ "oreshinya.xyz", true },
{ "oreskylaw.com", true },
{ "oreto.de", true },
@@ -26497,6 +27583,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orientravelmacas.com", true },
{ "origami.to", true },
{ "origamika.com", true },
+ { "original-christstollen.com", true },
+ { "original-christstollen.de", true },
{ "originalniknihy.cz", true },
{ "origincoffee.com", true },
{ "origincoffee.nz", true },
@@ -26506,6 +27594,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orimex-mebel.ru", true },
{ "orion-universe.com", true },
{ "orioncokolada.cz", true },
+ { "oriondynamic.be", true },
{ "orionfinancialservices.com", true },
{ "oriongames.eu", true },
{ "orkestar-krizevci.hr", true },
@@ -26514,15 +27603,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orleika.io", true },
{ "orlives.de", false },
{ "ormer.nl", true },
+ { "orocojuco.com", true },
{ "orovillelaw.com", true },
{ "orro.ro", true },
{ "orrs.de", true },
- { "ortho-graz.at", true },
+ { "orthocop.cz", true },
{ "orthodontiste-geneve-docteur-rioux.com", true },
{ "orthograph.ch", true },
{ "orthotictransfers.com", true },
{ "ortlepp.eu", true },
- { "ortodonciaian.com", true },
+ { "orum.in", true },
{ "orwell1984.today", true },
{ "oryva.com", true },
{ "orz.uno", true },
@@ -26542,19 +27632,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oscarvk.ch", true },
{ "oscloud.com", true },
{ "osepideasthatwork.org", true },
- { "osereso.tn", true },
{ "oses.mobi", true },
{ "oshayr.com", true },
{ "oshell.me", true },
+ { "oshershalom.com", true },
{ "oshrc.gov", true },
{ "osielnava.com", true },
+ { "osirisrp.online", true },
{ "oskrba.net", true },
{ "oskuro.net", true },
{ "osla.org", true },
{ "oslinux.net", true },
{ "osm.is", true },
{ "osmanlitorunu.com", true },
- { "osmestres.com", true },
{ "osmosis.org", true },
{ "osmre.gov", true },
{ "osnova.cz", true },
@@ -26562,9 +27652,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "osomjournal.org", true },
{ "ospf.sk", true },
{ "ospree.me", true },
- { "osquery.io", true },
{ "ostan-collections.net", true },
{ "osterkraenzchen.de", true },
+ { "osti.gov", true },
{ "ostimwebyazilim.com", true },
{ "ostr.io", true },
{ "osusume-houhou.com", true },
@@ -26575,17 +27665,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "osx86spain.com", true },
{ "osxentwicklerforum.de", true },
{ "oszri.hu", true },
- { "otako.pl", true },
{ "otakubox.de", true },
{ "otakurepublic.com", true },
{ "otakurumi.de", true },
- { "otakuyun.com", true },
- { "otchecker.com", true },
{ "otellio.com", true },
{ "otellio.de", true },
{ "otellio.it", true },
+ { "other98.com", true },
{ "oticasaopaulo.com.br", true },
{ "oticasvisao.net.br", true },
+ { "otoblok.com", true },
+ { "otokiralama.name.tr", true },
{ "otorrino.pt", true },
{ "otoy.com", true },
{ "otoya.space", true },
@@ -26594,7 +27684,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "otrm.de", true },
{ "otsfreestyle.jp", true },
{ "otsu.beer", true },
- { "ottoproject.io", true },
{ "ottoversand.at", true },
{ "otus-magnum.com", true },
{ "otvaracie-hodiny.sk", true },
@@ -26612,9 +27701,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ourcloud.at", true },
{ "ourdocuments.gov", true },
{ "ourevents.net", true },
+ { "ourladymountcarmel.net", true },
+ { "ourladyofcalvary.org", true },
+ { "ourladyoftheassumptionchurch.org", true },
+ { "ourladyqueenofmartyrs.org", true },
+ { "ourls.win", true },
+ { "ourmaster.org", true },
{ "ouruglyfood.com", true },
{ "ourwedding.xyz", true },
{ "ourworldindata.org", true },
+ { "out-of-scope.de", true },
{ "outdoorfurniture.ie", true },
{ "outdoorimagingportal.com", true },
{ "outdoorlightingagoura.com", true },
@@ -26641,6 +27737,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "outpostinfo.com", true },
{ "outsideconnections.com", true },
{ "outsiders.paris", true },
+ { "ovabag.com", true },
{ "ovelhaostra.com", true },
{ "overalglas.nl", true },
{ "overamsteluitgevers.nl", true },
@@ -26651,20 +27748,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oversight.garden", true },
{ "oversight.gov", true },
{ "overstap.deals", true },
- { "overstappen.nl", true },
{ "overstemmen.nl", true },
{ "overstockpromote.com", true },
{ "overthecloud.it", true },
{ "overthinkingit.com", true },
{ "overtrolls.de", true },
- { "overture.london", true },
{ "overwall.org", true },
{ "overzicht.pro", true },
{ "overzicht.ws", true },
+ { "oveweddings.com", true },
{ "ovirt.org", true },
{ "ovix.co", true },
{ "ovnrain.com", true },
- { "ovpn.to", true },
{ "ovvy.net", false },
{ "owapi.net", true },
{ "owennelson.co.uk", true },
@@ -26677,15 +27772,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "owlishmedia.com", true },
{ "own3d.ch", true },
{ "ownc.at", true },
+ { "owncloud.ch", true },
{ "ownmay.com", true },
{ "oxborrow.ca", true },
{ "oxelie.com", true },
{ "oxo.cloud", true },
- { "oxygaming.com", true },
{ "oxygin.net", true },
{ "oxytocin.org", true },
+ { "oxzeth3sboard.com", true },
+ { "oyashirosama.tokyo", true },
{ "oyosoft.fr", true },
{ "oyosoft.net", true },
+ { "oysterworldwide.com", true },
{ "ozark.be", true },
{ "oznamovacipovinnost.cz", true },
{ "ozonitron.com", true },
@@ -26699,9 +27797,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "p-s-b.com", true },
{ "p-t.io", true },
{ "p.ki", true },
- { "p1984.nl", false },
{ "p1cn.com", true },
{ "p1ratrulezzz.me", true },
+ { "p22.co", true },
{ "p4chivtac.com", true },
{ "p5118.com", true },
{ "p5r.uk", true },
@@ -26709,12 +27807,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pa.search.yahoo.com", false },
{ "paarberatung-hn.de", true },
{ "paardenhulp.nl", true },
+ { "paardensportbak.nl", true },
{ "paas-inf.net", true },
{ "paass.net", true },
{ "paazmaya.fi", true },
+ { "pablofain.com", true },
{ "pabuzo.vn", true },
+ { "pacaom.com", true },
{ "pacatlantic.com", true },
{ "pacco.com.br", true },
+ { "paccolat.name", true },
{ "pace.car", true },
{ "paceda.nl", true },
{ "pacelink.de", true },
@@ -26732,16 +27834,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "packagingproject.management", true },
{ "packagist.org", false },
{ "packaware.com", true },
- { "packer.io", true },
{ "packetdigital.com", true },
{ "packetlinux.com", true },
- { "packshot-creator.com", true },
{ "pact2017.nl", true },
{ "pactf.com", true },
{ "padam-group.com", true },
{ "padberx-marketing-consultants.de", true },
{ "paddy.rocks", true },
{ "padianda.com", true },
+ { "padkit.org", true },
+ { "padovani.de", true },
{ "padpilot.co", true },
{ "padrepio.in", true },
{ "padron.com.es", true },
@@ -26759,13 +27861,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pageantsnews.com", false },
{ "pagedesignhub.com", true },
{ "pagedesignpro.com", true },
- { "pagedesignshop.com", true },
{ "pagedesignweb.com", true },
{ "pagefulloflies.io", true },
{ "pageperform.com", true },
{ "pagewizz.com", true },
{ "pagiamtzis.com", true },
{ "pagina.com.mx", true },
+ { "paginaweb4u.com", true },
{ "pagure.io", true },
{ "pahae.de", true },
{ "pahealthbilling.com", true },
@@ -26792,17 +27894,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paktolos.net", true },
{ "palabr.as", true },
{ "palapadev.com", true },
+ { "palariviera.com", true },
+ { "palary.work", true },
{ "palatin.at", true },
{ "palava.tv", true },
{ "palavatv.com", true },
{ "palazzo.link", true },
{ "palazzo.work", true },
- { "paleolowcarb.de", true },
{ "paleotraining.com", true },
+ { "palestra.roma.it", true },
{ "palladium46.com", true },
{ "pallas.in", true },
{ "palletflow.com", true },
{ "palli.ch", true },
+ { "palmaprop.com", true },
{ "palmavile.us", true },
{ "palmaville.com", true },
{ "palmen-apotheke.de", true },
@@ -26817,26 +27922,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "panascais.eu", true },
{ "panascais.host", true },
{ "panascais.me", true },
- { "panascais.net", true },
{ "panascais.pw", true },
{ "panascais.site", true },
{ "panascais.tech", true },
{ "panascais.us", true },
+ { "panasproducciones.com", true },
{ "panaxis.biz", true },
{ "panaxis.ch", true },
{ "panaxis.li", true },
{ "panda-community.com", true },
{ "panda.tf", true },
{ "pandemicflu.gov", true },
+ { "pandkonijn.nl", true },
{ "pandoraflora.com", true },
{ "pandymic.com", true },
{ "paneldewelopera.pl", true },
{ "paneu.de", true },
+ { "panhandlemenshealth.com", true },
{ "panic.tk", true },
{ "panier-legumes.bio", true },
+ { "paniyanovska.ua", true },
{ "panj.ws", true },
- { "panjee.fr", true },
- { "panlex.org", true },
+ { "panjiva.com", true },
{ "panmetro.com", true },
{ "panoma.de", true },
{ "panomizer.de", true },
@@ -26856,6 +27963,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pantou.org", false },
{ "pants-off.xyz", true },
{ "panzer72.ru", true },
+ { "panzerscreen.dk", true },
{ "pap.la", false },
{ "papa-webzeit.de", true },
{ "papadopoulos.me", true },
@@ -26872,13 +27980,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paperlesssolutionsltd.com.ng", true },
{ "papertracker.net", true },
{ "paperturn.com", true },
- { "paperwallets.io", true },
{ "paperwritinghelp.net", true },
{ "papiermakerijdehoop.nl", true },
{ "papiermeteenverhaal.nl", true },
{ "papierniczy.eu", true },
{ "papillon-events.be", true },
- { "papotage.net", true },
+ { "papion.it", true },
{ "paprikas.fr", true },
{ "paraborsa.net", true },
{ "parachute70.com", true },
@@ -26887,6 +27994,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paradigi.com.br", true },
{ "paradise-engineer.com", true },
{ "paradise-engineering.com", true },
+ { "paradise-travel.net", true },
{ "paradiselost.com", true },
{ "paradoxdesigns.org", true },
{ "paragonie.com", false },
@@ -26895,11 +28003,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paranoidcrypto.com", true },
{ "paranoidmode.com", true },
{ "paranoidpenguin.net", true },
- { "paranoxer.hu", true },
{ "parasitologyclub.org", true },
{ "paratlan.hu", true },
{ "paratxt.org", true },
- { "parcelbroker.co.uk", true },
+ { "parcelbroker.co.uk", false },
{ "parchcraftaustralia.com", true },
{ "parckwart.de", true },
{ "parcon.it", true },
@@ -26909,6 +28016,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "parentsintouch.co.uk", true },
{ "pariga.co.uk", true },
{ "paris-store.com", true },
+ { "parisackerman.com", true },
{ "parisbloom.com", true },
{ "parisderriere.fr", true },
{ "parisescortgirls.com", true },
@@ -26939,17 +28047,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "parsemail.org", true },
{ "parser.nu", true },
{ "parsonsfamilyhomes.com", true },
- { "partage.ovh", true },
{ "partecipa.tn.it", true },
- { "parthkolekar.me", true },
- { "participatorybudgeting.de", true },
- { "participatorybudgeting.info", true },
{ "partijhandel.website", true },
{ "partijtjevoordevrijheid.nl", false },
{ "partiono.com", true },
- { "partiwatch.com", true },
{ "partner.sh", true },
- { "partnerbeam.com", true },
{ "partnermobil.de", true },
{ "partnersfcu.org", true },
{ "partou.de", true },
@@ -27007,6 +28109,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "passionatefoodie.co.uk", true },
{ "passionatehorsemanship.com", true },
{ "passionatelife.com.au", true },
+ { "passionbyd.com", true },
{ "passionebenessere.com", true },
{ "passionpictures.eu", true },
{ "passions-art.com", true },
@@ -27021,6 +28124,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "passrhce.com", true },
{ "passrhcsa.com", true },
{ "passthepopcorn.me", true },
+ { "passumpsicbank.com", true },
{ "passvanille-reservation.fr", true },
{ "passvau.lt", true },
{ "passwd.one", true },
@@ -27035,11 +28139,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "passwordsecurity.info", true },
{ "passworks.io", true },
{ "passy.pw", true },
+ { "pasta-factory.co.il", true },
{ "pastaenprosecco.nl", true },
{ "paste.fedoraproject.org", true },
{ "paste.gg", true },
{ "paste.to", true },
{ "pastebin.co.za", true },
+ { "pastebin.tw", true },
{ "pasteblin.com", true },
{ "pasternok.org", true },
{ "pasticcerialorenzetti.com", true },
@@ -27063,18 +28169,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "patika-biztositas.hu", true },
{ "patikabiztositas.hu", true },
{ "patouille-et-gribouille.fr", true },
- { "patric-lenhart.de", true },
{ "patrick-othmer.de", true },
{ "patrick-robrecht.de", true },
+ { "patrick21.ch", true },
{ "patrickaudley.ca", true },
{ "patrickaudley.com", true },
{ "patrickbrosi.de", true },
+ { "patrickhoefler.net", true },
{ "patricklynch.xyz", true },
{ "patrickmcnamara.xyz", true },
{ "patrikgarten.de", true },
{ "patriksima.cz", true },
{ "patriksimek.cz", true },
{ "patriotstationatchalfont.com", true },
+ { "patrocinio.com.br", true },
{ "patrz.eu", true },
{ "patsch-photography.de", true },
{ "patsyforyou.ch", true },
@@ -27085,16 +28193,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paudley.ca", true },
{ "paudley.com", true },
{ "paudley.org", true },
+ { "paul-barton.co.uk", true },
{ "paul-bronski.de", true },
{ "paul.reviews", true },
{ "pauladamsmith.com", true },
{ "paulbakaus.com", true },
{ "paulbdelaat.nl", true },
{ "paulbramhall.uk", true },
+ { "paulchen.at", true },
{ "paulcooper.me.uk", true },
{ "pauldev.co", true },
{ "paulerhof.com", true },
{ "paulewen.ca", true },
+ { "paulgerberrealtors.com", true },
{ "paulinewesterman.nl", true },
{ "paulmeier.com", false },
{ "paulomonteiro.pt", true },
@@ -27106,6 +28217,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paulrotter.de", true },
{ "paulschreiber.com", true },
{ "paulscustomauto.com", true },
+ { "paulsnar.lv", true },
{ "paulswartz.net", true },
{ "paulus-foto.pl", true },
{ "paulward.net", true },
@@ -27118,6 +28230,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pavando.com", true },
{ "pavelfojt.cz", true },
{ "pavelrebrov.com", true },
+ { "pavelstriz.cz", true },
{ "pavio.org", true },
{ "paw.cloud", true },
{ "paw.pt", true },
@@ -27134,6 +28247,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "payboy.biz", true },
{ "payboy.rocks", true },
{ "paybro.eu", true },
+ { "payexpresse.com", true },
{ "payfazz.com", true },
{ "paylike.io", true },
{ "payloc.io", true },
@@ -27146,11 +28260,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paymill.de", true },
{ "paynet.com.co", true },
{ "payoff.com", true },
- { "paypal.com", false },
+ { "paypal.com", true },
{ "paypaq.com", true },
{ "paypro.nl", false },
{ "payroll.xero.com", false },
{ "payrollhive.com", true },
+ { "paysbuy.net", true },
{ "paysera.com", true },
{ "payslipview.com", true },
{ "payssaintgilles.fr", true },
@@ -27159,7 +28274,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paytonmoledor.com", true },
{ "payupay.ru", true },
{ "payzang.com", true },
- { "payzwin.com", true },
{ "pb.ax", false },
{ "pback.se", true },
{ "pbosquet.com", true },
@@ -27172,7 +28286,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pbz.im", true },
{ "pc-rescue.me", false },
{ "pc-servis-brno.com", true },
- { "pcbricole.fr", true },
{ "pccentral.nl", true },
{ "pcdocjim.com", true },
{ "pcel.com", true },
@@ -27189,11 +28302,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pclaeuft.de", true },
{ "pclob.gov", true },
{ "pcloud.com", true },
- { "pcmedia.co.nz", true },
{ "pcmkrembangan.or.id", true },
{ "pcmr.info", true },
{ "pcnotdienst-oldenburg-rastede.de", true },
+ { "pcreparatiehardenberg.nl", true },
{ "pcrypt.org", true },
+ { "pcs2.gr", true },
{ "pcsetting.com", true },
{ "pctonic.net", true },
{ "pctrouble.net", true },
@@ -27224,14 +28338,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pearlsenroses.nl", true },
{ "pearlsonly.com", true },
{ "peaudorange.net", true },
+ { "pebbleparents.com", true },
{ "pebbles.net.in", true },
{ "pecker-johnson.com", true },
{ "peda.net", true },
+ { "peddock.com", true },
{ "peddy.dyndns.org", true },
{ "pedicurean.nl", true },
{ "pedicureduiven.nl", true },
{ "pedidamanosevilla.com", true },
{ "pedikura-vitu.cz", true },
+ { "pedimanie.cz", true },
{ "pedimoda.com.br", true },
{ "pedro.com.es", true },
{ "pedrosaurus.com", true },
@@ -27239,7 +28356,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pedroventura.com", false },
{ "peeekaaabooo.com", true },
{ "peekier.com", true },
- { "peen.ch", true },
{ "peep.gq", true },
{ "peercraft.at", true },
{ "peercraft.be", true },
@@ -27265,6 +28381,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "peerigon.com", true },
{ "peername.com", true },
{ "peernode.net", true },
+ { "peertube.social", true },
{ "peervpn.net", true },
{ "peerweb.com", true },
{ "peetah.com", true },
@@ -27275,6 +28392,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "peifi.de", false },
{ "peippo.at", true },
{ "peka.pw", true },
+ { "pekarstvivetvrzi.cz", true },
{ "pekkapleppanen.fi", true },
{ "pekoe.se", true },
{ "pelanucto.cz", true },
@@ -27304,6 +28422,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pensador.com", true },
{ "pensador.info", true },
{ "pensioenfonds-ey.nl", true },
+ { "pension-am-alten-waschhaus.de", true },
{ "pensionpilot.ca", true },
{ "penslabyrinth.com", true },
{ "pentandra.com", true },
@@ -27315,13 +28434,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pentoo.ch", true },
{ "penz.media", true },
{ "peoplelikemeapp.com", true },
- { "peoplesbankal.com", true },
{ "peoplesdecade.org", true },
{ "peoplesguardian.org", true },
+ { "pepeelektro.sk", true },
{ "pepemodelismo.com.br", true },
+ { "peperstraat.online", true },
{ "peplog.nl", true },
{ "pepwaterproofing.com", true },
- { "pequenosfavoritos.com.br", true },
+ { "pequenosfavoritos.com.br", false },
{ "per-olsson.se", true },
{ "pera.gs", true },
{ "perala.me", true },
@@ -27329,6 +28449,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "percolate.com", true },
{ "percraft.com", true },
{ "percy.io", true },
+ { "percyflix.com", true },
{ "perd.re", true },
{ "perecraft.com", true },
{ "perezdecastro.org", true },
@@ -27340,7 +28461,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "perfektesgewicht.com", true },
{ "perfektesgewicht.de", true },
{ "performancehealth.com", true },
- { "performancesantafe.org", true },
+ { "performing-art-schools.com", true },
{ "perfumeaz.com", true },
{ "perfumes.com.br", true },
{ "periscope.tv", true },
@@ -27379,14 +28500,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pescco.com.br", true },
{ "pestici.de", true },
{ "pestkill.info", true },
- { "pesyun.cn", true },
{ "pet-hotel-mura.net", true },
+ { "pet-life.top", true },
+ { "pet-tekk.co.uk", true },
{ "petabits.de", true },
{ "petalkr.com", true },
{ "petbooking.it", true },
{ "petcarvers.com", true },
{ "petdesign.pet", true },
- { "peteboc.com", true },
{ "petech.ro", true },
{ "petelew.is", true },
{ "peter.org.ua", true },
@@ -27400,8 +28521,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "peterhuetz.com", true },
{ "peterjin.org", true },
{ "peterjohnson.io", true },
- { "peterkshultz.com", false },
{ "peterlew.is", true },
+ { "petermaar.com", true },
{ "petersontoscano.com", true },
{ "petervanleeuwentweewielers.nl", true },
{ "petfa.ga", true },
@@ -27418,10 +28539,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "petpost.co.nz", false },
{ "petpower.eu", true },
{ "petr.as", true },
+ { "petrachuk.ru", true },
{ "petrasestakova.cz", true },
+ { "petravdbos.nl", true },
{ "petresort.pt", true },
+ { "petroleum-schools.com", true },
{ "petroscand.eu", true },
{ "petrostathis.com", true },
+ { "petrotranz.com", true },
{ "petrpikora.com", true },
{ "petrucciresidential.com", true },
{ "petruzz.net", true },
@@ -27440,6 +28565,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pfarre-kremsmuenster.at", true },
{ "pfcafeen.dk", true },
{ "pfd-nz.com", false },
+ { "pfefferkuchen-shop.de", true },
+ { "pfefferkuchenprinzessin-dresden.de", true },
{ "pferdekauf.de", true },
{ "pfeuffer-elektro.de", true },
{ "pfft.net", true },
@@ -27471,6 +28598,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pharmaabsoluta.com.br", true },
{ "pharmaboard.de", true },
{ "pharmaboard.org", true },
+ { "pharmacie-fr.org", true },
{ "pharmacieplusfm.ch", true },
{ "pharmafoto.ch", true },
{ "pharmaphoto.ch", true },
@@ -27481,7 +28609,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pharmica.uk", true },
{ "pharside.dyndns.org", true },
{ "pharynks.com", true },
- { "pharynx.nl", true },
{ "phasersec.com", false },
{ "phasme-2016.com", true },
{ "phattea.tk", true },
@@ -27489,8 +28616,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phcimages.com", true },
{ "phcorner.net", true },
{ "phdhub.it", true },
+ { "phelx.de", true },
{ "phenixairsoft.com", true },
{ "phget.com", true },
+ { "phhtc.ir", true },
{ "phi-works.com", true },
{ "phialo.de", true },
{ "phil-dirt.com", true },
@@ -27500,6 +28629,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phileas-psychiatrie.be", true },
{ "philia-sa.com", true },
{ "philipdb.com", true },
+ { "philipdb.nl", true },
{ "philipkohn.com", true },
{ "philipp-trulson.de", true },
{ "philipp-winkler.de", true },
@@ -27512,22 +28642,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "philippheenen.de", true },
{ "philippinedroneassociation.org", true },
{ "philippkeschl.at", true },
+ { "philipssupportforum.com", true },
+ { "philipzhan.tk", true },
{ "phillipgoldfarb.com", true },
{ "phillyinjurylawyer.com", true },
{ "philna.sh", true },
{ "philosoftware.com.br", true },
{ "philosopherswool.com", true },
+ { "philosophy-colleges.com", true },
+ { "philosophy.moe", true },
{ "philosophyguides.org", true },
{ "philphonic.de", true },
+ { "philslab.cloud", true },
{ "philslab.ninja", true },
{ "philsown.de", true },
{ "philsturgeon.uk", true },
{ "philux.ch", true },
{ "phishing-studie.org", true },
+ { "phishing.rs", false },
{ "phishingusertraining.com", true },
{ "phligence.com", true },
{ "phocean.net", true },
- { "phoenixlogan.com", true },
+ { "phoenics.de", true },
+ { "phoenixurbanspaces.com", true },
{ "phone-service-center.de", true },
{ "phonix-company.fr", true },
{ "phormance.com", true },
@@ -27539,7 +28676,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "photistic.org", true },
{ "photo-livesearch.com", true },
{ "photo-paysage.com", true },
- { "photo.org.il", true },
{ "photoancestry.com", true },
{ "photoartelle.com", true },
{ "photodeal.fr", true },
@@ -27549,6 +28685,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "photolium.net", true },
{ "photomodelcasting.com", true },
{ "photon.sh", true },
+ { "photosquare.com.tw", true },
{ "phototravel.uk", true },
{ "phototrio.com", true },
{ "phoxmeh.com", true },
@@ -27557,18 +28694,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phparcade.com", true },
{ "phpartners.org", true },
{ "phpbbchinese.com", true },
- { "phpdistribution.com", true },
{ "phpdorset.co.uk", true },
+ { "phpinfo.in.th", true },
{ "phpkari.cz", true },
{ "phpliteadmin.org", true },
{ "phpmyadmin.net", true },
+ { "phpower.com", true },
{ "phpprime.com", true },
{ "phpsecure.info", true },
{ "phpunit.de", true },
{ "phra.gs", true },
{ "phrive.space", true },
{ "phryanjr.com", false },
- { "phryneas.de", true },
{ "phuket-idc.com", true },
{ "phuket-idc.de", true },
{ "phunehehe.net", true },
@@ -27579,6 +28716,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "physicalist.com", true },
{ "physicaltherapist.com", false },
{ "physicpezeshki.com", true },
+ { "physics-schools.com", true },
{ "physiotherapie-seiwald.de", true },
{ "physiovesenaz.ch", true },
{ "pi-box.ml", true },
@@ -27593,7 +28731,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pianyigou.com", true },
{ "piatabrasil.com.br", true },
{ "piboubes.me", true },
- { "pic.gov", true },
+ { "pic.gov", false },
{ "pic.sr", true },
{ "pic2map.com", true },
{ "picchietti.io", true },
@@ -27601,7 +28739,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "piccolo-parties.co.uk", true },
{ "pickabrain.fr", true },
{ "pickelhaubes.com", true },
- { "pickersurvey.org", true },
{ "pickme.nl", false },
{ "pickmysoap.gr", true },
{ "pickormix.co.uk", true },
@@ -27623,14 +28760,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pidjipi.com", true },
{ "pie-express.xxx", true },
{ "pieces-or.com", true },
- { "pieinsurance.com", true },
{ "piekacz.eu.org", true },
{ "piekacz.net", true },
{ "piekacz.tel", true },
{ "pieland.eu", true },
{ "pieldenaranja.com", true },
{ "piem.org", true },
- { "pieperhome.de", true },
{ "pieq.eu", true },
{ "pieq.eu.org", true },
{ "pier28.com", true },
@@ -27640,11 +28775,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pierre-schmitz.com", true },
{ "pierrefv.com", true },
{ "pierreprinetti.com", true },
+ { "pierrickdeniel.fr", true },
{ "pietechsf.com", true },
{ "pieterbos.nl", true },
{ "pieterhordijk.com", true },
{ "pietermaene.be", false },
{ "pietz.uk", true },
+ { "pigritia.de", true },
{ "pigs.pictures", true },
{ "pijuice.com", true },
{ "pik.bzh", true },
@@ -27657,6 +28794,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pileofgarbage.net", true },
{ "piliszek.net", true },
{ "pill.id", true },
+ { "pilot-colleges.com", true },
{ "pilot.co", true },
{ "pilotgrowth.com", true },
{ "pilsoncontracting.com", true },
@@ -27670,22 +28808,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pindanutjes.be", false },
{ "pinemountainnursery.com.au", true },
{ "pinemountbaptistchurch.org", true },
+ { "pinetopazrealestate.com", true },
{ "pingworks.com", true },
{ "pingworks.de", true },
{ "pingworks.eu", true },
{ "pingworks.net", true },
{ "pinhadigital.com", true },
- { "pinigseu.xyz", true },
{ "pinimg.com", true },
{ "pinkapple.com", true },
{ "pinkbike.com", true },
{ "pinkbikecycle.com", true },
- { "pinkcasino.co.uk", true },
{ "pinkerton.io", true },
{ "pinkladyapples.co.uk", true },
{ "pinklecfest.org", true },
{ "pinklittlenotebook.com", true },
{ "pinkwalk.co.nz", true },
+ { "pinkyf.com", false },
{ "pinkylam.me", true },
{ "pinnacleallergy.net", true },
{ "pinnaclelife.co.nz", true },
@@ -27696,7 +28834,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pinoyonlinetv.com", true },
{ "pinoytech.ph", true },
{ "pinpayments.com", true },
- { "pinpointengineer.co.uk", true },
{ "pinscher.com.br", true },
{ "pinskupakki.fi", true },
{ "pinterest.at", true },
@@ -27707,12 +28844,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pinterest.ie", true },
{ "pinterest.info", true },
{ "pinterest.jp", true },
+ { "pintosbeeremovals.co.za", true },
{ "pintosplumbing.co.za", true },
{ "pioneer-car.eu", true },
{ "pioneer-rus.ru", true },
{ "pipenny.net", true },
{ "pipocao.com", true },
- { "piranil.com", true },
{ "pirate.trade", true },
{ "piratebayproxy.tf", true },
{ "piraten-basel.ch", true },
@@ -27731,6 +28868,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pirateproxy.tf", true },
{ "pirateproxy.tv", true },
{ "pirates-comic.com", true },
+ { "pirates.click", true },
{ "piratesforums.co", true },
{ "pircher.co.uk", true },
{ "pires.ovh", true },
@@ -27744,17 +28882,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pissblau.com", true },
{ "pissflaps.co.uk", true },
{ "pisupp.ly", true },
+ { "pitbullsecuritysolutions.ca", true },
{ "pitchpinecapital.com", true },
{ "pitchupp.com", true },
{ "pitfire.io", true },
{ "pitot-rs.org", true },
{ "pittmantraffic.co.uk", true },
+ { "pivniraj.com", true },
{ "pivotaltracker.com", true },
{ "pivotanimation.org", true },
{ "piwko.co", true },
{ "pix5.de", true },
{ "pixabay.com", true },
{ "pixe2019.org", true },
+ { "pixel-kraft.de", true },
{ "pixel.facebook.com", false },
{ "pixel.google.com", true },
{ "pixelbash.de", true },
@@ -27762,7 +28903,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pixelfou.com", true },
{ "pixelminers.net", true },
{ "pixelpirat.ch", true },
- { "pixelrain.info", true },
{ "pixelsquared.us", true },
{ "pixelurbia.com", true },
{ "pixelution.at", true },
@@ -27770,8 +28910,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pixiv.cat", true },
{ "pixiv.moe", true },
{ "pixivimg.me", true },
+ { "pixlfox.com", true },
{ "pixloc.fr", true },
- { "pizala.de", true },
{ "pizza-show.fr", true },
{ "pizzabesteld.nl", true },
{ "pizzabottle.com", false },
@@ -27785,7 +28925,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pizzeria-mehrhoog.de", true },
{ "pizzeriaamadeus.hr", true },
{ "pizzeriacolore.com", true },
- { "pj009.com", true },
{ "pj539999.com", true },
{ "pjentertainments.co.uk", true },
{ "pjili.com", true },
@@ -27799,7 +28938,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pkisolutions.com", true },
{ "pkov.cz", true },
{ "pkphotobooths.co.uk", true },
- { "pksps.com", true },
{ "pl-cours.ch", true },
{ "pl.search.yahoo.com", false },
{ "placasonline.com.br", true },
@@ -27815,10 +28953,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plainbulktshirts.co.za", true },
{ "plainjs.com", true },
{ "plainmark.com", true },
- { "plaintech.net.au", true },
- { "plaintray.com", true },
{ "plaisirdumouvement.com", true },
{ "plan-immobilier.fr", true },
+ { "plan-it-events.de", true },
{ "planboardapp.com", true },
{ "planecon.nz", true },
{ "planer.me", true },
@@ -27828,7 +28965,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "planetanim.fr", true },
{ "planetasuboficial.com.br", true },
{ "planetau2.com", true },
- { "planetbeauty.com", true },
{ "planetbreath.ch", true },
{ "planete-cocoon.com", false },
{ "planete-lira.fr", true },
@@ -27838,7 +28974,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "planetofthegames.tv", true },
{ "planetromeofoundation.org", true },
{ "planetsoftware.com.au", true },
- { "planformation.com", true },
{ "planify.io", true },
{ "planitz.com", true },
{ "planitz.net", true },
@@ -27859,16 +28994,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plantrustler.com", true },
{ "planujemywesele.pl", true },
{ "planup.fr", true },
+ { "planview.com", true },
{ "plaque-funeraire.fr", true },
{ "plassmann.ws", true },
- { "plasti-pac.ch", true },
{ "plasticsurgeryartist.com", true },
{ "plasticsurgerynola.com", true },
- { "plasticsurgeryservices.com", true },
+ { "plastiflex.it", true },
{ "plastovelehatko.cz", true },
+ { "plateformecandidature.com", true },
{ "platformadmin.com", true },
{ "platinumexpress.com.ar", true },
- { "platinumpeek.com", true },
{ "platomania.nl", true },
{ "platschi.net", true },
{ "platten-nach-mass.de", true },
@@ -27880,12 +29015,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "play.google.com", true },
{ "playanka.com", true },
{ "playawaycastles.co.uk", true },
+ { "playcollect.net", true },
{ "playdaysparties.co.uk", true },
{ "playerdb.co", true },
{ "playerscout.net", true },
{ "playform.cloud", true },
{ "playhappywheelsunblocked.com", true },
- { "playkinder.com", true },
{ "playnation.io", true },
{ "playocean.net", true },
{ "playpirates.com", true },
@@ -27900,7 +29035,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plazasummerlin.com", true },
{ "pld-entertainment.co.uk", true },
{ "pldx.org", true },
- { "pleaseuseansnisupportedbrowser.ml", true },
+ { "pleasure-science.com", true },
{ "plegro.com", true },
{ "pleiades.com.tr", true },
{ "pleier-it.de", false },
@@ -27937,13 +29072,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plumber-in-sandton.co.za", true },
{ "plumbermountedgecombe.co.za", true },
{ "plumberumhlangarocks.co.za", true },
+ { "plumbingandheatingspecialistnw.com", true },
{ "plumbingbenoni.co.za", true },
{ "plumbingcentral.com.au", true },
{ "plumbingglenvista.co.za", true },
{ "plumlocosoft.com", true },
{ "plumnet.ch", true },
{ "plumpie.net", false },
- { "plumplat.com", true },
{ "plur.com.au", true },
{ "plural.cafe", true },
{ "plurr.me", true },
@@ -27956,12 +29091,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plusstreamfeed.appspot.com", true },
{ "plustech.id", true },
{ "pluta.net", true },
+ { "pluth.org", true },
{ "plutiedev.com", true },
{ "pluto.life", true },
{ "plutokorea.com", true },
{ "plutopia.ch", true },
{ "plymouthbouncycastles.co.uk", true },
- { "plymouthglassgallery.com", true },
{ "plzdontpwn.me", true },
{ "plzenskybarcamp.cz", true },
{ "plzh4x.me", true },
@@ -27978,7 +29113,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pmarques.info", true },
{ "pmartin.tech", true },
{ "pmbc.org", true },
- { "pmbtf.com", true },
{ "pmconference.ch", true },
{ "pmf.gov", true },
{ "pmg-offshore-company.com", true },
@@ -28008,6 +29142,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pnut.io", false },
{ "po.net", true },
{ "poba.fr", true },
+ { "poc88.com", true },
{ "pocakking.tk", true },
{ "pocatellonissanparts.com", true },
{ "pochaneko.com", true },
@@ -28020,14 +29155,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "podroof.com.au", true },
{ "podshrink.de", true },
{ "poe.digital", true },
- { "poed.com.au", true },
{ "poed.net.au", true },
{ "poedgirl.com", true },
- { "poeg.cz", true },
{ "poezja.com.pl", true },
{ "poezjagala.pl", true },
{ "poffenhouse.ddns.net", true },
{ "pogera.com", true },
+ { "pogetback.pl", true },
{ "pogrebisky.net", true },
{ "pohlednice-tap.cz", true },
{ "pohlmann.io", true },
@@ -28053,11 +29187,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pokl.cz", true },
{ "polaire.org", true },
{ "polanda.com", true },
- { "polar-baer.com", true },
{ "polar.uk.com", true },
{ "pole-emotion.ch", true },
{ "poleacademie.com", true },
{ "poles4pilots.com", true },
+ { "police-schools.com", true },
{ "policedriver.com", true },
{ "policereferencecheck.com", true },
{ "policesromandesrecrutement.ch", true },
@@ -28080,6 +29214,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "polit.im", true },
{ "politic.org.ua", true },
{ "politicachubut.com.ar", true },
+ { "political-science-schools.com", true },
{ "politiezoneriho.be", true },
{ "politik-bei-uns.de", true },
{ "polizeiwallis.ch", true },
@@ -28100,6 +29235,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "polyfill.io", true },
{ "polyfluoroltd.com", false },
{ "polygamer.net", true },
+ { "polygraphi.ae", true },
{ "polymake.org", true },
{ "polymathematician.com", true },
{ "polymorph.rs", true },
@@ -28129,13 +29265,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ponydesignclub.nl", true },
{ "ponyfoo.com", true },
{ "ponzi.life", true },
+ { "poodleassassin.com", true },
{ "poodlefan.net", true },
{ "pookl.com", true },
+ { "poolsafely.gov", true },
+ { "poolsafety.gov", true },
{ "poolspondsandwaterscapes.com", true },
+ { "pooltools.net", true },
{ "poolvilla-margarita.net", false },
{ "poon.io", true },
{ "poopjournal.rocks", true },
{ "poopr.ru", true },
+ { "poorclarepa.org", true },
{ "pop-corn.ro", true },
{ "pop3.jp", true },
{ "popcat.ru", true },
@@ -28153,13 +29294,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "porg.es", true },
{ "pork.org.uk", true },
{ "porkel.de", true },
+ { "pornbay.eu", true },
+ { "porncandi.com", true },
+ { "porndragon.net", true },
{ "pornfacefinder.com", false },
+ { "pornflare.net", true },
+ { "porngay.co", true },
{ "pornhubhd.biz", true },
{ "porniwi.com", true },
{ "pornloupe.com", true },
+ { "pornmega.net", true },
{ "pornofilmovi.us", true },
{ "pornomens.be", true },
+ { "pornovk.xxx", true },
+ { "pornshop.biz", true },
{ "pornspider.to", true },
+ { "pornstop.net", true },
+ { "pornsuper.net", true },
+ { "porny.xyz", true },
{ "porpcr.com", true },
{ "pors-sw.cz", true },
{ "port.im", true },
@@ -28174,7 +29326,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "portalcarriers.com", true },
{ "portalcentric.net", true },
{ "portalkla.com.br", true },
- { "portalzine.de", true },
{ "portamiinpista.it", true },
{ "porte.roma.it", true },
{ "portercup.com", true },
@@ -28183,7 +29334,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "portofala.pt", true },
{ "portofrotterdam.com", false },
{ "portosonline.pl", true },
- { "portraitsystem.biz", true },
{ "portsdebalears.gob.es", true },
{ "portsmouthbouncycastles.co.uk", true },
{ "portsmoutheic.com", true },
@@ -28195,6 +29345,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "posalji.me", true },
{ "posaunenchor-senden.de", true },
{ "posbank.co.uk", true },
+ { "poschtiliste.ch", true },
{ "poseidonwaterproofing.com", true },
{ "poshcastles.co.uk", true },
{ "poshlashes.se", true },
@@ -28209,7 +29360,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "post-darwinism.com", true },
{ "post.com.ar", true },
{ "post.io", true },
- { "post.we.bs", true },
{ "postal.dk", true },
{ "postal3.es", true },
{ "postblue.info", true },
@@ -28227,34 +29377,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "postn.eu", true },
{ "postpot.co.kr", true },
{ "posttigo.com", true },
+ { "postura-corretta.it", true },
{ "posyperfume.com", true },
{ "potatiz.com", true },
{ "potatofrom.space", true },
{ "potatopro.com", true },
- { "potatron.tech", true },
{ "potature.rimini.it", true },
{ "potature.roma.it", true },
{ "potentialproject.com", false },
{ "potenzprobleme-info.net", true },
+ { "poterepersonale.it", true },
{ "pothe.com", true },
{ "pothe.de", true },
{ "potolok.am", true },
{ "potrillionaires.com", true },
{ "potterscraftcider.com", true },
{ "pottersheartministry.org", true },
- { "pottreid.com", true },
+ { "pottreid.com", false },
{ "pottshome.co.uk", true },
{ "potworowski.de", true },
{ "potzwonen.nl", true },
{ "poudlard.fr", true },
{ "poundwholesale.co.uk", true },
- { "pour-la-culture-aulnay.fr", true },
{ "pourlesenfants.info", true },
{ "pouwels-oss.nl", true },
{ "povareschka.ru", true },
{ "povesham.tk", true },
{ "pow-s.com", true },
{ "pow.jp", true },
+ { "powdersnow.top", true },
{ "powelljones.co.uk", true },
{ "power-coonies.de", true },
{ "power-fit.org", true },
@@ -28262,11 +29413,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "power-meter.cc", true },
{ "power-tools24.com", true },
{ "powerball.shop", true },
+ { "powerblanket.com", true },
{ "powercloud.technology", true },
- { "powerdent.net.br", true },
{ "poweredbyiris.nl", true },
{ "poweredbypurdy.com", true },
{ "powerfortunes.com", true },
+ { "powerinboxperformance.com", true },
{ "powermatic7.com", true },
{ "powermeter.at", true },
{ "powermint.de", true },
@@ -28278,11 +29430,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "powersergthisisthetunnelfuckyouscott.com", true },
{ "powersergthisisthewebsitefuckyouscott.com", true },
{ "powersergusercontent.com", true },
- { "powertothebuilder.com", true },
{ "powerwellness-korecki.de", true },
{ "pozemedicale.org", true },
{ "pozlife.net", true },
- { "pozzitiv.ro", true },
{ "pp-server.com", true },
{ "pp3345.net", true },
{ "ppcrestaurants.com", true },
@@ -28292,8 +29442,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ppmathis.ch", true },
{ "ppmathis.com", true },
{ "ppmoon.com", true },
- { "ppoou.co.uk", true },
- { "ppoozl.com", true },
{ "ppro.com", true },
{ "pptavmdata.org", true },
{ "ppy.la", true },
@@ -28302,9 +29450,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pr1sm.com", true },
{ "pr2studio.com", true },
{ "prac.to", true },
+ { "pracevjihlave.cz", true },
{ "pracowniatkanin.com", true },
+ { "practicallabs.com", true },
+ { "practicalprogrammer.tech", true },
{ "practiceflow.nl", true },
{ "practicepanther.com", true },
+ { "practisforms.com", true },
{ "practo.com", true },
{ "prado.it", true },
{ "praeparation-keppner.de", true },
@@ -28313,17 +29465,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "praguepsychology.com", true },
{ "praguepsychology.cz", true },
{ "pragueswim.cz", true },
+ { "praha-9.eu", true },
{ "prajwalkoirala.com", true },
{ "prakhar.uk", true },
{ "prakharprasad.com", true },
{ "praktijkdevecht.nl", true },
{ "praktijkpassepartout.nl", true },
+ { "prashchar.uk", true },
+ { "pratopronto.org", true },
+ { "pratorotoli.it", true },
{ "praxino.de", true },
{ "praxis-dingeldey.de", true },
{ "praxis-familienglueck.de", true },
{ "praxis-odermath.de", true },
{ "prayerrequest.com", true },
- { "prazeresdavida.com.br", true },
{ "prazynka.pl", true },
{ "prc-newmedia.com", true },
{ "prc.gov", true },
@@ -28333,6 +29488,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "preciseassemblies.com", true },
{ "precision.st", true },
{ "precisiondigital-llc.com", true },
+ { "precisionmachineservice.com", true },
+ { "precisionventures.com", true },
{ "precode.eu", true },
{ "predoiu.ro", true },
{ "prefix.eu", true },
@@ -28341,6 +29498,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "preigu.de", true },
{ "preis-alarm.info", true },
{ "preis-alarm.org", true },
+ { "preissler.co.uk", true },
+ { "preload.link", true },
{ "preloaded-hsts.badssl.com", true },
{ "prelogica.com.br", true },
{ "preludes.org", true },
@@ -28362,22 +29521,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "premiumcredit.am", true },
{ "premiumweb.co.id", true },
{ "premiumwebdesign.it", true },
+ { "premtech.nl", true },
{ "prenatalgeboortekaartjes.nl", true },
{ "prepaid-cards.xyz", true },
{ "prepaid-voip.nl", true },
{ "prepaidkredietkaart.be", true },
{ "prepare-job-hunting.com", true },
- { "preposted.com", true },
{ "presbee.com", true },
{ "presbvm.org", true },
+ { "presbyterian-colleges.com", true },
{ "prescotonline.co.uk", true },
{ "present-m.com", true },
- { "presentesdegrife.com.br", true },
+ { "presentationmedia.com", true },
+ { "preserveourhillcountry.org", true },
{ "president.bg", true },
+ { "presidio.gov", true },
{ "prespanok.sk", true },
{ "pressakey.com", true },
- { "pressakey.de", true },
{ "presscenter.jp", true },
+ { "presscuozzo.com", true },
{ "pressertech.com", true },
{ "presses.ch", true },
{ "presskr.com", true },
@@ -28385,7 +29547,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pressrush.com", true },
{ "pressup.it", true },
{ "pressureradio.com", true },
- { "prestburyscouts.org.uk", true },
{ "prestige-car-location.ch", true },
{ "prestige-portal.com", true },
{ "prestigebouncycastles.co.uk", true },
@@ -28397,29 +29558,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pretix.eu", true },
{ "pretrialservices.gov", true },
{ "pretty.hu", true },
+ { "prettygirlcheats.com", true },
{ "prettynode.com", true },
- { "pretwolk.nl", true },
{ "pretzelx.com", true },
{ "prevenir.ch", true },
{ "preview-it-now.com", true },
{ "priceremoval.net", true },
{ "pricesniffer.co", true },
{ "prideindomination.com", true },
+ { "pridetechdesign.com", false },
{ "prielwurmjaeger.de", true },
+ { "prihatno.my.id", true },
{ "primaconsulting.net", true },
{ "primalbase.com", true },
{ "primalinea.pro", true },
{ "primates.com", true },
- { "primewho.org", true },
+ { "primeequityproperties.com", true },
{ "primoloyalty.com", true },
{ "primorus.lt", true },
{ "primotilesandbathrooms.co.uk", false },
- { "princeagency.com", true },
+ { "princeofwhales.com", true },
+ { "princesparktouch.com", true },
{ "princessefoulard.com", true },
- { "principalsexam.com", true },
{ "principalship.net", true },
{ "principalstest.com", true },
- { "principalstest.ph", true },
{ "principalstest.review", true },
{ "principaltoolbox.com", true },
{ "principia-journal.de", true },
@@ -28430,6 +29592,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "printeknologies.com", true },
{ "printerleasing.be", true },
{ "printf.de", true },
+ { "printfn.com", false },
+ { "printler.com", true },
{ "printmet.com", true },
{ "printus.de", true },
{ "prior-it.be", true },
@@ -28459,6 +29623,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prismacloud.xyz", true },
{ "pristal.eu", true },
{ "pristinegreenlandscaping.com", true },
+ { "pritalk.com", true },
{ "priv.im", true },
{ "privacy-week-vienna.at", true },
{ "privacy-week.at", true },
@@ -28483,14 +29648,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "privatepokertour.com", true },
{ "privatepropertymallorca.com", true },
{ "privatestatic.com", false },
+ { "privatevoid.net", true },
{ "privatewolke.com", true },
{ "privatfrei.de", true },
{ "privatpatient-krankenhaus.de", true },
- { "privcloud.cc", true },
{ "privea.fr", true },
{ "privelust.nl", true },
{ "priverify.com", true },
- { "privu.me", true },
{ "privy-staging.com", true },
{ "privy.com", true },
{ "prjktruby.com", false },
@@ -28498,15 +29662,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prknje.com", true },
{ "prlved.co.uk", true },
{ "prnav.com", true },
+ { "pro-ben.sk", true },
{ "pro-bike.ro", true },
- { "pro-esb.com", true },
- { "pro-esb.net", true },
{ "pro-link.eu", true },
{ "pro-mile.pl", true },
{ "pro-netz.de", false },
{ "pro-taucher.com", true },
{ "pro-taucher.de", true },
{ "pro-wiert.pl", true },
+ { "proactivestructuresolutions.com", true },
{ "proadvanced.com", true },
{ "proautorepairs.com.au", true },
{ "probase.ph", true },
@@ -28514,14 +29678,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "probiv.biz", true },
{ "probiv.cc", true },
{ "procarservices.com", true },
- { "procens.us", true },
{ "procensus.com", true },
{ "procert.ch", true },
{ "processesinmotion.com", true },
{ "procharter.com", true },
{ "procinorte.net", true },
{ "proclib.org", true },
- { "procrastinatingengineer.co.uk", true },
+ { "proclubs.news", true },
{ "procrastinationland.com", true },
{ "procreditbank-kos.com", true },
{ "procreditbank.com.al", true },
@@ -28539,7 +29702,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "productboard.com", true },
{ "productdesignsoftware.com.au", true },
{ "production.vn", true },
- { "productived.net", false },
{ "productlondon.com", true },
{ "productoinnovador.com", true },
{ "productpeo.pl", true },
@@ -28547,12 +29709,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "produkttest-online.com", true },
{ "prodware.fr", true },
{ "prodware.nl", true },
+ { "proeflokaalbakker.nl", true },
{ "proefteksten.nl", false },
{ "proeftuinveenweiden.nl", true },
{ "proemployeeprotection.com", true },
{ "proemployeeprotection.net", true },
- { "proesb.com", true },
- { "proesb.net", true },
{ "prof.ch", true },
{ "profection.biz", true },
{ "professional.cleaning", true },
@@ -28569,12 +29730,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "progenda.be", true },
{ "progenitor.space", true },
{ "progeon.nl", true },
+ { "progettograjau.com", true },
{ "progg.no", true },
{ "proggersession.com", true },
{ "proggersession.de", true },
{ "progiscad.com", true },
{ "programistka.com", true },
{ "programlama.tk", true },
+ { "programmaticmagic.com", true },
{ "programsareproofs.com", true },
{ "programsupport300procent.com", true },
{ "progreso.pl", true },
@@ -28583,6 +29746,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "progressive.work", true },
{ "progressiveplanning.com", true },
{ "progressnet.nl", true },
+ { "progresswww.nl", true },
{ "prohrcloud.com", true },
{ "proimpact.it", true },
{ "project.supply", true },
@@ -28590,20 +29754,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "projectarmy.net", false },
{ "projectblackbook.us", true },
{ "projectborealisgitlab.site", false },
- { "projectcastle.tech", true },
{ "projectforge.org", true },
{ "projectlinuseasttn.org", true },
{ "projectnom.com", true },
+ { "projectsafechildhood.gov", true },
{ "projectsecretidentity.com", true },
{ "projectsecretidentity.org", true },
{ "projectunity.io", true },
{ "projektarbeit-projektplanung.de", true },
{ "projest.ch", true },
{ "projet-fly.ch", true },
- { "prok.pw", true },
{ "prolan.pw", true },
{ "prolearningcentre.com", true },
{ "prolinos.de", true },
+ { "promedyczny.pl", true },
{ "prometheanfire.net", true },
{ "prometheanfire.org", true },
{ "promisesaplus.com", true },
@@ -28612,6 +29776,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "promo-brille.de", true },
{ "promo-computers.nl", true },
{ "promo-matelas.com", true },
+ { "promods.cn", true },
{ "promods.net", true },
{ "promohulp.nl", true },
{ "promolover.com", true },
@@ -28630,9 +29795,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "proos.nl", true },
{ "proovn.com", true },
{ "propagandablog.de", true },
- { "propagandism.org", true },
{ "propagationtools.com", true },
{ "propepper.net", true },
+ { "properchels.com", true },
+ { "propermatches.com", true },
{ "properticons.com", true },
{ "property-catalogue.eu", true },
{ "propertygroup.pl", true },
@@ -28682,6 +29848,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "provence-appartements.com", true },
{ "providencecmc.com", true },
{ "providerlijst.com", true },
+ { "providerlijst.ml", true },
{ "providerlijst.nl", true },
{ "provision-isr.nl", true },
{ "provitec.com", true },
@@ -28698,7 +29865,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "proxybay.one", true },
{ "proxybay.tv", true },
{ "proxyportal.eu", true },
- { "proxyportal.net", true },
+ { "proyectafengshui.com", true },
+ { "proyecto13.com", true },
{ "prpferrara.it", true },
{ "prplz.io", true },
{ "prpr.cloud", true },
@@ -28714,7 +29882,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prynhawn.net", true },
{ "prynhawn.org", true },
{ "pryspry.com", true },
- { "prytkov.com", true },
{ "przemas.pl", true },
{ "ps-provider.co.jp", true },
{ "ps-sale.ru", true },
@@ -28735,12 +29902,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psdsuc.com", true },
{ "pself.net", true },
{ "pseta.ru", true },
+ { "psg-calw.de", true },
{ "psg.bg", true },
{ "pshostpk.com", true },
{ "psici.eu", true },
{ "psicoexpansao.com.br", true },
{ "psicologajanainapresotto.com.br", true },
{ "psicologasandrabernal.es", true },
+ { "psicologo-especialista-barcelona.com", true },
+ { "psicologo-infantil-barcelona.com", true },
{ "psicologoforensemadrid.com", true },
{ "psm.org.ph", true },
{ "psochecker.com", true },
@@ -28750,7 +29920,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pssgcsim.org", true },
{ "pst.moe", true },
{ "pste.pw", true },
- { "pstrozniak.com", true },
{ "psu.je", true },
{ "psw-consulting.de", true },
{ "psw-group.de", true },
@@ -28768,8 +29937,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psychoco.net", false },
{ "psychologie-hofner.at", true },
{ "psychotherapie-kp.de", true },
+ { "psycolleges.com", true },
{ "psydix.org", true },
{ "psylab.cc", true },
+ { "psylab.re", true },
+ { "psylab.vip", true },
{ "psytrance-pro.com", true },
{ "pt-d.ru", true },
{ "pt-server.de", true },
@@ -28784,13 +29956,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pthsec.com", true },
{ "ptm.ro", false },
{ "ptmarquees.ie", true },
+ { "ptr.kr", true },
{ "ptrbrs.nl", true },
{ "ptrl.ws", true },
{ "ptron.org", true },
{ "pty.gg", true },
{ "puac.de", true },
+ { "pubclub.com", true },
{ "pubean.com", true },
- { "pubi.me", true },
{ "publanda.nl", true },
{ "public-g.de", true },
{ "public-projects.com", true },
@@ -28800,7 +29973,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "publicinquiry.eu", true },
{ "publicintegrity.org", true },
{ "publicintelligence.net", true },
- { "publick.net", true },
{ "publicrea.com", true },
{ "publicsuffix.org", true },
{ "publiq.space", true },
@@ -28819,6 +29991,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pulizieuffici.milano.it", true },
{ "pulpproject.org", true },
{ "pulser.stream", true },
+ { "pulsnitzer-lebkuchen-shop.de", true },
+ { "pulsnitzer-lebkuchen.shop", true },
+ { "pulsnitzer-pfefferkuchen-shop.de", true },
+ { "pulsnitzer-pfefferkuchen.shop", true },
{ "pumperszene.com", true },
{ "puneflowermall.com", true },
{ "punikonta.de", true },
@@ -28837,9 +30013,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "purefkh.xyz", true },
{ "pureitsolutionsllp.com", true },
{ "purelunch.co.uk", true },
+ { "pureluxemedical.com", true },
{ "purevapeofficial.com", true },
- { "purikore.com", true },
- { "purplebooth.co.uk", true },
+ { "purplebooth.co.uk", false },
{ "purplebricks.co.uk", true },
{ "purplebricks.com", true },
{ "purplebricks.com.au", true },
@@ -28854,6 +30030,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "purplestar.com", true },
{ "purplestar.mobi", true },
{ "purplewindows.net", true },
+ { "purplez.pw", true },
{ "purrfect-box.co.uk", true },
{ "purrfectboudoir.com", true },
{ "purrfectmembersclub.com", true },
@@ -28861,6 +30038,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "puryearlaw.com", true },
{ "pusatinkubatorbayi.com", true },
{ "pushers.com.mx", true },
+ { "pushoflove.com", true },
{ "pushphp.com", true },
{ "pushrax.com", true },
{ "pusichatka.ddns.net", true },
@@ -28885,6 +30063,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pvmotorco.com", true },
{ "pvpcraft.ca", true },
{ "pvpctutorials.de", true },
+ { "pvphs98.com", true },
{ "pvtschlag.com", true },
{ "pwaresume.com", true },
{ "pwdsafe.com", true },
@@ -28892,6 +30071,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pwnedpass.tk", true },
{ "pwnies.dk", true },
{ "pwolk.com", true },
+ { "pxl-mailtracker.com", true },
{ "pxl.cl", true },
{ "pxx.io", true },
{ "py-amf.org", true },
@@ -28906,6 +30086,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pypi.org", true },
{ "pypi.python.org", true },
{ "pyramidsofchi.com", true },
+ { "pyrenees.io", true },
{ "pyrios.pro", true },
{ "pyrotechnologie.de", true },
{ "pysays.net", true },
@@ -28920,6 +30101,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "q-inn.nl", true },
{ "q-technologies.com.au", true },
{ "q123123.com", true },
+ { "q1q2q3.tk", true },
{ "q5118.com", true },
{ "qa-brandywineglobal.com", true },
{ "qa-team.xyz", true },
@@ -28930,10 +30112,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qadmium.com", true },
{ "qambarraza.com", true },
{ "qapital.com", true },
- { "qaz.cloud", true },
- { "qbeing.info", true },
+ { "qaq.sh", true },
{ "qbiju.com.br", true },
- { "qbus.pl", true },
+ { "qbiltrade.com", true },
{ "qc.immo", true },
{ "qc.search.yahoo.com", false },
{ "qccareerschool.com", true },
@@ -28946,6 +30127,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qcstudentcenter.com", true },
{ "qcstyleacademy.com", true },
{ "qctravelschool.com", true },
+ { "qdabogados.com", true },
{ "qdon.space", false },
{ "qedcon.org", false },
{ "qelectrotech.org", true },
@@ -28956,22 +30138,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qgustavor.tk", true },
{ "qhse-professionals.nl", true },
{ "qianalysis.com", true },
+ { "qianmo.com", true },
{ "qianqiao.me", true },
{ "qiaohong.org", true },
{ "qicomidadeverdade.com.br", true },
{ "qifu.me", true },
{ "qiliang.wang", true },
{ "qingcao.org", true },
- { "qingpat.com", true },
{ "qingpei.me", true },
{ "qionouu.cn", true },
{ "qis.fr", true },
{ "qitarabutrans.com", true },
+ { "qiu521119.host", true },
{ "qiuri.org", true },
{ "qivonline.pt", true },
{ "qiwi.be", true },
{ "qixi.biz", true },
- { "qkka.org", true },
{ "qkmortgage.com", true },
{ "qldconservation.org.au", true },
{ "qldformulaford.org", true },
@@ -28988,8 +30170,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qponverzum.hu", true },
{ "qq-navi.com", true },
{ "qq52o.me", true },
- { "qqrss.com", true },
- { "qqvips.com", true },
{ "qr-city.org", true },
{ "qr.cl", true },
{ "qrbird.com", true },
@@ -28999,10 +30179,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qscloud.de", true },
{ "qtacairsoft.com", true },
{ "qtl.me", true },
+ { "qtmsheep.com", true },
{ "qtn.net", true },
- { "qto.com", true },
- { "qto.net", true },
- { "qto.org", true },
{ "qtpass.org", true },
{ "qtpower.co.uk", true },
{ "qtpower.net", true },
@@ -29010,7 +30188,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qtvr.com", true },
{ "qtxh.net", true },
{ "quackerswaterproofing.com", true },
- { "quaedam.org", true },
{ "quaggan.co", true },
{ "quai10.org", false },
{ "qualite-ecole-et-formation.ch", true },
@@ -29032,13 +30209,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quantumfurball.net", true },
{ "quantumpair.net", true },
{ "quantumwebs.co", true },
- { "quanyin.eu.org", true },
{ "quareal.ru", true },
{ "quarkdose.de", true },
{ "quarterfull.com", true },
{ "quartix.com", true },
{ "quartzclinical.com", true },
- { "quarus.net", true },
{ "quasarelectronics.co.uk", true },
{ "quasiproxy.com", true },
{ "quasseldroid.info", true },
@@ -29066,10 +30241,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quentinchevre.ch", true },
{ "queo.com.co", true },
{ "quera.ir", true },
- { "querkommentar.de", true },
{ "query-massage.com", true },
{ "question.com", true },
- { "questionable.host", true },
+ { "questoj.cn", true },
{ "questsocial.it", true },
{ "quevisiongrafica.com", true },
{ "quic.stream", true },
@@ -29079,7 +30253,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quietapple.org", true },
{ "quikchange.net", true },
{ "quikpay.com.au", true },
- { "quikrmovies.to", true },
{ "quilmo.com", true },
{ "quimatic.com.br", true },
{ "quinnlabs.com", true },
@@ -29091,10 +30264,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quitarlasmanchasde.com", true },
{ "quitimes.com", true },
{ "quizogames.com", true },
+ { "quizstore.net", true },
{ "qul.link", true },
{ "quli.nl", false },
{ "qunzi.la", true },
{ "quocdesign.ch", true },
+ { "quote.gq", true },
{ "quoteidiot.com", true },
{ "quotev.com", true },
{ "quovadisaustria.com", true },
@@ -29109,7 +30284,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qwant.fr", true },
{ "qwdqwd.de", true },
{ "qwe7002.com", true },
- { "qweepi.de", false },
{ "qwertee.com", true },
{ "qwerty.work", true },
{ "qwikdash.com", true },
@@ -29122,6 +30296,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "r-t-b.fr", true },
{ "r0t.co", true },
{ "r0uzic.net", true },
+ { "r1a.eu", true },
{ "r1ch.net", true },
{ "r2d2pc.com", true },
{ "r33.space", true },
@@ -29148,6 +30323,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rabynska.eu", true },
{ "raccoltarifiuti.com", true },
{ "racdek.com", true },
+ { "racdek.net", true },
{ "racdek.nl", true },
{ "racermaster.xyz", true },
{ "racesport.nl", false },
@@ -29167,29 +30343,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "racoo.net", true },
{ "racozo.com", true },
{ "racunovodstvo-prina.si", true },
+ { "rada-group.eu", true },
{ "radar.sx", true },
{ "radaravia.ru", true },
{ "radarnext.com", true },
{ "radartatska.se", true },
{ "radartek.com", true },
{ "radcube.hu", true },
+ { "radegundisfest.de", true },
{ "radfieldhomecare.co.uk", true },
{ "radfieldhomecarefranchising.co.uk", true },
- { "radical.org", true },
{ "radicaloptimism.org", true },
{ "radicalsub.com.br", true },
{ "radins.com", true },
{ "radio-pulsar.eu", true },
{ "radio-utopie.de", true },
{ "radio1.ie", true },
- { "radioafibra.com.br", true },
- { "radiocomsaocarlos.com.br", true },
+ { "radioactivenetwork.xyz", true },
+ { "radiofmimagen.net", true },
+ { "radioheteroglossia.com", true },
{ "radioilusion.es", true },
{ "radiom.fr", true },
{ "radiomodem.dk", true },
{ "radiomontebianco.it", true },
{ "radionicabg.com", true },
{ "radiopolarniki.spb.ru", true },
+ { "radior9.it", true },
{ "radiormi.com", true },
{ "radiorsvp.com", false },
{ "radiosendungen.com", true },
@@ -29202,9 +30381,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "radyn.com", true },
{ "raeu.me", true },
{ "raeven.nl", true },
+ { "raevinnd.com", true },
{ "rafaelmagalhaesweb.com", true },
{ "rafey.xyz", true },
{ "raffaellaosti.com", true },
+ { "rafleatherdesign.com", true },
{ "raft.pub", true },
{ "rafting-japan.com", true },
{ "ragasto.nl", true },
@@ -29213,13 +30394,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rage4.com", true },
{ "raghavdua.in", true },
{ "rahulpnath.com", true },
+ { "raidensnakesden.co.uk", true },
+ { "raidensnakesden.com", true },
+ { "raidensnakesden.net", true },
{ "raidstone.net", true },
{ "rail-o-rama.nl", true },
{ "rail24.nl", true },
{ "rail360.nl", true },
{ "railbird.nl", true },
{ "railgun.ac", true },
- { "railjob.cn", true },
+ { "railgun.com.cn", true },
{ "railorama.nl", true },
{ "railpassie.nl", true },
{ "railtoo.com", true },
@@ -29228,25 +30412,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "railvideo.nl", true },
{ "railwaytech.net", true },
{ "raimixmotoparts.com.br", true },
+ { "rain.bz", true },
{ "rainbowbay.org", true },
{ "rainbowinflatables.co.uk", true },
{ "rainbowstore.com.au", true },
{ "rainbowstore.com.ua", true },
+ { "rainel.at", true },
{ "rainforest.engineering", true },
+ { "rainiv.com", true },
{ "rainpaper.com", true },
{ "rainstormsinjuly.co", true },
{ "rainville.me", true },
{ "rainway.io", true },
- { "raipet.no-ip.biz", true },
{ "raiseyourflag.com", true },
{ "raissarobles.com", true },
{ "raito.win", true },
{ "rajivshah.co.uk", true },
+ { "rajkapoordas.com", true },
{ "rajyogarishikesh.com", true },
{ "rak-business-service.com", true },
+ { "raku.bzh", true },
{ "rakugokai.net", true },
{ "ralf-huebscher.de", true },
- { "ralfs-zusizone.de", true },
{ "ralimtek.com", false },
{ "rally-base.com", true },
{ "rally-base.cz", true },
@@ -29262,7 +30449,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ram-it.nl", true },
{ "ram.nl", true },
{ "rambo.codes", true },
- { "ramitmittal.com", true },
{ "rammstein-portugal.com", true },
{ "ramrecha.com", true },
{ "ramsor-gaming.de", true },
@@ -29274,6 +30460,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "randomdysfunctions.com", true },
{ "randomkoalafacts.com", true },
{ "randomprecision.co.uk", true },
+ { "randomquotesapp.com", true },
{ "ranfurlychambers.co.nz", true },
{ "rangde.org", true },
{ "rangercollege.edu", true },
@@ -29294,6 +30481,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "raphaeladdile.com", true },
{ "raphaelcasazza.ch", true },
{ "raphaelmoura.ddns.net", true },
+ { "raphaelschmid.eu", true },
{ "raphrfg.com", true },
{ "rapidapp.io", true },
{ "rapidhubs.com", true },
@@ -29310,11 +30498,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rascalscastles.co.uk", true },
{ "rascalscastlesdoncaster.co.uk", true },
{ "rasebo.ro", true },
- { "raspberryultradrops.com", true },
{ "raspii.tech", true },
+ { "raspitec.ddns.net", true },
{ "rasty.cz", true },
{ "ratd.net", true },
{ "ratebridge.com", true },
+ { "ratelsec.com", true },
{ "rathbonesonline.com", true },
{ "rathgeb.org", true },
{ "ratinq.co", true },
@@ -29322,12 +30511,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rationalism.com", true },
{ "rationalops.com", true },
{ "rattenkot.io", true },
+ { "rauchenwald.net", true },
{ "raulrivero.es", true },
{ "rault.io", true },
{ "raum4224.de", true },
{ "rauros.net", true },
{ "rautelow.de", true },
- { "rautermods.net", true },
{ "ravchat.com", true },
{ "raven.dog", true },
{ "ravenger.net", true },
@@ -29336,6 +30525,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ravindran.me", true },
{ "raviparekh.co.uk", true },
{ "ravis.org", true },
+ { "ravkr.duckdns.org", true },
{ "rawdutch.nl", true },
{ "rawinfosec.com", true },
{ "rawsec.net", true },
@@ -29343,6 +30533,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "raxion.tk", true },
{ "ray-home.de", true },
{ "ray-works.de", true },
+ { "rayan-it.ir", true },
+ { "rayanitco.com", true },
{ "rayiris.com", true },
{ "raykitchenware.com", true },
{ "raymcbride.com", true },
@@ -29350,14 +30542,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "raymii.org", true },
{ "raymondelooff.nl", true },
{ "raystark.com", true },
- { "raywin168.com", true },
- { "raywin168.net", true },
- { "raywin88.net", true },
{ "rayworks.de", true },
- { "razberry.kr", true },
{ "razeen.me", true },
{ "razeencheng.com", true },
{ "raziskovalec-resnice.com", true },
+ { "razvanburz.net", true },
{ "rbcservicehub-uat.azurewebsites.net", true },
{ "rbensch.com", true },
{ "rbflote.lv", true },
@@ -29365,8 +30554,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rbmafrica.co.za", true },
{ "rbnet.xyz", true },
{ "rbran.com", true },
- { "rbtvshitstorm.is", true },
{ "rburchell.com", true },
+ { "rbx-talk.xyz", true },
{ "rc-offi.net", true },
{ "rc-rp.com", true },
{ "rc-shop.ch", true },
@@ -29380,21 +30569,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rcmpsplib.com", true },
{ "rcmurphy.com", true },
{ "rcnitrotalk.com", true },
- { "rcorporation.be", true },
{ "rcraigmurphy.com", true },
- { "rcraigmurphy.net", true },
{ "rcsolutions.nl", true },
{ "rct.sk", true },
+ { "rct.uk", true },
{ "rctalk.com", true },
{ "rdfproject.it", true },
+ { "rdh.asia", true },
{ "rdjb2b.com", true },
{ "rdl.at", false },
+ { "rdmc.fr", true },
{ "rdmrotterdam.nl", true },
{ "rdmtaxservice.com", true },
{ "rdns.cc", true },
- { "rdplumbingsolutions.com.au", true },
{ "rdv-prefecture.com", true },
{ "rdwh.tech", true },
+ { "rdxsattamatka.mobi", true },
{ "re-curi.com", true },
{ "re-engines.com", true },
{ "reachhead.com", true },
@@ -29407,11 +30597,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "read.sc", true },
{ "reades.co.uk", true },
{ "readheadcopywriting.com", true },
- { "readify.com.au", true },
{ "readingandmath.org", true },
{ "readingrats.de", true },
+ { "readmusiccoleman.com", true },
{ "readonly.de", true },
{ "readouble.com", false },
+ { "reads.wang", true },
{ "readysell.net", true },
{ "readytobattle.net", true },
{ "readytongue.com", true },
@@ -29420,10 +30611,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "real-digital.co.uk", true },
{ "real-it.nl", true },
{ "realcapoeira.ru", true },
+ { "realestate-in-uruguay.com", true },
+ { "realestatecentralcoast.info", true },
+ { "realestatemarketingblog.org", true },
{ "realestateonehowell.com", true },
{ "realestateradioshow.com", true },
{ "realfreedom.city", true },
- { "realgarant-shop.de", false },
{ "realhorsegirls.net", true },
{ "realhypnosistraining.com.au", true },
{ "realitea.co.uk", true },
@@ -29431,12 +30624,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reality0ne.com", false },
{ "realitycrazy.com", true },
{ "reallifeforums.com", true },
+ { "realloc.me", true },
{ "really-simple-plugins.com", true },
{ "really-simple-ssl.com", true },
{ "really.ai", true },
{ "reallytrusted.com", true },
{ "realme.govt.nz", true },
{ "realmofespionage.xyz", true },
+ { "realoteam.ddns.net", true },
+ { "realpropertyprofile.gov", true },
+ { "realtygroup-virginia.com", true },
+ { "realtyink.net", true },
{ "realum.com", true },
{ "realum.de", true },
{ "realum.eu", true },
@@ -29459,6 +30657,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reboxetine.com", true },
{ "reboxonline.com", true },
{ "rebtoor.com", true },
+ { "recalls.gov", true },
{ "recantoshop.com", true },
{ "recantoshop.com.br", true },
{ "recapp.ch", true },
@@ -29466,8 +30665,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "receiliart.com", true },
{ "receptionpoint.com", true },
{ "receptionsbook.com", true },
- { "recepty.eu", false },
- { "recetasdecocinaideal.com", true },
+ { "recepty.eu", true },
+ { "recetin.com", true },
{ "rechenknaecht.de", true },
{ "rechtsanwaeltin-vollmer.de", true },
{ "rechtsanwalt-koeppen-feucht.de", true },
@@ -29484,10 +30683,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "recolic.net", true },
{ "recommended.reviews", true },
{ "recon-networks.com", true },
+ { "reconexion.life", true },
{ "recordeuropa.com", false },
{ "recoveringspirit.com", true },
{ "recoveryonline.org", true },
- { "recreation.gov", true },
{ "recreoviral.com", true },
{ "recruitmade.jp", true },
{ "rectecforum.com", true },
@@ -29525,11 +30724,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reddingsbrigade-zwolle.nl", true },
{ "reddit2kindle.com", true },
{ "reddraggone9.com", true },
+ { "reddyai.com", true },
{ "rede-reim.de", true },
{ "rede-t.com", true },
{ "redelectrical.co.uk", true },
{ "redessantaluzia.com.br", true },
{ "redfox-infosec.de", true },
+ { "redfoxmarketiing.com", true },
{ "redgatesoftware.co.uk", true },
{ "redgoose.ca", true },
{ "redhandedsecurity.com.au", true },
@@ -29541,18 +30742,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "redirect.stg.fedoraproject.org", true },
{ "rediske.me", true },
{ "redit.com", true },
+ { "rediverge.com", true },
{ "redivis.com", true },
+ { "redleslie.com", true },
{ "redletter.link", true },
{ "redlinelap.com", true },
{ "redlink.de", true },
+ { "redmind.se", true },
{ "redmore.me", true },
{ "redneragenturen.org", true },
{ "rednsx.org", true },
+ { "redpact.com", true },
{ "redprice.by", true },
{ "redshield.co", true },
{ "redshiftlabs.com.au", true },
{ "redshoeswalking.net", true },
{ "redsicom.com", true },
+ { "redsquarelasvegas.com", true },
+ { "redsquirrelcampsite.co.uk", true },
{ "redstoner.com", true },
{ "redteam-pentesting.de", true },
{ "redwaterhost.com", true },
@@ -29562,14 +30769,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "redzurl.com", false },
{ "reed-sensor.com", true },
{ "reedloden.com", true },
+ { "reedyforkfarm.com", true },
{ "reegle.com", true },
- { "reepay.com", true },
{ "rees-carter.net", true },
{ "reesmichael1.com", true },
{ "reevaappliances.co.uk", true },
- { "reevoo.com", true },
- { "reevu.net", true },
{ "reezer.org", true },
+ { "refactor.zone", false },
{ "referdell.com", true },
{ "refficience.com", true },
{ "refill-roboter.de", true },
@@ -29581,8 +30787,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reflexive-engineering.com", true },
{ "reflexive.xyz", true },
{ "refood-cascaiscpr.eu", true },
+ { "reforesttheplanet.com", true },
{ "refresh-media.nl", true },
{ "refreshliving.us", true },
+ { "refu.net", true },
{ "refuelcollective.com", true },
{ "refuelcreative.com.au", true },
{ "refundo.cz", true },
@@ -29594,6 +30802,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reganclassics.com", true },
{ "reganparty.com", true },
{ "regar42.fr", false },
+ { "regeneo.cz", true },
{ "regenerapoint.it", true },
{ "regenerescence.com", true },
{ "regily.com", true },
@@ -29601,8 +30810,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "regime-maigrir-vite.com", true },
{ "regimebonheur.com", true },
{ "regimecellulite.com", true },
+ { "reginfo.gov", true },
{ "regiobeveland.nl", true },
{ "regionalbasementandcrawlspacerepair.com", true },
+ { "regionalgrowth.com", true },
{ "regiosalland.nl", true },
{ "regiovertrieb.de", false },
{ "regis.tech", true },
@@ -29614,7 +30825,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "registrarplus.net", true },
{ "registrarplus.nl", true },
{ "registryplus.net", true },
- { "registryplus.nl", true },
{ "regmyr.se", true },
{ "regnix.net", true },
{ "regnr.info", true },
@@ -29631,12 +30841,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rehabthailand.com", true },
{ "rehabthailand.org", true },
{ "reher.pro", true },
- { "rei.codes", true },
+ { "rei.ki", true },
{ "reichardt-home.goip.de", true },
{ "reichel-steinmetz.de", true },
{ "reichelt-cloud.de", true },
{ "reichl-online.net", true },
{ "reidasbombas.com", true },
+ { "reifr.net", true },
{ "reiki-france.fr", true },
{ "reilly.io", true },
{ "reimaginebelonging.de", true },
@@ -29649,9 +30860,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reinencaressa.be", true },
{ "reinfer.io", true },
{ "reinhard.codes", true },
+ { "reinhardtsgermanautorepair.com", true },
{ "reinhardtsgrimma.de", true },
{ "reinierjonker.nl", true },
- { "reinoldus.ddns.net", true },
{ "reinout.nu", true },
{ "reinouthoornweg.nl", true },
{ "reinventetoi.com", false },
@@ -29665,6 +30876,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rejsehuskelisten.dk", true },
{ "rekisuta.com", true },
{ "reklamjog.hu", true },
+ { "rekonstrukcestatu.cz", true },
{ "rekorsanat.com.tr", true },
{ "rekyou.com", false },
{ "relates.link", true },
@@ -29676,25 +30888,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "release-monitoring.org", true },
{ "releasetimes.io", true },
{ "reliancebank.bank", true },
- { "reliant3sixty.com", true },
{ "relocatefeds.gov", false },
{ "relojeriajoyeria.com", true },
{ "relojes-online.com", true },
{ "relojesseiko.es", true },
+ { "relsak.cz", true },
{ "relvan.com", true },
{ "rem0te.net", true },
{ "remaimodern.org", true },
{ "remambo.jp", true },
+ { "remarketable.org", true },
{ "remax.at", true },
{ "remedi.tokyo", true },
{ "remedionaturales.com", true },
{ "remedioparaherpes.com", true },
{ "remedios-caserospara.com", true },
{ "remedioscaserosparalacistitis.com", true },
- { "remedioskaseros.com", false },
{ "remejeanne.com", true },
{ "rememberthemilk.com", false },
{ "remi-saurel.com", true },
+ { "remiafon.com", true },
{ "remilner.co.uk", true },
{ "remini.cz", true },
{ "remirampin.com", true },
@@ -29706,6 +30919,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "remoteutilities.com", true },
{ "removalcellulite.com", true },
{ "removedrepo.com", true },
+ { "remptmotors.com", true },
+ { "remrol.ru", true },
{ "remszeitung.de", true },
{ "renaissanceplasticsurgery.net", true },
{ "renascentia.asia", true },
@@ -29715,14 +30930,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rene-schwarz.com", true },
{ "rene-stolp.de", true },
{ "renearends.nl", true },
- { "reneclemens.nl", true },
{ "renedekoeijer.com", true },
{ "renedekoeijer.nl", true },
+ { "renee.today", true },
{ "reneleu.ch", true },
{ "renem.net", false },
{ "renemayrhofer.com", true },
{ "reneschmidt.de", true },
{ "renewablefreedom.org", true },
+ { "renewablemaine.org", true },
{ "renewed.technology", true },
{ "renewgsa.com", true },
{ "renewmedispa.com", true },
@@ -29735,7 +30951,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "renrenche.com", false },
{ "rens.nu", true },
{ "renscreations.com", true },
- { "rent-a-c.io", true },
{ "rent-a-coder.de", true },
{ "rentacaramerica.com", true },
{ "rentasweb.gob.ar", true },
@@ -29743,11 +30958,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rentinsingapore.com.sg", true },
{ "rentourhomeinprovence.com", true },
{ "renuo.ch", true },
+ { "renxinge.cn", false },
+ { "reo.gov", true },
{ "reorz.com", true },
{ "reox.at", false },
{ "repaik.com", true },
{ "repair.by", true },
{ "repaper.org", true },
+ { "reparo.pe", true },
{ "repaxan.com", true },
{ "repkord.com", true },
{ "replicaswiss.nl", true },
@@ -29770,11 +30988,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "repugnantconclusion.com", true },
{ "reputationweaver.com", true },
{ "reqrut.net", true },
- { "request-trent.com", true },
{ "requestr.co.uk", true },
{ "res-kc.com", true },
{ "resama.eu", true },
- { "resc.la", true },
{ "rescms-secure.com", true },
{ "research-panel.jp", true },
{ "research.facebook.com", false },
@@ -29787,8 +31003,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "residence-simoncelli.com", true },
{ "residentiallocksmithsanantoniotx.com", true },
{ "resine.roma.it", true },
+ { "resinflooringcompany.com", true },
{ "resist.ca", true },
{ "resistav.com", true },
+ { "resnickandnash.com", true },
{ "resolvefa.co.uk", true },
{ "resolvefa.com", true },
{ "resolving.com", true },
@@ -29798,15 +31016,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "resourceconnect.com", true },
{ "resourceguruapp.com", true },
{ "resources.flowfinity.com", true },
+ { "resourcesmanagementcorp.com", true },
{ "respectmyprivacy.eu", true },
{ "respectmyprivacy.net", true },
{ "respectmyprivacy.nl", true },
+ { "respecttheflame.com", true },
{ "respon.jp", true },
{ "responer.com", true },
+ { "responsepartner.com", true },
{ "responsibledisclosure.nl", false },
{ "responsive-shop.com", true },
{ "responsivepaper.com", true },
{ "respostas.com.br", true },
+ { "ressl.ch", true },
{ "restaurant-oregano.de", true },
{ "restaurant-rosengarten.at", true },
{ "restaurantguru.com", true },
@@ -29827,10 +31049,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "retetenoi.net", true },
{ "retetop95.it", true },
{ "reticon.de", true },
- { "retireyourpassword.org", true },
{ "retmig.dk", true },
{ "reto.ch", true },
{ "reto.com", true },
+ { "reto.io", true },
{ "retokromer.ch", true },
{ "retractableawningssydney.com.au", true },
{ "retro.rocks", true },
@@ -29864,14 +31086,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reverseloansolutions.com", true },
{ "reversesouthafrica.com", true },
{ "review.jp", true },
+ { "reviewmed-215418.appspot.com", true },
{ "reviewninja.net", true },
{ "reviews.anime.my", false },
- { "reviewspedia.org", true },
{ "revirt.global", true },
{ "revision.co.zw", true },
{ "revisionnotes.xyz", true },
{ "revisit.date", true },
{ "revivalinhisword.com", true },
+ { "revivalprayerfellowship.com", true },
{ "revivingtheredeemed.org", true },
{ "revlect.com", true },
{ "revolt.tv", true },
@@ -29888,12 +31111,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rezosup.net", true },
{ "rezosup.org", true },
{ "rezultant.ru", true },
- { "rfeif.org", true },
{ "rftoon.com", true },
+ { "rfxanalyst.com", true },
{ "rga.sh", true },
{ "rgavmf.ru", true },
{ "rgbinnovation.com", true },
{ "rgcomportement.fr", true },
+ { "rgraph.net", true },
{ "rhaegal.me", true },
{ "rhd-instruments.com", true },
{ "rhd-instruments.de", true },
@@ -29903,7 +31127,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rheinturm.nrw", true },
{ "rheocube.com", true },
{ "rhese.net", true },
- { "rhetthenckel.com", true },
+ { "rhetorical.ml", true },
{ "rheuma-online.de", true },
{ "rhevelo.com", true },
{ "rhinelander.ca", true },
@@ -29912,6 +31136,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rhodenmanorcattery.co.uk", true },
{ "rhodri.io", true },
{ "rhowell.io", true },
+ { "rhumblineadvisers.com", true },
{ "rhymeswithmogul.com", true },
{ "rhymix.org", true },
{ "rhynl.io", true },
@@ -29921,17 +31146,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ribs.com", true },
{ "ricardo.nu", true },
{ "ricardobalk.nl", true },
+ { "ricardopq.com", true },
{ "ricaud.me", true },
{ "riccardopiccioni.it", true },
{ "riccy.org", true },
{ "riceadvice.info", true },
{ "richadams.me", true },
{ "richardbloomfield.blog", true },
- { "richardcrosby.co.uk", true },
+ { "richardfeinbergdds.com", true },
{ "richardharpur.com", true },
{ "richardhering.de", true },
{ "richardjgreen.net", true },
{ "richardlangworth.com", true },
+ { "richardlevinmd.com", true },
{ "richardlugten.nl", true },
{ "richardramos.me", true },
{ "richardrblocker.net", true },
@@ -29940,6 +31167,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "richardson.pictures", true },
{ "richardson.software", true },
{ "richardson.systems", true },
+ { "richardstonerealestate.com", true },
{ "richardwarrender.com", true },
{ "richie.fi", true },
{ "richonrails.com", true },
@@ -29947,9 +31175,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ricki-z.com", true },
{ "rickrongen.nl", true },
{ "rickscastles.co.uk", true },
+ { "ricksfamilycarpetcleaning.com", true },
{ "rickvanderzwet.nl", true },
{ "rickweijers.nl", true },
- { "ricky.capital", false },
{ "rickyromero.com", true },
{ "rico.ovh", true },
{ "ricobaldegger.ch", true },
@@ -29958,6 +31186,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ricozienke.de", true },
{ "riddims.co", true },
{ "ride-up.com", true },
+ { "rideways.com", true },
{ "rideyourdamn.bike", true },
{ "ridgelandchurch.org", true },
{ "ridingboutique.de", true },
@@ -29981,7 +31210,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rigolitch.fr", true },
{ "rigsalesaustralia.com", true },
{ "rijk-catering.nl", false },
- { "rijsinkunst.nl", true },
+ { "rijsinkunst.nl", false },
{ "rik.onl", true },
{ "riku.pw", true },
{ "rile5.com", true },
@@ -29997,11 +31226,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ringjewellery.co.uk", true },
{ "rinvex.com", true },
{ "rio-weimar.de", true },
+ { "rioshop.com.br", true },
{ "rioxmarketing.com", true },
{ "rip-sport.cz", true },
{ "ripaton.fr", true },
+ { "ripcorddesign.com", true },
+ { "ripcordsandbox.com", true },
{ "ripmixmake.org", true },
- { "ripple.com", true },
{ "riqy86.nl", true },
{ "ris.fi", true },
{ "risada.nl", true },
@@ -30019,7 +31250,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ristorantefattoamano.it", true },
{ "ristoviitanen.fi", true },
{ "ristrutturazioneappartamento.roma.it", true },
- { "rit.space", true },
+ { "rit.space", false },
{ "rittau.biz", true },
{ "rittau.org", true },
{ "ritzlux.com.tw", true },
@@ -30027,8 +31258,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rivalsa.cn", true },
{ "rivastation.de", true },
{ "riverbanktearooms.co.uk", true },
+ { "riverbed.com", false },
+ { "riverbendroofingnd.com", true },
{ "riverford.co.uk", true },
{ "rivermist.com.au", true },
+ { "riverridgecc.com", true },
{ "riversidebaptistchurch.net", true },
{ "riversideradio.nl", true },
{ "riverviewcourtapts.com", true },
@@ -30037,6 +31271,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rivoflor.it", true },
{ "rivus.net", true },
{ "rivy.org", true },
+ { "riwick.com", false },
{ "rix.ninja", true },
{ "rixter.com", true },
{ "rixzz.ovh", true },
@@ -30045,7 +31280,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rizospastis.gr", true },
{ "rj-onderneemt.nl", true },
{ "rkfp.cz", true },
- { "rkkhok.hu", true },
+ { "rkkhok.hu", false },
{ "rkmns.edu.in", true },
{ "rlalique.com", true },
{ "rld.org", true },
@@ -30064,7 +31299,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rmpsolution.de", true },
{ "rmrig.org", true },
{ "rms.sexy", true },
- { "rmstudio.tw", true },
{ "rmsupply.nl", true },
{ "rn29.me", true },
{ "rnag.ie", true },
@@ -30081,6 +31315,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rob006.net", true },
{ "robandjanine.com", true },
{ "robbertt.com", false },
+ { "robbiecrash.me", true },
{ "robdavidson.network", true },
{ "robert-flynn.de", true },
{ "robertattfield.com", true },
@@ -30098,9 +31333,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robertopazeller.ch", true },
{ "robertreiser.photography", true },
{ "robertrijnders.nl", true },
- { "robertsmits.be", true },
+ { "robertsmits.be", false },
{ "robhorstmanshof.nl", true },
{ "robicue.com", true },
+ { "robigalia.org", false },
{ "robin-novotny.com", true },
{ "robin.co.kr", true },
{ "robin.info", true },
@@ -30113,6 +31349,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robinsonyu.com", true },
{ "robinwill.de", true },
{ "robinwinslow.uk", true },
+ { "robjager-fotografie.nl", true },
{ "robocop.no", true },
{ "robodeidentidad.gov", true },
{ "robohash.org", true },
@@ -30122,6 +31359,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robotattack.org", true },
{ "roboth.am", true },
{ "robotham.org", true },
+ { "robotics.plus", true },
{ "robotkvarnen.se", true },
{ "robototes.com", true },
{ "robots-ju.ch", true },
@@ -30133,15 +31371,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robu.in", true },
{ "robud.info", true },
{ "robustac.com", true },
- { "roc.net.au", true },
{ "rochakhand-knitcraft.com.np", true },
+ { "rocis.gov", true },
{ "rocka.me", true },
{ "rockagogo.com", true },
{ "rockbankland.com.au", true },
{ "rockcanyonbank.com", true },
{ "rockcellar.ch", true },
{ "rockenfuerlachenhelfen.de", true },
- { "rocket-wars.de", true },
{ "rocketevents.com.au", true },
{ "rocketgnomes.com", true },
{ "rocketr.net", true },
@@ -30164,25 +31401,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rodevlaggen.nl", true },
{ "rodichi.net", true },
{ "rodinnebyvanie.eu", true },
- { "rodinneodpoledne2018.cz", true },
{ "rodolfo.gs", true },
+ { "rodomonte.org", true },
{ "rodrigocarvalho.blog.br", true },
- { "rody-design.com", true },
{ "rodzina-kupiec.eu.org", true },
{ "roeckx.be", true },
{ "roeitijd.nl", false },
{ "roeldevries.me", true },
{ "roeleveld.nl", true },
{ "roelhollander.eu", true },
+ { "roeljoyas.com", true },
{ "roelof.io", true },
{ "roelsworld.eu", true },
{ "roemhild.de", true },
{ "roerstaafjes.nl", true },
- { "roffe.nu", true },
{ "rofl.com.ua", true },
{ "roflcopter.fr", true },
{ "rogagym.com", true },
- { "roger101.com", true },
{ "rogerhub.com", true },
{ "rogerriendeau.ca", true },
{ "rogersaam.ch", true },
@@ -30198,16 +31433,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roguetechhub.org", true },
{ "rohedaten.de", true },
{ "rohitagr.com", true },
- { "rohlik.cz", true },
{ "rointe.online", true },
- { "roiscroll.com", true },
{ "roka9.de", true },
+ { "rokass.nl", true },
{ "rokki.ch", true },
{ "rokort.dk", true },
{ "roksolana.be", true },
{ "rokudenashi.de", true },
{ "roland.io", true },
{ "rolandinsh.com", true },
+ { "rolandlips.com", true },
+ { "rolandlips.nl", true },
+ { "rolandreed.cn", true },
{ "rolandszabo.com", true },
{ "roleplayhome.com", true },
{ "roligprylar.se", true },
@@ -30219,6 +31456,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rolodato.com", true },
{ "roma-servizi.it", true },
{ "romab.com", true },
+ { "romain-arias.fr", true },
+ { "romainmuller.xyz", false },
{ "roman-pavlik.cz", true },
{ "romancloud.com", true },
{ "romande-entretien.ch", true },
@@ -30226,18 +31465,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "romano.guru", true },
{ "romanpavlodar.kz", true },
{ "romantelychko.com", true },
- { "romantic-quotes.co.uk", true },
{ "romantica-hotel.de", true },
{ "romanticfirstdance.com", true },
{ "romanticschemer.com", true },
{ "romanticsexshopguatemala.com", true },
{ "romanticvillas.com.au", false },
{ "romapa.com", true },
+ { "romar-bos.nl", true },
{ "romarin.es", true },
{ "romaservicegroup.it", true },
{ "romatrip.it", true },
{ "rome.dating", true },
{ "rommelwood.de", true },
+ { "romun.net", true },
+ { "romy.tw", true },
{ "ronanrbr.com", true },
{ "rondommen.nl", true },
{ "rondouin.fr", true },
@@ -30252,9 +31493,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roodfruit.studio", true },
{ "roodhealth.co.uk", true },
{ "roof.ai", false },
+ { "roofingandconstructionllc.com", true },
{ "roofingomaha.com", true },
{ "roofsandbasements.com", true },
{ "rook-playz.net", true },
+ { "rookvrij.nl", true },
{ "room-composite.com", true },
{ "room208.org", true },
{ "room2d.com", true },
@@ -30265,7 +31508,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rooneytours.nl", true },
{ "roopakv.com", true },
{ "roosabels.nl", false },
- { "roosterpgplus.nl", true },
{ "root-space.eu", true },
{ "root.bg", true },
{ "root.cz", true },
@@ -30283,10 +31525,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rootsbar.fr", true },
{ "rootscope.co.uk", false },
{ "rootspersona.com", true },
- { "rootswitch.com", true },
+ { "rootswitch.com", false },
{ "rootusers.com", true },
{ "ropd.info", true },
- { "roromendut.online", true },
{ "roryneville.com", true },
{ "rosabellas.co.uk", true },
{ "rosalindturner.co.uk", true },
@@ -30303,10 +31544,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rosenkeller.org", true },
{ "roseofyork.com", true },
{ "roseofyorkbooking.com", true },
+ { "roseon.net", true },
{ "roseparkhouse.com", true },
{ "rosesciences.com", true },
- { "rosetiger.life", true },
- { "rosevillefacialplasticsurgery.com", true },
+ { "roshhashanahfun.com", true },
+ { "roshiya.co.in", true },
{ "roslynpad.net", true },
{ "rosnertexte.at", true },
{ "rosset.me", true },
@@ -30321,6 +31563,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rothe.io", true },
{ "rothkranz.net", true },
{ "rothnater.ch", true },
+ { "rothwellgornthomes.com", true },
{ "rotkreuzshop.de", true },
{ "rotol.me", true },
{ "rottweil-hilft.de", true },
@@ -30334,6 +31577,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roundcube.mayfirst.org", false },
{ "roundrock-locksmith.com", true },
{ "roundtablekzn.co.za", true },
+ { "roundtoprealestate.com", true },
{ "roussos.cc", true },
{ "rout0r.org", true },
{ "route-wird-berechnet.de", true },
@@ -30405,6 +31649,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "royalbluewa3.cc", true },
{ "royalcitytaxi.ca", true },
{ "royalcitytaxi.com", true },
+ { "royalfoxrealtor.com", true },
{ "royalmarinesassociation.org.uk", true },
{ "royalnissanparts.com", true },
{ "royalpalacenogent.fr", true },
@@ -30413,6 +31658,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "royalyule.com", true },
{ "royceandsteph.com", true },
{ "roycewilliams.net", true },
+ { "rozalynne-dawn.ga", true },
{ "rozhodce.cz", true },
{ "rpadovani.com", true },
{ "rpauto.ru", true },
@@ -30429,8 +31675,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rraesthetics.com", true },
{ "rrdesignsuisse.com", true },
{ "rrg-partner.ch", true },
- { "rring.me", true },
- { "rritv.com", true },
{ "rro.rs", true },
{ "rrudnik.com", true },
{ "rrwolfe.com", true },
@@ -30443,8 +31687,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rsl.gd", true },
{ "rsm-intern.de", true },
{ "rsm-liga.de", true },
- { "rsmith.io", true },
- { "rsmmail.com", true },
+ { "rsmith.io", false },
{ "rsp-blogs.de", true },
{ "rsridentassist.com", true },
{ "rss.sh", false },
@@ -30460,6 +31703,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rte2fm.ie", true },
{ "rteaertel.ie", true },
{ "rtechservices.io", true },
+ { "rteguide.ie", true },
{ "rteinternational.ie", true },
{ "rtejr.ie", true },
{ "rtek.se", false },
@@ -30467,10 +31711,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rteone.ie", true },
{ "rteplayer.com", true },
{ "rtesport.eu", true },
+ { "rteworld.com", true },
{ "rtfpessoa.xyz", true },
+ { "rths.tk", true },
+ { "rthsoftware.cn", true },
+ { "rthsoftware.net", true },
{ "rtrappman.com", true },
{ "rtrinflatables.co.uk", true },
{ "rtsr.ch", true },
+ { "rttss.com", true },
{ "rttvvip.com", true },
{ "rtwcourse.com", true },
{ "rtzoeller.com", true },
@@ -30499,8 +31748,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruconsole.com", true },
{ "rud.is", true },
{ "rudd-o.com", true },
- { "rudelune.fr", true },
- { "ruderverein-gelsenkirchen.de", true },
{ "rudewiki.com", true },
{ "rudhaulidirectory.com", true },
{ "rudloff.pro", true },
@@ -30527,10 +31774,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruiming.me", true },
{ "ruin.one", true },
{ "ruiruigeblog.com", true },
+ { "ruitersportbak.nl", true },
{ "ruk.ca", true },
{ "rulu.co", true },
{ "rulu.tv", true },
{ "rulutv.com", true },
+ { "rumartinez.es", true },
+ { "rumlager.de", true },
{ "rummage4property.co.uk", true },
{ "rumplesinflatables.co.uk", true },
{ "rumtaste.com", true },
@@ -30538,15 +31788,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "run-it-direct.co.uk", true },
{ "runagain.ch", true },
{ "runebet.com", true },
- { "runefake.com", true },
{ "runementors.com", false },
{ "runklesecurity.com", true },
{ "runnergrapher.com", true },
{ "runreport.fr", true },
{ "runschrauger.com", true },
+ { "runtimepanic.xyz", true },
{ "runvs.io", true },
- { "ruobiyi.com", true },
{ "ruobr.ru", true },
+ { "rupeevest.com", true },
{ "ruquay.com", true },
{ "ruralink.com.ar", true },
{ "ruralsuppliesdirect.co.uk", true },
@@ -30571,12 +31821,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rust.mn", true },
{ "rustable.com", true },
{ "rustikalwallis.ch", true },
- { "rustralasia.net", true },
{ "rustyrambles.com", true },
- { "rusxakep.com", true },
{ "rutgerschimmel.nl", true },
{ "ruthmontenegro.com", true },
{ "rutiger.com", true },
+ { "rutika.ru", true },
{ "ruudkoot.nl", true },
{ "ruwhof.net", true },
{ "ruya.com", true },
@@ -30596,9 +31845,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rws-vertriebsportal.de", true },
{ "rwx.ovh", true },
{ "rx-contact.com", false },
- { "rxbn.de", true },
{ "rxbusiness.com", true },
{ "rxcheck.com", true },
+ { "rxgroup.io", true },
{ "rxight.com", true },
{ "ryan-design.com", true },
{ "ryan-gehring.com", true },
@@ -30608,13 +31857,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ryanhowell.io", false },
{ "ryankearney.com", false },
{ "ryanmcdonough.co.uk", false },
- { "ryanroberts.co.uk", true },
{ "ryansmithphotography.com", true },
{ "ryazan-region.ru", true },
{ "rychlikoderi.cz", true },
{ "rydermais.tk", true },
{ "rynekpierwotny.pl", true },
{ "ryois.me", true },
+ { "rys.pw", true },
+ { "ryssl.com", true },
{ "ryu22e.org", true },
{ "ryuu.es", true },
{ "ryyule.com", true },
@@ -30642,7 +31892,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "s404.de", true },
{ "s44.eu", true },
{ "s4db.net", true },
- { "s4media.org", true },
{ "s4q.me", true },
{ "s4tips.com", true },
{ "s4ur0n.com", true },
@@ -30656,6 +31905,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saabpartsdistribution.com", true },
{ "saamhorigheidsfonds.nl", false },
{ "saastopankki.fi", true },
+ { "saba-piserver.info", true },
{ "sabahattin-gucukoglu.com", true },
{ "sabe.cz", true },
{ "sabine-forschbach.de", true },
@@ -30665,6 +31915,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sabtunes.com", true },
{ "sacaentradas.com", true },
{ "saccani.net", true },
+ { "sacharidovejednotky.eu", true },
{ "sackers.com", true },
{ "sackmesser.ch", true },
{ "saclier.at", true },
@@ -30674,19 +31925,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sadbox.es", true },
{ "sadbox.org", true },
{ "sadbox.xyz", true },
+ { "sadeghian.us", true },
{ "sadev.co.za", true },
+ { "sadhana.cz", true },
{ "sadhawkict.org", true },
{ "sadmansh.com", true },
{ "sadou.kyoto.jp", true },
- { "sadsu.com", true },
- { "saenforcement.agency", true },
+ { "saechsischer-christstollen.shop", true },
{ "saengsook.com", true },
{ "saengsuk.com", true },
{ "safar.sk", true },
{ "safaritenten.nl", true },
{ "safcstore.com", true },
{ "safe.moe", true },
- { "safe.space", true },
{ "safebaseflorida.com", true },
{ "safebasements.com", true },
{ "safebasementsnorthdakota.com", true },
@@ -30705,17 +31956,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "safeocs.gov", true },
{ "safer-networking.org", true },
{ "saferpost.com", true },
+ { "saferproduct.gov", true },
+ { "saferproducts.gov", true },
+ { "safersurfing.eu", false },
{ "safescan.com", true },
{ "safestore.io", true },
{ "safetext.me", true },
{ "safetycloud.me", true },
{ "safetynames.com", true },
+ { "safetyrisk.net", true },
+ { "safetyworkkits.co.nz", true },
{ "safeui.com", true },
- { "safezone.cc", false },
{ "safire.ac.za", true },
{ "sagargandecha.com.au", true },
{ "sagedocumentmanager.com", true },
- { "sagemontchurch.org", true },
{ "sagerus.com", true },
{ "saggiocc.com", true },
{ "sagracefarms.com", true },
@@ -30728,6 +31982,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sahkotyot.eu", true },
{ "said.id", true },
{ "said.my.id", true },
+ { "saidtezel.com", true },
{ "saier.me", true },
{ "saifoundation.in", true },
{ "saigonflowers.com", true },
@@ -30742,10 +31997,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saimoe.org", true },
{ "sainetworks.net", true },
{ "saint-bernard-gouesch.fr", true },
+ { "saint-cyril.com", true },
{ "saintaardvarkthecarpeted.com", true },
{ "saintanthonyscorner.com", true },
{ "sainth.de", true },
- { "saintmichelqud.com", true },
+ { "sainthelena-centersquare.net", true },
+ { "sainthelenas.org", true },
+ { "saintisidorecyo.com", true },
+ { "saintjamestheapostle.org", true },
+ { "saintjohn-bocaraton.com", true },
+ { "saintjosephschurch.net", true },
+ { "saintmarkchurch.net", true },
+ { "saintmaryna.com", true },
+ { "saintpatrick-norristown.net", true },
+ { "saintpeterchurch.net", true },
+ { "saintphilipneri.org", true },
+ { "saintpius.net", true },
+ { "saintpolycarp.org", true },
{ "saintsrobotics.com", true },
{ "saipariwar.com", true },
{ "saiputra.com", true },
@@ -30756,13 +32024,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sakaki.anime.my", false },
{ "sakostacloud.de", true },
{ "sakura-paris.org", true },
+ { "sakura.zone", true },
+ { "sakuracdn.com", true },
{ "sakuracommunity.com", true },
{ "sakuraflores.com.br", true },
{ "sakuraplay.com", true },
{ "salamon-it.de", false },
+ { "salandalairconditioning.com", true },
{ "salde.net", true },
{ "sale4ru.ru", true },
- { "saleaks.org", true },
{ "saleduck.at", true },
{ "saleduck.ch", true },
{ "saleduck.co.id", true },
@@ -30779,7 +32049,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "salesflare.com", true },
{ "salesmachine.io", true },
{ "salexy.kz", true },
- { "salixcode.com", true },
+ { "salidaswap.com", true },
{ "salland1.nl", true },
{ "salle-quali.fr", true },
{ "sallydowns.name", true },
@@ -30795,21 +32065,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "salonasymetria.com", true },
{ "salonasymetria.pl", true },
{ "salonsantebienetre.ch", true },
+ { "salrosadohimalaia.com", true },
{ "salsa-straubing.de", true },
{ "saltbythesea.com", true },
{ "saltercane.com", false },
{ "saltireconservation.com", true },
- { "saltro.nl", true },
{ "saltstack.cz", true },
{ "salud.top", false },
+ { "saludmas.site", true },
{ "saludsexualmasculina.org", true },
{ "saludsis.mil.co", true },
+ { "saludyvida.site", true },
{ "salutethefish.com", true },
{ "salutethegrains.com", true },
{ "salutethepig.com", true },
{ "salva.re", true },
{ "salvagedfurnitureparlour.com", true },
{ "sam-football.fr", true },
+ { "samanacafe.com", true },
{ "samanthasgeckos.com", true },
{ "samanthasicecream.com", true },
{ "samappleton.com", true },
@@ -30823,25 +32096,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "samdev.io", true },
{ "samegoal.com", true },
{ "samegoal.org", true },
- { "samel.de", true },
{ "samenwerkingsportaal.nl", true },
+ { "samenwerkingsportaal.tk", true },
{ "sameworks.com", true },
{ "samgrayson.me", true },
{ "samhuri.net", true },
{ "samifar.in", true },
- { "samin.tk", true },
{ "samip.fi", true },
{ "samitechnic.com", true },
{ "samizdat.cz", true },
{ "samkelleher.com", true },
{ "saml-gateway.org", true },
+ { "samlaw.co.nz", true },
{ "samlivogarv.dk", true },
{ "sammamish--locksmith.com", true },
- { "sammenlignakasser.dk", true },
{ "sammyservers.com", true },
{ "sammyservers.net", true },
+ { "sammyslimos.com", true },
{ "samnya.cn", true },
{ "samrobertson.co.uk", true },
+ { "samshouseofspaghetti.net", true },
{ "samsungmobile.it", true },
{ "samsungphonegenerator.xyz", true },
{ "samtalen.nl", true },
@@ -30850,6 +32124,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "samuellaulhau.fr", true },
{ "samui-samui.de", false },
{ "samuirehabcenter.com", true },
+ { "samvanderkris.xyz", true },
{ "samwilberforce.com", true },
{ "samwrigley.co.uk", true },
{ "samwu.tw", true },
@@ -30859,18 +32134,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sana-store.com", true },
{ "sana-store.cz", true },
{ "sana-store.sk", true },
- { "sanalbayrak.com", true },
{ "sanantoniolocksmithinc.com", true },
{ "sanantoniolocksmithtx.com", true },
{ "sanasport.cz", true },
{ "sanasport.sk", true },
{ "sanatorii-sverdlovskoy-oblasti.ru", true },
- { "sanatorionosti.com.ar", true },
- { "sanchez.adv.br", true },
+ { "sanbornteam.com", true },
+ { "sand-islets.de", true },
{ "sandalj.com", true },
{ "sandbagexpress.com", true },
{ "sandbox.mydigipass.com", false },
+ { "sandboxfp.com", true },
{ "sandburner.net", true },
+ { "sander.sh", true },
{ "sanderdorigo.nl", true },
{ "sanderkoenders.eu", true },
{ "sanderkoenders.nl", true },
@@ -30887,11 +32163,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sandraindenfotografie.nl", true },
{ "sandrocorapi.com", true },
{ "sandrolittke.de", true },
+ { "sandrproperty.com", true },
{ "sandtears.com", true },
{ "sandtonescorts.com", true },
{ "sandtonplumber24-7.co.za", true },
{ "sandtonvipcompanions.com", true },
{ "sandyrobsonhypnotherapy.co.uk", true },
+ { "sanemind.de", true },
{ "sanemind.eu", true },
{ "sanepsychologen.nl", true },
{ "sanex.ca", false },
@@ -30904,7 +32182,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sanitairwinkel.com", true },
{ "sanitairwinkel.nl", true },
{ "sanitrak.cz", true },
- { "sanmuding.com", true },
{ "sannesfotklinikk.no", true },
{ "sanpham-balea.org", true },
{ "sanskritiyoga.com", true },
@@ -30915,13 +32192,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "santenatureetcie.com", true },
{ "santensautomatics.be", true },
{ "santevie.ch", true },
+ { "santiagogarza.co", true },
{ "santojuken.co.jp", true },
{ "santoshpandit.com", true },
{ "sanvitolocapobus.com", true },
- { "saol.eu", true },
{ "saoneth.pl", true },
{ "saorsat.com", true },
{ "saorsat.ie", true },
+ { "saorsat.tv", true },
{ "saorview.com", true },
{ "saorviewconnect.ie", true },
{ "saorviewconnected.ie", true },
@@ -30932,11 +32210,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sapindus.pl", true },
{ "sapk.fr", true },
{ "saposute-s.jp", true },
- { "sapphireblue.me", true },
{ "sapphirepearl.com.sg", true },
{ "sapprendre.ch", true },
{ "saprima.de", true },
{ "sarahbeckettharpist.com", true },
+ { "sarahboydrealty.com", true },
+ { "sarahcorliss.com", true },
{ "sarahlicity.co.uk", true },
{ "sarahlicity.me.uk", true },
{ "sarahplusdrei.de", true },
@@ -30944,14 +32223,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sarahwikeley.co.uk", true },
{ "saraleebread.com", false },
{ "sarariman.com", true },
+ { "sarasotaroboticurology.com", true },
{ "sarasturdivant.com", true },
{ "sardegnatirocini.it", true },
{ "sarink.eu", true },
+ { "sarkisianbuilders.com", true },
+ { "saro.me", true },
{ "saronno5stelle.it", true },
{ "sarpsb.org", true },
{ "sarumtechnologies.com", true },
{ "sas-snowboarding.sk", true },
- { "sasanika.org", true },
{ "sascha.io", true },
{ "sascha.is", true },
{ "saschaeggenberger.ch", true },
@@ -30962,9 +32243,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sasioglu.co.uk", true },
{ "saskpension.com", true },
{ "sasrobotics.xyz", true },
+ { "sassandbelle.co.uk", true },
+ { "sassandbelle.com", true },
+ { "sassandbelletrade.co.uk", true },
+ { "sassandbelletrade.com", true },
{ "sastd.com", true },
{ "sasyabapi.com", true },
{ "sat4all.com", true },
+ { "sat7a-riyadh.com", false },
{ "satai.dk", true },
{ "satal.in", true },
{ "satellites.hopto.me", true },
@@ -30976,12 +32262,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sattamatkachart.in", true },
{ "sattamatkamobi.mobi", true },
{ "saturn.pl", true },
+ { "saturngames.co.uk", true },
{ "satyanarayana.xyz", true },
{ "saudavel.com.vc", true },
{ "saudeealimentos.com", true },
{ "saudeintimadamulher.com.br", true },
{ "saudenoclique.com.br", true },
+ { "saudiarabiaevisa.co.uk", true },
{ "sauer-systems.net", true },
+ { "sauerbrey.eu", true },
{ "sauerland-schnittgruen.de", true },
{ "saulchristie.com", true },
{ "saumon-de-france.com", true },
@@ -30991,20 +32280,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saunahats.eu", true },
{ "saunas.fr", true },
{ "saunatime.jp", true },
- { "saurel.me", true },
{ "sauvagebridge.nl", true },
+ { "savaari.com", true },
{ "savageorgiev.com", true },
- { "savannahtasteexperience.com", true },
{ "save-me-aachen.de", true },
{ "save-me-koeln.de", true },
{ "savecrypto.org", true },
{ "savenet.org", true },
+ { "saveoney.ca", true },
{ "saveora.com", true },
{ "savetheinternet.eu", true },
{ "saveya.com", true },
{ "savic.com", true },
{ "saviezvousque.net", true },
{ "savingrecipe.com", true },
+ { "savingsoftheyear.com", true },
{ "savingsomegreen.com", true },
{ "savingsstoreonline.ca", true },
{ "savisasolutions.co.za", true },
@@ -31020,9 +32310,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sayrodigital.com", true },
{ "sayura.net", true },
{ "saz.sh", true },
+ { "sazavafest.cz", true },
{ "sazuz.cz", true },
{ "sb-group.dk", true },
{ "sb-mnn.com", true },
+ { "sb-sd.org", true },
{ "sb-tuning.ru", true },
{ "sb.im", true },
{ "sb.sb", true },
@@ -31042,6 +32334,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sbrownbourne.com", true },
{ "sbsavings.bank", true },
{ "sbsbaits.com", true },
+ { "sbscyber.com", true },
{ "sbsnursery.co.uk", true },
{ "sbsrv.ml", true },
{ "sbssoft.ru", true },
@@ -31050,9 +32343,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scaarus.com", true },
{ "scaffalature.roma.it", true },
{ "scaffoldhireeastrand.co.za", true },
- { "scaffoldhirefourways.co.za", true },
- { "scaffoldhirerandburg.co.za", true },
- { "scaffoldhiresandton.co.za", true },
{ "scalacollege.nl", true },
{ "scalaire.com", true },
{ "scalaire.fr", true },
@@ -31070,13 +32360,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scarafaggio.it", true },
{ "scatsbouncingcastles.ie", true },
{ "scbdh.org", true },
+ { "sceenfox.de", true },
{ "scelec.com.au", true },
{ "scenastu.pl", true },
{ "scene.mx", true },
{ "scenester.tv", true },
{ "scenicbyways.info", true },
+ { "scentofwine.com", true },
{ "scepticism.com", true },
- { "sceptique.eu", true },
{ "schadevergoedingen.eu", true },
{ "schaefer-reifen.de", true },
{ "schamlosharmlos.de", true },
@@ -31099,17 +32390,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schenkes.de", true },
{ "scherfke.de", true },
{ "scheuchenstuel.at", true },
+ { "schgroup.com", true },
{ "schier.info", true },
{ "schil.li", true },
{ "schildbach.de", true },
{ "schillers-friedberg.de", true },
{ "schimmel-test.info", true },
{ "schippendale.de", true },
- { "schippers-it.nl", true },
{ "schizoids.net", true },
{ "schlachter.ca", true },
{ "schlaf.guru", true },
{ "schlafguru.com", true },
+ { "schlagenhauf.info", true },
+ { "schlagma.de", false },
+ { "schlarb.eu", true },
{ "schlarp.com", true },
{ "schlechtewitze.com", true },
{ "schlick.wedding", true },
@@ -31118,36 +32412,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schlueter-software.de", true },
{ "schmaeh-coaching.ch", true },
{ "schmelle.me", true },
- { "schmelzle.io", true },
{ "schmetterlingsapp.at", true },
{ "schmid.tv", true },
{ "schmidthomes.com", true },
{ "schmidtplasticsurgery.com", true },
{ "schmitt-max.com", true },
- { "schmitz.link", true },
+ { "schnapke.name", true },
{ "schneeketten-ratgeber.de", true },
{ "schnegg.name", true },
+ { "schneidr.de", true },
{ "schneids.me", true },
{ "schnellno.de", true },
{ "schnellsuche.de", true },
{ "schnouki.net", true },
+ { "schnuckenhof-wesseloh.de", true },
{ "schnyder-werbung.ch", true },
{ "schoeck-elektro.de", true },
+ { "schoeller.click", true },
{ "schoepski.de", true },
{ "schoknecht.net", true },
{ "schoknecht.one", true },
+ { "schoko-ferien.de", true },
+ { "schokoferien.de", true },
{ "schokofoto.de", true },
{ "schokokeks.org", true },
+ { "scholar.group", true },
+ { "scholar.site", true },
{ "scholarly.com.ph", true },
{ "scholarly.ph", true },
{ "scholarnet.cn", true },
+ { "scholarshipplatform.com", true },
+ { "scholarshipsplatform.com", true },
+ { "scholarstyle.com", true },
{ "scholierenvervoerzeeland.nl", true },
{ "schollbox.de", false },
+ { "scholledev.com", true },
{ "scholz-kallies.de", true },
{ "schont.org", true },
{ "school-b.us", true },
{ "school-register.co.za", true },
- { "school.in.th", true },
{ "schoolbus.at", true },
{ "schoolcafe.com", true },
{ "schoolotzyv.ru", true },
@@ -31163,6 +32466,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schrauger.org", true },
{ "schrauger.run", true },
{ "schraugerrun.com", true },
+ { "schreck-thomas.de", false },
{ "schreibers.ca", true },
{ "schreinerei-jahreis.de", true },
{ "schrenkinzl.at", true },
@@ -31176,6 +32480,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schtiehve.duckdns.org", true },
{ "schubergphilis.com", true },
{ "schubertgmbh-ingelheim.de", true },
+ { "schuelerzeitung-ideenlos.de", true },
{ "schuhbeck.tk", true },
{ "schuhbedarf.de", true },
{ "schuhwerkstatt.at", true },
@@ -31198,14 +32503,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schwabenhaus-ka.de", true },
{ "schwalliers.com", true },
{ "schwanke.in", true },
+ { "schwarz-gelbe-fuechse.de", true },
{ "schwarzegar.de", true },
{ "schwarzer.it", true },
{ "schwarzes-muenchen.de", true },
{ "schwarzhenri.ch", true },
{ "schwarztrade.cz", true },
{ "schwarzwald-flirt.de", true },
- { "schwedenhaus.ag", true },
- { "schwerkraftlabor.de", true },
{ "schwinabart.com", true },
{ "schwinger.me", true },
{ "schwinnbike.ru", true },
@@ -31228,19 +32532,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scilifebiosciences.com", true },
{ "scimage.com", true },
{ "scintilla.nl", true },
+ { "scintillating.stream", true },
{ "scis.com.ua", true },
{ "scistarter.com", true },
{ "scitopia.me", true },
{ "scitopia.net", true },
{ "sckc.stream", false },
{ "sclns.co", true },
+ { "scohetal.de", true },
{ "scontogiusto.com", true },
{ "scoolcode.com", true },
{ "scoop6.co.uk", true },
{ "scootaloo.co.uk", true },
{ "scooterservis.com", true },
{ "scootfleet.com", true },
- { "scorobudem.ru", true },
+ { "scorerealtygroup.com", true },
{ "scorocode.ru", true },
{ "scorp13.com", true },
{ "scottgalvin.com", true },
@@ -31249,8 +32555,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scotthelme.co.uk", true },
{ "scottishcu.org", true },
{ "scottishseniorsgolf.com", true },
+ { "scottlanderkingman.com", true },
{ "scottseditaacting.com", true },
{ "scottstorey.co.uk", true },
+ { "scotttopperproductions.com", true },
{ "scottynordstrom.org", false },
{ "scoutingridderkerk.nl", true },
{ "scoutingtungelroy.nl", true },
@@ -31259,6 +32567,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scp500.com", true },
{ "scpartyentertainment.co.uk", true },
{ "scpslgame.com", true },
+ { "scra.gov", true },
{ "scrabble-solver.com", true },
{ "scrambox.com", true },
{ "scramget.com", true },
@@ -31269,7 +32578,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scratchandscuffs.uk", true },
{ "scrayos.net", true },
{ "scredible.com", false },
+ { "screefox.de", true },
+ { "screen-fox.de", true },
{ "screen64.tk", true },
+ { "screenfax.de", true },
+ { "screenfox.eu", true },
+ { "screenfox.info", true },
+ { "screenfox.net", true },
{ "screenlight.tv", true },
{ "screenmachine.com", true },
{ "screenparadigm.com", true },
@@ -31281,6 +32596,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scrisulfacebine.ro", true },
{ "scrod.me", true },
{ "scroll.in", true },
+ { "scrtch.fr", true },
{ "scrumbleship.com", true },
{ "scrumpus.com", true },
{ "scrumstack.co.uk", true },
@@ -31306,9 +32622,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sdayman.com", true },
{ "sdcardrecovery.de", true },
{ "sdg-tracker.org", true },
+ { "sdgllc.com", true },
{ "sdho.org", true },
{ "sdns.fr", true },
- { "sdocast.com", true },
{ "sdsi.us", true },
{ "sdsk.one", true },
{ "sdsmanagement.me", true },
@@ -31316,11 +32632,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sdvigpress.org", true },
{ "sdvx.net", true },
{ "sdxcentral.com", true },
+ { "se-booster.com", true },
{ "se-theories.org", true },
{ "se.com", true },
{ "se.search.yahoo.com", false },
{ "seac.me", true },
{ "seacam-store.com", true },
+ { "seachef.it", true },
+ { "seadus.ee", true },
{ "seafood.co.nz", true },
{ "seaholmwines.com", true },
{ "sealaw.com", true },
@@ -31353,6 +32672,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "searchcandy.uk", true },
{ "searchdatalogy.com", true },
{ "seareytraining.com", true },
+ { "searsucker.com", true },
{ "searx.ru", true },
{ "searx.xyz", true },
{ "seasidestudios.co.uk", true },
@@ -31375,12 +32695,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sebastiaanwijnimport.nl", true },
{ "sebastian-janich.de", true },
{ "sebastian-kraus.me", true },
- { "sebastian-lutsch.de", true },
+ { "sebastian-tobie.de", true },
{ "sebastian.expert", true },
{ "sebastianblade.com", true },
{ "sebastianboegl.de", true },
{ "sebastiaperis.com", true },
{ "sebasveeke.nl", true },
+ { "sebepoznani.eu", true },
+ { "sebi.cf", true },
{ "sebi.org", true },
{ "seby.io", true },
{ "sec-mails.de", true },
@@ -31392,11 +32714,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sec.red", true },
{ "sec3ure.co.uk", true },
{ "sec455.com", true },
- { "sec4share.me", true },
{ "sec530.com", true },
{ "sec555.com", true },
{ "secbone.com", true },
- { "secboom.com", true },
{ "seccom.ch", true },
{ "secctexasgiving.org", false },
{ "secgui.de", true },
@@ -31408,7 +32728,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "secondchancejobsforfelons.com", true },
{ "seconfig.sytes.net", true },
{ "secpatrol.de", true },
+ { "secpoc.online", true },
{ "secretar.is", true },
+ { "secretary-schools.com", true },
{ "secretsanta.fr", true },
{ "secretsdujeu.com", true },
{ "secretserveronline.com", true },
@@ -31452,16 +32774,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "security-brokers.com", true },
{ "security.gives", true },
{ "security.google.com", true },
- { "security.love", true },
{ "security201.co.uk", true },
{ "security201.com", true },
{ "securitycamerasaustin.net", true },
{ "securitycamerascincinnati.com", true },
{ "securitycamerasjohnsoncity.com", true },
+ { "securityescrownews.com", true },
{ "securityfest.com", true },
+ { "securitygladiators.com", true },
{ "securityheaders.com", true },
{ "securityheaders.io", true },
{ "securityheaders.nl", true },
+ { "securityindicators.com", true },
{ "securityinet.com", false },
{ "securitykey.co", true },
{ "securitypluspro.com", true },
@@ -31474,11 +32798,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "securitytrails.com", true },
{ "securitywithnick.com", true },
{ "securitywithoutborders.org", true },
+ { "securityzap.com", true },
{ "securocloud.com", true },
{ "secutrans.com", true },
{ "secuvera.de", false },
{ "secwall.me", true },
- { "secwise.nl", true },
{ "secyourity.se", true },
{ "sedeusquiser.net", true },
{ "sedlakovalegal.com", true },
@@ -31487,24 +32811,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "see.wtf", true },
{ "seeclop.ch", true },
{ "seedandleisure.co.uk", true },
+ { "seedisclaimers.com", true },
{ "seednode.co", true },
{ "seedsofangelica.net", true },
{ "seekers.ch", true },
{ "seeks.ru", true },
{ "seekthe.net", true },
{ "seemeagain.com", true },
- { "seemeasaperson.com", true },
{ "seesuite.com", true },
{ "seewhatididhere.com", true },
{ "seeworkdone.com", true },
{ "seezeitlodge-bostalsee.de", true },
{ "sefru.de", true },
{ "seg-leipzig.org", true },
+ { "seg-sys.com", true },
{ "segaretro.org", true },
{ "segitz.de", true },
{ "segmetic.com", true },
{ "segulink.com", true },
+ { "seguridadconsumidor.gov", true },
+ { "seguros-de-salud-y-vida.com", true },
{ "segurosbalboa.com.ec", false },
+ { "segurosdecarroshialeah.org", true },
+ { "segurosdevidamiami.org", true },
{ "segurosocial.gov", true },
{ "seguroviagem.srv.br", false },
{ "sehnenweh.org", true },
@@ -31512,7 +32841,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seibu-kikaku.co.jp", true },
{ "seifried.org", true },
{ "seikatu-navi.com", true },
- { "seiko-dojo.com", true },
{ "seinfeldquote.com", true },
{ "seirei.ne.jp", true },
{ "seiryokuzai-ch.com", true },
@@ -31545,6 +32873,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "selfoutlet.com", true },
{ "selkiemckatrick.com", true },
{ "sellajoch.com", true },
+ { "selldurango.com", true },
{ "sellguard.pl", true },
{ "sellme.biz", true },
{ "sellmoretires.com", true },
@@ -31562,7 +32891,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "semianalog.com", true },
{ "seminariruum.ee", true },
{ "semiocast.com", true },
+ { "semirben.de", true },
{ "semiread.com", true },
+ { "semjonov.de", true },
{ "semmlers.com", true },
{ "semox.de", true },
{ "semps-2fa.de", true },
@@ -31581,20 +32912,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sendinvoice.nl", true },
{ "sendonce.io", true },
{ "sendthisfile.com", true },
+ { "sendtrix.nl", true },
{ "sendway.com", true },
{ "sendya.me", true },
+ { "senego.com", true },
{ "senekalstorageman.co.za", true },
{ "sengokulife.com", true },
{ "seniorem.eu", true },
+ { "seniorhomepurchaseprogram.com", true },
{ "seniors.singles", true },
{ "senmendai-reform.com", true },
+ { "senmonsyoku.top", true },
{ "sennase.net", true },
+ { "senobio.com", true },
{ "senorcontento.com", true },
+ { "sens2lavie.com", true },
{ "sensebridge.com", true },
{ "sensebridge.net", true },
{ "sensepixel.com", true },
{ "senshudo.tv", true },
{ "sensoft-int.net", true },
+ { "sensound.ml", true },
{ "sentandsecure.com", true },
{ "sentic.info", true },
{ "sentidosdelatierra.org", true },
@@ -31604,6 +32942,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sentry.nu", true },
{ "senzaparole.de", true },
{ "seo-analyse.com", true },
+ { "seo-dr-it.com", true },
{ "seo-linz.at", true },
{ "seo-nerd.de", true },
{ "seo-portal.de", true },
@@ -31611,6 +32950,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seo.london", true },
{ "seo.tl", true },
{ "seoagentur2go.de", true },
+ { "seoankara.name.tr", true },
{ "seobutler.com", true },
{ "seocomposer.com", true },
{ "seoenmexico.com.mx", true },
@@ -31620,16 +32960,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seohouston.com", true },
{ "seoinc.com", true },
{ "seoium.com", true },
- { "seokay.com", true },
+ { "seojames.com", true },
{ "seolib.org", true },
{ "seomarketing.bg", true },
{ "seon.me", true },
{ "seoprovider.nl", true },
{ "seoquake.com", true },
+ { "seosec.xyz", false },
{ "seosof.com", true },
{ "seostepbysteplab.com", true },
{ "seoul.dating", true },
{ "seouniversity.org", true },
+ { "seovision.se", true },
{ "sepalandseed.com", true },
{ "seppelec.com", true },
{ "seproco.com", true },
@@ -31651,14 +32993,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "serf.io", true },
{ "sergeemond.ca", true },
{ "sergefonville.nl", true },
+ { "sergeyreznikov.com", true },
{ "sergije-stanic.me", true },
{ "sergiosantoro.it", true },
{ "sergiozygmunt.com", true },
- { "sergivb01.me", true },
{ "sergos.de", true },
{ "serialexperiments.co.uk", true },
{ "serienstream.to", true },
{ "serigraphs.co.uk", true },
+ { "serinamusic.com", true },
{ "seriousclimbing.com", true },
{ "seriouss.am", true },
{ "sernate.com", true },
@@ -31683,6 +33026,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "serverd.de", true },
{ "serverexpose.com", true },
{ "serverfrog.de", true },
+ { "serverlog.net", true },
{ "serveroffline.net", false },
{ "serverpedia.de", true },
{ "servers4all.co.uk", true },
@@ -31694,9 +33038,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "servethecity-karlsruhe.de", true },
{ "servettorna.com", true },
{ "servgate.jp", true },
- { "service-wueste-vodafone.tk", true },
+ { "service.gov.uk", true },
{ "servicebeaute.fr", true },
{ "serviceboss.de", true },
+ { "servicemembers.gov", true },
{ "servida.ch", true },
{ "serviettenhaus.de", true },
{ "servingbaby.com", true },
@@ -31721,12 +33066,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "settberg.de", true },
{ "setterirlandes.com.br", true },
{ "settleapp.co", true },
+ { "setuid.io", true },
{ "setuid0.kr", true },
{ "setyoursite.nl", true },
{ "seva.fashion", true },
{ "seven-purple.com", true },
{ "sevencooks.com", true },
- { "sevenet.pl", true },
{ "sevenhillsapartments.com.au", true },
{ "sevenicealimentos.com.br", true },
{ "sevenmatches.com", true },
@@ -31734,16 +33079,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "severine-trousselard.com", true },
{ "severntrentinsuranceportal.com", true },
{ "sevinci.ch", true },
- { "sevsey.ru", true },
- { "sevsopr.ru", true },
+ { "sewa.nu", true },
{ "sewafineseam.com", true },
{ "sewinginsight.com", true },
{ "sewoo.co.uk", true },
{ "sexaki.com", true },
{ "sexdocka.nu", true },
+ { "sexflare.net", true },
{ "sexmobil.de", true },
{ "sexservice.io", true },
- { "sexshopnet.com.br", true },
{ "sexy-store.nl", true },
{ "seyfarth.de", true },
{ "seyr.me", true },
@@ -31751,6 +33095,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sfaparish.org", true },
{ "sfcomercio.com.br", true },
{ "sfdev.ovh", true },
+ { "sfg-net.com", true },
+ { "sfg-net.eu", true },
+ { "sfg-net.net", true },
+ { "sfg-net.org", true },
{ "sfg-nordholz.de", true },
{ "sfile.eu", true },
{ "sfirat-haomer.com", true },
@@ -31763,21 +33111,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sgb.co", true },
{ "sgcaccounts.co.uk", true },
{ "sgi.org", true },
+ { "sgitc.de", true },
{ "sglibellen.de", true },
{ "sgroup-hitoduma.com", true },
{ "sgroup-rec.com", true },
{ "sgs-systems.de", true },
{ "sgs.camera", true },
+ { "sgs.systems", true },
{ "sgsp.nl", true },
{ "sgtcodfish.com", true },
- { "sgtsnookums.net", true },
{ "sgtt.ch", true },
{ "sgutranscripts.org", true },
{ "sh-heppelmann.de", true },
- { "sh-network.de", false },
+ { "sh-network.de", true },
{ "sh0rt.zone", true },
{ "sh0shin.org", true },
- { "shaaaaaaaaaaaaa.com", true },
+ { "shaadithailand.com", true },
{ "shad.waw.pl", true },
{ "shadesofgrayadr.com", true },
{ "shadesofgraylaw.com", true },
@@ -31794,6 +33143,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shadowsocks.com.hk", true },
{ "shadowsocks.fr", false },
{ "shadowsocks.la", true },
+ { "shadowsocks.se", true },
{ "shadowsocks.to", true },
{ "shadowstack.de", true },
{ "shadwe.com", true },
@@ -31804,6 +33154,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shaicoleman.com", true },
{ "shainessim.com", true },
{ "shakan.ch", true },
+ { "shaken-kyoto.jp", true },
{ "shaken110.com", true },
{ "shakepeers.org", false },
{ "shakerwebdesign.net", true },
@@ -31815,11 +33166,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shalyapin.by", true },
{ "shamara.info", true },
{ "shamariki.ru", true },
+ { "shamka.ru", true },
+ { "shampoo63.ru", true },
{ "shan.io", false },
{ "shan.si", true },
{ "shanahanstrategy.com", true },
{ "shanetully.com", true },
{ "shanewadleigh.com", true },
+ { "shangzhen.site", true },
{ "shankangke.com", true },
{ "shannoneichorn.com", true },
{ "shansing.cn", true },
@@ -31831,7 +33185,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "share.works", true },
{ "sharealo.org", true },
{ "sharedhost.de", true },
- { "shareeri.com", true },
+ { "sharejoy.cn", false },
{ "sharekey.com", false },
{ "sharelovenotsecrets.com", true },
{ "shareoffice.ch", true },
@@ -31839,17 +33193,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sharescope.co.uk", false },
{ "shareselecttools.com", true },
{ "sharevari.com", true },
- { "shariahlawcenter.com", true },
- { "shariahlawcenter.org", true },
- { "sharialawcenter.com", true },
- { "sharialawcenter.org", true },
{ "sharisharpe.com", true },
+ { "shark.cat", true },
{ "shark5060.net", true },
{ "sharkie.org.za", true },
- { "sharperedge.pw", true },
- { "sharperedgecomputers.com", true },
{ "sharu.me", true },
- { "shasso.com", true },
+ { "sharvey.ca", true },
+ { "shattered-souls.de", true },
{ "shaun.net", true },
{ "shaunandamyswedding.com", true },
{ "shaunc.com", true },
@@ -31861,12 +33211,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shawnhogan.com", true },
{ "shawnow.com", true },
{ "shawnwilkerson.com", true },
- { "shazbots.org", true },
{ "shazzlemd.com", true },
{ "shazzlepro.com", true },
{ "sheaf.site", true },
{ "shearcomfort.com", true },
{ "sheaspire.com.tw", true },
+ { "shee.org", true },
{ "sheehyinfinitioftysonsparts.com", true },
{ "sheekdeveloper.com", true },
{ "sheekmedia.com", true },
@@ -31880,22 +33230,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shelleystoybox.com", true },
{ "shellfire.de", true },
{ "shellgame.io", true },
+ { "shellj.me", true },
{ "shelljuggler.com", false },
{ "shellot.com", true },
{ "shellshock.eu", true },
{ "shellvatore.us", true },
{ "shemsconseils.ma", true },
- { "shena.co.uk", true },
+ { "shengbao.org", true },
{ "shenghaiautoparts.com", true },
{ "shenghaiautoparts.net", true },
{ "shengrenyu.com", true },
+ { "shens.ai", true },
{ "shenyuqi.com", false },
{ "sherbers.de", true },
{ "sherrikehoetherapy.com", true },
+ { "sherut.net", true },
{ "shft.cl", true },
+ { "shg-pornographieabhaengigkeit.de", false },
{ "shgroup.xyz", true },
{ "shgt.jp", true },
{ "shh-listen.com", true },
+ { "shh.sh", true },
{ "shiawasedo.co.jp", true },
{ "shichibukai.net", true },
{ "shico.org", true },
@@ -31907,30 +33262,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shiftdevices.com", true },
{ "shiftj.is", true },
{ "shiftleft.org", true },
- { "shiftpsych.com", true },
+ { "shiftpsych.com", false },
{ "shiga1.jp", true },
{ "shihadwiki.com", true },
{ "shijing.me", true },
{ "shikimori.one", true },
{ "shikimori.org", true },
{ "shimi.net", true },
+ { "shimo.im", true },
{ "shin-inc.jp", true },
{ "shinghoi.com", true },
+ { "shinglereplacementlv.com", true },
{ "shining.gifts", true },
+ { "shinko-osaka.jp", true },
{ "shinnyosangha.org", false },
{ "shinonome-lab.eu.org", true },
+ { "shinsyo.com", true },
{ "shintoism.com", true },
{ "shinyuu.net", true },
{ "shipard.com", true },
{ "shipard.cz", true },
{ "shipcloud.io", true },
+ { "shippercenter.info", true },
{ "shiqi.ca", true },
+ { "shiqi.one", true },
{ "shiqisifu.cc", true },
{ "shirakaba-cc.com", true },
{ "shirao.jp", true },
{ "shirt2go.shop", true },
{ "shirtsdelivered.com", true },
{ "shirtsofholland.com", true },
+ { "shiseki.top", true },
{ "shishamania.de", true },
{ "shishkabobnc.com", true },
{ "shishkin.us", true },
@@ -31943,6 +33305,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shitsta.in", true },
{ "shivamber.com", true },
{ "shivammaheshwari.com", true },
+ { "shivammathur.com", true },
{ "shivatattvayoga.com", true },
{ "shlmail.info", true },
{ "shmibbles.me", true },
@@ -31951,7 +33314,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shock.ee", true },
{ "shockercityservices.com", true },
{ "shodan.io", true },
- { "shoemuse.com", true },
{ "shoeracks.uk", true },
{ "shoestringeventing.co.uk", true },
{ "shokola.com", true },
@@ -31959,7 +33321,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shooter.dog", true },
{ "shop-hellsheadbangers.com", true },
{ "shop-s.net", true },
- { "shop.fr", true },
+ { "shop4d.com", true },
{ "shopadvies.nl", true },
{ "shopalike.cz", true },
{ "shopalike.dk", true },
@@ -31981,16 +33343,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shopcoupons.ph", true },
{ "shopcoupons.sg", true },
{ "shophisway.com", true },
+ { "shopific.co", true },
{ "shopify.com", true },
{ "shopifycloud.com", true },
{ "shopkini.com", true },
{ "shoplandia.co", true },
+ { "shopperexperts.com", true },
{ "shoppia.se", true },
{ "shopping24.de", true },
{ "shoppr.dk", true },
{ "shopregional.com.br", true },
{ "shopsouthafrican.com", true },
{ "shopstart.dk", true },
+ { "shopstasy.com", true },
{ "shoptec.sk", true },
{ "shorebreaksecurity.com", true },
{ "shorehamfort.co.uk", true },
@@ -32001,7 +33366,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shorten.ninja", true },
{ "shoshin-aikido.de", true },
{ "shoshin.technology", true },
- { "shota.vip", true },
{ "shotbow.net", true },
{ "shotonwhat.com", true },
{ "shouldihookupwithmybarista.com", true },
@@ -32009,6 +33373,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shovonhasan.com", true },
{ "show-saratov.ru", false },
{ "showbits.net", true },
+ { "showersnet.com", true },
{ "showf.om", true },
{ "showmax.com", true },
{ "showmethemoney.ru", true },
@@ -32016,13 +33381,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "showroom.cam", true },
{ "showroom.co.uk", true },
{ "showroom.uk", true },
+ { "showroom113.ru", true },
{ "showsonar.com", true },
+ { "shoxmusic.net", false },
{ "shredriteservices.com", true },
{ "shreyansh26.me", true },
{ "shrike.me", false },
{ "shrinidhiclinic.in", true },
{ "shrinkhub.com", true },
{ "shrub.ca", true },
+ { "shrug.ml", true },
+ { "shtaketniki.kz", true },
+ { "shtaketniki.ru", true },
{ "shteiman.net", true },
{ "shu-fu.net", true },
{ "shuffleradio.nl", true },
@@ -32030,16 +33400,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shukatsu-support.jp", true },
{ "shulan.moe", true },
{ "shuletime.ml", true },
+ { "shulker.store", true },
{ "shura.eu.org", true },
{ "shuro.de", true },
{ "shuset.dk", true },
{ "shushu.media", true },
{ "shutter-shower.com", true },
- { "shuvo.rocks", true },
{ "shuvodeep.de", true },
{ "shux.pro", true },
{ "shwrm.ch", true },
- { "shybynature.com", true },
{ "shyuka.me", true },
{ "si-benelux.nl", true },
{ "si.to", true },
@@ -32048,6 +33417,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "siamsnus.com", true },
{ "sianbryn.co.uk", true },
{ "sianjhon.com", true },
+ { "siberas.de", true },
{ "sibfk.org", true },
{ "sibiutourguide.com", true },
{ "sibrenvasse.nl", true },
@@ -32066,19 +33436,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sidepodcast.com", true },
{ "sidepodcastdaily.com", true },
{ "sidepodcastextra.com", true },
- { "sideropolisnoticias.com.br", true },
{ "sideshowbarker.net", true },
{ "sidium.de", true },
{ "sidnicio.us", true },
{ "sidonge.com", true },
{ "sidongkim.com", true },
+ { "sidpod.ru", true },
+ { "siduga.com", true },
{ "siegemund-frankfurt.de", true },
{ "siel.nl", true },
{ "sielsystems.nl", true },
{ "sientemendoza.com.ar", true },
{ "sierpinska.co", true },
{ "sierpinska.eu", true },
- { "sieulog.com", true },
{ "siewert-kau.de", true },
{ "sift-tool.org", true },
{ "sig6.org", true },
@@ -32103,11 +33473,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "significantbanter.com", true },
{ "signing-milter.org", true },
{ "signix.net", true },
- { "signsdance.uk", true },
{ "signtul.com", false },
{ "sigsrv.net", true },
{ "sigterm.no", true },
{ "sigterm.sh", true },
+ { "sigurnost.online", true },
{ "siirtutkusu.com", true },
{ "sikayetvar.com", false },
{ "sikevux.se", true },
@@ -32118,9 +33488,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silaslova-ekb.ru", true },
{ "silent-clean.de", true },
{ "silent-yachts.com", true },
+ { "silent.live", false },
{ "silentkernel.fr", false },
{ "silentundo.org", true },
{ "silerfamily.net", true },
+ { "silica-project.com", true },
+ { "silica-project.jp", true },
{ "silicon-north.com", true },
{ "silicon-vision.com", true },
{ "siliconchip.me", true },
@@ -32133,11 +33506,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "siloportem.net", true },
{ "silsha.me", true },
{ "silv.me", true },
- { "silvacor-ziegel.de", true },
{ "silver-heart.co.uk", true },
- { "silverartcollector.com", true },
{ "silverbowflyshop.com", true },
{ "silverdragonart.com", true },
+ { "silverfirsdental.com", true },
{ "silvergoldbull.be", true },
{ "silvergoldbull.bg", true },
{ "silvergoldbull.bj", true },
@@ -32185,7 +33557,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silvergoldbull.ky", true },
{ "silvergoldbull.li", true },
{ "silvergoldbull.lk", true },
- { "silvergoldbull.lt", true },
{ "silvergoldbull.lv", true },
{ "silvergoldbull.ma", true },
{ "silvergoldbull.mk", true },
@@ -32213,14 +33584,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silverkingalaska.com", true },
{ "silverlinkz.net", true },
{ "silverseen.com", true },
+ { "silverswanrecruitment.com", true },
{ "silverwind.io", true },
{ "silvine.xyz", true },
{ "silvobeat.blog", true },
{ "silvobeat.com", true },
{ "sim-karten.net", true },
{ "sim-minaoshi.jp", true },
- { "sim-sim.appspot.com", true },
- { "sim4seed.org", true },
{ "simam.de", true },
{ "simark.ca", true },
{ "simbeton.nl", true },
@@ -32233,6 +33603,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simivalleylandscapelighting.com", true },
{ "simivalleylighting.com", true },
{ "simivalleyoutdoorlighting.com", true },
+ { "simkova-reality.cz", true },
{ "simlau.net", true },
{ "simmis.fr", true },
{ "simoesgoulart.com.br", true },
@@ -32248,7 +33619,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simonfischer.info", true },
{ "simonhirscher.de", true },
{ "simonkjellberg.com", true },
- { "simonkjellberg.se", true },
{ "simonlyabonnement.nl", true },
{ "simonmaddox.com", true },
{ "simonpaarlberg.com", true },
@@ -32266,7 +33636,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simpip.com", true },
{ "simple.com", false },
{ "simpleclassiclife.com", true },
+ { "simplecmsdemo.com", true },
+ { "simplecoding.click", true },
{ "simplecontacts.com", true },
+ { "simplecrypt.io", true },
{ "simplednscrypt.org", true },
{ "simpleindianrecipes.com", true },
{ "simpleinout.com", true },
@@ -32291,6 +33664,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simplyrara.com", true },
{ "simplyregister.net", true },
{ "simplystudio.com", true },
+ { "simplytiles.com", true },
{ "simpte.com", true },
{ "simpul.nl", true },
{ "simrail.nl", true },
@@ -32305,6 +33679,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sinde.ru", true },
{ "sinefili.com", true },
{ "sinergy.ch", true },
+ { "sinfonietta-meridiana.de", true },
{ "sinfulforums.net", true },
{ "singaporemint.com", true },
{ "singapurfirma.com", true },
@@ -32327,6 +33702,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sinterama.biz", true },
{ "sinuelovirtual.com.br", true },
{ "sioeckes.hu", true },
+ { "sion.info", true },
+ { "sipc.org", true },
+ { "sipstix.co.za", true },
{ "siratalmustaqim.com", true },
{ "siraweb.org", true },
{ "sirbouncealotcastles.co.uk", true },
@@ -32340,6 +33718,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sirtaptap.com", true },
{ "sirtuins.com", true },
{ "sirvoy.com", true },
+ { "sisiengineers.gq", true },
{ "sisseastumine.ee", true },
{ "sistel.es", true },
{ "sistem-maklumat.com", true },
@@ -32353,6 +33732,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sit-brn.ru", true },
{ "sit.ec", true },
{ "sitc.sk", true },
+ { "site-helper.com", true },
{ "sitebuilderreport.com", true },
{ "sitedrive.fi", true },
{ "sitefactory.com.br", true },
@@ -32375,20 +33755,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sj-leisure.com", true },
{ "sjaakgilsingfashion.nl", true },
{ "sjatsh.com", true },
+ { "sjbwoodstock.org", true },
{ "sjd.is", true },
+ { "sjdaws.com", true },
{ "sjis.me", true },
{ "sjleisure.co.uk", true },
{ "sjoorm.com", true },
- { "sjsmith.id.au", true },
{ "sjv4u.ch", true },
- { "sjzebs.com", true },
- { "sjzget.com", true },
- { "sjzybs.com", true },
{ "sk-net.cz", true },
{ "skala.io", true },
{ "skalarwelle.eu", true },
{ "skanvordoff.ru", true },
{ "skanword.info", true },
+ { "skarox.ee", true },
{ "skatclub-beratzhausen.de", true },
{ "skatesins.ch", true },
{ "skatingchina.com", true },
@@ -32405,6 +33784,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skhire.co.uk", true },
{ "skhoop.cz", true },
{ "skia.org", false },
+ { "skiblandford.com", true },
{ "skid.church", true },
{ "skiddle.com", true },
{ "skifairview.com", true },
@@ -32417,9 +33797,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skillmoe.at", true },
{ "skillout.org", true },
{ "skills2serve.org", true },
- { "skills2services.com", true },
{ "skillseo.com", true },
- { "skimming.net", true },
{ "skin-cosmetic.eu", true },
{ "skincare-note.com", true },
{ "skincases.co", true },
@@ -32434,6 +33812,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skippy.dog", true },
{ "skischule-wildewiese.de", true },
{ "skizzen-zeichnungen.de", true },
+ { "skk.moe", true },
{ "skks.cz", true },
{ "sklepsamsung.pl", true },
{ "sklepwielobranzowymd.com", true },
@@ -32448,6 +33827,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skommettiamo.it", true },
{ "skontakt.cz", true },
{ "skontorp-enterprise.no", true },
+ { "skoolergraph.azurewebsites.net", true },
{ "skortekaas.nl", false },
{ "skory.us", true },
{ "skou.dk", false },
@@ -32484,12 +33864,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skynetz.tk", true },
{ "skype.com", true },
{ "skyquid.co.uk", true },
- { "skyris.co", true },
{ "skys-entertainment.com", true },
+ { "skyscapecanopies.com", true },
{ "skysuite.nl", true },
{ "skyynet.de", true },
{ "skyzimba.com.br", true },
{ "sl-bildermacher.de", true },
+ { "sl-informatique.ovh", true },
{ "sl0.us", true },
{ "sl899.com", true },
{ "sl998.com", true },
@@ -32503,6 +33884,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slane.cn", false },
{ "slangbellor.com", true },
{ "slanterns.net", true },
+ { "slapen17.nl", true },
{ "slash32.co.uk", true },
{ "slashcrypto.org", true },
{ "slate.to", true },
@@ -32526,12 +33908,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slevermann.de", true },
{ "slevomat.cz", true },
{ "slicklines.co.uk", true },
- { "slicss.com", true },
{ "slidebatch.com", true },
{ "slides.zone", true },
{ "slik.ai", true },
{ "slim-slender.com", true },
- { "slimk1nd.nl", true },
{ "slimspots.com", true },
{ "slingo-sta.com", true },
{ "slingooriginals.com", true },
@@ -32539,12 +33919,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slink.hr", true },
{ "slip-gaming.tk", true },
{ "slneighbors.org", true },
+ { "slo-net.net", true },
{ "slo-tech.com", true },
{ "sloancom.com", true },
{ "slonep.net", true },
{ "slopeedge.com", true },
{ "slotarazzi.com", true },
- { "slotboss.co.uk", true },
{ "slotcar.com", false },
{ "slotfara.com", true },
{ "slotfara.net", true },
@@ -32556,12 +33936,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slpower.com", true },
{ "slrd-isperih.com", true },
{ "sluciaconstruccion.com", true },
+ { "sluimann.de", true },
{ "sluitkampzeist.nl", false },
{ "slusham.com", true },
{ "slvh.fr", true },
{ "slwilde.ca", true },
{ "slxh.eu", true },
{ "slxh.nl", true },
+ { "slysend.com", true },
{ "sm-supplements.gr", true },
{ "sm.ms", true },
{ "sm2016.ch", true },
@@ -32571,9 +33953,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smadav.ml", true },
{ "smakassen.no", true },
{ "smallcloudsolutions.co.za", true },
+ { "smalldata.tech", true },
{ "smalldogbreeds.net", true },
{ "smalle-voet.de", true },
{ "smallhadroncollider.com", true },
+ { "smallpath.me", true },
{ "smalltalkconsulting.com", true },
{ "smaltimento-rifiuti.org", true },
{ "smaltimento.caserta.it", true },
@@ -32612,19 +33996,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smartmarketingcoaching.com", true },
{ "smartmeal.ru", true },
{ "smartmessages.net", true },
+ { "smartmompicks.com", true },
{ "smartmomsmartideas.com", true },
{ "smartpass.government.ae", true },
{ "smartphonechecker.co.uk", true },
{ "smartpolicingplatform.com", true },
- { "smartrade.tech", true },
{ "smartrecruit.ro", true },
{ "smartservices.nl", true },
{ "smartshiftme.com", true },
{ "smartship.co.jp", true },
{ "smartsparrow.com", true },
+ { "smartthursday.hu", true },
{ "smartvideo.io", true },
{ "smartviewing.com", true },
- { "smartwank.com", true },
{ "smartwelve.com", true },
{ "smartwoodczech.cz", true },
{ "smartwurk.nl", false },
@@ -32636,6 +34020,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sme-gmbh.net", true },
{ "smeetsengraas.com", true },
{ "smeso.it", true },
+ { "smiatek.name", true },
{ "smileandpay.com", true },
{ "smiledirectsales.com", true },
{ "smilessoftplay.co.uk", true },
@@ -32648,13 +34033,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smit.com.ua", true },
{ "smit.ee", true },
{ "smith.co", true },
+ { "smith.is", true },
{ "smithandcanova.co.uk", false },
- { "smithchow.com", true },
+ { "smithchung.eu", true },
{ "smithfieldbaptist.org", true },
{ "smkw.com", false },
{ "smm.im", true },
{ "smmlaba.io", true },
{ "smokeandmirrors.agency", true },
+ { "smokefree.gov", true },
+ { "smokeus.dk", true },
{ "smol.cat", true },
{ "smoo.st", true },
{ "smoothcomp.com", true },
@@ -32674,31 +34062,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smsben.net", true },
{ "smsbrana.cz", true },
{ "smsg-dev.ch", true },
+ { "smsinger.com", true },
{ "smsk.email", true },
{ "smsk.io", true },
{ "smskeywords.co.uk", true },
{ "smskmail.com", true },
{ "smsprivacy.org", true },
- { "smtpdev.com", true },
+ { "smspujcka24.eu", true },
+ { "smtp.in.th", true },
{ "smuncensored.com", true },
{ "smutba.se", true },
{ "smutek.net", true },
+ { "smvcm.com", true },
{ "smx.net.br", true },
{ "snackbesteld.nl", true },
{ "snafu.cz", true },
{ "snakafya.com", true },
{ "snap.com", true },
{ "snapappointments.com", true },
+ { "snapappts.com", true },
{ "snapchat.com", true },
{ "snapfinance.com", true },
{ "snapserv.ch", true },
{ "snapserv.net", true },
{ "snaptier.co", true },
+ { "snaptools.io", true },
+ { "snargol.com", true },
{ "snatch.com.ua", true },
- { "snazel.co.uk", true },
+ { "snazel.co.uk", false },
{ "snazzie.nl", true },
{ "sncdn.com", true },
{ "sndbouncycastles.co.uk", true },
+ { "sneak.berlin", true },
{ "sneakpod.de", true },
{ "sneakynote.com", true },
{ "sneakypaw.com", true },
@@ -32707,7 +34102,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sneedit.com", true },
{ "sneedit.de", true },
{ "sneeuwhoogtes.eu", true },
- { "sneezry.com", true },
+ { "snegozaderzhatel.ru", true },
{ "snel4u.nl", true },
{ "snelbv.nl", true },
{ "snelshops.nl", true },
@@ -32718,6 +34113,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sngallery.co.uk", true },
{ "sngeo.com", true },
{ "sniderman.eu.org", true },
+ { "sniderman.org", true },
{ "sniderman.us", true },
{ "sniep.net", true },
{ "snight.co", true },
@@ -32725,13 +34121,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snip.run", true },
{ "snippet.wiki", true },
{ "snl.no", true },
+ { "sno-kingroofing-gutters.com", true },
{ "snoerendevelopment.nl", true },
+ { "snohomishsepticservice.com", true },
{ "snopyta.com", true },
{ "snoringhq.com", true },
{ "snote.io", true },
{ "snoupon.com", true },
{ "snow-online.com", true },
- { "snow-online.de", true },
{ "snow.dog", true },
{ "snowalerts.eu", true },
{ "snowalerts.nl", true },
@@ -32742,9 +34139,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snowhaze.com", true },
{ "snowpak.com", true },
{ "snowpaws.de", true },
+ { "snowplane.net", true },
+ { "snowraven.de", true },
{ "snowy.land", true },
{ "snowyluma.me", true },
+ { "snperformance.gr", true },
+ { "snrat.com", true },
{ "snrub.co", true },
+ { "sntravel.co.uk", true },
{ "snuff.porn", true },
{ "snughealth.org.uk", true },
{ "sny.no", true },
@@ -32760,6 +34162,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sobie.ch", true },
{ "sobieray.dyndns.org", true },
{ "sobotkama.eu", true },
+ { "sobreporcentagem.com", true },
{ "soc.net", true },
{ "soccorso-stradale.org", true },
{ "sochi-sochno.ru", true },
@@ -32767,6 +34170,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "social-events.net", false },
{ "social-media-strategies.it", true },
{ "social-media-strategy.org.uk", true },
+ { "social-work-colleges.com", true },
{ "socialhams.net", true },
{ "socializam.com", true },
{ "socialmarketingday.nl", true },
@@ -32783,12 +34187,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "societyhilldance.com", true },
{ "socioambiental.org", true },
{ "sociobiology.com", true },
+ { "sociology-schools.com", true },
{ "sociopathy.org", true },
{ "sockeye.io", true },
{ "sockscap64.com", true },
{ "socoastal.com", true },
{ "sodadigital.com.au", true },
{ "sodafilm.de", true },
+ { "sodamakerclub.com", true },
{ "sodexam.pro", true },
{ "sodi.nl", true },
{ "sodiao.cc", true },
@@ -32797,7 +34203,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sofabedshop.de", true },
{ "sofiavanmoorsel.com", true },
{ "sofort.com", true },
+ { "sofortimplantate-muenchen.de", true },
{ "sofortueberweisung.de", true },
+ { "soft41.ru", true },
{ "softandbouncy.co.uk", true },
{ "softanka.com", true },
{ "softart.club", true },
@@ -32805,6 +34213,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "softbebe.com", true },
{ "softcreatr.de", false },
{ "softonic.com", true },
+ { "softonic.com.br", true },
+ { "softonic.jp", true },
+ { "softonic.pl", true },
{ "softplay4hire.co.uk", true },
{ "softprayog.in", true },
{ "softrobot.se", true },
@@ -32813,6 +34224,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "software.rocks", true },
{ "softwarebetrieb.de", true },
{ "softwaredesign.foundation", false },
+ { "softwarehardenberg.nl", true },
{ "softwarevoortherapeuten.nl", true },
{ "softwaylancing.com", true },
{ "softwerk-edv.de", true },
@@ -32859,6 +34271,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "solicafe.at", true },
{ "solidarita-kosovo.net", true },
{ "solidshield.com", true },
+ { "solidtuesday.com", true },
{ "solihullcarnival.co.uk", true },
{ "solihullinflatables.com", true },
{ "solihulllionsclub.org.uk", true },
@@ -32873,12 +34286,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "solos.im", true },
{ "solsocog.de", true },
{ "soluphant.de", true },
- { "solus-project.com", true },
{ "solutionhoisthire.com.au", true },
{ "solvation.de", true },
{ "solve-it.se", true },
{ "solved.tips", true },
{ "solvemethod.com", true },
+ { "solvewebmedia.com", true },
{ "solvingproblems.com.au", true },
{ "solvops.com", true },
{ "somaini.li", true },
@@ -32888,10 +34301,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "somanao.com", true },
{ "somcase.com.br", true },
{ "somecrazy.com", true },
- { "somepills.com", true },
{ "somersetscr.nhs.uk", true },
{ "somersetwellbeing.nhs.uk", true },
+ { "somethingsketchy.net", true },
{ "sommefeldt.com", true },
+ { "somoshuemul.cl", true },
{ "somosnoticia.com.br", true },
{ "sompani.com", true },
{ "somuchbetterwithage.com", true },
@@ -32903,6 +34317,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sondergaard.de", true },
{ "sondersobk.dk", true },
{ "songluck.com", true },
+ { "songshuzuoxi.com", true },
{ "songsmp3.co", true },
{ "songsmp3.com", true },
{ "songsmp3.info", true },
@@ -32924,13 +34339,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soohealthy.nl", true },
{ "soomee.be", true },
{ "soomee1.be", true },
+ { "soontm.de", true },
+ { "soontm.net", true },
{ "soopure.nl", true },
+ { "sooscreekdental.com", true },
+ { "soothemobilemassage.com.au", true },
{ "soph.jp", true },
{ "soph.us", true },
{ "sopher.io", true },
{ "sophiaandmatt.co.uk", true },
{ "sophiakligys.com", true },
{ "sophieandtrey.com", true },
+ { "sopo.me", true },
{ "soprabalao.com.br", true },
{ "soquee.net", true },
{ "sor.so", true },
@@ -32939,20 +34359,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sorakumo.jp", true },
{ "sorcix.com", true },
{ "sorellecollection.com.au", true },
+ { "soren.xyz", true },
{ "sorenstudios.com", true },
{ "sorever.online", true },
+ { "sorincocorada.ro", true },
{ "sorrowfulunfounded.com", true },
{ "sortesim.com.br", true },
{ "soruly.com", true },
{ "sorz.org", true },
+ { "sos-elettricista.it", true },
{ "sos-falegname.it", true },
{ "sos-idraulico.it", true },
+ { "sos-muratore.it", true },
+ { "sosesh.shop", true },
{ "sosoftplay.co.uk", true },
{ "sospromotions.com.au", true },
{ "sostacancun.com", true },
{ "sosteam.jp", true },
{ "sosteric.si", true },
{ "sotadb.info", true },
+ { "sotai.tk", true },
{ "sotar.us", true },
{ "sotavasara.net", true },
{ "sotoasobi.net", true },
@@ -32960,6 +34386,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sou-co.jp", true },
{ "soubriquet.org", true },
{ "soufastnet.com.br", true },
+ { "sougi-review.top", true },
{ "souki.cz", true },
{ "soukodou.jp", true },
{ "soul-source.co.uk", true },
@@ -32972,16 +34399,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soumikghosh.com", true },
{ "soumya92.me", true },
{ "soundabout.nl", true },
- { "soundedj.com.br", true },
{ "soundeo.com", true },
{ "soundeo.net", true },
{ "soundhunter.xyz", false },
{ "soundonsound.com", true },
{ "soundprotectionllc.com", true },
{ "soundscrate.com", true },
+ { "soundtruckandautorepair.com", true },
+ { "soupcafe.org", true },
+ { "souqtajmeel.com", true },
{ "sour.is", true },
{ "souravsaha.com", true },
{ "sourcebox.be", false },
+ { "sourcecode.tw", true },
{ "sourcely.net", true },
{ "sourceway.de", true },
{ "souris.ch", true },
@@ -32989,11 +34419,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "southambouncycastle.co.uk", true },
{ "southamerican.dating", true },
{ "southbankregister.com.au", true },
- { "southernlights.xyz", true },
+ { "southcountyplumbing.com", true },
+ { "southdakotahealthnetwork.com", true },
+ { "southeastvalleyurology.com", true },
+ { "southernlights.gq", true },
{ "southernmost.us", true },
{ "southernstructuralsolutions.com", true },
+ { "southernsurgicalga.com", true },
{ "southernutahinfluencers.com", true },
+ { "southflanewsletter.com", true },
{ "southlakenissanparts.com", true },
+ { "southlandurology.com", true },
{ "southmelbourne.apartments", true },
{ "southmorangtownhouses.com.au", true },
{ "southside-crew.com", true },
@@ -33007,6 +34443,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sovendus.de", true },
{ "sowlutions.com", true },
{ "soybase.org", true },
+ { "soydemac.com", true },
+ { "soz6.com", true },
{ "sozai-good.com", true },
{ "sozialy.com", true },
{ "sozon.ca", true },
@@ -33027,6 +34465,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spaconnection.com", true },
{ "spahireleeds.co.uk", true },
{ "spaid.xyz", false },
+ { "spakhmer.com", true },
{ "spakurort.eu", true },
{ "spaldingwall.com", true },
{ "spamdrain.com", true },
@@ -33041,13 +34480,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sparkforautism.org", true },
{ "sparklatvia.lv", true },
{ "sparklebastard.com", true },
- { "sparkresearch.net", true },
- { "sparkreviewcenter.com", true },
{ "sparkz.no", true },
{ "sparprofi.at", true },
{ "sparta-en.org", true },
{ "sparta-solutions.de", true },
{ "spartaconsulting.fi", true },
+ { "spartacuslife.com", true },
{ "spartaermelo.nl", true },
{ "spasicilia.it", true },
{ "spatzenwerkstatt.de", true },
@@ -33063,9 +34501,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "speak-polish.com", true },
{ "spearfishingmx.com", true },
{ "speargames.net", true },
+ { "specdrones.us", true },
+ { "specialproperties.com", true },
{ "specialtyalloys.ca", true },
{ "speciesism.com", true },
+ { "spectroom.space", true },
{ "spectrosoftware.de", true },
+ { "spectrum.gov", true },
+ { "spediscifiori.com", true },
+ { "spedition-transport-umzug.de", true },
{ "speech-balloon.com", true },
{ "speechdrop.net", true },
{ "speechmate.com", true },
@@ -33087,14 +34531,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spellcheckci.com", true },
{ "spellchecker.net", true },
{ "spenglerei-shop.de", true },
+ { "sperandii.it", true },
{ "sperec.fr", true },
- { "sperohub.com", true },
{ "sperrstun.de", true },
{ "spesys-services.fr", true },
{ "spha.info", true },
+ { "sphere-realty.com", true },
{ "sphereblur.com", true },
{ "spherenix.org", true },
{ "sphido.org", true },
+ { "spicejungle.com", true },
{ "spicydog.org", true },
{ "spicymatch.com", true },
{ "spidermail.tk", true },
@@ -33108,15 +34554,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spiet.nl", true },
{ "spiff.eu", true },
{ "spiga.ch", true },
- { "spillersfamily.net", true },
- { "spillmaker.no", false },
+ { "spikelands.com", true },
{ "spilogkoder.dk", true },
{ "spinalien.net", false },
{ "spinalo.se", true },
{ "spindle.com.ph", true },
{ "spindrift.com", true },
{ "spingenie.com", true },
- { "spinor.im", true },
{ "spins.fedoraproject.org", true },
{ "spinspin.wtf", true },
{ "spiralschneiderkaufen.de", true },
@@ -33137,10 +34581,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "splintermail.com", true },
{ "splitdna.com", true },
{ "splitreflection.com", true },
+ { "splnk.net", true },
{ "splopp.com", true },
{ "splunk.net", true },
- { "splunk.zone", true },
+ { "spnitalianfestival.com", true },
{ "spodelime.com", true },
+ { "spokaneexteriors.com", true },
+ { "spokanepolebuildings.com", true },
{ "spoketwist.com", true },
{ "spoluck.ca", true },
{ "spolwind.de", true },
@@ -33159,7 +34606,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sport-in-sundern.de", true },
{ "sport-potreby.cz", true },
{ "sport-potreby.sk", true },
- { "sport-socken.net", true },
+ { "sportabee.com", true },
{ "sportakrobatik.at", true },
{ "sportbetuwe.nl", true },
{ "sporter.com", true },
@@ -33167,6 +34614,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sportovnidum.cz", true },
{ "sportparks.com", true },
{ "sportparks.org", true },
+ { "sports-colleges.com", true },
{ "sports.dating", true },
{ "sportsjaw.com", true },
{ "sportsmansblog.com", true },
@@ -33175,6 +34623,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sporttown.it", true },
{ "sportugalia.ru", true },
{ "sportvereine.online", true },
+ { "sportwette.eu", true },
+ { "sportwetten-anbieter.de", true },
{ "sportxt.ru", true },
{ "spot-lumiere-led.com", true },
{ "spotrebitelskecentrum.sk", true },
@@ -33182,22 +34632,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spotteredu.com", true },
{ "spotupload.com", true },
{ "sppin.fr", true },
- { "spr.id.au", true },
{ "sprachfreudehoch3.de", true },
+ { "sprax2013.de", true },
{ "sprayforce.com", true },
{ "spreadsheetgear.com", true },
{ "spreadsheets.google.com", true },
{ "spreadthenews.eu", true },
{ "spree.co.za", true },
{ "spreed.me", true },
- { "spricknet.de", true },
{ "springerundpartner.de", true },
{ "springfieldbricks.com", true },
+ { "springhillmaine.com", true },
{ "springreizen.nl", true },
{ "sprinklermanohio.com", true },
{ "spritmonitor.de", true },
{ "spritsail.io", true },
{ "sproktz.com", true },
+ { "spron.in", true },
{ "sprucecreekclubs.com", true },
{ "sprucecreekgcc.com", true },
{ "sps-lehrgang.de", true },
@@ -33214,19 +34665,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spydersec.com", true },
{ "spyprofit.ru", true },
{ "spyroszarzonis.com", true },
- { "sqkaccountancy.co.uk", true },
{ "sql-und-xml.de", true },
{ "sqlapius.net", true },
{ "sqlfeatures.com", true },
{ "sqr-training.com", true },
{ "sqroot.eu", true },
- { "squadlinx.com", true },
{ "square-gaming.org", true },
{ "square-src.de", false },
{ "square.com", false },
- { "squareonebgc.com.ph", true },
+ { "squarelab.it", true },
{ "squareup.com", false },
{ "squawk.cc", true },
+ { "squeakql.online", true },
{ "squeezemetrics.com", true },
{ "squido.ch", true },
{ "squidparty.com", true },
@@ -33236,6 +34686,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "srandom.com", true },
{ "sranje.rocks", true },
{ "srbija-nekretnine.org", true },
+ { "src-el-main.com", true },
{ "src.fedoraproject.org", true },
{ "srchub.org", true },
{ "srife.net", true },
@@ -33262,8 +34713,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ssbgportal.net", true },
{ "ssbkk.ru", true },
{ "ssbrm.ch", true },
- { "ssc8689.com", true },
- { "ssc8689.net", true },
{ "sscd.no", true },
{ "ssdax.com", false },
{ "ssdservers.co.uk", true },
@@ -33290,6 +34739,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sslmate.com", true },
{ "sslok.com", true },
{ "sslping.com", true },
+ { "sslpoint.com", true },
{ "ssls.cz", true },
{ "sslsurvey.de", true },
{ "ssmato.me", true },
@@ -33298,12 +34748,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sso.to", false },
{ "ssready.io", true },
{ "ssready.org", true },
+ { "ssrfq.com", true },
+ { "sssppp.gq", true },
{ "sstaging.com", true },
- { "sstewartgallus.com", true },
{ "ssuc.net", true },
{ "ssuiteoffice.com", true },
{ "ssuitesoft.com", true },
{ "st-antonius-kuenzell.de", true },
+ { "st-bede.org", true },
{ "st-innovationcup.com", true },
{ "st-kilian-markt-erlbach.de", true },
{ "st-news.de", true },
@@ -33313,19 +34765,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "staatsschutz.at", true },
{ "staatsschutzgesetz.at", true },
{ "stablelib.com", true },
+ { "stacklasvegas.com", true },
{ "stackpath.com", true },
{ "stackptr.com", true },
- { "stacktile.io", false },
{ "stackunderflow.com", true },
{ "staddlestonesbowness.co.uk", true },
{ "stadm.com", true },
{ "stadsbygd.info", true },
{ "stadt-apotheke-muensingen.de", true },
+ { "stadtbauwerk.at", false },
+ { "stadtbuecherei-bad-wurzach.de", true },
{ "stadterneuerung-hwb.de", true },
{ "stadtpapa.de", true },
{ "stadtplan-ilmenau.de", true },
{ "staer.ro", true },
{ "staff.direct", true },
+ { "staffexcellence.com", true },
{ "staffordlabour.org.uk", true },
{ "stage.wepay.com", false },
{ "stage4.ch", true },
@@ -33337,12 +34792,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stair.ch", true },
{ "stairfallgames.com", true },
{ "stairlin.com", true },
- { "stakestrategy.com", true },
{ "staklim-malang.info", true },
{ "stako.jp", true },
{ "staktrace.com", true },
+ { "stalder.work", true },
{ "staljedevledder.nl", true },
{ "stalker-shop.com", true },
+ { "stalkerteam.pl", true },
{ "stalkr.net", true },
{ "stameystreet.com", true },
{ "stamkassa.nl", true },
@@ -33355,14 +34811,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "standard.co.uk", true },
{ "standardequipment.com", true },
{ "standards.gov", true },
+ { "stannri.org", true },
{ "stanron.com", true },
+ { "stantabler.com", true },
+ { "stanthony-hightstown.net", true },
+ { "stanthony-yonkers.org", true },
{ "stanthonymaryclaret.org", true },
- { "star-citizen.wiki", true },
+ { "staparishgm.org", true },
{ "star-clean.it", true },
{ "starcoachservices.ca", true },
{ "starcomproj.com", true },
{ "stardanceacademy.net", true },
- { "stardust-entertainments.co.uk", true },
{ "stareplanymiast.pl", true },
{ "starflix.uk", true },
{ "starfm.de", true },
@@ -33374,13 +34833,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "starka.st", true },
{ "starkbim.com", true },
{ "starking.net.cn", true },
- { "starlightentertainmentdevon.co.uk", true },
{ "starlim.co.in", true },
{ "starlim.org", true },
{ "starmtech.fr", true },
{ "starpeak.org", true },
{ "starphotoboothsni.co.uk", true },
{ "starsam80.net", true },
+ { "starsguru.com", true },
{ "starsing.bid", true },
{ "starskim.cn", true },
{ "starstreak.net", false },
@@ -33392,12 +34851,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "startpage.info", true },
{ "startrek.in", true },
{ "startsamenvitaal.nu", true },
+ { "starttls-everywhere.org", true },
{ "starttraffic.com", true },
{ "starttraffic.uk", true },
{ "startupgenius.org", true },
- { "starwatches.eu", true },
{ "starwins.co.uk", true },
- { "stassi.ch", true },
{ "stastka.ch", true },
{ "stat.ink", true },
{ "statebuildinggroup.com", true },
@@ -33405,6 +34863,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "static-myfxee-808795.c.cdn77.org", true },
{ "static-myfxoau-808795.c.cdn77.org", true },
{ "static-myfxouk-808795.c.cdn77.org", true },
+ { "static.today", true },
{ "static.wepay.com", false },
{ "staticline.de", true },
{ "stationa.ch", true },
@@ -33425,7 +34884,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stayschemingco.com", true },
{ "stb-schefczyk.de", true },
{ "stb-strzyzewski.de", true },
+ { "stb.gov", true },
+ { "stbartholomewmanchester.org", true },
{ "stbennett.org", true },
+ { "stbl.org", true },
+ { "stbridgeteastfalls.org", true },
+ { "stcatharine-stmargaret.org", true },
+ { "stceciliakearny.org", true },
{ "stclementmatawan.org", true },
{ "stclementreligioused.org", true },
{ "stcplasticsurgery.com", true },
@@ -33449,11 +34914,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "steborio.pw", true },
{ "steckel.cc", true },
{ "stedb.eu", true },
+ { "stedbg.net", true },
{ "steef389.eu", true },
{ "steel-roses.de", true },
{ "steelephys.com.au", true },
{ "steelmounta.in", true },
{ "steemit.com", true },
+ { "steemyy.com", true },
{ "steerty.com", true },
{ "stefan-bayer.eu", true },
{ "stefan-rothe.ch", true },
@@ -33464,7 +34931,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stefanorossi.it", true },
{ "stefanovski.io", true },
{ "stefanvanburen.xyz", true },
+ { "stefanvd.net", true },
+ { "stefany.eu", true },
{ "steffentreeservice.com", true },
+ { "stefpastoor.nl", true },
{ "stegmaier-immobilien.de", true },
{ "steidlewirt.de", true },
{ "steigerlegal.ch", true },
@@ -33472,10 +34942,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "steinbergmedia.de", true },
{ "steinibox.de", true },
{ "steklein.de", true },
+ { "stekosouthamerica.com", true },
+ { "stelfox.net", true },
{ "stella-artis-ensemble.at", true },
{ "stellarguard.me", true },
{ "stellarium-gornergrat.ch", true },
- { "stellarvale.net", true },
{ "stellen.ch", true },
{ "stelleninserate.de", true },
{ "stellenticket.de", true },
@@ -33521,10 +34992,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sternen-sitzberg.ch", true },
{ "sternenbund.info", true },
{ "sternplastic.com", true },
+ { "sternsinus.com", true },
{ "stetspa.it", true },
{ "steuer-voss.de", true },
{ "steuerberater-essen-steele.com", true },
{ "steuerkanzlei-edel.de", true },
+ { "steuerkanzlei-und-wirtschaftsberater-manke.de", true },
{ "steuern-recht-wirtschaft.de", true },
{ "steuerseminare-graf.de", true },
{ "steuertipps-sonderausgaben.de", true },
@@ -33533,16 +35006,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stevecostar.com", true },
{ "stevedesmond.ca", true },
{ "stevedoggett.com", true },
+ { "stevegellerhomes.com", true },
{ "stevegrav.es", true },
{ "stevemonteyne.be", true },
{ "steven-bennett.com", true },
{ "steven-klix.de", true },
{ "stevenbolgartersnakes.com", true },
{ "stevenhumphrey.uk", true },
- { "stevenkwan.me", true },
{ "stevenroddis.com", true },
{ "stevens.se", false },
{ "steventress.com", true },
+ { "steventruesdell.com", true },
{ "stevenwooding.com", true },
{ "stevenz.net", true },
{ "stevenz.science", true },
@@ -33552,7 +35026,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stewpolley.com", true },
{ "steyaert.be", false },
{ "stforex.com", false },
+ { "stfrancisnaugatuck.org", true },
{ "stfw.info", true },
+ { "stgabrielstowepa.org", true },
+ { "stgeorgegolfing.com", true },
+ { "stgm.org", true },
+ { "sthenryrc.org", true },
{ "stian.net", true },
{ "stichtingliab.nl", true },
{ "stichtingscholierenvervoerzeeland.nl", true },
@@ -33564,15 +35043,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stickertuningfetzt.de", false },
{ "stickies.io", true },
{ "stickmanventures.com", true },
- { "stickswag.eu", true },
- { "stiffordacademy.org.uk", true },
+ { "stickstueb.de", true },
+ { "stiens.de", true },
{ "stift-kremsmuenster.at", true },
{ "stiftemaskinen.no", true },
{ "stigharder.com", true },
+ { "stigviewer.com", true },
{ "stijncrevits.be", true },
{ "stijnodink.nl", true },
{ "stikic.me", true },
- { "stikkie.me", true },
{ "stilartmoebel.de", true },
{ "stilecop.com", true },
{ "stillnessproject.com", true },
@@ -33585,13 +35064,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stintup.com", true },
{ "stipsan.me", true },
{ "stirblaut.de", true },
+ { "stirling.co", true },
{ "stirlingpoon.com", true },
+ { "stisaac.org", true },
+ { "stisidores.org", true },
{ "stitchfiddle.com", true },
{ "stitchinprogress.com", true },
{ "stivesbouncycastlehire.co.uk", true },
{ "stjohnin.com", true },
{ "stjohnsottsville.org", true },
{ "stjoseph-stcatherine.org", true },
+ { "stjosephspringcity.com", true },
{ "stjscatholicchurch.org", true },
{ "stjustin.org", true },
{ "stln.ml", true },
@@ -33600,41 +35083,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stlukesbrandon.org", true },
{ "stm-net.de", true },
{ "stma.is", true },
+ { "stmariagoretti.net", true },
+ { "stmarkseagirt.com", true },
{ "stmarthachurch.com", true },
{ "stmaryextra.uk", true },
+ { "stmattsparish.com", true },
{ "stmichaellvt.com", true },
+ { "stmichaelunion.org", true },
{ "stmkza.net", true },
{ "stmlearning.com", true },
{ "stmsolutions.pl", true },
{ "stneotsbouncycastlehire.co.uk", true },
- { "stnl.de", false },
{ "stockpile.com", true },
{ "stockrow.com", true },
+ { "stockstuck.com", true },
+ { "stocktout.info", true },
{ "stocktrader.com", true },
{ "stodieck.com", true },
{ "stoebermehl.at", true },
{ "stoffelnet.de", true },
{ "stogiesandmash.com", true },
{ "stokvistrading.nl", true },
+ { "stolbart.com", true },
{ "stolin.info", true },
{ "stolina.de", false },
{ "stolkpotplanten.nl", true },
- { "stolkschepen.nl", true },
+ { "stollen-wurm.de", true },
+ { "stollenwurm.de", true },
{ "stolpi.is", true },
{ "stomt.com", true },
{ "stoneagehealth.com.au", true },
{ "stonedworms.de", true },
{ "stonefusion.org.uk", true },
{ "stonehammerhead.org", true },
- { "stonewuu.com", true },
+ { "stonehurstcap.com", true },
{ "stony.com", true },
{ "stonystratford.org", true },
- { "stopbreakupnow.org", true },
{ "stopbullying.gov", true },
{ "stopfraud.gov", false },
{ "stopthethyroidmadness.com", true },
{ "storageideas.uk", true },
- { "storageshedsnc.com", true },
{ "stordbatlag.no", true },
{ "storedsafe.com", true },
{ "storeit.co.uk", true },
@@ -33647,17 +35135,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "storycollective.nl", true },
{ "storyland.ie", true },
{ "storysift.news", true },
- { "storytea.top", true },
{ "storytell.com", true },
{ "storytime.hu", true },
{ "stouter.nl", true },
{ "stoxford.com", true },
+ { "stpatrickbayshore.org", true },
{ "straatderzotten.nl", true },
{ "strafensau.de", true },
{ "strahlende-augen.info", true },
{ "straightedgebarbers.ca", true },
{ "strajnar.si", true },
{ "straka.name", true },
+ { "strandschnuppern.de", true },
{ "strangelane.com", true },
{ "strangemusicinc.com", true },
{ "strangemusicinc.net", true },
@@ -33683,7 +35172,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "streamchan.org", true },
{ "streamelements.com", true },
{ "streamkit.gg", true },
- { "streamlineautogroup.com", true },
{ "streampleasure.xyz", true },
{ "street-medics.fr", true },
{ "street-smart-home.de", true },
@@ -33699,7 +35187,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stremio.com", true },
{ "strengthroots.com", true },
{ "stretchmyan.us", true },
- { "stretchpc.com", true },
{ "striata.com", true },
{ "striatadev.com", true },
{ "stricted.net", true },
@@ -33712,8 +35199,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "striped.horse", true },
{ "strivephysmed.com", false },
{ "strm.hu", true },
- { "strming.com", true },
{ "strobeltobias.de", true },
+ { "strobeto.de", true },
{ "strobotti.com", true },
{ "stroeerdigital.de", true },
{ "stroginohelp.ru", true },
@@ -33727,6 +35214,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "strongsalpinesucculents.com", true },
{ "strongtowerpc.com", true },
{ "stroomacties.nl", true },
+ { "strosemausoleum.com", true },
{ "stroseoflima.com", true },
{ "strozik.de", true },
{ "structurally.net", true },
@@ -33735,7 +35223,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "strutta.me", true },
{ "strydom.me.uk", true },
{ "stsolarenerji.com", true },
+ { "ststanstrans.org", true },
{ "stt.wiki", true },
+ { "stthomasbrigantine.org", true },
{ "stuartbell.co.uk", true },
{ "stuarteggerton.com", true },
{ "stuartmorris.id.au", true },
@@ -33743,8 +35233,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stuartmorris.name", true },
{ "stuartmorris.tel", true },
{ "stuarts.xyz", false },
+ { "stuckateur-bruno.de", true },
{ "stuco.co", true },
- { "stucorweb.com", true },
{ "stucydee.nl", true },
{ "studenckiemetody.pl", true },
{ "student-eshop.cz", true },
@@ -33761,15 +35251,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "studienportal.eu", true },
{ "studienservice.de", true },
{ "studiereader.nl", true },
+ { "studio-637.com", true },
{ "studio-architetto.com", true },
{ "studio-fotografico.ru", true },
{ "studio-webdigi.com", true },
+ { "studio44.fit", true },
+ { "studioadevents.com", true },
+ { "studioavvocato24.it", true },
{ "studiobergaminloja.com.br", true },
{ "studiodentisticosanmarco.it", true },
{ "studiodewit.nl", true },
{ "studiogavioli.com", true },
{ "studiograou.com", true },
{ "studiohelder.fr", false },
+ { "studiohomebase.amsterdam", true },
{ "studiokicca.com", true },
{ "studiolegalepaternostro.it", true },
{ "studiomarcella.com", true },
@@ -33786,15 +35281,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "studipro-formation.fr", true },
{ "studipro-marketing.fr", true },
{ "studium.cz", true },
- { "studlan.no", true },
{ "studyin.jp", true },
{ "studyspy.ac.nz", true },
{ "studytactics.com", true },
- { "studytale.com", true },
{ "stuermer.me", true },
{ "stuetzredli.ch", true },
{ "stuffi.fr", true },
{ "stuffie.org", true },
+ { "stuffiwouldbuy.com", true },
{ "stuka-art.de", true },
{ "stulda.cz", false },
{ "stumeta.de", true },
@@ -33802,7 +35296,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stumf.si", true },
{ "stuntmen.xyz", true },
{ "stupendous.net", false },
- { "sturbi.de", true },
{ "stutelage.com", true },
{ "stuttgart-gablenberg.de", true },
{ "stuudium.cloud", true },
@@ -33821,6 +35314,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "styles.pm", true },
{ "stylett.ru", true },
{ "stylewish.me", true },
+ { "styloeart.com", true },
{ "stypr.com", true },
{ "su1ph3r.io", true },
{ "suaudeau.fr", true },
@@ -33830,7 +35324,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "subastasdecarros.net", true },
{ "subculture.live", true },
{ "subdev.org", true },
- { "sublevel.net", false },
{ "sublimebits.com", true },
{ "sublocale.com", true },
{ "submedia.tv", true },
@@ -33846,6 +35339,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "subversive-tech.com", true },
{ "succ.in", true },
{ "succesprojekter.dk", true },
+ { "successdeliv.com", true },
{ "suchmaschinen-werkstatt.de", true },
{ "suckmyan.us", false },
{ "sucretown.net", true },
@@ -33853,6 +35347,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sudaraka.org", true },
{ "sudmotor-occasions.be", true },
{ "sudo-i.net", true },
+ { "sudo.li", true },
{ "sudo.org.au", true },
{ "sudo.ws", true },
{ "sudokian.io", true },
@@ -33886,6 +35381,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suksit.com", true },
{ "sulek.eu", true },
{ "sulian.me", false },
+ { "sullenholland.nl", true },
{ "suluvir.com", true },
{ "sumguy.com", true },
{ "summa-prefis.com", true },
@@ -33895,7 +35391,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sumoatm.com", false },
{ "sumthing.com", true },
{ "sun-leo.co.jp", true },
- { "sun-wellness-online.com.vn", true },
{ "sunboxstore.jp", true },
{ "sunbritetv.com", true },
{ "sunchasercats.com", true },
@@ -33913,7 +35408,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sunlit.cloud", true },
{ "sunn.ie", true },
{ "sunoikisis.org", true },
- { "sunset.im", true },
{ "sunsetwx.com", true },
{ "sunshinesf.org", true },
{ "sunsmartresorts.com", true },
@@ -33923,11 +35417,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suool.net", true },
{ "supa.sexy", true },
{ "supastuds.com", true },
+ { "supcoronado.com", true },
+ { "supedi.com", true },
+ { "supedi.de", true },
+ { "supedio.com", true },
{ "superaficionados.com", true },
{ "superbart.nl", true },
{ "superbdistribute.com", true },
{ "superbouncebouncycastles.com", true },
- { "superbowlkneel.com", true },
{ "supercalorias.com", true },
{ "supercastlesadelaide.com.au", true },
{ "supercastlesbrisbane.com.au", true },
@@ -33937,17 +35434,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supercentenarian.com", true },
{ "supercinebattle.fr", true },
{ "superdaddy.club", true },
+ { "superdroni.com", true },
{ "supereight.net", true },
{ "superguide.com.au", true },
{ "superhappiness.com", true },
{ "superhome.com.au", true },
{ "supermae.pt", true },
- { "supermarx.nl", true },
{ "supermercadosdia.com.ar", true },
{ "supermercato24.it", true },
{ "supermil.ch", true },
{ "supern0va.net", true },
{ "supernaut.info", true },
+ { "supersec.es", true },
{ "supersole.net", true },
{ "supersonnig-festival.de", true },
{ "supersonnigfestival.de", true },
@@ -33961,6 +35459,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supervisionassist.com", true },
{ "superway.es", true },
{ "supeuro.com", true },
+ { "supioka.com", true },
+ { "supmil.net", true },
{ "supplementler.com", true },
{ "supplies24.at", true },
{ "supplies24.es", true },
@@ -33969,15 +35469,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supportdesk.nu", true },
{ "supportericking.org", true },
{ "supportme123.com", true },
+ { "supra.tf", true },
+ { "supracube.com", true },
{ "suprem.biz", true },
{ "suprem.ch", true },
+ { "supremestandards.com", true },
{ "supriville.com.br", true },
{ "sur-v.com", true },
{ "surao.cz", true },
{ "surasak.io", true },
{ "surasak.net", true },
{ "surasak.org", true },
- { "surdam.casa", false },
+ { "surdam.casa", true },
{ "sure-it.de", true },
{ "surefit-oms.com", true },
{ "suretone.co.za", true },
@@ -33992,10 +35495,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suruifu.com", true },
{ "suruifu.tk", true },
{ "survature.com", true },
+ { "surveillance104.com", true },
{ "surveyhealthcare.com", true },
- { "surveyinstrumentsales.com", true },
{ "surveymill.co.uk", true },
- { "survivalistplanet.com", true },
{ "survivalmonkey.com", true },
{ "susanbpilates.co", true },
{ "susanbpilates.com", true },
@@ -34004,12 +35506,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "susanvelez.com", true },
{ "susc.org.uk", true },
{ "sush.us", true },
- { "sushi.roma.it", true },
{ "sushibesteld.nl", true },
{ "sushikatze.de", true },
- { "susoccm.org", true },
{ "susosudon.com", true },
{ "suspension-shop.com", true },
+ { "sussexheart.com", true },
{ "sustainabilityknowledgegroup.com", true },
{ "sustainoss.org", true },
{ "sustsol.com", true },
@@ -34022,11 +35523,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suzi3d.com", true },
{ "suziekovner.com", true },
{ "suzukimarinepress.com", true },
- { "sv-1966-medenbach.de", true },
+ { "sv-1966-medenbach.de", false },
+ { "sv-bachum-bergheim.de", true },
{ "sv-turm-hohenlimburg.de", true },
{ "sv.search.yahoo.com", false },
{ "svager.cz", true },
{ "svallee.fr", false },
+ { "svanstrom.com", true },
+ { "svanstrom.org", true },
{ "svantner.sk", true },
{ "svarnyjunak.cz", true },
{ "svc-sitec.com", true },
@@ -34036,28 +35540,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "svdb.co", false },
{ "svdreamcatcher.com", true },
{ "sveinerik.org", true },
- { "svenbacia.me", true },
{ "svendubbeld.nl", true },
{ "sveneckelmann.de", true },
{ "svenjaundchristian.de", true },
+ { "svenluijten.com", false },
{ "svenmuller.nl", true },
{ "svennd.be", true },
{ "svetandroida.cz", true },
{ "svetlilo.com", true },
- { "svetzitrka.cz", false },
{ "svht.nl", true },
{ "svijet-medija.hr", true },
{ "svinformatica.es", true },
{ "svm-basketball.de", true },
{ "svm-it.eu", true },
{ "svobodnyblog.cz", true },
+ { "svorcikova.cz", true },
{ "sw-servers.net", true },
{ "sw33tp34.com", true },
- { "swagsocial.net", true },
{ "swankism.com", true },
{ "swansdoor.org", true },
{ "swap.gg", true },
{ "swapadoodle.com", true },
+ { "swaptaxdata.com", true },
{ "swarfarm.com", true },
{ "swarlys-server.de", true },
{ "swat4stats.com", true },
@@ -34069,16 +35573,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "swedishhost.se", true },
{ "sweep-me.net", true },
{ "sweepay.ch", true },
+ { "sweet-as.co.uk", true },
{ "sweet-orr.com", true },
{ "sweetair.com", true },
{ "sweetbridge.com", true },
{ "sweetgood.de", true },
+ { "sweethomesnohomishrenovations.com", true },
{ "sweets-mimatsu.com", true },
{ "swehack.org", true },
{ "sweharris.org", true },
{ "swerve-media-testbed-03.co.uk", true },
{ "swetrust.com", true },
{ "swfmax.com", true },
+ { "swiftcashforcars.com.au", true },
{ "swiftpcbassembly.com", true },
{ "swiftqueue.com", true },
{ "swilly.org", true },
@@ -34093,20 +35600,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "swiss-apartments.com", true },
{ "swiss-connection.net", true },
{ "swiss-cyber-experts.ch", true },
+ { "swiss-vanilla.ch", true },
+ { "swiss-vanilla.com", true },
{ "swisscannabis.club", true },
{ "swissdojo.ch", true },
{ "swisselement365.com", true },
{ "swissfreshaircan.ch", true },
- { "swissfreshaircan.com", true },
{ "swissid.ch", true },
{ "swisslinux.org", true },
{ "swisstechassociation.ch", true },
{ "swisstechtalks.ch", true },
+ { "swissvanilla.ch", true },
+ { "swissvanilla.com", true },
{ "switch-trader.com", true },
{ "switch.moe", true },
{ "switcheo.exchange", true },
{ "switcheo.rocks", true },
{ "switzerland-family-office.com", true },
+ { "swivells.com", true },
+ { "swn-nec.de", true },
{ "swordfeng.xyz", true },
{ "swqa.hu", true },
{ "swuosa.org", false },
@@ -34115,10 +35627,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "swyn.net", true },
{ "sx8.ovh", true },
{ "sxistolithos.gr", true },
+ { "sy-anduril.de", true },
{ "sy24.ru", true },
{ "syajvo.if.ua", true },
{ "syamutodon.xyz", true },
- { "syamuwatching.xyz", true },
{ "sycamorememphis.org", true },
{ "sydney-sehen.com", true },
{ "sydney.dating", true },
@@ -34156,12 +35668,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sympraxisconsulting.com", true },
{ "symptome-erklaert.de", true },
{ "synabi.com", true },
+ { "synack.uk", true },
{ "synaptickz.me", true },
{ "synatra.co", true },
{ "sync-it.no", true },
{ "synccentre.com", true },
{ "syncflare.com", true },
+ { "synchrocube.com", true },
{ "synchrolarity.com", true },
+ { "synchronicity.cz", true },
{ "synchronyse.com", true },
{ "syncrise.co.jp", true },
{ "syneart.com", true },
@@ -34178,6 +35693,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "syntheticurinereview.com", true },
{ "synthetik.com", true },
{ "syoier.com", true },
+ { "syplasticsurgery.com", true },
{ "syriatalk.biz", true },
{ "syriatalk.org", true },
{ "sysadm.guru", true },
@@ -34189,7 +35705,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "syslogic.io", true },
{ "sysmike.de", true },
{ "systea.fr", true },
- { "system-m.de", true },
+ { "system-m.de", false },
{ "system.cf", true },
{ "system.is", true },
{ "system12.pl", true },
@@ -34206,17 +35722,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "systemonthego.com", true },
{ "systemreboot.net", true },
{ "systemspace.link", true },
+ { "systemups.com", true },
{ "systemweb.no", true },
{ "systemzeit.info", true },
{ "systoolbox.net", true },
{ "sysystems.cz", true },
{ "syt3.net", true },
- { "sytk.me", true },
{ "syukatsu-net.jp", true },
+ { "syunpay.cn", true },
{ "syy.im", true },
{ "syzygy-tables.info", true },
+ { "sz-ideenlos.de", true },
+ { "sz-lessgym-kamenz.de", true },
{ "szafkirtv.pl", true },
- { "szagun.net", true },
{ "szaloneigly.com", true },
{ "szamitogepdepo.com", true },
{ "szaydon.me", false },
@@ -34252,9 +35770,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taartbesteld.nl", true },
{ "tabarnak.ga", true },
{ "tabernadovinho.com.br", true },
- { "tabhui.com", true },
{ "tabi-news.com", true },
{ "tabi-runrun.com", true },
+ { "tabino.top", true },
{ "tabithawebb.co.uk", true },
{ "tabledusud.be", true },
{ "tabledusud.nl", true },
@@ -34278,31 +35796,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tadu.de", true },
{ "tagabrand.co.uk", true },
{ "tagdocumentary.com", true },
- { "tagesmutter-zwitscherlinge.de", true },
{ "taggedpdf.com", false },
{ "taglioepiega.com", true },
{ "taglioepiega.eu", true },
{ "taglioepiega.it", true },
{ "tagpay.com", true },
+ { "tagungsraum-usedom.de", true },
+ { "tagungsraum-zinnowitz.de", true },
{ "tahavu.com", true },
{ "tahosa.co", true },
{ "tahosalodge.org", true },
- { "tai-in.com", true },
- { "tai-in.net", true },
+ { "tailpuff.net", false },
{ "tails.boum.org", true },
{ "taimane.com", true },
{ "taiphanmem.net", true },
{ "taishon.nagoya", true },
{ "taitmacleod.com", true },
{ "taiwan.dating", true },
+ { "taiwania.capital", true },
+ { "taiwania.vc", true },
+ { "taiwaniacapital.com", true },
+ { "taiwaniacapital.com.tw", true },
+ { "taiwaniacapital.tw", true },
{ "taiwantour.info", true },
{ "taiyouko-hatuden.net", true },
{ "taizegroep.nl", true },
{ "tajper.pl", true },
{ "take1give1.com", false },
+ { "takedownthissite.com", true },
{ "takeitoffline.co.uk", true },
+ { "takemoto-ped.com", true },
{ "taken.pl", true },
- { "takeshifujimoto.com", true },
+ { "takeshifujimoto.com", false },
{ "takk.pl", true },
{ "takkaaaaa.com", true },
{ "takuhai12.com", true },
@@ -34334,18 +35859,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "talroo.com", true },
{ "talun.de", true },
{ "tam-moon.com", true },
+ { "tam-safe.com", true },
+ { "tamaraboutique.com", true },
{ "tamashimx.net", true },
{ "tamasszabo.net", true },
{ "tambre.ee", true },
{ "tamchunho.com", true },
{ "tamindir.com", true },
+ { "tamirson.com", true },
{ "tammy.pro", true },
{ "tampabaybusinesslistings.com", true },
{ "tamposign.fr", true },
- { "tamriel-rebuilt.org", true },
+ { "tanacio.com", true },
{ "tanak3n.xyz", false },
{ "tancredi.nl", true },
{ "tandem-trade.ru", false },
+ { "tandemexhibits.com", true },
{ "tandempartnerships.com", true },
{ "tandilmap.com.ar", true },
{ "tandk.com.vn", true },
@@ -34366,6 +35895,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tannerryan.ca", true },
{ "tannerwilliamson.com", true },
{ "tannerwj.com", true },
+ { "tansuya.jp", true },
{ "tantalos.nl", true },
{ "tantei100.net", true },
{ "tanto259.name", false },
@@ -34375,8 +35905,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tanzhijun.com", true },
{ "tanzo.io", true },
{ "taoburee.com", true },
+ { "taotuba.org", true },
{ "taoways.com", true },
- { "tapakgram.com", true },
{ "taplamvan.net", true },
{ "taplemon.at", true },
{ "taplemon.com", true },
@@ -34385,7 +35915,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taquilla.com", true },
{ "taqun.club", true },
{ "tar-mag.com", true },
- { "tarantul.org.ua", true },
+ { "taranis.re", true },
{ "tarasecurity.co.uk", true },
{ "tarasecurity.com", true },
{ "tarasevich.by", true },
@@ -34424,7 +35954,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tatsidou.gr", true },
{ "tattoo.dating", true },
{ "tattvaayoga.com", true },
+ { "tatuantes.com", true },
{ "taunhanh.us", true },
+ { "tauschen.info", true },
{ "tavolaquadrada.com.br", true },
{ "tavsys.net", true },
{ "tax-guard.com", true },
@@ -34433,6 +35965,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taxi-24std.de", false },
{ "taxi-chamonix.fr", true },
{ "taxi-collectif.ch", true },
+ { "taxi-jihlava.cz", true },
{ "taxi-puck.pl", true },
{ "taxi-waregem.be", true },
{ "taxicollectif.ch", true },
@@ -34441,8 +35974,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taxisafmatosinhos.pt", true },
{ "taxiscollectifs.ch", true },
{ "taxlab.co.nz", true },
+ { "taxpackagesupport.com", true },
{ "taxsquirrel.com", true },
{ "taylorpearson.me", false },
+ { "taylorreaume.com", true },
{ "taylors-castles.co.uk", true },
{ "taylorstauss.com", true },
{ "taysonvodao.fr", true },
@@ -34464,6 +35999,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tcb-b.org", true },
{ "tccmb.com", true },
{ "tcdw.net", true },
+ { "tcdww.cn", true },
{ "tcf.org", true },
{ "tcgforum.pl", true },
{ "tcgrepublic.com", true },
@@ -34475,8 +36011,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tchoukball.ch", true },
{ "tcmwellnessclinic.com", true },
{ "tcnapplications.com", true },
- { "tcptun.com", true },
{ "tcpweb.net", true },
+ { "tcspartner.net", true },
{ "tcvvip.com", true },
{ "tcwis.com", true },
{ "tdchrom.com", true },
@@ -34514,15 +36050,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teamliquidpro.com", true },
{ "teammateworld.com", true },
{ "teammathics.com", true },
- { "teamnetsol.com", true },
{ "teamninjaapp.com", true },
{ "teamnissannorthparts.com", true },
{ "teamnorthgermany.de", true },
{ "teampaddymurphy.ch", true },
{ "teampaddymurphy.ie", true },
+ { "teamsimplythebest.com", true },
{ "teamtouring.net", true },
{ "teamtrack.uk", true },
+ { "teamtravel.co", true },
{ "teamup.com", true },
+ { "teamup.rocks", true },
{ "teamupturn.com", true },
{ "teamupturn.org", true },
{ "teamusec.de", true },
@@ -34536,7 +36074,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tecart-system.de", true },
{ "tecartcrm.de", true },
{ "tech-blogger.net", true },
- { "tech-clips.com", true },
+ { "tech-clips.com", false },
{ "tech-director.ru", true },
{ "tech-essential.com", true },
{ "tech-rat.com", true },
@@ -34548,7 +36086,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "techademy.nl", true },
{ "techamigo.in", true },
{ "techarea.fr", true },
+ { "techaulogy.com", true },
{ "techbelife.com", true },
+ { "techbrawl.org", true },
{ "techbrown.com", true },
{ "techcentric.com", false },
{ "techcracky.com", true },
@@ -34559,6 +36099,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "techdroid.eu", true },
{ "techendeavors.com", true },
{ "techformator.pl", true },
+ { "techglover.com", true },
{ "techhappy.ca", true },
{ "techinet.pl", true },
{ "techinsurance.com", true },
@@ -34570,8 +36111,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "technicabv.nl", true },
{ "technicalbrothers.cf", true },
{ "technicallyeasy.net", true },
- { "technicalsystemsprocessing.com", true },
- { "techniclab.net", true },
{ "technifocal.com", true },
{ "technik-boeckmann.de", true },
{ "technikblase.fm", true },
@@ -34579,15 +36118,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "technoinfogroup.it", true },
{ "technologie-innovation.fr", true },
{ "technologyand.me", true },
+ { "technologyhound.org", true },
{ "technologysi.com", true },
{ "technoparcepsilon.fr", true },
{ "technoscoots.com", true },
{ "technosorcery.net", true },
- { "technoswag.ca", true },
+ { "technospeakco.com", true },
{ "technotonic.co.uk", true },
{ "techold.ru", true },
{ "techorbiter.com", true },
{ "techosmarcelo.com.ar", true },
+ { "techpilipinas.com", true },
{ "techpit.us", true },
{ "techpivot.net", true },
{ "techpoint.org", true },
@@ -34599,7 +36140,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "techtalks.no", true },
{ "techtrader.ai", true },
{ "techtrader.io", true },
- { "techtuts.info", true },
{ "techvalue.gr", true },
{ "techview.link", true },
{ "techviewforum.com", true },
@@ -34616,9 +36156,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tecnodritte.it", true },
{ "tecnogazzetta.it", true },
{ "tecnologiasurbanas.com", true },
- { "tecnologino.com", true },
{ "tecon.co.at", true },
{ "tecyt.com", true },
+ { "ted.do", true },
{ "tedb.us", true },
{ "teddy.ch", true },
{ "teddybradford.com", true },
@@ -34633,7 +36173,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teencounseling.com", true },
{ "teengirl.pub", true },
{ "teensexgo.com", true },
- { "teesypeesy.com", true },
{ "teeworlds-friends.de", true },
{ "tefek.cz", true },
{ "tege-elektronik.hu", true },
@@ -34651,10 +36190,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teknolit.com", true },
{ "tekstschrijvers.net", true },
{ "tektuts.com", true },
+ { "tekuteku.jp", true },
{ "telamon.eu", true },
{ "telamon.fr", true },
{ "tele-alarme.ch", true },
- { "tele-assistance.ch", true },
{ "tele-online.com", true },
{ "telealarme.ch", true },
{ "telealarmevalais.ch", true },
@@ -34697,17 +36236,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tempdomain.ml", true },
{ "template-parks.com", true },
{ "templateinvaders.com", true },
+ { "templates-office.com", true },
{ "templum.com.br", true },
{ "tenable.com.au", true },
+ { "tenberg.com", true },
{ "tenbos.ch", true },
{ "tendance-et-accessoires.com", true },
{ "tendermaster.com.ua", true },
+ { "tenderplan.ru", true },
{ "tenderstem.co.uk", true },
{ "tendomag.com", true },
{ "tenenz.com", true },
{ "tenisservis.eu", true },
{ "tenkofx.com", true },
- { "tenma.pro", true },
{ "tennisadmin.com", true },
{ "tennismindgame.com", true },
{ "tenno.tools", true },
@@ -34715,14 +36256,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tenpolab.com", true },
{ "tenseapp.pl", true },
{ "tenshoku-hanashi.com", true },
- { "tent.io", true },
{ "tenta.com", true },
{ "tentabrowser.com", true },
{ "tentations-voyages.com", false },
{ "tenthousandcoffees.com", true },
- { "tenthpin.com", true },
+ { "tenthpin.com", false },
{ "tenyx.de", true },
{ "tenzer.dk", true },
+ { "teoleonie.com", true },
{ "tepid.org", true },
{ "tepitus.de", true },
{ "teplofom.ru", true },
@@ -34738,6 +36279,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "terlindung.com", true },
{ "termax.me", true },
{ "terminalvelocity.co.nz", true },
+ { "termino.eu", true },
{ "terminsrakning.se", true },
{ "termitemounds.org", true },
{ "termitinitus.org", true },
@@ -34759,6 +36301,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "terrastaffinggroup.com", false },
{ "terraweb.net", true },
{ "terresmagiques.com", true },
+ { "terrorbilly.com", true },
{ "terrty.net", true },
{ "terryjohnsononline.com", true },
{ "tes.com", true },
@@ -34774,20 +36317,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "test-textbooks.com", true },
{ "test.de", true },
{ "test.support", true },
- { "testadren.com", true },
{ "testeveonline.com", true },
{ "testgeomed.ro", true },
- { "testi.info", true },
{ "testomato.com", true },
- { "testosterone-complex.com", true },
{ "testosteronedetective.com", true },
- { "testpornsite.com", true },
{ "testsuite.org", true },
{ "testuje.net", true },
{ "tetedelacourse.ch", true },
{ "teto.nu", true },
{ "tetraetc.com", true },
{ "tetraktus.org", true },
+ { "tetrarch.co", true },
{ "tetsugakunomichi.jp", true },
{ "tetsumaki.net", true },
{ "teufel.dk", true },
@@ -34797,6 +36337,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teva-li.com", true },
{ "tewarilab.co.uk", true },
{ "tewkesburybouncycastles.co.uk", true },
+ { "texashomesandland.com", true },
{ "texasllcpros.com", true },
{ "texaspaintingandgutters.com", true },
{ "texasparkinglotstriping.com", true },
@@ -34819,10 +36360,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "texy.info", true },
{ "teysens.com", true },
{ "teyssedre.ca", true },
- { "tezcam.tk", true },
- { "tf-network.de", true },
{ "tf2b.com", true },
{ "tf2calculator.com", true },
+ { "tf7879.com", true },
{ "tfg-bouncycastles.com", true },
{ "tfle.xyz", true },
{ "tflite.com", true },
@@ -34850,6 +36390,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thaiforest.ch", true },
{ "thaihomecooking.com", true },
{ "thailandpharmacy.net", true },
+ { "thailandpropertylisting.com", true },
{ "thairehabassociation.com", true },
{ "thajskyraj.com", true },
{ "thala.fr", true },
@@ -34869,35 +36410,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thca.ca", true },
{ "thcpbees.co.uk", true },
{ "the-bermanns.com", true },
+ { "the-big-bang-theory.com", true },
{ "the-body-shop.hu", false },
{ "the-fermenter.com", true },
{ "the-gdn.net", true },
{ "the-hemingway-code.de", true },
{ "the-mystery.org", true },
{ "the-nash-education-program.com", true },
+ { "the-pack.nl", true },
{ "the-pcca.org", true },
{ "the-webmaster.com", true },
{ "the-woods.org.uk", true },
{ "the-zenti.de", true },
{ "the2f.de", true },
{ "the3musketeers.biz", true },
+ { "the8rules.co.uk", true },
{ "theactuary.ninja", true },
{ "theadelaideshow.com.au", true },
{ "theadultswiki.com", true },
+ { "theafleo.gq", true },
{ "thealexandertechnique.co.uk", true },
+ { "theallmanteam.com", true },
{ "theankhlife.com", true },
{ "theanticellulitediet.com", true },
{ "theaps.net", true },
+ { "thearcheryguide.com", true },
{ "theastrocoach.com", true },
+ { "theatre-schools.com", true },
{ "thebakers.com.br", true },
{ "thebakery2go.de", true },
{ "thebannerstore.com", true },
+ { "thebarbdemariateam.com", true },
+ { "thebarneystyle.com", true },
{ "thebarrens.nu", true },
{ "thebasebk.org", true },
{ "thebcm.co.uk", true },
+ { "thebeachessportsphysio.com", true },
{ "thebeginningviolinist.com", true },
{ "thebest.ch", true },
{ "thebestfun.co.uk", true },
+ { "thebestofthesprings.com", true },
{ "thebestpersonin.ml", true },
{ "thebestsavingsplan.com", true },
{ "thebigbitch.nl", true },
@@ -34911,6 +36463,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theblackknightsings.com", true },
{ "theblondeabroad.com", true },
{ "theblueroofcottage.ca", true },
+ { "theboatmancapital.com", true },
{ "thebodyprinciple.com", true },
{ "thebonerking.com", true },
{ "thebouncedepartment.co.uk", true },
@@ -34936,40 +36489,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theconcordbridge.azurewebsites.net", true },
{ "thecondobuyers.com", true },
{ "thecookiejar.me", true },
- { "thecozycastle.com", true },
{ "thecrazytravel.com", true },
+ { "thecrescentchildcarecenter.com", true },
{ "thecrew-exchange.com", true },
{ "thecrochetcottage.net", true },
{ "thecuppacakery.co.uk", true },
{ "thecuriouscat.net", true },
- { "thecuriousdev.com", true },
{ "thecurvyfashionista.com", true },
{ "thecustomdroid.com", true },
{ "thedark1337.com", true },
- { "thedebug.life", true },
{ "thederminstitute.com", true },
+ { "thedhs.com", true },
{ "thediamondcenter.com", true },
{ "thediaryofadam.com", true },
{ "thedisc.nl", true },
{ "thediscovine.com", true },
{ "thedocumentrefinery.com", true },
- { "thedom.site", true },
{ "thedreamtravelgroup.co.uk", true },
{ "thedronechart.com", true },
{ "thedutchmarketers.com", true },
{ "theebookkeepers.co.za", true },
{ "theeducationchannel.info", true },
{ "theeducationdirectory.org", true },
+ { "theeffingyogablog.com", true },
{ "theeighthbit.com", true },
{ "theel0ja.ovh", true },
{ "theemasphere.com", true },
{ "thefairieswantmedead.com", true },
{ "thefanimatrix.net", true },
{ "thefashionpolos.com", true },
- { "thefasterweb.com", true },
{ "thefbstalker.com", true },
{ "thefengshuioffice.com", true },
{ "theferrarista.com", true },
+ { "thefilmcolor.com", true },
{ "thefilmphotography.com", true },
{ "theflowerbasketonline.com", true },
{ "theflowershopdeddington.com", true },
@@ -34981,8 +36533,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thefuckingtide.com", true },
{ "thefunfirm.co.uk", true },
{ "thefurnitureco.uk", true },
+ { "thefurniturefamily.com", true },
{ "thegarrowcompany.com", true },
+ { "thegatheringocala.com", true },
{ "thegeekdiary.com", true },
+ { "thegerwingroup.com", true },
{ "thegioinano.com", true },
{ "thegospelforgeeks.org", true },
{ "thegrape.ro", true },
@@ -34994,16 +36549,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thegrs.com", true },
{ "theguitarcompany.nl", true },
{ "thegvoffice.net", true },
- { "thegym.org", true },
{ "thehackerblog.com", true },
{ "thehairrepublic.net", true },
{ "thehairstandard.com", true },
+ { "thehamiltoncoblog.com", true },
{ "thehaxbys.co.uk", true },
{ "thehiddenbay.fi", true },
{ "thehiddenbay.info", true },
{ "thehiddenbay.ws", true },
{ "thehivedesign.org", true },
+ { "thehobincompany.com", true },
{ "thehomeicreate.com", true },
+ { "thehonorguard.org", true },
{ "thehookup.be", true },
{ "thehoryzon.com", true },
{ "thehotfix.net", true },
@@ -35013,11 +36570,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theidiotboard.com", true },
{ "theillustrationstudio.com.au", true },
{ "theimagefile.com", true },
+ { "theimaginationagency.com", true },
{ "theinflatables-ni.co.uk", true },
{ "theinflatablesne.co.uk", true },
{ "theinitium.com", true },
{ "theintercept.com", true },
{ "theinternationalgeekconspiracy.eu", true },
+ { "theitsage.com", false },
+ { "thej0lt.com", true },
{ "thejacksoninstitute.com.au", true },
{ "thekev.in", true },
{ "thekeytobusiness.co.uk", true },
@@ -35030,19 +36590,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thelatedcult.com", true },
{ "thelearningenterprise.co.uk", true },
{ "thelegionshirley.co.uk", true },
+ { "thelifeofmala.com", true },
{ "thelinuxtree.net", true },
{ "thelittlecraft.com", true },
+ { "thelittlejewel.com", true },
{ "thelocals.ru", true },
{ "thelonelyones.co.uk", true },
{ "thelonious.nl", true },
{ "themacoaching.nl", true },
{ "themallards.info", true },
{ "themarshallproject.org", true },
- { "themaster.site", true },
{ "themecraft.studio", true },
{ "themefoxx.com", true },
+ { "themeridianway.com", true },
{ "themetacity.com", true },
+ { "themiddle.co", true },
{ "themigraineinstitute.com", true },
+ { "themilanlife.com", true },
{ "themillerslive.com", true },
{ "themimitoof.fr", true },
{ "themist.cz", true },
@@ -35059,11 +36623,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theneatgadgets.com", true },
{ "thenexwork.com", true },
{ "thenib.com", true },
+ { "theninenine.com", true },
{ "thenocman.com", true },
{ "thenovaclinic.com", true },
{ "thenowheremen.com", true },
{ "theo.me", true },
{ "theobromos.fr", true },
+ { "theoc.co", true },
{ "theocharis.org", true },
{ "theodorahome.co", true },
{ "theodorahome.com.br", true },
@@ -35076,6 +36642,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theory.org", true },
{ "theoscure.eu", true },
{ "theoutline.com", true },
+ { "thepaffy.de", true },
{ "thepartner.co.uk", true },
{ "thepartydoctors.co.uk", true },
{ "thepasteb.in", true },
@@ -35084,6 +36651,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thepaymentscompany.com", true },
{ "thepb.in", true },
{ "thepeninsulaires.com", true },
+ { "thepharm.co.nz", true },
{ "thephonecaseplace.com", true },
{ "thephp.cc", true },
{ "thepiabo.ovh", true },
@@ -35105,6 +36673,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theralino.de", true },
{ "theramo.re", true },
{ "therandombits.com", true },
+ { "therapiemi.ch", true },
{ "therapynotes.com", true },
{ "therapyportal.com", true },
{ "therapysxm.com", true },
@@ -35115,10 +36684,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "therepublicofliverpool.com", true },
{ "theresa-mayer.eu", true },
{ "therevenge.me", true },
- { "therewill.be", true },
+ { "therhetorical.ml", true },
{ "thermalbad-therme.de", true },
{ "thermity.com", true },
{ "thermolamina.nl", true },
+ { "thermorecetas.com", true },
{ "theroks.com", true },
{ "theropes.nyc", true },
{ "theroyalmarinescharity.org.uk", true },
@@ -35132,6 +36702,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thesaurus.net", true },
{ "theschool.jp", true },
{ "thescientists.nl", true },
+ { "thesearchenginepros.com", true },
{ "thesecondsposts.com", false },
{ "theseed.io", true },
{ "theseedbox.xyz", true },
@@ -35157,22 +36728,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thesocialmediacentral.com", true },
{ "thesplashlab.com", true },
{ "thesslstore.com", true },
+ { "thestandingroomrestaurant.com", true },
{ "thestationatwillowgrove.com", true },
- { "thesteins.org", false },
{ "thestoneage.de", true },
{ "thestory.ie", true },
{ "thestoryshack.com", true },
- { "thestral.pro", true },
- { "thestralbot.com", true },
{ "thestrategyagency.com.au", true },
{ "thestudyla.com", true },
{ "thestyle.city", true },
+ { "thestyleforme.com", true },
{ "thesuppercircle.com", true },
{ "theswissbay.ch", true },
{ "thetechnical.me", true },
{ "thetenscrolls.com", true },
{ "thethreepercent.marketing", true },
+ { "thetinylife.com", true },
{ "thetomharling.com", true },
+ { "thetotalemaildelivery.com", true },
{ "thetree.ro", true },
{ "thetrendspotter.net", true },
{ "thetuxkeeper.de", false },
@@ -35180,7 +36752,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theunitedstates.io", true },
{ "thevacweb.com", true },
{ "thevalentineconstitution.com", true },
+ { "thevalueofarchitecture.com", true },
+ { "thevenueofhollywood.com", true },
+ { "theverybusyoffice.co.uk", true },
{ "thevgg.com", false },
+ { "thevisasofoz.com", true },
+ { "thevoya.ga", true },
{ "thewagesroom.co.uk", true },
{ "thewarrencenter.org", true },
{ "thewaxhouse.academy", true },
@@ -35191,7 +36768,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thewebsitemarketingagency.com", true },
{ "thewhitehat.club", true },
{ "thewhitneypaige.com", true },
- { "thewindow.com", true },
{ "thewinstonatlyndhurst.com", true },
{ "thewoodkid.com.au", true },
{ "thewoolroom.com.au", true },
@@ -35199,15 +36775,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theworldexchange.net", true },
{ "theworldexchange.org", true },
{ "theworldsend.eu", true },
+ { "thewp.pro", true },
{ "thexfactorgames.com", true },
{ "thexme.de", true },
- { "theyachtteam.com", true },
{ "theyakshack.co.uk", true },
{ "theyarnhookup.com", false },
{ "theyear199x.org", true },
{ "theyearinpictures.co.uk", true },
{ "theyosh.nl", true },
- { "thezero.org", true },
{ "thezillersathenshotel.com", true },
{ "thiagohersan.com", true },
{ "thibaultwalle.com", true },
@@ -35217,14 +36792,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thierrybasset.ch", true },
{ "thierryhayoz.ch", true },
{ "thijsalders.nl", false },
- { "thijsbekke.nl", true },
{ "thijsslop.nl", true },
{ "thijsvanderveen.net", true },
{ "thinegen.de", true },
- { "thingies.site", true },
{ "thingsimplied.com", true },
{ "thingsof.org", true },
{ "think-asia.org", true },
+ { "think-pink.info", true },
{ "think-positive-watches.de", true },
{ "thinkforwardmedia.com", true },
{ "thinkheaddesign.com", true },
@@ -35237,15 +36811,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thinkrealty.com", true },
{ "thinktux.net", true },
{ "thirdbearsolutions.com", true },
- { "thirdworld.moe", true },
{ "thiry-automobiles.net", true },
+ { "this-server-will-be-the-death-of-me.com", true },
{ "thisbrownman.com", true },
{ "thiscloudiscrap.com", false },
{ "thiscode.works", true },
{ "thisdot.site", true },
{ "thisfreelife.gov", true },
{ "thisisgrey.com", true },
- { "thisishugo.com", true },
+ { "thisishugo.com", false },
{ "thisisthefinalact.com", true },
{ "thisistheserver.com", true },
{ "thisiswhywemom.com", true },
@@ -35261,6 +36835,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thomas-fahle.de", true },
{ "thomas-prior.com", true },
{ "thomas-sammut.com", true },
+ { "thomas-schmittner.de", true },
{ "thomas-suchon.fr", true },
{ "thomas.love", false },
{ "thomasbeckers.be", true },
@@ -35274,14 +36849,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thomasmcfly.com", true },
{ "thomasmeester.nl", false },
{ "thomasmerritt.de", true },
- { "thomassen.sh", false },
+ { "thomassen.sh", true },
{ "thomasstevensmusic.com", true },
{ "thomastimepieces.com.au", true },
{ "thomasverhelst.be", true },
{ "thomasvochten.com", true },
{ "thomaswoo.com", true },
+ { "thompsonfamily.cloud", true },
{ "thomsonscleaning.co.uk", true },
- { "thomspooren.nl", true },
{ "thomwiggers.nl", true },
{ "thor.edu", true },
{ "thor.re", true },
@@ -35291,7 +36866,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thorstenschaefer.name", true },
{ "thosci.com", true },
{ "thotpublicidad.com", true },
- { "thoughtlessleaders.online", true },
+ { "thoughtsynth.com", true },
+ { "thoughtsynth.net", true },
+ { "thoughtsynth.org", true },
{ "thouni.de", true },
{ "thousandgreens.com", true },
{ "thousandoakselectrical.com", true },
@@ -35310,8 +36887,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "threelions.ch", true },
{ "threema.ch", true },
{ "threexxx.ch", true },
+ { "threit.de", true },
{ "threv.net", true },
{ "thriftdiving.com", true },
+ { "thrillernyc.com", true },
{ "thrivesummit.com", true },
{ "thriveta.com", true },
{ "thriveweb.com.au", true },
@@ -35329,7 +36908,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thunraz.com", true },
{ "thusoy.com", true },
{ "thuthuatios.com", true },
- { "thuviensoft.com", true },
+ { "thuybich.com", true },
{ "thw-bernburg.de", true },
{ "thxandbye.de", true },
{ "thycotic.ru", true },
@@ -35343,11 +36922,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tianeptine.com", true },
{ "tianshili.me", true },
{ "tiantangbt.com", true },
+ { "tibicinagarricola.com", true },
{ "tibipg.com", true },
{ "tibovanheule.space", true },
{ "ticfleet.com", true },
{ "tichieru.pw", true },
{ "ticketassist.nl", true },
+ { "ticketdriver.com", true },
{ "ticketluck.com", true },
{ "ticketmates.com.au", true },
{ "ticketmaze.com", true },
@@ -35364,14 +36945,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tickit.ca", true },
{ "tid.jp", true },
{ "tidycustoms.net", true },
+ { "tiekoetter.com", true },
{ "tielectric.ch", true },
{ "tiendavertigo.com", true },
{ "tiens-ib.cz", true },
{ "tier-1-entrepreneur.com", true },
{ "tierarztpraxis-bogenhausen.de", true },
{ "tierarztpraxis-weinert.de", true },
- { "tiernanx.com", true },
- { "tierraprohibida.net", true },
{ "ties.com", true },
{ "tiew.pl", true },
{ "tifan.net", true },
@@ -35381,7 +36961,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tigernode.com", true },
{ "tigernode.net", true },
{ "tiggeriffic.com", true },
- { "tiggi.pw", true },
{ "tiglitub.com", true },
{ "tiihosen.fi", true },
{ "tiim.technology", true },
@@ -35389,9 +36968,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tijo.ch", true },
{ "tik.edu.ee", true },
{ "tik.help", true },
+ { "tiki-god.co.uk", true },
{ "tildes.net", true },
{ "tildesnyder.com", true },
- { "tiledailyshop.com", true },
{ "tilesbay.com", true },
{ "tiliaze.be", true },
{ "tiliaze.biz", true },
@@ -35403,6 +36982,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tillberg.us", true },
{ "tilleysbouncycastles.co.uk", true },
{ "tillseasyscore.com", true },
+ { "tilman.ninja", true },
{ "tilosp.de", true },
{ "tilta.com", true },
{ "tiltedwindmillcrafts.com", true },
@@ -35423,16 +37003,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "timebox.tk", true },
{ "timeglass.de", true },
{ "timeless-photostudio.com", true },
- { "timetab.org", true },
+ { "timelessskincare.co.uk", true },
{ "timetech.io", true },
{ "timetotrade.com", true },
{ "timewasters.nl", true },
+ { "timewk.cn", true },
{ "timfiedler.net", true },
{ "timhieuthuoc.com", true },
+ { "timi-matik.hu", true },
{ "timing.com.br", true },
{ "timjk.de", true },
{ "timmersgems.com", true },
- { "timmy.im", true },
{ "timmyrs.de", true },
{ "timnash.co.uk", true },
{ "timonengelke.de", true },
@@ -35442,8 +37023,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "timsayedmd.com", true },
{ "timtaubert.de", true },
{ "timtelfer.com", true },
+ { "timtj.ca", true },
{ "timvivian.ca", true },
+ { "timweb.ca", true },
{ "timysewyn.be", true },
+ { "tina-zander.de", true },
{ "tina.media", true },
{ "tinastahlschmidt.de", true },
{ "tindallriley.co.uk", true },
@@ -35451,7 +37035,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tinfoilsecurity.com", false },
{ "tinfoleak.com", true },
{ "tinker.career", true },
+ { "tinkerbeast.com", true },
{ "tinkerboard.org", true },
+ { "tinkererstrunk.co.za", true },
{ "tinkertry.com", true },
{ "tinlc.org", true },
{ "tinte24.de", true },
@@ -35469,7 +37055,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tinytownsoftplay.co.uk", true },
{ "tinyvpn.net", true },
{ "tinyvpn.org", true },
- { "tioat.net", true },
{ "tipaki.gr", true },
{ "tipbox.is", true },
{ "tipe.io", true },
@@ -35477,6 +37062,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tipoftheday.tips", true },
{ "tippytoad.com", true },
{ "tipsacademicos.com", true },
+ { "tipstersweb.com", true },
+ { "tipulnagish.co.il", true },
{ "tir-mauperthuis.fr", true },
{ "tir-pistolet-chexbres.ch", true },
{ "tiratuki.games", true },
@@ -35493,6 +37080,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tit-dns.de", true },
{ "tit-mail.de", true },
{ "tit.systems", true },
+ { "titanandco.com", true },
{ "titandirect.co.uk", true },
{ "titanous.com", true },
{ "titansized.com", true },
@@ -35517,14 +37105,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tkat.ch", true },
{ "tkeycoin.com", true },
{ "tkgpm.com", true },
- { "tkirch.de", true },
- { "tkjg.fi", true },
{ "tkn.me", true },
- { "tkn.tokyo", true },
{ "tkusano.jp", true },
{ "tkw01536.de", false },
{ "tl.gg", true },
+ { "tlach.cz", true },
{ "tlca.org", true },
+ { "tlcnet.info", true },
{ "tlehseasyads.com", true },
{ "tleng.de", true },
{ "tlo.xyz", true },
@@ -35536,21 +37123,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tlsrobot.se", true },
{ "tlthings.net", true },
{ "tlumaczenie.com", true },
+ { "tlyphed.net", true },
{ "tlys.de", true },
{ "tmakiguchi.org", true },
+ { "tmas.dk", true },
{ "tmberg.cf", true },
{ "tmberg.ga", true },
{ "tmberg.gq", true },
{ "tmberg.ml", true },
{ "tmberg.tk", true },
{ "tmc.com.mt", true },
- { "tmconnects.com", true },
{ "tmcpromotions.co.uk", true },
{ "tmcreationweb.com", true },
{ "tmdb.biz", true },
- { "tmdc.ddns.net", true },
{ "tmf.ru", true },
- { "tmhr.moe", true },
{ "tmi-products.eu", true },
{ "tmi-produkter.se", true },
{ "tmi.news", true },
@@ -35571,9 +37157,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toad.ga", true },
{ "toast.al", false },
{ "tob-rulez.de", true },
- { "tobacco.gov", true },
{ "tobaccolocker.com", true },
- { "tobedo.net", true },
{ "tober-cpag.de", true },
{ "tobi-mayer.de", true },
{ "tobias-bauer.de", true },
@@ -35597,6 +37181,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tobiemilford.com", true },
{ "tobis-rundfluege.de", true },
{ "tobischo.de", true },
+ { "tobisworld.ch", true },
{ "tobyalden.com", true },
{ "tobyx.com", true },
{ "tobyx.de", true },
@@ -35612,7 +37197,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "todapolitica.com", true },
{ "todaymeow.com", true },
{ "toddfry.com", true },
- { "todocracy.com", true },
+ { "todoereaders.com", true },
{ "todoescine.com", true },
{ "todoist.com", true },
{ "todon.fr", true },
@@ -35628,6 +37213,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "togech.jp", true },
{ "togetter.com", true },
{ "toheb.de", false },
+ { "tohochofu-sportspark.com", true },
{ "tohokinemakan.tk", true },
{ "tokaido-kun.jp", true },
{ "tokaido.com", true },
@@ -35644,6 +37230,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tokke.dk", true },
{ "tokkee.org", true },
{ "tokky.eu", true },
+ { "tokototech.com", true },
{ "tokugai.com", true },
{ "tokumei.co", true },
{ "tokyo-onkyo.jp", true },
@@ -35653,6 +37240,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tokyomakino.com", true },
{ "tokyovipper.com", true },
{ "tolboe.com", true },
+ { "toldositajuba.com", true },
{ "toleressea.fr", true },
{ "toles-sur-mesure.fr", true },
{ "tolle-wolke.de", true },
@@ -35660,9 +37248,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tollfreeproxy.com", true },
{ "tom-geiger.de", true },
{ "tom-kunze.de", true },
- { "tom-maxwell.com", true },
+ { "tom-kurka.cz", true },
{ "tom.horse", true },
{ "tom.je", true },
+ { "tom94.net", true },
{ "tomabrafix.de", true },
{ "tomahawk.ca", true },
{ "tomandmara.com", true },
@@ -35676,19 +37265,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomatenaufdenaugen.de", true },
{ "tomatis-nantes.com", true },
{ "tomaw.net", true },
+ { "tomaz.eu", true },
{ "tombaker.me", true },
- { "tomberek.info", true },
{ "tombrossman.com", true },
{ "tomd.ai", true },
- { "tomdudfield.com", true },
{ "tomend.es", true },
- { "tomershemesh.me", true },
{ "tomfisher.eu", true },
{ "tomharling.uk", true },
{ "tomharris.tech", true },
{ "tomi.cc", true },
{ "tomica.me", true },
- { "tomiler.com", true },
+ { "tomik.cloud", true },
{ "tomjans.nl", true },
{ "tomjn.com", true },
{ "tomjonsson.se", true },
@@ -35701,13 +37288,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomnatt.com", true },
{ "tomo.gr", false },
{ "tomosm.net", true },
- { "tomoyaf.com", true },
{ "tomravinmd.com", true },
{ "tomrei.com", true },
{ "tomrichards.net", true },
{ "toms.ovh", true },
{ "tomschlick.com", true },
{ "tomsdevsn.me", true },
+ { "tomsherakmshope.org", true },
{ "tomspdblog.com", true },
{ "tomssl.com", true },
{ "tomticket.com", true },
@@ -35741,12 +37328,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tonermonster.de", true },
{ "tonex.de", true },
{ "tonex.nl", true },
- { "tonguetechnology.com", true },
+ { "tonigallagherinteriors.com", true },
{ "tonkayagran.com", true },
{ "tonkayagran.ru", true },
{ "tonkinson.com", true },
{ "tonkinwilsonvillenissanparts.com", true },
{ "tonnycat.com", true },
+ { "tono.us", true },
{ "tonsit.com", true },
{ "tonsit.org", true },
{ "tontonnews.net", true },
@@ -35766,17 +37354,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toolsense.io", true },
{ "toom.io", true },
{ "toomy.ddns.net", true },
+ { "toomy.pri.ee", true },
{ "toonpool.com", true },
{ "toonsburgh.com", true },
+ { "toontown.team", true },
+ { "toontownrewritten.com", true },
{ "toool.nl", true },
+ { "toool.nyc", true },
{ "toool.org", true },
{ "tooolroc.org", false },
{ "toot.center", true },
{ "toothdoc.ca", true },
{ "tooti.biz", true },
- { "top-esb.com", true },
{ "top-obaly.cz", true },
{ "top-opakowania.pl", true },
+ { "top-solar-info.de", true },
{ "top5hosting.co.uk", true },
{ "topaxi.ch", true },
{ "topaxi.codes", true },
@@ -35788,32 +37380,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "topclassfun.ie", true },
{ "topdesk.net", true },
{ "topdogsinflatables.co.uk", true },
+ { "topdroneusa.com", true },
{ "topekafoundationpros.com", true },
{ "topeng-emas.com", true },
- { "topesb.com", true },
{ "topeyelashenhancerserumreviews.com", true },
{ "topfivepercent.co.uk", true },
+ { "topgshop.ru", true },
{ "topicdesk.com", true },
{ "topicit.net", true },
{ "topirishcasinos.com", true },
{ "topjobs.ch", true },
- { "topkek.ml", true },
{ "toplist.cz", true },
{ "toplist.eu", true },
{ "topnotepad.com", true },
{ "topodin.com", true },
{ "toponlinecasinosites.co.uk", true },
- { "toppointrea.com", true },
+ { "toppercan.es", true },
{ "topprice.ua", true },
{ "topsailtechnologies.com", true },
{ "topservercccam.tv", true },
{ "topshelfcommercial.com", true },
+ { "topshoptools.com", true },
{ "topsteaks-daun.de", true },
{ "toptec.net.br", true },
{ "toptexture.com", true },
{ "toptheto.com", true },
{ "topvertimai.lt", true },
- { "topwin.la", true },
{ "topwindowcleaners.co.uk", true },
{ "topworktops.co.uk", true },
{ "toracon.org", true },
@@ -35828,6 +37420,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "torn1.se", true },
{ "torngalaxy.com", true },
{ "torogroups.com", true },
+ { "torontoaccesscontrol.com", true },
{ "torontocorporatelimo.services", true },
{ "torontostarts.com", true },
{ "torproject.org", false },
@@ -35853,13 +37446,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toshen.com", true },
{ "toshkov.com", true },
{ "toskana-appartement.de", true },
+ { "tosolini.info", true },
{ "tosostav.cz", true },
{ "tosteberg.se", true },
{ "tostu.de", true },
+ { "tot-radio.com", true },
+ { "totaku.ru", true },
{ "totalbeauty.co.uk", true },
{ "totalbike.com.br", true },
{ "totalcarcheck.co.uk", true },
{ "totalchecklist.com", true },
+ { "totaldragonshop.com.br", true },
+ { "totalemaildelivery.com", true },
{ "totalforcegym.com", true },
{ "totalhomecareinc.com", true },
{ "totallylegitimatehosting.ru", true },
@@ -35876,12 +37474,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "touch.mail.ru", true },
{ "touchoflife.in", true },
{ "touchscreentills.com", true },
- { "touchtable.nl", true },
+ { "touchstone.io", true },
{ "touchweb.fr", true },
{ "touchwoodtrees.com.au", true },
- { "tougetu.com", true },
{ "touhou.ac.cn", true },
- { "touhou.cc", true },
{ "touhou.fm", true },
{ "touhouwiki.net", true },
{ "toujours-actif.com", true },
@@ -35892,6 +37488,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tourispo.com", true },
{ "tournamentmgr.com", true },
{ "tournevis.ch", true },
+ { "toursthatmatter.com", true },
{ "tourtransferitaly.it", true },
{ "tourtrektrip.com", true },
{ "tous-travaux.ch", true },
@@ -35919,6 +37516,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "townandcountryus.com", true },
{ "townhousedevelopments.com.au", true },
{ "townhouseregister.com.au", true },
+ { "townofbridgewater.ca", true },
{ "towsonroofers.com", true },
{ "towywebdesigns.uk", true },
{ "tox21.gov", false },
@@ -35929,6 +37527,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tp-kabushiki.com", true },
{ "tp-kyouyufudousan.com", true },
{ "tp-law.jp", true },
+ { "tpansino.com", true },
{ "tpbproxy.co", true },
{ "tpci.biz", true },
{ "tpidg.us", true },
@@ -35942,7 +37541,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "traas.org", true },
{ "trabajarenremoto.com", true },
{ "trabbel.org", true },
- { "tracalada.cl", true },
{ "trace.guru", true },
{ "trace.moe", true },
{ "traceheatinguk.co.uk", true },
@@ -35952,6 +37550,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "traceroute.link", true },
{ "traceroute.network", true },
{ "traces.ml", true },
+ { "tracetracker.no", true },
{ "tracfinancialservices.com", true },
{ "tracinsurance.com", true },
{ "trackchair.com", true },
@@ -35962,16 +37561,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trackrecordpro.co.uk", true },
{ "tracksa.com.ar", true },
{ "trackyourlogs.com", true },
+ { "tractorfan.nl", true },
{ "tractorpumps.com", true },
{ "trad-n-vo.com", true },
{ "trade-arcade.com", true },
+ { "trade.gov", true },
{ "trade.gov.uk", true },
{ "trade247.exchange", true },
{ "tradeacademy.in", true },
- { "tradedesk.co.za", true },
{ "tradeinvent.co.uk", true },
{ "trademan.ky", true },
{ "traderjoe-cloud.de", true },
+ { "tradernet.ru", true },
+ { "tradeshowfreightservices.com", true },
{ "tradik.com", true },
{ "tradinews.com", true },
{ "tradinews.fr", true },
@@ -35994,8 +37596,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trailforks.com", true },
{ "trainex.org", true },
{ "trainhornforums.com", true },
+ { "trainhorns.us", true },
{ "trainiac.com.au", true },
- { "trainings-handschuhe-test.de", true },
{ "trainline.at", true },
{ "trainline.cn", true },
{ "trainline.com.br", true },
@@ -36016,6 +37618,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trainplaza.net", true },
{ "trainplaza.nl", true },
{ "trainsgoodplanesbad.com", true },
+ { "traintimes.be", true },
+ { "traintimes.ch", true },
+ { "traintimes.dk", true },
+ { "traintimes.fi", true },
+ { "traintimes.ie", true },
+ { "traintimes.it", true },
+ { "traintimes.lu", true },
+ { "traintimes.nl", true },
+ { "traintimes.se", true },
{ "traista.ru", true },
{ "traiteurpapillonevents.be", true },
{ "trajano.net", true },
@@ -36028,16 +37639,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tranceheal.com", true },
{ "tranceheal.de", true },
{ "tranceheal.me", true },
- { "trancendances.fr", true },
{ "trangcongnghe.com", true },
{ "trangell.com", true },
{ "tranglenull.xyz", true },
{ "tranhsondau.net", false },
+ { "tranquillity.se", true },
{ "transacid.de", true },
{ "transappealrights.com", true },
{ "transcend.org", true },
{ "transcontrol.com.ua", true },
- { "transcricentro.pt", true },
{ "transfer.pw", true },
{ "transferio.nl", true },
{ "transfers.do", true },
@@ -36065,16 +37675,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "translate.fedoraproject.org", true },
{ "translate.googleapis.com", true },
{ "translate.stg.fedoraproject.org", true },
- { "translateblender.ru", true },
{ "translatoruk.co.uk", true },
{ "transmarttouring.com", true },
{ "transmisjeonline.pl", true },
+ { "transmitit.pl", true },
+ { "transmute.review", true },
{ "transnexus.com", true },
{ "transoil.co.uk", true },
+ { "transpak-cn.com", true },
{ "transparentcorp.com", true },
{ "transport.eu", true },
{ "transporta.it", true },
{ "transporterlock.com", true },
+ { "transumption.com", true },
{ "transverify.com", true },
{ "trappednerve.org", true },
{ "trashnothing.com", true },
@@ -36082,25 +37695,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "traslocare.roma.it", true },
{ "traslochi-trasporti-facchinaggio.it", true },
{ "trasloco.milano.it", true },
+ { "tratamentoparacelulite.net", true },
{ "trattamenti.biz", true },
{ "trattamento-cotto.it", true },
{ "trauer-beileid.de", true },
{ "traut.cloud", true },
{ "travador.com", true },
{ "travaux-toiture-idf.fr", true },
- { "travel-dealz.de", true },
{ "travel-to-nature.ch", true },
{ "travel.co.za", true },
{ "travel365.it", true },
{ "travelarmenia.org", true },
{ "traveleets.com", true },
+ { "travelemy.com", true },
+ { "travelholicworld.com", true },
{ "travelinsurance.co.nz", true },
{ "travellers.dating", true },
{ "travellovers.fr", true },
- { "travelmyth.ie", true },
+ { "travellsell.com", true },
{ "travelogue.jp", true },
{ "travelphoto.cc", true },
- { "travelpricecheck.com", true },
{ "travelrefund.com", true },
{ "travelshack.com", true },
{ "travi.org", true },
@@ -36112,13 +37726,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trbanka.com", true },
{ "trea98.org", true },
{ "treaslockbox.gov", true },
- { "treatment.org", true },
{ "tree0.xyz", true },
{ "treebaglia.xyz", true },
{ "treehouseresort.nl", true },
{ "trees.chat", true },
{ "treeschat.com", true },
{ "treetopsecurity.com", true },
+ { "treeworkbyjtec.com", true },
{ "trefcon.cz", true },
{ "trefpuntdemeent.nl", true },
{ "treinaweb.com.br", false },
@@ -36129,21 +37743,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trekfriend.com", true },
{ "trekkinglife.de", true },
{ "tremlor.com", true },
- { "tremolosoftware.com", true },
{ "trendkraft.de", true },
+ { "trendreportdeals.com", true },
+ { "trendsettersre.com", true },
{ "trendus.no", true },
{ "trendykids.cz", true },
{ "trenta.io", true },
- { "trentmaydew.com", true },
{ "tresor.it", true },
{ "tresorit.com", true },
{ "tresorsecurity.com", true },
{ "tretail.net", true },
{ "tretkowski.de", true },
+ { "treussart.com", true },
{ "trevsanders.co.uk", true },
{ "trezy.me", true },
{ "trezy.net", true },
{ "trhastane.com", true },
+ { "triage.ai", true },
{ "triage.clinic", true },
{ "triage.com", true },
{ "triage.md", true },
@@ -36151,20 +37767,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trialandsuccess.nl", true },
{ "trialcentralnet.com", true },
{ "trianglecastles.co.uk", true },
- { "trianon.xyz", true },
{ "tribac.de", true },
{ "tribaldos.com", true },
+ { "tribaljusticeandsafety.gov", true },
{ "tribe.rs", true },
{ "tribetrails.com", true },
{ "tribly.de", true },
{ "tribut.de", true },
- { "tributh.cf", true },
{ "tributh.ga", true },
{ "tributh.gq", true },
{ "tributh.ml", true },
- { "tributh.net", true },
{ "tributh.tk", true },
{ "tricefy4.com", true },
+ { "triciaree.com", true },
{ "trident-online.de", true },
{ "tridentflood.com", true },
{ "trietment.com", true },
@@ -36174,6 +37789,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trilliumvacationrentals.ca", true },
{ "triluxds.com", true },
{ "trim-a-slab.com", true },
+ { "trim21.cn", true },
{ "trimage.org", true },
{ "trimarchimanuele.it", true },
{ "trinary.ca", true },
@@ -36192,24 +37808,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tripseats.com", true },
{ "tripsinc.com", true },
{ "trisect.eu", true },
+ { "trish-mcevoy.ru", true },
+ { "triticeaetoolbox.org", true },
+ { "trix360.com", true },
{ "trixexpressweb.nl", true },
{ "triz.co.uk", true },
{ "trkpuls.tk", true },
{ "trockendock.ch", true },
{ "troedel-trolle.de", true },
{ "troedelhannes.at", true },
+ { "troi.de", true },
{ "troianet.com.br", true },
- { "troisdorf-gestalten.de", true },
{ "trollingeffects.org", true },
{ "trollmoa.se", true },
{ "trollope-apollo.com", true },
{ "trommelwirbel.com", true },
{ "tronatic-studio.com", true },
- { "trondelan.no", true },
{ "troomcafe.com", true },
{ "troopaid.info", true },
{ "trophee-discount.com", true },
- { "tropicalserver.com", true },
+ { "tropicalserver.com", false },
{ "trotec.com", true },
{ "trotina.cz", true },
{ "trouble-free-employees.com", true },
@@ -36227,19 +37845,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trucchibellezza.it", true },
{ "truckersmp.com", true },
{ "truckerswereld.nl", false },
+ { "truckgpsreviews.com", true },
{ "truckstop-magazin.de", false },
{ "true-itk.de", true },
+ { "trueassignmenthelp.co.uk", true },
{ "trueblueessentials.com", true },
+ { "trueduality.net", true },
{ "trueinstincts.ca", true },
{ "truekey.com", true },
{ "truentumvet.it", true },
{ "trueproxy.net", true },
{ "truerizm.ru", true },
- { "truessl.shop", true },
{ "truestaradvisors.com", true },
{ "truesteamachievements.com", true },
{ "truestor.com", true },
{ "trueteaching.com", true },
+ { "truetraveller.com", true },
{ "truetrophies.com", true },
{ "trufflemonkey.co.uk", true },
{ "truhlarstvi-fise.cz", true },
@@ -36253,11 +37874,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "truserve.org", true },
{ "trusitio.com", true },
{ "trustcase.com", true },
+ { "trustedbody.com", true },
{ "trustednetworks.nl", true },
+ { "trustednewssites.com", true },
{ "trustfield.ch", true },
{ "trustserv.de", true },
{ "truthmessages.pw", true },
{ "truvisory.com", true },
+ { "truyenfull.vn", true },
{ "trw-reseller.com", true },
{ "try2admin.pw", true },
{ "trybabyschoice.com", true },
@@ -36270,6 +37894,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tryndraze.com", true },
{ "trynta.com", true },
{ "trynta.net", true },
+ { "trypineapple.com", true },
{ "tryretool.com", true },
{ "tryupdates.com", true },
{ "trywesayyes.com", true },
@@ -36283,7 +37908,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tsai.com.de", true },
{ "tsatestprep.com", true },
{ "tschuermans.be", true },
- { "tscqmalawi.info", true },
{ "tsedryk.ca", true },
{ "tsgkc1.com", true },
{ "tsicons.com", true },
@@ -36301,9 +37925,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tsundere.moe", true },
{ "tsung.co", true },
{ "tsurai.work", true },
+ { "tsurimap.com", true },
+ { "tsutsumi-kogyo.jp", true },
{ "tsuyuzakihiroyuki.com", true },
{ "tsv-1894.de", true },
- { "tt.dog", true },
+ { "ttb.gov", true },
{ "ttbonline.gov", true },
{ "ttc-birkenfeld.de", true },
{ "ttcaarberg.ch", true },
@@ -36312,9 +37938,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ttclub.fr", true },
{ "ttdsevaonline.com", true },
{ "ttll.de", true },
- { "ttrade.ga", true },
{ "ttsoft.pl", true },
- { "ttspttsp.com", true },
{ "ttsweb.org", true },
{ "ttt.tt", true },
{ "ttuwiki.ee", true },
@@ -36338,12 +37962,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tucuxi.org", true },
{ "tudiennhakhoa.com", true },
{ "tudorproject.org", true },
+ { "tuev-hessen.de", true },
{ "tufashionista.com", true },
{ "tuffclassified.com", true },
{ "tuffsruffs.se", true },
+ { "tuimprenta.com.ar", true },
{ "tuincentersnaet.be", true },
{ "tuingereedschappen.net", false },
{ "tuitle.com", true },
+ { "tuja.hu", true },
+ { "tulumplayarealestate.com", true },
{ "tumagiri.net", true },
{ "tumblenfun.com", true },
{ "tumedico.es", true },
@@ -36374,11 +38002,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "turl.pl", true },
{ "turnaroundforum.de", true },
{ "turncircles.com", true },
+ { "turnierplanung.com", true },
{ "turnoffthelights.com", true },
{ "turnonsocial.com", true },
{ "turpinpesage.fr", true },
{ "tursiae.org", true },
- { "turtle.ai", true },
+ { "turtle.ai", false },
{ "turtleduckstudios.com", true },
{ "turtlepwr.com", true },
{ "turunculevye.com", true },
@@ -36389,12 +38018,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tuto-craft.com", true },
{ "tutoragency.org", true },
{ "tutorat-tect.org", true },
+ { "tutoref.com", true },
+ { "tutorialehtml.com", true },
{ "tutorialinux.com", true },
{ "tutorme.com", true },
{ "tuts4you.com", true },
{ "tuttimundi.org", true },
{ "tuttoandroid.net", true },
{ "tuvangoicuoc.com", true },
+ { "tuversionplus.com", true },
{ "tuwaner.com", true },
{ "tuxcloud.net", true },
{ "tuxflow.de", false },
@@ -36419,38 +38051,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tvleaks.se", true },
{ "tvlplus.net", true },
{ "tvqc.com", true },
- { "tvs-virtual.cz", true },
{ "tvseries.info", true },
{ "tvsheerenhoek.nl", true },
{ "tvzr.com", true },
{ "tw.search.yahoo.com", false },
{ "twaka.com", true },
+ { "twalter.de", true },
{ "twb.berlin", true },
{ "twd2.me", true },
{ "twd2.net", false },
{ "tweakers.com.au", true },
{ "tweakers.net", true },
- { "tweakersbadge.nl", true },
{ "tweaktown.com", true },
+ { "tweedehandslaptophardenberg.nl", true },
{ "tweetfinity.com", true },
{ "tweetfinityapp.com", true },
{ "twenty71.com", true },
{ "twentymilliseconds.com", true },
- { "twilightcookies.ca", true },
{ "twilleys.com", true },
{ "twincitynissantxparts.com", true },
{ "twinkseason.com", true },
{ "twinztech.com", true },
{ "twisata.com", true },
- { "twistapp.com", true },
- { "twistdevelopment.co.uk", true },
+ { "twisted-brains.org", true },
{ "twistedwave.com", true },
{ "twisto.cz", true },
{ "twisto.pl", true },
{ "twistopay.com", true },
{ "twit-guide.com", true },
{ "twitchplaysleaderboard.info", true },
- { "twittelzie.nl", true },
{ "twitter.com", false },
{ "twitteroauth.com", true },
{ "twizzkidzinflatables.co.uk", true },
@@ -36459,9 +38088,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "twodadsgames.com", true },
{ "twofactorauth.org", true },
{ "twohuo.com", true },
- { "twojfaktum.pl", true },
{ "twopif.net", true },
{ "tworaz.net", true },
+ { "twtimmy.com", true },
{ "twun.io", true },
{ "twuni.org", true },
{ "txcap.org", true },
@@ -36470,6 +38099,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "txlrs.org", true },
{ "txm.pl", true },
{ "txtecho.com", true },
+ { "txurologist.com", true },
{ "tyche.io", true },
{ "tycho.org", true },
{ "tycom.cz", true },
@@ -36485,9 +38115,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "typcn.com", true },
{ "typeblog.net", true },
{ "typecodes.com", true },
- { "typehub.net", true },
{ "typeof.pw", true },
- { "typeonejoe.com", true },
{ "typeria.net", true },
{ "typewolf.com", true },
{ "typewritten.net", true },
@@ -36501,11 +38129,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tyroremotes.nl", true },
{ "tyroremotes.no", true },
{ "tysox.de", true },
+ { "tysye.ca", true },
+ { "tyuo-keibi.co.jp", true },
{ "tzermias.gr", true },
{ "tzifas.com", true },
{ "u-martfoods.com", true },
{ "u-metals.com", true },
- { "u-tokyo.club", true },
{ "u.nu", true },
{ "u0010.com", true },
{ "u0020.com", true },
@@ -36525,6 +38154,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "u5b.de", false },
{ "u5r.nl", true },
{ "ua.search.yahoo.com", false },
+ { "uaci.edu.mx", true },
{ "uae-company-service.com", true },
{ "uangteman.com", true },
{ "uasmi.com", true },
@@ -36532,11 +38162,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uatgootax.ru", false },
{ "ub3rk1tten.com", false },
{ "ubanquity.com", true },
+ { "ubcani.com", true },
{ "uberbkk.com", true },
{ "uberboxen.net", true },
{ "uberestimator.com", true },
{ "ubermail.me", true },
- { "ubertt.org", true },
{ "uberwald.de", true },
{ "uberwald.ws", true },
{ "ubezpieczeniepsa.com", true },
@@ -36547,12 +38177,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ublaboo.org", true },
{ "uborcare.com", true },
{ "ubun.net", true },
+ { "ubuntu18.com", true },
{ "ucac.nz", false },
{ "ucangiller.com", true },
{ "ucch.be", true },
{ "ucfirst.nl", true },
{ "uchargeapp.com", true },
- { "uclf.de", true },
{ "uclip.club", true },
{ "ucppe.org", true },
{ "ucrdatatool.gov", true },
@@ -36564,17 +38194,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "udp.sh", false },
{ "udruga-point.hr", true },
{ "udvoukocek.eu", true },
+ { "ueba1085.jp", true },
{ "ueberdosis.io", true },
{ "ueberwachungspaket.at", true },
{ "uedaviolin.com", true },
{ "uel-thompson-okanagan.ca", true },
{ "ueni.com", true },
- { "uevan.com", true },
{ "uex.im", true },
{ "ufanisi.mx", true },
{ "ufindme.at", true },
{ "ufplanets.com", true },
- { "uggedal.com", true },
+ { "ugb-verlag.de", true },
{ "ugx-mods.com", true },
{ "uhappy1.com", true },
{ "uhappy11.com", true },
@@ -36628,12 +38258,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uhappy99.com", true },
{ "uhasseltodin.be", true },
{ "uhc.gg", true },
+ { "uhlhosting.ch", true },
{ "uhrenlux.de", true },
{ "uhssl.com", true },
{ "uhurl.net", true },
{ "ui8.net", true },
{ "uiberlay.cz", true },
- { "uicchy.com", true },
{ "uiop.link", true },
{ "uiterwijk.org", true },
{ "uitgeverij-deviant.nl", true },
@@ -36655,6 +38285,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ukrigging.net", true },
{ "ukrnet.co.uk", true },
{ "uktw.co.uk", true },
+ { "ukulelejim.com", true },
{ "ukunlocks.com", true },
{ "ukwct.org.uk", true },
{ "ulabox.com", true },
@@ -36662,6 +38293,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ulen.me", true },
{ "ulgc.cz", true },
{ "uli-eckhardt.de", true },
+ { "ulitroyo.com", true },
{ "ullah.se", true },
{ "ulmer-schneesport.de", true },
{ "ulovdomov.cz", true },
@@ -36677,12 +38309,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ultratechlp.com", true },
{ "ultrautoparts.com.au", true },
{ "umanityracing.com", true },
+ { "umbrellaye.online", true },
{ "umbricht.li", true },
{ "umenlisam.com", true },
{ "umisonoda.com", true },
{ "umkmjogja.com", true },
{ "umsapi.com", true },
- { "umsolugar.com.br", true },
{ "umwandeln-online.de", true },
{ "un-framed.co.za", true },
{ "un-zero-un.fr", true },
@@ -36716,7 +38348,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unccelearn.org", true },
{ "uncensoreddns.dk", true },
{ "uncensoreddns.org", true },
- { "undecidable.de", true },
+ { "undeadbrains.de", true },
{ "undeductive.media", true },
{ "undef.in", true },
{ "underbridgeleisure.co.uk", true },
@@ -36725,7 +38357,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "underlined.fr", true },
{ "undernet.uy", false },
{ "underskatten.tk", true },
- { "underwearoffer.com", true },
{ "undo.co.il", true },
{ "undone.me", true },
{ "unece-deta.eu", true },
@@ -36734,15 +38365,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unerosesurlalune.fr", true },
{ "unexpected.nu", true },
{ "unfettered.net", false },
- { "unfuddle.cn", true },
{ "unga.dk", true },
{ "ungeek.eu", true },
- { "ungeek.fr", true },
+ { "ungeek.fr", false },
{ "ungegamere.dk", true },
{ "unghie.com", true },
{ "unicef-karten.at", true },
{ "unicef.pl", true },
- { "unicefcards.at", true },
{ "unicefcards.cz", true },
{ "unicefcards.gr", true },
{ "unicefcards.it", true },
@@ -36767,13 +38396,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uniekglas.nl", true },
{ "unifei.edu.br", true },
{ "uniform-agri.com", true },
- { "uniformebateriasheliar.com.br", true },
{ "unikoingold.com", true },
{ "unila.edu.br", true },
{ "unimbalr.com", true },
- { "uninet.cf", true },
- { "uniojeda.ml", true },
+ { "unioils.la", true },
{ "unionplat.ru", true },
+ { "unionstreetskateboards.com", true },
{ "uniontestprep.com", true },
{ "unipig.de", true },
{ "uniprimebr.com.br", false },
@@ -36803,8 +38431,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "universalcarremote.com", true },
{ "universalpaymentgateway.com", true },
{ "universeinform.com", true },
+ { "universidadvg.edu.mx", true },
{ "univitale.fr", true },
- { "unix.se", true },
{ "unixadm.org", true },
{ "unixapp.ml", true },
{ "unixattic.com", true },
@@ -36817,23 +38445,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unli.xyz", true },
{ "unlocken.nl", true },
{ "unlocktalent.gov", true },
- { "unlogis.ch", true },
{ "unmarkdocs.co", true },
{ "unmonito.red", true },
{ "unn-edu.info", true },
{ "uno-pizza.ru", true },
- { "uno.fi", true },
{ "unobrindes.com.br", true },
{ "unoccupyabq.org", true },
{ "unp.me", true },
{ "unpkg.com", true },
+ { "unpossible.xyz", true },
{ "unpr.dk", true },
{ "unquote.li", true },
{ "unrealircd.org", true },
{ "unrelated.net.au", true },
- { "unripple.com", true },
- { "unruh.fr", true },
- { "uns.vn", true },
{ "unsacsurledos.com", true },
{ "unsee.cc", true },
{ "unseen.is", true },
@@ -36847,19 +38471,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unterfrankenclan.de", true },
{ "unterhaltungsbox.com", true },
{ "unternehmer-radio.de", true },
- { "unterschicht.tv", true },
+ { "unternehmerrat-hagen.de", true },
{ "untethereddog.com", true },
{ "unun.fi", true },
{ "unusualhatclub.com", true },
- { "unveiledgnosis.com", true },
{ "unworthy.ml", true },
{ "unx.dk", true },
{ "unxicdellum.cat", true },
- { "upay.ru", true },
+ { "upandrunningtutorials.com", true },
{ "upbad.com", true },
{ "upbeatrobot.com", true },
{ "upbeatrobot.eu", true },
{ "upd.jp", true },
+ { "updatehub.io", true },
{ "upgamerengine.com", true },
{ "upgamerengine.com.br", true },
{ "upgamerengine.net", true },
@@ -36887,9 +38511,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uptimed.com", true },
{ "uptimenotguaranteed.com", true },
{ "uptodateinteriors.com", true },
- { "uptogood.org", true },
{ "uptoon.jp", true },
{ "uptownlocators.com", true },
+ { "uptownvintagecafe.com", true },
{ "uptrends.com", true },
{ "uptrends.de", true },
{ "uptrex.co.uk", true },
@@ -36917,10 +38541,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "urbanmelbourne.info", true },
{ "urbannewsservice.com", true },
{ "urbansparrow.in", true },
- { "urbansurvival.com", true },
{ "urbanwaters.gov", false },
{ "urbanwildlifealliance.org", false },
{ "urbexdk.nl", true },
+ { "urbizoroofing.com", true },
{ "urcentral.com", true },
{ "urcentral.net", true },
{ "urcentral.nl", true },
@@ -36945,6 +38569,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "urspringer.de", true },
{ "ursuslibris.hu", true },
{ "urth.org", true },
+ { "uruguay-experience.com", true },
{ "urukproject.org", true },
{ "usa-greencard.eu", true },
{ "usaa.com", false },
@@ -36960,18 +38585,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "usajobs.gov", true },
{ "usakitchensandflooring.com", true },
{ "usalearning.gov", true },
+ { "usaseanconnect.gov", true },
{ "usastaffing.gov", true },
{ "usbcraft.com", true },
{ "usbevents.co.uk", true },
{ "usbr.gov", true },
{ "uscloud.nl", true },
{ "usd.de", true },
+ { "usdoj.gov", true },
{ "usds.gov", true },
{ "use.be", true },
{ "usebean.com", true },
- { "usedoor.jp", true },
{ "usedu.us", true },
{ "user-re.com", true },
+ { "userra.gov", true },
{ "usetypo3.com", true },
{ "useyourloaf.com", true },
{ "usgande.com", true },
@@ -36981,19 +38608,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "usipvd.ch", true },
{ "usitcolours.bg", true },
{ "uskaria.com", true },
- { "usleep.net", true },
{ "usmint.gov", true },
{ "usninosnikrcni.eu", true },
{ "usnti.com", true },
+ { "usphs.gov", true },
{ "uspsoig.gov", true },
{ "ussm.gov", false },
+ { "ussst.org", true },
{ "ussuka.com", true },
{ "ust.space", true },
{ "ustensiles-cuisine.boutique", true },
{ "ustr.gov", false },
+ { "ustugov.kiev.ua", true },
+ { "ustugova.kiev.ua", true },
+ { "usu.org.ua", true },
{ "usualbeings.com", true },
{ "usuan.net", true },
- { "usuluddin.ga", true },
{ "usweme.info", true },
{ "uswitch.com", true },
{ "ut-addicted.com", true },
@@ -37001,13 +38631,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "utahlocal.net", true },
{ "utahtravelcenter.com", true },
{ "utazas-nyaralas.info", true },
+ { "utazine.com", true },
{ "utcast-mate.com", true },
{ "utdsgda.com", true },
- { "uteam.it", true },
{ "utepils.de", true },
{ "utgifter.no", true },
{ "utilia.tools", true },
- { "utilio.nl", true },
{ "utilitarian.com", true },
{ "utilitarian.net", true },
{ "utilitarian.org", true },
@@ -37017,12 +38646,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "utilitronium.com", true },
{ "utilityapi.com", true },
{ "utilityreport.eu", true },
- { "utitreatment.com", true },
{ "utonia.ch", true },
{ "utopicestudios.com", true },
{ "utox.io", true },
{ "utterberry.io", true },
- { "utube.tw", true },
{ "utugnn.ru", true },
{ "utw.me", true },
{ "utwente.io", true },
@@ -37032,7 +38659,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uv.uy", true },
{ "uvenuse.cz", true },
{ "uvocorp.com", true },
- { "uvolejniku.cz", true },
{ "uw1008.com", true },
{ "uw2333.com", true },
{ "uwac.co.uk", false },
@@ -37047,7 +38673,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uz.search.yahoo.com", false },
{ "uzaymedya.com.tr", true },
{ "uziregister.nl", true },
+ { "uzpirksana.lv", true },
{ "uzsvm.cz", true },
+ { "uzzamari.com", true },
{ "v-d-p.net", true },
{ "v-spin.cz", true },
{ "v-tek.fi", true },
@@ -37059,8 +38687,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "v2ray6.com", true },
{ "v2ray66.com", true },
{ "v2ray666.com", true },
+ { "v4s.ro", true },
{ "va-reitartikel.com", true },
- { "va.gov", false },
{ "vacationsbyvip.com", true },
{ "vaccines.gov", true },
{ "vacuumpump.co.id", true },
@@ -37081,11 +38709,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vakantienet.nl", true },
{ "vakuutuskanava.fi", true },
{ "valasi.eu", true },
- { "valbonne-consulting.com", true },
{ "valcano-krd.ru", true },
{ "valcano.ru", true },
+ { "valcansell.com", true },
{ "valcardiesel.com", true },
+ { "valek.net", true },
{ "valenciadevops.me", true },
+ { "valentin-dederer.de", true },
{ "valentin-ochs.de", true },
{ "valentin-sundermann.de", true },
{ "valentin.ml", true },
@@ -37106,6 +38736,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "valis.sx", true },
{ "valkohattu.fi", true },
{ "valkor.pro", true },
+ { "valkova.net", true },
{ "vallei-veluwe.nl", true },
{ "valleyautofair.com", true },
{ "valleyautoloan.com", true },
@@ -37118,13 +38749,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "valorem-tax.ch", true },
{ "valoremtax.ch", true },
{ "valoremtax.com", true },
+ { "valorizofficial.com", true },
{ "valshamar.is", true },
{ "valsk.is", false },
{ "valskis.lt", true },
{ "valtlai.fi", true },
{ "valtoaho.com", true },
{ "valudo.st", true },
+ { "valuechain.me", true },
{ "valueng.com", true },
+ { "valueofblog.com", true },
{ "valueseed.net", true },
{ "vampyrium.net", false },
{ "van11y.net", true },
@@ -37146,8 +38780,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vandorenscholars.org", true },
{ "vandyhacks.org", true },
{ "vaneigenkweek.be", true },
+ { "vanessarivas.com", true },
+ { "vaneurology.com", true },
{ "vangoghcoaching.nl", true },
- { "vanhaos.com", true },
{ "vanhoudt-usedcars.be", true },
{ "vanhoutte.be", false },
{ "vanhove.biz", true },
@@ -37157,7 +38792,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vanohaker.ru", true },
{ "vanouwerkerk.net", true },
{ "vantagepointpreneed.com", true },
- { "vantaio.com", true },
{ "vante.me", true },
{ "vantien.com", true },
{ "vantru.is", true },
@@ -37171,6 +38805,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vapesense.co.uk", true },
{ "vapesupplies.com.au", true },
{ "vaphone.co", true },
+ { "vapingdaily.com", true },
{ "vapor.cloud", false },
{ "vapordepot.jp", true },
{ "varalwamp.com", true },
@@ -37182,12 +38817,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "variable.agency", false },
{ "variag-group.ru", true },
{ "variag-montazh.ru", true },
+ { "variando.fi", true },
{ "varicoseveinssolution.com", true },
{ "varimedoma.com", true },
+ { "variomedia.de", true },
+ { "varonahairrestoration.com", true },
+ { "varshasookt.com", true },
{ "varshathacker.com", true },
{ "varunagw.com", true },
{ "varunpriolkar.com", true },
{ "varvy.com", true },
+ { "varyrentacar.com", true },
{ "varztupasaulis.com", true },
{ "varztupasaulis.eu", true },
{ "varztupasaulis.lt", true },
@@ -37199,6 +38839,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vasileruscior.ro", true },
{ "vasilikieleftheriou.com", true },
{ "vaskulitis-info.de", true },
+ { "vasp.group", true },
{ "vasports.com.au", true },
{ "vasyharan.com", true },
{ "vat-eu.com", true },
@@ -37206,20 +38847,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vatelecom.dk", true },
{ "vati.pw", true },
{ "vats.im", true },
- { "vatsalyagoel.com", true },
- { "vatsim-uk.co.uk", true },
- { "vatsim.uk", true },
{ "vattulainen.fi", true },
+ { "vauceri.hr", true },
{ "vaud-fleurs.ch", true },
{ "vaughanrisher.com", true },
{ "vault21.net", true },
{ "vault81.de", true },
- { "vaultproject.io", true },
+ { "vaultproject.io", false },
{ "vaur.fr", true },
{ "vavel.com", true },
{ "vawebsite.co", true },
{ "vawlt.io", true },
- { "vawltstorage.com", true },
+ { "vawomenshealth.com", true },
{ "vaygren.com", true },
{ "vazue.com", true },
{ "vb-oa.co.uk", true },
@@ -37233,7 +38872,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vc.gg", true },
{ "vcam.org", true },
{ "vccmurah.net", true },
- { "vcelin-na-doliku.cz", true },
{ "vcf.gov", true },
{ "vcientertainment.com", false },
{ "vcmi.download", true },
@@ -37244,7 +38882,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vcti.cloud", true },
{ "vd42.net", true },
{ "vda.li", true },
- { "vdanker.net", true },
{ "vdbongard.com", true },
{ "vdcomp.cz", false },
{ "vdemuzere.be", true },
@@ -37263,18 +38900,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vectorwish.com", true },
{ "vedma-praktik.com", true },
{ "veg-leiden.nl", true },
+ { "vegalengd.com", true },
{ "vegalitarian.org", true },
- { "vegane-proteine.com", true },
{ "veganforum.org", true },
{ "veganism.co.uk", true },
{ "veganism.com", true },
{ "veganmasterrace.com", true },
+ { "vegasluxuryestates.com", true },
{ "vegepa.com", true },
{ "vegetariantokyo.net", true },
{ "veggie-treff.de", true },
{ "vegguide.org", true },
{ "veii.de", true },
{ "veil-framework.com", true },
+ { "veincenterbrintonlake.com", true },
{ "veit.zone", true },
{ "veke.fi", true },
{ "velen.io", true },
@@ -37287,6 +38926,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vendreacheter.be", true },
{ "vendreacheter.net", true },
{ "vendserve.eu", true },
+ { "veneerssandiego.com", true },
{ "venenum.org", true },
{ "venev.name", true },
{ "venje.pro", true },
@@ -37303,6 +38943,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "venturum.eu", true },
{ "venturum.net", true },
{ "ventzke.com", true },
+ { "venuedriver.com", true },
{ "ver.ma", true },
{ "vera.bg", true },
{ "veramagazine.jp", true },
@@ -37313,6 +38954,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verdict.gg", true },
{ "verduccies.com", true },
{ "verein-kiekin.de", true },
+ { "verein-zur-pflege-der-geselligkeit.de", true },
{ "vereinlandwege.de", true },
{ "vereinscheck.de", true },
{ "verfassungsklage.at", true },
@@ -37320,21 +38962,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vergeaccessories.com", true },
{ "vergelijksimonly.nl", true },
{ "vergessen.cn", true },
- { "verhovs.ky", true },
+ { "verhovs.ky", false },
{ "verifalia.com", true },
{ "verifiedjoseph.com", true },
{ "verifiny.com", true },
{ "verifyos.com", true },
{ "verifyyourip.com", true },
+ { "veriny.tf", true },
+ { "verios.com.br", true },
{ "veritafineviolins.com", true },
{ "veritas-data.de", true },
+ { "veritasinvestmentwealth.com", true },
{ "verizonconnect.com", false },
{ "verizonguidelines.com", true },
{ "verliebt-in-bw.de", true },
{ "verliebt-in-niedersachsen.de", true },
{ "vermeerdealers.com", true },
{ "vermiliontaxiservice.com", true },
- { "vermogeninkaart.nl", true },
{ "vermuetje.nl", true },
{ "vernaeve-usedcars.be", true },
{ "vernonatvclub.ca", true },
@@ -37362,29 +39006,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vertner.net", true },
{ "vertrieb-strategie.de", true },
{ "verustracking.com", true },
+ { "verwandlung.org", true },
{ "verwayen.com", true },
{ "very-kids.fr", true },
{ "veryapt.com", true },
{ "veryimportantusers.com", true },
{ "verymelon.de", true },
{ "verymetal.nl", true },
+ { "verzekeringencambier.be", true },
{ "verzekeringsacties.nl", true },
{ "verzick.com", true },
{ "vescudero.net", true },
{ "veslosada.com", true },
{ "vespacascadia.com", true },
+ { "vestd.com", true },
{ "vestingbar.nl", true },
{ "vestum.ru", true },
{ "vetbits.com", true },
{ "veterinarian-hospital.com", true },
{ "veterinario.roma.it", true },
{ "veterinarioaltea.com", true },
+ { "veterinary-colleges.com", true },
+ { "veteriner.name.tr", true },
{ "vetforum.co", true },
{ "vetinte.eu", true },
{ "vetofish.com", true },
{ "vets.gov", true },
{ "veverusak.cz", true },
{ "vfdworld.com", true },
+ { "vfmc.vic.gov.au", true },
{ "vfn-nrw.de", true },
{ "vgchat.us", true },
{ "vgerak.com", true },
@@ -37392,8 +39042,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vgorcum.com", true },
{ "vgropp.de", true },
{ "vh.net", true },
+ { "vhrca.com", true },
{ "vhummel.nl", true },
{ "vi.photo", true },
+ { "via-shire-krug.ru", true },
{ "viacdn.org", true },
{ "viafinance.cz", false },
{ "viaggio-in-cina.it", true },
@@ -37403,14 +39055,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "viaje-a-china.com", true },
{ "vialorran.com", true },
{ "viaprinto.de", true },
- { "viato.fr", true },
+ { "viasinc.com", false },
{ "vibrant-america.com", true },
+ { "vibrato1-kutikomi.com", true },
{ "vicentee.com", true },
{ "vichiya.com", true },
- { "vician.cz", false },
+ { "vician.cz", true },
+ { "vicianovi.cz", true },
{ "vicicode.com", true },
{ "viciousflora.com", true },
{ "vicjuwelen-annelore.be", true },
+ { "vickshomes.com", true },
{ "victora.com", true },
{ "victorcanera.com", true },
{ "victordiaz.me", true },
@@ -37440,12 +39095,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vida-it.com", true },
{ "vida.es", true },
{ "vidadu.com", true },
+ { "vidarity.com", true },
{ "vidbooster.com", true },
{ "vidcloud.xyz", true },
{ "vide-greniers.org", false },
+ { "videobola.win", true },
{ "videogamesartwork.com", true },
{ "videokaufmann.at", true },
- { "videoload.co", true },
{ "videomail.io", true },
{ "videosdiversosdatv.com", true },
{ "videoseyredin.net", true },
@@ -37465,19 +39121,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vierpfeile.de", true },
{ "vierpluseins.wtf", true },
{ "vietnamese.dating", true },
+ { "vietnamguide.co.kr", true },
{ "vietnamhost.vn", false },
{ "vietnamluxurytravelagency.com", true },
+ { "vietnamphotoblog.com", true },
{ "vietnamwomenveterans.org", true },
- { "vieux.pro", true },
{ "viewbook.com", true },
{ "viewey.com", true },
+ { "viewing.nyc", true },
{ "viewmyrecords.com", true },
{ "viga.me", true },
{ "vigenebio.com", true },
{ "vigilantnow.com", true },
{ "vigliano.ovh", true },
{ "vignoblesdeletat.ch", true },
- { "vigo-krankenversicherung.de", true },
{ "vigo-tarife.de", true },
{ "vigour.us", true },
{ "vigoxatelier.tech", true },
@@ -37497,9 +39154,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vikings.net", true },
{ "vikodek.com", true },
{ "viktorprevaric.eu", true },
- { "vilabiamodas.com.br", true },
+ { "vila-eden.cz", true },
{ "viljatori.fi", true },
- { "villa-anna-cilento.de", true },
+ { "villa-eden.cz", true },
{ "villa-gockel.de", true },
{ "villa-romantica-zillertal.at", true },
{ "villafiore.com.br", true },
@@ -37516,22 +39173,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "villenvinkit.com", true },
{ "villerez.fr", true },
{ "villesalonen.fi", true },
+ { "villu.ga", true },
{ "viltsu.net", true },
{ "vima.ch", true },
{ "vimeo.com", true },
{ "vinagro.sk", true },
+ { "vinahost.vn", true },
{ "vinarstvimodryhrozen.cz", true },
{ "vincentcox.com", false },
+ { "vincentoshana.com", true },
{ "vincentpancol.com", true },
+ { "vincentswordpress.nl", true },
{ "vincible.space", true },
{ "vinciconps4.it", true },
{ "vincitraining.com", true },
- { "vineright.com", true },
{ "vinetech.co.nz", true },
- { "vinihk.com", true },
+ { "vingt.me", true },
{ "vinilosdecorativos.net", true },
+ { "vinistas.com", true },
{ "vinner.com.au", true },
{ "vinnie.gq", true },
+ { "vinnyandchristina.com", true },
+ { "vinnyvidivici.com", true },
+ { "vinokurov.tk", true },
{ "vinolli.de", true },
{ "vinovum.net", true },
{ "vinsation.com", true },
@@ -37544,20 +39208,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vintagesouthernpicks.com", true },
{ "vintagetrailerbuyers.com", true },
{ "vintazh.net", true },
- { "vinticom.ch", false },
+ { "vinticom.ch", true },
{ "vintock.com", true },
{ "vinyculture.com", true },
{ "vinzite.com", true },
{ "violin4fun.nl", true },
{ "vionicbeach.com", true },
{ "vionicshoes.com", true },
- { "vip-9649.com", true },
{ "vip4553.com", true },
{ "vip8522.com", true },
- { "vip9649.com", true },
- { "vipesball.cc", true },
- { "vipesball.info", true },
- { "vipesball.me", true },
{ "vipi.es", true },
{ "viptamin.eu", true },
{ "viptamol.com", true },
@@ -37565,7 +39224,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vir-tec.eu", true },
{ "vir2.me", true },
{ "viral32111.com", true },
- { "viralboombox.xyz", true },
{ "viralpop.it", true },
{ "viralsouls.in", true },
{ "viralsv.com", true },
@@ -37573,20 +39231,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "virial.de", true },
{ "viridis-milites.cz", true },
{ "virtit.fr", true },
+ { "virtual.hk", true },
{ "virtualcloud.ddns.net", true },
{ "virtualcommodities.org", true },
{ "virtuality4d.com", true },
{ "virtuallifestyle.nl", true },
{ "virtualmt2.pl", true },
{ "virtualsanity.com", true },
+ { "virtualspeech.com", true },
{ "virtualvaults.com", true },
{ "virtubox.net", true },
+ { "virtusaero.com", true },
{ "virvum.ch", true },
{ "visaexpert.co.za", true },
{ "visalist.io", true },
{ "visalogy.com", true },
{ "visaop.com", true },
{ "visapourailleurs.fr", true },
+ { "visasofoz.com", true },
{ "visaya.com.co", true },
{ "viscoelastico.com.br", true },
{ "viscopic.com", true },
@@ -37596,7 +39258,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "visikom.de", true },
{ "visioflux-premium.com", true },
{ "visionarymedia.nl", true },
- { "visiondigitalsog.com", true },
{ "visiondirectionaldrilling.com", true },
{ "visionexpress.com", true },
{ "visionexpress.ie", true },
@@ -37604,6 +39265,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "visionless.me", false },
{ "visionnissancanandaiguaparts.com", true },
{ "visit-montenegro.com", true },
+ { "visitbeulah.com", true },
{ "visitcambridgeshirefens.org", true },
{ "visitkangaroovalley.com.au", true },
{ "visitmaine.com", true },
@@ -37615,6 +39277,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vistec-support.de", true },
{ "vistodeturista.com.br", true },
{ "visual-cockpit.com", true },
+ { "visual-concept.net", true },
{ "visualdrone.co", true },
{ "visualgrafix.com.mx", true },
{ "visualideas.org", true },
@@ -37622,7 +39285,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "visualmasters.nl", true },
{ "visudira.com", true },
{ "vitahook.pw", true },
- { "vital-tel.co.uk", true },
{ "vitalamin.com", true },
{ "vitalamin.de", true },
{ "vitalismaatjes.nl", true },
@@ -37633,6 +39295,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vitamineproteine.com", true },
{ "vitaminler.com", true },
{ "vitastic.nl", true },
+ { "vitavie.nl", true },
{ "viteoscrm.ch", true },
{ "vitkausk.as", true },
{ "vitkutny.cz", true },
@@ -37646,8 +39309,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vivaldi.club", true },
{ "vivaldi.com", true },
{ "vivamusic.es", true },
+ { "vivanosports.com.br", false },
{ "vivatv.com.tw", true },
{ "vivendi.de", true },
+ { "viveport.com", true },
{ "vivianmaier.cn", true },
{ "vivid-academy.com", true },
{ "vividinflatables.co.uk", true },
@@ -37656,6 +39321,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vivirenelmundo.com", true },
{ "vivo.sx", true },
{ "vivoitaliankitchen.com", true },
+ { "vivy.com", true },
{ "vixrapedia.org", true },
{ "viyf.org", true },
{ "vizards.cc", true },
@@ -37672,10 +39338,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vk4wip.org.au", true },
{ "vkb-remont.ru", true },
{ "vkennke.org", true },
+ { "vkino.com", false },
{ "vkirichenko.name", true },
{ "vkox.com", true },
{ "vksportphoto.com", true },
{ "vladislavstoyanov.com", true },
+ { "vlakem.net", true },
+ { "vlakjebak.nl", true },
{ "vlastimilburian.cz", true },
{ "vleesbesteld.nl", true },
{ "vleij.com", true },
@@ -37686,7 +39355,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vloeck.de", true },
{ "vlora.city", true },
{ "vlovgr.se", true },
- { "vlsk.eu", true },
{ "vlsm.se", true },
{ "vlvvl.com", true },
{ "vm-0.com", true },
@@ -37711,33 +39379,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vocalik.com", true },
{ "vocaloid.my", true },
{ "vocalviews.com", true },
+ { "vochuys.nl", true },
{ "vocus.aero", true },
{ "vocustest.aero", true },
{ "vodb.me", true },
{ "vodb.org", true },
- { "vodpay.com", true },
- { "vodpay.net", true },
- { "vodpay.org", true },
+ { "vodicak.info", true },
{ "vogelbus.ch", true },
{ "vogler.name", true },
{ "vogue.cz", true },
{ "voice-of-design.com", true },
{ "voicu.ch", true },
{ "void-zero.com", true },
- { "voidark.com", true },
{ "voidcore.org", true },
{ "voidma.in", true },
{ "voidpay.com", true },
- { "voidpay.net", true },
- { "voidpay.org", true },
{ "voidptr.eu", true },
- { "voids.org", true },
{ "voidx.top", true },
{ "voidzehn.com", true },
+ { "voipdigit.nl", true },
{ "voipsun.com", true },
{ "vojtechpavelka.cz", true },
- { "vokalsystem.com", true },
- { "vokativy.cz", false },
+ { "vokativy.cz", true },
{ "vokeapp.com", true },
{ "vokurka.net", true },
{ "volcanconcretos.com", true },
@@ -37752,34 +39415,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "volker-gropp.de", true },
{ "volkergropp.de", true },
{ "volkerwesselstransfer.nl", false },
- { "volkerwesselswave.nl", false },
{ "volksvorschlagpmar.ch", true },
{ "vollans.id.au", true },
+ { "vollmondstollen.de", true },
{ "voloevents.com", true },
{ "volta.io", true },
+ { "voltahurt.pl", true },
{ "volto.io", true },
{ "volunteeringmatters.org.uk", true },
{ "vomitb.in", true },
- { "von-lien-aluprofile.de", true },
- { "von-lien-dachrinnen.de", true },
- { "von-lien-lichtplatten.de", true },
- { "von-lien-profilbleche.de", true },
{ "vonauw.com", true },
{ "vonborstelboerner.de", true },
{ "vonniehudson.com", true },
{ "vonski.pl", true },
{ "voodoochile.at", true },
{ "vop.li", true },
- { "vorkbaard.nl", true },
{ "vorlage-musterbriefe.de", true },
{ "vorlage-mustervertrag.de", true },
{ "vorlagen-geburtstagsgruesse.de", true },
{ "vorlicek.de", true },
{ "vorlif.org", true },
+ { "vorm2.com", true },
{ "vorodevops.com", true },
{ "vorte.ga", true },
{ "vos-fleurs.ch", true },
{ "vos-fleurs.com", true },
+ { "vos-systems.com", true },
+ { "vos-systems.es", true },
+ { "vos-systems.eu", true },
+ { "vos-systems.net", true },
+ { "vos-systems.org", true },
{ "vosgym.jp", true },
{ "vosky.fr", true },
{ "vosn.de", true },
@@ -37793,6 +39458,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "votockova.cz", true },
{ "votoot.com", true },
{ "votre-site-internet.ch", true },
+ { "vouchinsurance.sg", true },
{ "vovladikavkaze.ru", true },
{ "voxfilmeonline.net", true },
{ "voxml.com", true },
@@ -37800,6 +39466,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "voya.ga", true },
{ "voyage-martinique.fr", true },
{ "voyageforum.com", true },
+ { "voyageofyume.com", true },
{ "voyagesaufildespages.be", true },
{ "voyageschine.com", true },
{ "voyagesdetective.fr", true },
@@ -37808,13 +39475,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vpn.ht", true },
{ "vpnpro.com", true },
{ "vpnservice.nl", true },
+ { "vpntech.net", true },
{ "vpsboard.com", true },
{ "vpsdream.dk", true },
- { "vpsou.com", false },
+ { "vpsou.com", true },
{ "vpsport.ch", true },
+ { "vpsvz.cloud", true },
{ "vpsvz.net", true },
{ "vrandopulo.ru", true },
- { "vranjske.co.rs", true },
{ "vrcholovka.cz", true },
{ "vreaulafacultate.ro", true },
{ "vreeman.com", true },
@@ -37826,11 +39494,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vrjetpackgame.com", true },
{ "vroedvrouwella.be", true },
{ "vrsystem.com.br", true },
- { "vrtouring.org", true },
+ { "vrtak-cz.net", true },
{ "vscale.io", true },
+ { "vsd.sk", true },
{ "vsean.net", true },
+ { "vseomedia.com", true },
{ "vserver-preis-vergleich.de", true },
{ "vsesrazu-raiffeisen.ru", true },
+ { "vsestiralnie.com", true },
{ "vsestoki.com", true },
{ "vsl-defi.ch", true },
{ "vssnederland.nl", true },
@@ -37839,13 +39510,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vsx.ch", true },
{ "vtaxi.se", true },
{ "vtipe-vylez.cz", true },
- { "vtuber-schedule.info", true },
+ { "vtuber.art", true },
{ "vuakhuyenmai.vn", true },
{ "vubey.yt", true },
{ "vuilelakens.be", true },
{ "vuljespaarpot.nl", true },
{ "vullriede-multimedia.de", true },
- { "vulndetect.org", false },
+ { "vulndetect.com", true },
+ { "vulndetect.org", true },
{ "vulnerability.ch", true },
{ "vulners.com", true },
{ "vulns.sexy", true },
@@ -37864,7 +39536,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vvoip.org.uk", true },
{ "vvw-8522.com", true },
{ "vvzero.com", true },
- { "vw-touranclub.cz", true },
{ "vwbusje.com", true },
{ "vwfsrentacar.co.uk", true },
{ "vwhcare.com", true },
@@ -37875,7 +39546,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vx.hn", true },
{ "vxst.org", true },
{ "vxstream-sandbox.com", true },
- { "vxz.me", true },
{ "vybeministry.org", true },
{ "vyber-odhadce.cz", true },
{ "vyberodhadce.cz", true },
@@ -37883,7 +39553,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vysko.cz", true },
{ "vyskocil.eu", true },
{ "vyvygen.org", true },
- { "vyzner.cz", true },
{ "vzce.cn", true },
{ "vzis.org", true },
{ "vztekloun.cz", true },
@@ -37892,29 +39561,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "w-w-auto.de", true },
{ "w.wiki", true },
{ "w1221.com", true },
+ { "w1n73r.de", true },
{ "w2n.me", true },
{ "w3ctag.org", true },
{ "w3n.org", true },
+ { "w4.no", true },
{ "w4eg.de", true },
{ "w4nvu.org", true },
{ "w50.co.uk", true },
{ "w5gfe.org", true },
{ "w7k.de", true },
{ "w84.it", true },
+ { "w889889.com", true },
+ { "w889889.net", true },
{ "w95.pw", true },
{ "wa-stromerzeuger.de", true },
{ "wa.me", true },
{ "waaw.tv", true },
{ "wabatam.com", true },
- { "wachter.biz", true },
+ { "wacky-science.com", true },
{ "wacky.one", true },
{ "wadidi.com", true },
{ "wadsworth.gallery", true },
- { "wadvisor.com", true },
{ "waelisch.de", true },
{ "waf.ninja", true },
{ "waf.sexy", true },
- { "wafa4hw.com", true },
{ "wafelland.be", true },
{ "waffle.at", false },
{ "wafuton.com", true },
@@ -37924,28 +39595,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wahlman.org", true },
{ "wahrnehmungswelt.de", true },
{ "wahrnehmungswelten.de", true },
- { "wai-in.net", true },
{ "waidfrau.de", true },
{ "waidu.de", true },
{ "waifu-technologies.com", true },
{ "waifu-technologies.moe", true },
{ "waigel.org", true },
{ "waikatowebdesigners.com", true },
- { "wail.net", true },
{ "wains.be", false },
{ "wait.jp", true },
{ "waiterwheels.com", true },
{ "waits.io", true },
{ "wajtc.com", true },
{ "wak.io", true },
- { "waka-mono.com", true },
- { "waka168.com", true },
- { "waka168.net", true },
- { "waka88.com", true },
- { "waka88.net", true },
{ "wakamiyasumiyosi.com", true },
{ "wakandasun.com", true },
{ "wakatime.com", true },
+ { "wakhanyeza.org", true },
{ "wakiminblog.com", true },
{ "wala-floor.de", true },
{ "waldvogel.family", true },
@@ -37990,7 +39655,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wanda.ch", true },
{ "wandelreizen.eu", true },
{ "wander.al", true },
- { "wandercue.com", true },
{ "wandervoll.ch", true },
{ "wanderzoom.co", true },
{ "wandystan.eu", true },
@@ -38007,6 +39671,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wangql.net", true },
{ "wangqr.tk", true },
{ "wangtanzhang.com", true },
+ { "wangwill.me", true },
{ "wangyubao.cn", true },
{ "wangyue.blog", true },
{ "wangzuan168.cc", true },
@@ -38019,15 +39684,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wanybug.tk", true },
{ "wanzenbug.xyz", true },
{ "waonui.io", true },
+ { "wapa.gov", true },
+ { "wapking.co", true },
+ { "wapoolandspa.com", true },
{ "wardow.com", true },
{ "warebouncycastles.co.uk", true },
{ "warekit.io", true },
{ "warenits.at", false },
- { "warenmedia.com", true },
{ "wargameexclusive.com", true },
{ "warhaggis.com", true },
- { "warmestwishes.ca", true },
{ "warmservers.com", true },
+ { "waroengkoe-shop.com", true },
{ "warofelements.de", true },
{ "warp-radio.com", true },
{ "warp-radio.net", true },
@@ -38041,6 +39708,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waschpark-hantschel.de", true },
{ "wasema.com", true },
{ "wasfestes.de", true },
+ { "wasfuereintheater.com", true },
+ { "washandfun.com", true },
{ "washingtonregisteredagent.io", true },
{ "washingtonviews.com", true },
{ "wasi-net.de", true },
@@ -38051,6 +39720,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wassibauer.com", true },
{ "wastrel.ch", true },
{ "watch-wiki.org", true },
+ { "watchcom.org.za", true },
{ "watchface.watch", true },
{ "watchfreeonline.co.uk", true },
{ "watchinventory.com", true },
@@ -38079,21 +39749,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waukeect.com", true },
{ "wave-ola.es", true },
{ "wave.is", true },
+ { "wave.red", true },
+ { "wavengine.com", true },
{ "waverlysecuritycameras.com", true },
{ "wavesboardshop.com", true },
- { "wavesoftime.com", true },
{ "waveum.com", true },
{ "wawak.pl", true },
{ "waxdramatic.com", true },
{ "waycraze.com", true },
{ "wayfair.de", true },
+ { "wayfairertravel.com", true },
{ "wayohoo.com", true },
{ "wayohoo.net", true },
{ "waytt.cf", true },
{ "waze.com", true },
{ "wb256.com", true },
+ { "wba.or.at", true },
{ "wbci.us", false },
{ "wbg-vs.de", true },
+ { "wblautomotive.com", true },
{ "wblinks.com", true },
{ "wbt-solutions.ch", true },
{ "wbt-solutions.net", true },
@@ -38105,6 +39779,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wby.tw", true },
{ "wcbook.ru", false },
{ "wcn.life", false },
+ { "wcrca.org", true },
+ { "wcsi.com", true },
{ "wcwcg.net", true },
{ "wd627.com", true },
{ "wd976.com", true },
@@ -38113,29 +39789,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wdic.org", true },
{ "wdodelta.nl", true },
{ "wdol.gov", true },
- { "wdrl.info", true },
{ "wdt.cz", false },
{ "we-bb.com", true },
{ "we-run-linux.de", true },
{ "we-use-linux.de", true },
{ "weacceptbitcoin.gr", true },
- { "wealthcentral.com.au", true },
{ "wealthprojector.com", true },
{ "wealthprojector.com.au", true },
{ "wealthreport.com.au", true },
{ "wearandcare.net", true },
{ "weare1inspirit.com", true },
{ "wearebfi.co.uk", true },
- { "wearedisneyland.com", true },
{ "wearegenki.com", true },
{ "wearehackerone.com", true },
{ "wearepapermill.co", true },
{ "wearesouthafricans.com", true },
{ "wearvr.com", true },
{ "weaspireusa.com", true },
- { "weather-and-climate.com", false },
+ { "weather-schools.com", true },
+ { "weather.gov", true },
{ "weathermyway.rocks", true },
- { "web-adminy.co.uk", true },
{ "web-art.cz", true },
{ "web-design.co.il", true },
{ "web-dl.cc", true },
@@ -38147,6 +39820,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "web-redacteuren.nl", true },
{ "web-siena.it", true },
{ "web-smart.com", true },
+ { "web-thinker.ru", true },
{ "web-wave.jp", true },
{ "web.bzh", true },
{ "web.cc", false },
@@ -38167,10 +39841,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webandmore.de", false },
{ "webappky.cz", true },
{ "webartex.ru", true },
- { "webauthority.co.uk", true },
{ "webbiz.co.uk", true },
{ "webbson.net", false },
{ "webcamtoy.com", true },
+ { "webcasinos.com", true },
{ "webcatchers.nl", true },
{ "webcatechism.com", false },
{ "webclimbers.ch", true },
@@ -38189,6 +39863,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webdesignplayground.io", true },
{ "webdesignsandiego.com", true },
{ "webdevops.io", true },
+ { "webdevxp.com", true },
{ "webdl.org", true },
{ "webdollarvpn.io", true },
{ "webduck.nl", false },
@@ -38206,7 +39881,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webfilings.appspot.com", true },
{ "webfixers.nl", true },
{ "webfox.com.br", true },
- { "webgap.io", true },
+ { "webgap.io", false },
{ "webgarten.ch", true },
{ "webgears.com", true },
{ "webharvest.gov", true },
@@ -38214,6 +39889,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webhostingshop.ca", true },
{ "webhostingzzp.nl", false },
{ "webhostplan.info", true },
+ { "webies.ro", true },
{ "webinnovation.ie", true },
{ "webjobposting.com", true },
{ "webkef.com", true },
@@ -38222,7 +39898,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weblate.org", true },
{ "webliberty.ru", true },
{ "webline.ch", true },
- { "weblogic.pl", true },
{ "weblogzwolle.nl", true },
{ "webmail.gigahost.dk", false },
{ "webmail.info", false },
@@ -38236,6 +39911,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webministeriet.net", true },
{ "webmotelli.fi", true },
{ "webnames.ca", true },
+ { "webnetforce.net", true },
{ "webnexty.com", true },
{ "webogram.org", false },
{ "webpinoytambayan.net", true },
@@ -38267,9 +39943,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "websitesdallas.com", true },
{ "websiteservice.pro", true },
{ "webslake.com", true },
+ { "websmartmedia.co.uk", true },
{ "websouthdesign.com", true },
{ "webspiral.jp", true },
{ "webspire.tech", true },
+ { "webstart.nl", true },
{ "webstijlen.nl", true },
{ "webstore.be", false },
{ "webstu.be", true },
@@ -38282,26 +39960,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webtorrent.io", true },
{ "webtrh.cz", true },
{ "webtropia.com", false },
+ { "webutils.io", true },
{ "webvisum.de", true },
{ "webwednesday.nl", true },
{ "webwinkelexploitatie.nl", true },
{ "webwinkelwestland.nl", true },
{ "webwit.nl", true },
- { "webwolf.co.za", true },
{ "webworkshop.ltd", true },
+ { "webxr.today", true },
{ "webyazilimankara.com", true },
+ { "webz.one", true },
{ "wechatify.com", true },
{ "wecleanbins.com", true },
{ "wecobble.com", true },
- { "weddingalbumsdesign.com", true },
{ "weddingfantasy.ru", true },
{ "weddingofficiantwilmington.com", true },
{ "weddingsbynoon.co.uk", true },
{ "weddywood.ru", false },
+ { "wedg.uk", true },
{ "wedos.com", true },
{ "weeblr.com", true },
{ "weeblrpress.com", true },
- { "weedcircles.com", true },
{ "weedlife.com", true },
{ "weednews.co", true },
{ "weedupdate.com", true },
@@ -38317,15 +39996,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weekvandemediawijsheid.nl", true },
{ "weemake.fr", true },
{ "weemakers.fr", true },
+ { "weems.fr", true },
{ "weepycat.com", true },
{ "weerda.fr", true },
+ { "weerstationgiethoorn.nl", true },
{ "weerstatistieken.nl", true },
{ "wefinanceinc.com", true },
{ "wefitboilers.com", true },
{ "weforgood.org.tw", true },
{ "wegethitched.co.uk", true },
{ "weggeweest.nl", true },
- { "wegner.no", true },
+ { "wegonnagetsued.org", true },
{ "wegotcookies.com", true },
{ "wegrzynek.org", true },
{ "wegvielfalt.de", true },
@@ -38339,12 +40020,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weiling.clinic", true },
{ "weils.net", true },
{ "weiltoast.de", true },
- { "weimaraner.com.br", true },
{ "weiming.ddns.net", true },
{ "weimz.com", true },
{ "wein.cc", true },
{ "wein.co.kr", true },
{ "weinbergerlawgroup.com", true },
+ { "weingaertner-it.de", true },
{ "weinundsein.com", true },
{ "weirdesigns.com", true },
{ "weisse-liste.de", true },
@@ -38359,6 +40040,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "welcome26.ch", true },
{ "welcomehelp.de", true },
{ "welcomescuba.com", true },
+ { "welcometoscottsdalehomes.com", true },
{ "weld.io", true },
{ "weldwp.com", true },
{ "wella-download-center.de", true },
@@ -38368,6 +40050,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wellensteyn.ru", true },
{ "weller.pm", true },
{ "wellist.com", true },
+ { "wellness-bonbon.de", true },
{ "wellness-gutschein.de", true },
{ "wellnesscheck.net", true },
{ "wellsolveit.com", false },
@@ -38377,18 +40060,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "welteneroberer.de", true },
{ "weltengilde.de", true },
{ "weltenhueter.de", true },
+ { "weltmeister.de", true },
{ "weltverschwoerung.de", true },
{ "welzijnkoggenland.nl", true },
+ { "wem.hr", true },
{ "wemakebookkeepingeasy.com", true },
{ "wemakemenus.com", true },
{ "wemakeonlinereviews.com", true },
{ "wemovemountains.co.uk", true },
- { "wen-in.com", true },
- { "wen-in.net", true },
- { "wenchieh.com", true },
+ { "wendigo.pl", true },
{ "wendlberger.net", true },
{ "wendu.me", true },
- { "wener.me", false },
{ "wenger-shop.ch", true },
{ "wenjs.me", true },
{ "wensing-und-koenig.de", true },
@@ -38405,7 +40087,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "werbefotografie-leitner.de", true },
{ "werbewelt-tv.de", true },
{ "werbezentrum-stiebler.de", true },
- { "werbik.at", true },
+ { "werbik.at", false },
{ "werehub.org", true },
{ "wereldkoffie.eu", true },
{ "wereoutthere.nl", true },
@@ -38421,10 +40103,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "werkgroeppaleisparkhetloo.nl", true },
{ "werkinc.de", true },
{ "werkkrew.xyz", true },
+ { "werkslimreisslim.nl", true },
{ "werkstattkinder.de", true },
{ "werktor.com", true },
{ "werktor.net", true },
- { "werkz.io", true },
{ "wermeester.com", true },
{ "werner-ema.de", true },
{ "werpo.com.ar", true },
@@ -38452,9 +40134,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "westcode.de", true },
{ "westcountrystalking.com", true },
{ "westendwifi.net", true },
+ { "westernfrontierins.com", true },
+ { "westernpadermatologist.com", true },
{ "westeros.hu", true },
- { "westhighlandwhiteterrier.com.br", true },
{ "westhillselectrical.com", true },
+ { "westlaketire.pt", true },
{ "westlakevillageelectric.com", true },
{ "westlakevillageelectrical.com", true },
{ "westlakevillageelectrician.com", true },
@@ -38468,10 +40152,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "westmeadapartments.com.au", true },
{ "westmidlandsbouncycastlehire.co.uk", true },
{ "westmidlandsinflatables.co.uk", true },
+ { "westside-pediatrics.com", true },
{ "westsuburbanbank.com", true },
{ "westwood.no", true },
+ { "wesupportthebadge.org", true },
+ { "weswitch4u.com", true },
{ "wetofu.top", true },
+ { "wetrepublic.com", true },
+ { "wettanbieter-vergleich.de", true },
+ { "wette.de", true },
+ { "wetten.eu", true },
{ "wevenues.com", true },
+ { "wewin88.com", true },
+ { "wewin88.net", true },
{ "wewitro.de", true },
{ "wewitro.net", true },
{ "wexfordbouncycastles.ie", true },
@@ -38491,9 +40184,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wf-trial-hrd.appspot.com", true },
{ "wfh.ovh", true },
{ "wfh.se", true },
+ { "wfl.ro", true },
{ "wft-portfolio.nl", true },
{ "wg-steubenstrasse.de", true },
{ "wg3k.us", false },
+ { "wgcp.com", true },
{ "wgom.org", true },
{ "wgplatform.co.uk", true },
{ "wgraphics.ru", true },
@@ -38501,7 +40196,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wh-guide.de", true },
{ "what-wood.servehttp.com", true },
{ "whatagreatwebsite.net", true },
- { "whatanime.ga", true },
{ "whatarepatentsfor.com", true },
{ "whatclinic.co.uk", true },
{ "whatclinic.com", true },
@@ -38518,10 +40212,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whatsahoy.com", true },
{ "whatsapp.com", true },
{ "whatsmychaincert.com", true },
- { "whatsupdeco.com", true },
{ "whatsupgold.com.tw", true },
{ "whatsupoutdoor.com", true },
{ "whatthingsweigh.com", true },
+ { "whattominingrigrentals.com", true },
{ "whatusb.com", true },
{ "whatwebcando.today", true },
{ "whatwg.org", true },
@@ -38535,6 +40229,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "when.fm", false },
{ "where2trip.com", true },
{ "whereiszakir.com", true },
+ { "wheresbuzz.com.au", true },
{ "whexit.nl", true },
{ "whey-protein.ch", true },
{ "whiletrue.run", true },
@@ -38542,11 +40237,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whing.org", true },
{ "whipnic.com", true },
{ "whirlpool-luboss.de", true },
+ { "whirlpool.net.au", true },
{ "whisky-circle.info", true },
+ { "whiskygentle.men", true },
{ "whiskynerd.ca", true },
{ "whisp.ly", false },
{ "whispeer.de", true },
- { "whisperinghoperanch.org", true },
{ "whisperlab.org", true },
{ "whistleb.com", true },
{ "whistleblower.gov", true },
@@ -38559,16 +40255,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whitealps.fr", true },
{ "whitealps.net", true },
{ "whitebear.cloud", true },
+ { "whitebirdclinic.org", true },
{ "whitefm.ch", true },
{ "whitehathackers.com.br", true },
+ { "whitehats.nl", true },
{ "whitehouse.gov", true },
+ { "whitehouseconferenceonaging.gov", true },
{ "whitehousedrugpolicy.gov", true },
- { "whiteink.com", false },
+ { "whiteink.com", true },
{ "whitejaguars.com", true },
+ { "whiteknightsafelockinc.com", true },
{ "whitelabelcashback.nl", true },
{ "whitelabeltickets.com", false },
{ "whitepharmacy.co.uk", true },
- { "whiteready.it", true },
{ "whiterose.goip.de", true },
{ "whiteshadowimperium.com", true },
{ "whitewebhosting.co.za", true },
@@ -38584,16 +40283,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whnpa.org", true },
{ "who-calledme.com", true },
{ "who.pm", true },
+ { "whoami.io", true },
{ "whoasome.com", true },
{ "whocalld.com", true },
{ "whocalled.us", true },
{ "whocybered.me", true },
{ "whoimg.com", true },
- { "whoiscuter.ml", true },
- { "whoiscutest.ml", true },
+ { "whoisdhh.com", true },
{ "whoisthenightking.com", true },
{ "whoiswp.com", true },
- { "wholelotofbounce.co.uk", false },
{ "wholesalecbd.com", true },
{ "wholesomeharvestbread.com", false },
{ "whonix.org", true },
@@ -38608,6 +40306,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whynohttps.com", true },
{ "whyopencomputing.ch", true },
{ "whyopencomputing.com", true },
+ { "whysoslow.co.uk", true },
{ "whytls.com", true },
{ "whyworldhot.com", true },
{ "whyz1722.tk", true },
@@ -38652,6 +40351,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wikibulz.com", true },
{ "wikidata.org", true },
{ "wikidsystems.com", false },
+ { "wikihow.com", true },
+ { "wikihow.com.tr", true },
+ { "wikihow.cz", true },
+ { "wikihow.fitness", true },
+ { "wikihow.it", true },
+ { "wikihow.jp", true },
+ { "wikihow.life", true },
+ { "wikihow.mom", true },
+ { "wikihow.pet", true },
+ { "wikihow.tech", true },
+ { "wikihow.vn", true },
{ "wikileaks.com", true },
{ "wikileaks.org", true },
{ "wikimedia.org", true },
@@ -38659,6 +40369,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wikimilk.org", true },
{ "wikinews.org", true },
{ "wikipedia.org", true },
+ { "wikipiedi.it", true },
{ "wikiquote.org", true },
{ "wikisource.org", true },
{ "wikiversity.org", true },
@@ -38668,7 +40379,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wiktoriaslife.com", true },
{ "wilane.org", true },
{ "wilcodeboer.me", true },
- { "wild-turtles.com", false },
+ { "wild-turtles.com", true },
{ "wildboaratvparts.com", true },
{ "wilddogdesign.co.uk", true },
{ "wildewood.ca", true },
@@ -38690,12 +40401,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "willfarrell.ca", true },
{ "willi-graf-gymnasium.de", true },
{ "willi-graf-os.de", true },
- { "william.gg", true },
{ "williamboulton.co.uk", true },
{ "williamfeely.info", true },
{ "williamjohngauthier.net", true },
+ { "williamle.com", true },
{ "williamscomposer.com", true },
- { "williamsflintlocks.com", true },
+ { "williamsonshore.com", true },
{ "williamsportmortgages.com", true },
{ "williamsroom.com", true },
{ "williamtm.com", true },
@@ -38724,19 +40435,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wind.moe", true },
{ "winddan.nz", true },
{ "windelnkaufen24.de", true },
+ { "windforme.com", true },
{ "windowcleaningexperts.net", true },
- { "windows10insider.com", true },
{ "windowslatest.com", true },
{ "windowsnerd.com", true },
+ { "windowsnoticias.com", true },
{ "windowwellcovers.com", true },
- { "windrunner.se", true },
{ "windscribe.com", true },
{ "windsock-app.com", true },
{ "windsorite.ca", true },
{ "windsorspi.com", true },
{ "windycitydubfest.com", true },
{ "wine-tapa.com", true },
- { "wineonthewall.com", true },
+ { "wineparis.com", true },
{ "winepress.org", true },
{ "winghill.com", true },
{ "wingify.com", true },
@@ -38745,26 +40456,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "winkelcentrumputten.nl", true },
{ "winmodels.org", true },
{ "winmodels.ru", true },
+ { "winningattitudeawards.org", true },
{ "winphonemetro.com", true },
- { "winportal.cz", false },
{ "winsome.world", true },
{ "wint.global", true },
+ { "winter-auszeit.de", true },
{ "winter-elektro.de", true },
{ "winter.engineering", false },
{ "winterbergwebcams.com", true },
{ "wintercam.nl", true },
{ "winterfeldt.de", true },
+ { "winterhavenobgyn.com", true },
{ "winterhillbank.com", true },
{ "wintermeyer-consulting.de", true },
{ "wintermeyer.de", true },
{ "winterschoen.nl", true },
{ "wintodoor.com", true },
+ { "winwares.com", true },
{ "winwitharval.co.uk", true },
{ "wipswiss.ch", true },
{ "wir-bewegen.sh", true },
{ "wircon-int.net", true },
{ "wire.com", true },
- { "wireframesoftware.com", true },
{ "wireheading.com", true },
{ "wireshark.org", true },
{ "wiretime.de", true },
@@ -38778,7 +40491,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wisal.org", true },
{ "wischu.com", true },
{ "wisedog.eu", true },
- { "wiseflat.com", true },
+ { "wishlist.net", true },
{ "wispapp.com", false },
{ "wisper.net.au", true },
{ "wispsuperfoods.com", true },
@@ -38790,13 +40503,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "withextraveg.net", true },
{ "withgoogle.com", true },
{ "withinsecurity.com", true },
- { "withlocals.com", true },
{ "withyoutube.com", true },
{ "witneywaterpolo.org.uk", true },
{ "witt-international.co.uk", true },
{ "witte.cloud", true },
+ { "wittu.fi", true },
{ "witway.nl", false },
{ "wivoc.nl", true },
+ { "wixguide.co", true },
{ "wiz.at", true },
{ "wiz.biz", true },
{ "wiz.farm", true },
@@ -38836,10 +40550,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wo-ist-elvira.net", true },
{ "wo2forum.nl", true },
{ "woah.how", true },
- { "woaiuhd.com", true },
{ "wobble.ninja", true },
{ "wobblywotnotz.co.uk", true },
- { "wochennummern.de", true },
{ "wodboss.com", true },
{ "wodinaz.com", true },
{ "wodka-division.de", true },
@@ -38852,7 +40564,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wohlpa.de", true },
{ "wohnbegleitung.ch", true },
{ "wohnsitz-ausland.com", true },
- { "woi.vision", true },
{ "wokinghammotorhomes.com", true },
{ "wolfachtal-alpaka.de", true },
{ "wolfarth.info", true },
@@ -38862,12 +40573,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wolfgang-kerschbaumer.at", true },
{ "wolfgang-kerschbaumer.com", true },
{ "wolfgang-kerschbaumer.net", true },
- { "wolfgang-kloke.de", true },
{ "wolfgang-ziegler.com", true },
{ "wolfie.ovh", false },
{ "wolfsden.cz", true },
+ { "wolfvideoproductions.com", true },
{ "wolfwings.us", true },
{ "wolfy1339.com", false },
+ { "wolke7.wtf", true },
{ "wolkoopjes.nl", true },
{ "wollgredel.de", true },
{ "wollongongbaptist.hopto.org", true },
@@ -38881,9 +40593,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "women-only.net", true },
{ "womensalespros.com", true },
{ "womenshairlossproject.com", true },
+ { "womensmedassoc.com", true },
{ "wonabo.com", true },
{ "wonder.com.mx", false },
{ "wonderbill.com", true },
+ { "wonderbits.net", true },
{ "wonderfuleducation.eu", true },
{ "wonderfuleducation.nl", true },
{ "wondergorilla.com", true },
@@ -38894,14 +40608,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wood-crafted.co.uk", true },
{ "wood-crafted.uk", true },
{ "woodbury.io", true },
- { "woodcoin.org", true },
+ { "woodcoin.org", false },
{ "woodev.us", true },
+ { "woodinvillesepticservice.net", true },
{ "woodlandhillselectrical.com", true },
{ "woodlandsmetro.church", false },
{ "woodlandsvale.uk", true },
{ "woodlandwindows.com", true },
{ "woodomat.com", true },
{ "woodsidepottery.ca", true },
+ { "woodstocksupply.com", true },
{ "woof.gq", true },
{ "woofsbakery.com", true },
{ "woohooyeah.nl", true },
@@ -38910,6 +40626,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wooplagaming.com", true },
{ "wootware.co.za", true },
{ "wopr.network", true },
+ { "worca.de", true },
+ { "worcade.com", true },
{ "worcade.net", true },
{ "worcesterbouncycastlehire.co.uk", true },
{ "worcesterbouncycastles.co.uk", true },
@@ -38926,6 +40644,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "workcelerator.com", true },
{ "workcheck.bz", true },
{ "workcloud.jp", true },
+ { "worker.gov", true },
+ { "workeria-personal.de", true },
{ "workforce.co.tz", true },
{ "workgrouptech.org", true },
{ "workingclassmedia.com", true },
@@ -38957,8 +40677,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "worldofvnc.net", true },
{ "worldofwobble.co.uk", true },
{ "worldpeacetechnology.com", true },
- { "worldrecipes.eu", true },
{ "worldsgreatestazuredemo.com", true },
+ { "worldsinperil.it", true },
{ "worldsoccerclips.com", true },
{ "worldstone777.com", true },
{ "worldtalk.de", true },
@@ -38966,8 +40686,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wormdisk.net", true },
{ "worst.horse", false },
{ "wort-suchen.de", true },
- { "woshiluo.site", true },
{ "wot-tudasbazis.hu", true },
+ { "woti.dedyn.io", true },
{ "wotra-register.com", true },
{ "woudenberg.nl", true },
{ "woudenbergsedrukkerij.nl", true },
@@ -38980,7 +40700,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wow-screenshots.net", true },
{ "wowaffixes.info", true },
{ "wowbouncycastles.co.uk", true },
- { "wowhelp.it", true },
{ "wowi-ffo.de", true },
{ "wowjs.co.uk", true },
{ "wowjs.org", true },
@@ -38994,9 +40713,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wp-site1.com", true },
{ "wp-site2.com", true },
{ "wp-tao.com", true },
+ { "wp-webagentur.de", true },
{ "wpac.de", true },
{ "wpandup.org", true },
{ "wpcanban.com", true },
+ { "wpccu-cdn.org", true },
{ "wpccu.org", true },
{ "wpcdn.bid", true },
{ "wpcharged.nz", true },
@@ -39011,6 +40732,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wpinter.com", true },
{ "wpldn.uk", true },
{ "wpletter.de", false },
+ { "wplistings.pro", true },
{ "wpmeetup-berlin.de", true },
{ "wpmu-tutorials.de", true },
{ "wpoptimalizace.cz", true },
@@ -39042,13 +40764,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "writeandedit-for-you.com", true },
{ "writecustomessay.com", true },
{ "writeenglishright.com", true },
- { "writemyessay.info", true },
{ "writemyessay.today", true },
{ "writemyessays.com", true },
{ "writemypaperhub.com", true },
{ "writeoff.me", true },
{ "writepride.com", true },
- { "writepro.net", true },
+ { "writer24.ru", true },
{ "writereditor.com", true },
{ "writing-job-online.com", true },
{ "writingcities.net", true },
@@ -39066,13 +40787,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wsadek.ovh", true },
{ "wsb.pl", true },
{ "wscales.com", false },
- { "wscbiolo.id", true },
{ "wsdcapital.com", true },
{ "wselektro.de", true },
{ "wsgvet.com", true },
{ "wsl.sh", true },
+ { "wsldp.com", true },
{ "wsspalluto.de", true },
- { "wssv.ch", true },
{ "wstudio.ch", true },
{ "wstx.com", true },
{ "wsv-grafenau.de", true },
@@ -39081,11 +40801,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wtf.ninja", true },
{ "wtfismyip.com", true },
{ "wtfnope.org", true },
+ { "wtfsec.org", true },
{ "wth.in", true },
{ "wtp.co.jp", true },
{ "wtpdive.jp", true },
{ "wtpmj.com", true },
+ { "wtup.net", true },
{ "wtw.io", true },
+ { "wucke13.de", true },
{ "wuerfel.wf", true },
{ "wuerfelmail.de", true },
{ "wufu.org", false },
@@ -39104,10 +40827,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wunderlist.com", true },
{ "wundernas.ch", true },
{ "wundi.net", true },
- { "wuppertal-2018.de", true },
- { "wuppertaler-kurrende.com", true },
- { "wuppertaler-kurrende.de", true },
+ { "wunschzettel.de", true },
+ { "wuppertal-2018.de", false },
+ { "wuppertaler-kurrende.com", false },
+ { "wuppertaler-kurrende.de", false },
{ "wutianyi.com", true },
+ { "wuwuwu.me", true },
{ "wuxiaobai.win", true },
{ "wuxiaohen.com", true },
{ "wuyue.photo", true },
@@ -39121,18 +40846,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wweforums.net", true },
{ "wweichen.com.cn", true },
{ "wwgc2011.se", true },
- { "wwjd.dynu.net", true },
- { "wwv-8522.com", true },
{ "wwv-8722.com", true },
{ "www-33445.com", true },
{ "www-49889.com", true },
- { "www-7570.com", true },
+ { "www-68277.com", true },
{ "www-80036.com", true },
{ "www-8522.am", true },
{ "www-8522.com", true },
{ "www-86499.com", true },
{ "www-8722.com", true },
- { "www-9649.com", true },
{ "www-9822.com", true },
{ "www-pj009.com", true },
{ "www.aclu.org", false },
@@ -39144,7 +40866,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.braintreepayments.com", false },
{ "www.calyxinstitute.org", false },
{ "www.capitainetrain.com", false },
- { "www.captaintrain.com", false },
{ "www.cloudflare.com", true },
{ "www.cnet.com", true },
{ "www.dropbox.com", true },
@@ -39156,6 +40877,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.facebook.com", false },
{ "www.fastmail.com", true },
{ "www.ft.com", true },
+ { "www.gamesdepartment.co.uk", true },
{ "www.getcloak.com", false },
{ "www.gmail.com", false },
{ "www.googlemail.com", false },
@@ -39192,25 +40914,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.twitter.com", false },
{ "www.united.com", true },
{ "www.usaa.com", false },
+ { "www.viasinc.com", false },
{ "www.vino75.com", false },
{ "www.wepay.com", false },
{ "www.wordpress.com", false },
{ "www.zdnet.com", true },
- { "www68277.com", true },
- { "wwww.is", true },
- { "wwww.me.uk", true },
{ "wxcafe.net", true },
{ "wxdisco.com", true },
{ "wxforums.com", true },
{ "wxh.jp", true },
+ { "wxkxsw.com", true },
+ { "wxlog.cn", true },
{ "wxster.com", true },
- { "wxzm.sx", true },
- { "wyam.io", true },
+ { "wyam.io", false },
{ "wybar.uk", true },
- { "wycrow.com", true },
+ { "wycrow.com", false },
{ "wyday.com", true },
{ "wygibanki.pl", true },
{ "wygodnie.pl", true },
+ { "wyhpartnership.co.uk", true },
{ "wynterhill.co.uk", true },
{ "wyo.cam", true },
{ "wypemagazine.se", true },
@@ -39218,9 +40940,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wyrihaximus.net", true },
{ "wyrimaps.net", true },
{ "wyssmuller.ch", true },
+ { "wyydsb.cn", true },
+ { "wyydsb.com", true },
+ { "wyydsb.xin", true },
+ { "wyysoft.tk", true },
{ "wzfetish.com.br", true },
{ "wzfou.com", true },
+ { "wzrd.in", true },
{ "wzyboy.org", true },
+ { "x-iweb.ru", true },
{ "x-lan.be", true },
{ "x-one.co.jp", true },
{ "x.io", true },
@@ -39231,14 +40959,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "x2d2.de", true },
{ "x378.ch", true },
{ "x509.io", true },
+ { "x64architecture.com", true },
{ "x7plus.com", true },
{ "xa.search.yahoo.com", false },
{ "xa1.uk", true },
+ { "xanadu-auto.cz", true },
+ { "xanadu-catering.cz", true },
+ { "xanadu-golf.cz", true },
{ "xanadu-taxi.cz", true },
+ { "xanadu-trans.cz", true },
{ "xanax.pro", false },
{ "xants.de", true },
{ "xatr0z.org", false },
- { "xavier.is", true },
+ { "xawen.net", false },
{ "xbb.hk", true },
{ "xbb.li", true },
{ "xbertschy.com", true },
@@ -39278,17 +41011,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xerhost.de", true },
{ "xerkus.pro", true },
{ "xerownia.eu", true },
+ { "xeryus.nl", true },
{ "xetown.com", true },
{ "xf-liam.com", true },
{ "xfce.space", true },
+ { "xfcy.me", true },
{ "xfd3.de", true },
{ "xferion.com", true },
{ "xfix.pw", true },
- { "xfrag-networks.com", true },
{ "xgame.com.tr", true },
{ "xgclan.com", true },
{ "xgn.es", true },
- { "xhadius.de", true },
+ { "xgzepto.cn", true },
{ "xhily.com", true },
{ "xhmikosr.io", true },
{ "xho.me", true },
@@ -39296,6 +41030,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xiamenshipbuilding.com", true },
{ "xiamuzi.com", true },
{ "xiangblog.com", true },
+ { "xiangfajia.cn", true },
{ "xiangweiqing.co.uk", true },
{ "xiangwenquan.me", true },
{ "xianjianruishiyouyiyuan.com", true },
@@ -39307,25 +41042,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xiaolong.link", true },
{ "xiaomao.tk", true },
{ "xiaomi.eu", true },
+ { "xiaomionline24.pl", true },
{ "xiaoniaoyou.com", true },
{ "xiaoyu.net", true },
{ "xiaoyy.org", true },
- { "xiazhanjian.com", true },
- { "xice.cf", true },
{ "xichtsbuch.de", true },
{ "xicreative.net", true },
{ "xiecongan.org", true },
{ "xif.at", true },
{ "xight.org", true },
{ "xilef.org", true },
+ { "xiliant.com", false },
{ "xilkoi.net", true },
{ "xilou.org", true },
{ "ximbo.net", true },
- { "xin-in.com", true },
- { "xin-in.net", true },
- { "xing-in.net", true },
{ "xinj.com", true },
{ "xinnixdeuren-shop.be", true },
+ { "xinplay.net", true },
{ "xinuspeed.com", true },
{ "xinuspeedtest.com", true },
{ "xinuurl.com", true },
@@ -39342,29 +41075,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xkviz.net", true },
{ "xlan.be", true },
{ "xlange.com", true },
+ { "xliang.co", true },
+ { "xlui.me", true },
{ "xluxes.jp", true },
{ "xmedius.ca", true },
{ "xmedius.com", false },
{ "xmedius.eu", true },
{ "xmenrevolution.com", true },
+ { "xmine128.tk", true },
{ "xmlbeam.org", true },
{ "xmlogin288.com", true },
+ { "xmodule.org", true },
{ "xmpp.dk", true },
{ "xmppwocky.net", true },
{ "xmr.to", true },
{ "xmtpro.com", true },
{ "xmusic.live", true },
- { "xmv.cz", false },
+ { "xmv.cz", true },
{ "xn----7sbfl2alf8a.xn--p1ai", true },
{ "xn----8hcdn2ankm1bfq.com", true },
+ { "xn----8sbjfacqfqshbh7afyeg.xn--80asehdb", true },
{ "xn----zmcaltpp1mdh16i.com", true },
{ "xn--0iv967ab7w.xn--rhqv96g", true },
{ "xn--0kq33cz5c8wmwrqqw1d.com", true },
+ { "xn--158h.ml", true },
{ "xn--24-6kch4bfqee.xn--p1ai", true },
{ "xn--24-glcia8dc.xn--p1ai", true },
{ "xn--48jwg508p.net", true },
{ "xn--4kro7fswi.xn--6qq986b3xl", true },
{ "xn--4pv80kkz8auzf.jp", true },
+ { "xn--57h.ml", true },
{ "xn--5dbkjqb0d.com", true },
{ "xn--5dbkjqb0d.net", true },
{ "xn--6o8h.cf", true },
@@ -39377,6 +41117,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--80aejljbfwxn.xn--p1ai", true },
{ "xn--80anogxed.xn--p1ai", true },
{ "xn--80azelb.xn--p1ai", true },
+ { "xn--8bi.gq", true },
{ "xn--8dry00a7se89ay98epsgxxq.com", true },
{ "xn--90accgba6bldkcbb7a.xn--p1acf", true },
{ "xn--allgu-biker-o8a.de", true },
@@ -39397,7 +41138,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--detrkl13b9sbv53j.com", true },
{ "xn--detrkl13b9sbv53j.org", true },
{ "xn--die-zahnrzte-ncb.de", true },
- { "xn--dk8haaa.ws", true },
{ "xn--dmonenjger-q5ag.net", true },
{ "xn--dragni-g1a.de", true },
{ "xn--dtursfest-72a.dk", true },
@@ -39405,8 +41145,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--ecki0cd0bu9a4nsjb.com", true },
{ "xn--eckle6c0exa0b0modc7054g7h8ajw6f.com", true },
{ "xn--ehq13kgw4e.ml", true },
+ { "xn--ehqw04eq6e.jp", true },
{ "xn--elsignificadodesoar-c4b.com", true },
{ "xn--erklderbarenben-slbh.dk", true },
+ { "xn--et8h.cf", true },
{ "xn--f9jh4f4b4993b66s.tokyo", true },
{ "xn--familie-pppinghaus-l3b.de", true },
{ "xn--feuerlscher-arten-4zb.de", true },
@@ -39415,11 +41157,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--fp8h58f.ws", true },
{ "xn--frankierknig-djb.de", true },
{ "xn--fs5ak3f.com", true },
- { "xn--gfrrli-yxa.ch", true },
+ { "xn--gfrr-7qa.li", true },
+ { "xn--heilendehnde-ocb.de", true },
{ "xn--hgbk4a00a.com", true },
{ "xn--hllrigl-90a.at", true },
{ "xn--i2ru8q2qg.com", true },
{ "xn--imker-in-nrnberg-szb.de", true },
+ { "xn--irr.xn--fiqs8s", true },
+ { "xn--is8h6d.gq", true },
{ "xn--j4h.cf", true },
{ "xn--jbs-tna.de", true },
{ "xn--jda.tk", true },
@@ -39454,6 +41199,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--nrrdetval-v2ab.se", true },
{ "xn--o38h.tk", true },
{ "xn--obt757c.com", true },
+ { "xn--oiqt18e8e2a.eu.org", true },
{ "xn--p8j9a0d9c9a.xn--q9jyb4c", true },
{ "xn--pbt947am3ab71g.com", true },
{ "xn--pe-bka.ee", true },
@@ -39472,10 +41218,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--rtter-kva.eu", true },
{ "xn--ruanmller-u9a.com", true },
{ "xn--s-1gaa.fi", true },
+ { "xn--schlerzeitung-ideenlos-ulc.de", true },
+ { "xn--schsischer-christstollen-qbc.shop", true },
{ "xn--seelenwchter-mcb.eu", true },
{ "xn--spenijmazania-yhc.pl", true },
+ { "xn--sz8h.ml", true },
{ "xn--t-oha.lv", true },
{ "xn--t8j4aa4nkg1h9bwcvud.com", true },
+ { "xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net", true },
{ "xn--t8j4aa4nzg3a5euoxcwee.xyz", true },
{ "xn--tigreray-i1a.org", true },
{ "xn--trdler-xxa.xyz", true },
@@ -39485,6 +41235,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--v-wfa35g.ro", true },
{ "xn--v6q426ishax2a.xyz", true },
{ "xn--woistdermlleimer-rzb.de", true },
+ { "xn--wq9h.ml", true },
{ "xn--y-5ga.com", true },
{ "xn--y8j148r.xn--q9jyb4c", true },
{ "xn--y8ja6lb.xn--q9jyb4c", true },
@@ -39500,7 +41251,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xninja.xyz", true },
{ "xnode.org", true },
{ "xntrik.wtf", true },
- { "xnu.kr", true },
{ "xo.tc", true },
{ "xo7.ovh", true },
{ "xolphin.nl", true },
@@ -39509,8 +41259,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xone.cz", true },
{ "xonn.de", true },
{ "xoonth.net", true },
+ { "xp-ochrona.pl", true },
{ "xp2.de", true },
- { "xpbytes.com", true },
{ "xpd.se", true },
{ "xperidia.com", true },
{ "xpletus.nl", true },
@@ -39519,12 +41269,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xposedornot.com", true },
{ "xps2pdf.co.uk", true },
{ "xps2pdf.info", true },
+ { "xq55.com", false },
{ "xqk7.com", true },
{ "xr.cx", true },
+ { "xr1s.me", true },
{ "xrg.cz", true },
- { "xrippedhd.com", true },
{ "xrockx.de", true },
- { "xroot.org", false },
{ "xrwracing-france.com", true },
{ "xs2a.no", true },
{ "xs74.com", true },
@@ -39535,7 +41285,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xserownia.pl", true },
{ "xsmobile.de", true },
{ "xss.ht", true },
+ { "xss.name", true },
{ "xss.sk", true },
+ { "xsteam.eu", true },
+ { "xsuper.net", true },
{ "xsz.jp", true },
{ "xtarget.ru", true },
{ "xtips.us", true },
@@ -39543,25 +41296,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xtom.chat", true },
{ "xtom.com", true },
{ "xtom.com.hk", true },
- { "xtom.io", true },
{ "xtom.wiki", true },
{ "xtrainsights.com", true },
{ "xtremebouncepartyhire.com.au", true },
- { "xtremegaming.it", true },
+ { "xtrememidlife.nl", true },
{ "xtronics.com", true },
{ "xts.bike", true },
{ "xts3636.net", true },
{ "xtu2.com", true },
{ "xuab.net", true },
- { "xuan-li88.com", true },
- { "xuan-li88.net", true },
{ "xuanmeishe.net", true },
{ "xubo666.com", true },
{ "xuc.me", true },
{ "xuedianshang.com", true },
+ { "xuehao.net.cn", true },
+ { "xuehuang666.cn", true },
{ "xuming.studio", true },
{ "xunn.io", true },
{ "xuntier.ch", true },
+ { "xuyh0120.win", true },
{ "xviimusic.com", true },
{ "xvt-blog.tk", true },
{ "xwalck.se", true },
@@ -39570,28 +41323,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xxffo.com", true },
{ "xxiz.com", true },
{ "xxxlbox.com", true },
+ { "xxxsuper.net", true },
{ "xyenon.bid", true },
{ "xyfun.net", false },
{ "xyngular-health.com", true },
{ "xywing.com", true },
- { "xyyp.mn", true },
{ "xyzulu.hosting", true },
{ "xza.fr", true },
{ "xzclip.cn", true },
{ "xzy.es", true },
- { "xzy.one", true },
{ "y11n.net", true },
{ "yabuisha.jp", true },
{ "yachigoya.com", true },
{ "yacineboumaza.fr", true },
{ "yacobo.com", true },
{ "yado-furu.com", true },
- { "yafull.com", true },
{ "yafuoku.ru", true },
{ "yagihiro.tech", true },
{ "yahan.tv", true },
{ "yaharu.ru", true },
{ "yahvehyireh.com", true },
+ { "yak-soap.co", true },
{ "yak.is", true },
{ "yakmade.com", true },
{ "yakmoo.se", true },
@@ -39609,20 +41361,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yanbao.xyz", true },
{ "yandere.moe", true },
{ "yangjingwen.cn", true },
+ { "yangmaodang.org", true },
{ "yanngraf.ch", true },
{ "yanngraf.com", true },
{ "yannic.world", true },
{ "yannick.cloud", true },
{ "yannik-buerkle.de", true },
{ "yannikbloscheck.com", true },
- { "yannikhenke.de", true },
{ "yanovich.net", true },
{ "yanqiyu.info", true },
+ { "yans.io", true },
{ "yantrasthal.com", true },
- { "yao-in.com", true },
- { "yao-in.net", true },
+ { "yanuwa.com", true },
{ "yapbreak.fr", true },
{ "yarcom.ru", false },
+ { "yarogneva.ru", true },
{ "yarravilletownhouses.com.au", true },
{ "yaru.one", true },
{ "yassine-ayari.com", true },
@@ -39634,6 +41387,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yawen.me", true },
{ "yawnbox.com", true },
{ "yaxim.org", true },
+ { "yayart.club", true },
{ "yazaral.com", true },
{ "ybin.me", true },
{ "ybresson.com", true },
@@ -39649,10 +41403,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ycnrg.org", true },
{ "yd.io", true },
{ "yeapdata.com", true },
+ { "yecl.net", true },
{ "yeesker.com", true },
{ "yell.ml", true },
+ { "yellotalk.co", true },
{ "yellowfly.co.uk", true },
{ "yellowpages.ee", true },
+ { "yellowtaillasvegas.com", true },
{ "yellowtree.co.za", true },
{ "yelon.hu", true },
{ "yelp.at", true },
@@ -39689,10 +41446,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yelp.se", true },
{ "yemektarifleri.com", true },
{ "yenibilgi.net", true },
+ { "yenpape.com", true },
{ "yep-pro.ch", true },
{ "yephy.com", true },
{ "yeshu.org", true },
{ "yesiammaisey.me", true },
+ { "yeskx.com", true },
{ "yeswecan.co.bw", true },
{ "yeswehack.com", true },
{ "yetanalytics.io", true },
@@ -39708,14 +41467,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yhaupenthal.org", true },
{ "yhb.io", true },
{ "yhe.me", true },
+ { "yhenke.de", true },
{ "yhfou.com", true },
{ "yhndnzj.com", true },
{ "yhong.me", true },
- { "yhwj.top", false },
+ { "yhrd.org", true },
{ "yicknam.my", true },
- { "yiffy.tips", false },
- { "yiffy.zone", false },
- { "yigujin.cn", true },
{ "yiheng.moe", true },
{ "yii2.cc", true },
{ "yikeyong.com", true },
@@ -39727,7 +41484,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yiyuanzhong.com", true },
{ "yiyueread.com", true },
{ "yiz96.com", true },
+ { "yjsoft.me", true },
{ "yjsw.sh.cn", true },
+ { "ykhut.com", true },
{ "yksityisyydensuoja.fi", true },
{ "ylde.de", true },
{ "ylinternal.com", true },
@@ -39737,6 +41496,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ymtsonline.org", true },
{ "ynnovasport.be", true },
{ "ynxfh.cn", true },
+ { "yoa.st", true },
{ "yoast.com", true },
{ "yobai-grouprec.jp", true },
{ "yobai28.com", true },
@@ -39755,6 +41515,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yogananda-roma.org", true },
{ "yogaschoolrishikesh.com", true },
{ "yoibyoin.info", true },
+ { "yoimise.net", true },
{ "yoitoko.city", true },
{ "yoitsu.moe", true },
{ "yokohama-legaloffice.jp", true },
@@ -39764,7 +41525,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yolops.net", true },
{ "yombo.net", true },
{ "yon.co.il", true },
- { "yongbin.org", true },
{ "yoonas.com", true },
{ "yooooex.com", true },
{ "yoppoy.com", true },
@@ -39779,6 +41539,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yosheenetwork.fr", true },
{ "yoshibaworks.com", true },
{ "yoshitsugu.net", true },
+ { "yosida-dental.com", true },
{ "yospos.org", true },
{ "yoticonnections.com", true },
{ "yotilab.com", true },
@@ -39788,6 +41549,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "you2you.fr", true },
{ "youareme.ca", true },
{ "youc.ir", true },
+ { "youcanfuckoff.xyz", true },
{ "youcanmakeit.at", true },
{ "youcruit.com", true },
{ "youdungoofd.com", true },
@@ -39804,24 +41566,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "youlovehers.com", true },
{ "youms.de", true },
{ "young-sheldon.com", true },
+ { "youngauthentic.cf", true },
{ "youngdogs.org", true },
{ "youngfree.cn", true },
{ "youngpeopleunited.co.uk", true },
{ "youngsook.com", true },
{ "youngsook.org", true },
{ "youpark.no", true },
+ { "youpickfarms.org", true },
{ "your-erotic-stories.com", true },
{ "your-out.com", true },
+ { "your-waterserver.com", true },
{ "youracnepro.com", true },
+ { "youran.me", true },
{ "yourbonus.click", true },
{ "yourciso.com", true },
{ "yourcomputer.expert", true },
{ "yourcopywriter.it", true },
{ "yourforex.org", true },
{ "yourfriendlytech.com", true },
+ { "yourfuntrivia.com", true },
{ "yourfuturestrategy.com.au", true },
+ { "yourgadget.ro", true },
{ "yourgames.tv", true },
- { "yourhair.net", true },
+ { "yourlanguages.de", true },
{ "yourmemorykeeper.co.uk", true },
{ "yourneighborhub.com", true },
{ "yourskin.nl", true },
@@ -39831,6 +41599,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yout.com", true },
{ "youth.gov", true },
{ "youthovation.org", true },
+ { "youthrules.gov", true },
{ "youtous.me", true },
{ "youtsuu-raku.com", true },
{ "youtube.com", true },
@@ -39840,21 +41609,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yoyoost.duckdns.org", true },
{ "ypart.eu", true },
{ "ypid.de", true },
- { "ypiresia.fr", false },
{ "yplanapp.com", true },
{ "yqjf68.com", true },
{ "yr166166.com", true },
{ "yrjanheikki.com", true },
{ "ys-shop.biz", true },
{ "ysicorp.com", true },
+ { "yslbeauty.com", true },
{ "yspeo.biz", true },
{ "ysun.xyz", true },
- { "ysx.me.uk", true },
- { "ytb.zone", true },
- { "ytbmp3.com", true },
- { "ytbmp4.com", true },
{ "ytec.ca", true },
- { "ytpak.com", true },
{ "ytpak.pk", true },
{ "ytreza.fr", true },
{ "ytuquelees.net", true },
@@ -39922,10 +41686,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yue.la", true },
{ "yue2.net", true },
{ "yugasun.com", true },
- { "yukari.cafe", true },
+ { "yuisyo.ml", true },
+ { "yukari.cafe", false },
{ "yukari.cloud", true },
{ "yuki-nagato.com", true },
- { "yuki-portfolio.com", true },
{ "yuki.xyz", true },
{ "yukonconnector.com", true },
{ "yukonlip.com", true },
@@ -39945,8 +41709,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yutakato.net", true },
{ "yutang.vn", true },
{ "yutangyun.com", true },
- { "yutaron.tokyo", true },
{ "yutuo.net", true },
+ { "yuuki0xff.jp", true },
+ { "yuuta.moe", true },
{ "yuwei.org", true },
{ "yuweiyang.xyz", true },
{ "yuxuan.org", true },
@@ -39960,12 +41725,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yvonnehaeusser.de", true },
{ "yvonnethomet.ch", true },
{ "yvonnewilhelmi.com", true },
+ { "yxs.me", true },
{ "yxt521.com", true },
- { "yya.bid", true },
{ "yya.me", true },
- { "yya.men", true },
{ "yyc.city", true },
- { "yyrss.com", false },
{ "yyyy.xyz", true },
{ "yzal.io", true },
{ "yzcloud.me", true },
@@ -39973,7 +41736,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yzimroni.net", true },
{ "z-konzept-nutrition.ru", true },
{ "z-latko.info", true },
- { "z-to-a.com", true },
{ "z-vector.com", true },
{ "z.ai", true },
{ "z1h.de", true },
@@ -39981,7 +41743,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "z99944x.xyz", true },
{ "za.search.yahoo.com", false },
{ "zaagbaak.nl", true },
- { "zaalleatherwear.nl", false },
+ { "zabavno.mk", true },
{ "zabbix.tips", true },
{ "zabszk.net", true },
{ "zabukovnik.net", true },
@@ -39999,10 +41761,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zachaysan.com", true },
{ "zachborboa.com", true },
{ "zachgibbens.org", true },
- { "zachpeters.org", true },
{ "zachschneider.ca", true },
{ "zaclys.com", false },
- { "zadroweb.com", true },
{ "zafirus.name", true },
{ "zaghyr.org", true },
{ "zahe.me", true },
@@ -40017,10 +41777,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zakladam.cz", true },
{ "zakmccrac.de", true },
{ "zakojifarm.jp", true },
+ { "zakoncontrol.com", false },
{ "zakr.es", true },
{ "zakspartiesandevents.com", true },
{ "zalamea.ph", true },
{ "zaloghaz.ro", true },
+ { "zalohovaniburian.cz", true },
{ "zalvus.com", true },
{ "zamalektoday.com", true },
{ "zamocosmeticos.com.br", true },
@@ -40034,10 +41796,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zapmaster14.com", true },
{ "zappbuildapps.com", false },
{ "zappos.com", true },
- { "zaptan.info", false },
- { "zaptan.net", false },
- { "zaptan.org", false },
- { "zaptan.us", false },
{ "zarabiaj.com", true },
{ "zaratan.fr", true },
{ "zargescases.co.uk", true },
@@ -40047,10 +41805,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zatsepin.by", true },
{ "zaufanatrzeciastrona.pl", true },
{ "zavec.com.ec", true },
+ { "zavedu.org", true },
{ "zavetaji.lv", true },
{ "zawo-electric.de", true },
{ "zayna.eu", true },
- { "zberger.com", true },
+ { "zbanks.cn", true },
{ "zbetcheck.in", true },
{ "zbrane-doplnky.cz", true },
{ "zbut.bg", true },
@@ -40068,8 +41827,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zdrave-konzultace.cz", true },
{ "zdravekonzultace.cz", true },
{ "zdravesteny.cz", true },
+ { "zdravystul.cz", true },
{ "zdrojak.cz", true },
+ { "zdymak.by", true },
{ "ze3kr.com", true },
+ { "zeal-and.jp", true },
{ "zeal-interior.com", true },
{ "zealworks.jp", true },
{ "zebbra.ro", true },
@@ -40079,9 +41841,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zeebrieshoekvanholland.nl", true },
{ "zeel.com", true },
{ "zeelynk.com", true },
+ { "zeestraten.nl", true },
{ "zeetoppers.nl", true },
{ "zeeuw.nl", true },
{ "zeguigui.com", true },
+ { "zeibekiko-souvlaki.gr", true },
{ "zeilenmethans.nl", true },
{ "zeilles.nu", true },
{ "zeitoununiversity.org", true },
@@ -40096,9 +41860,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zena.cx", false },
{ "zenchain.com", true },
{ "zenevents.ro", true },
- { "zenfusion.fr", true },
{ "zengdong.ren", true },
- { "zenics.co.uk", true },
+ { "zenghx.tk", false },
{ "zenithmedia.ca", true },
{ "zenk-security.com", true },
{ "zenlogic.com", true },
@@ -40106,9 +41869,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zennzimie.be", true },
{ "zennzimie.com", true },
{ "zenofa.co.id", true },
+ { "zenram.com", true },
{ "zentask.io", true },
{ "zenti.cloud", true },
{ "zenvideocloud.com", true },
+ { "zeparadox.com", true },
{ "zephyrbk.com", true },
{ "zephyrbookkeeping.com", true },
{ "zephyretcoraline.com", true },
@@ -40118,6 +41883,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zerg.uk", true },
{ "zerobounce.net", true },
{ "zerofy.de", true },
+ { "zerolab.org", true },
{ "zeronet.io", true },
{ "zeropoint.bg", true },
{ "zeropush.com", true },
@@ -40153,6 +41919,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zhangyuhao.com", true },
{ "zhangzifan.com", false },
{ "zhaofeng.li", true },
+ { "zhaopage.com", true },
{ "zhaoxixiangban.cc", true },
{ "zhcexo.com", true },
{ "zhen-chen.com", true },
@@ -40162,14 +41929,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zhiku8.com", true },
{ "zhima.io", true },
{ "zhitanska.com", true },
- { "zhiwei.me", true },
{ "zhl123.com", true },
+ { "zhome.info", true },
{ "zhongzicili.ws", true },
- { "zhoushuo.me", true },
+ { "zhoushuo.me", false },
{ "zhoutiancai.cn", true },
{ "zhovner.com", true },
{ "zhthings.com", true },
{ "zhuihoude.com", true },
+ { "zi.is", true },
{ "ziegler-family.com", true },
{ "ziegler-heizung-frankfurt.de", true },
{ "zielonakarta.com", true },
@@ -40194,6 +41962,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zingjerijk.nl", true },
{ "zings.eu", true },
{ "zinniamay.com", true },
+ { "zinnowitzer-ferienwohnung.de", true },
{ "zinoui.com", true },
{ "ziondrive.com.br", true },
{ "zionnationalpark.net", true },
@@ -40202,22 +41971,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zipkey.de", true },
{ "ziptie.com", true },
{ "zircode.com", true },
+ { "zirka24.net", true },
{ "ziroh.be", true },
{ "zirtek.ie", true },
{ "zirtual.com", true },
- { "zitrone44.de", true },
{ "zitseng.com", true },
{ "zittingskalender.be", true },
{ "zivava.ge", true },
{ "zivmergers.com", true },
- { "zivyruzenec.cz", false },
+ { "zivver.be", true },
+ { "zivver.com", true },
+ { "zivver.de", true },
+ { "zivver.eu", true },
+ { "zivver.info", true },
+ { "zivver.nl", true },
+ { "zivver.uk", true },
+ { "zivyruzenec.cz", true },
{ "zixiao.wang", true },
+ { "zjuqsc.com", true },
{ "zjv.me", true },
+ { "zjyifa.cn", true },
+ { "zk.com.co", true },
{ "zk.gd", true },
{ "zk9.nl", true },
{ "zkontrolujsiauto.cz", true },
{ "zkrypt.cc", true },
{ "zkzone.net", true },
+ { "zl0iu.com", true },
+ { "zl8862.com", true },
{ "zlatakus.cz", true },
{ "zlatosnadno.cz", true },
{ "zlaty-tyden.cz", true },
@@ -40249,10 +42030,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zofrex.com", true },
{ "zohar.wang", true },
{ "zoigl.club", true },
+ { "zoisfinefood.com", true },
{ "zojadravai.com", true },
{ "zoki.art", true },
{ "zollihood.ch", true },
{ "zolokar.xyz", true },
+ { "zom.bi", true },
{ "zomerschoen.nl", true },
{ "zonadigital.co", true },
{ "zone-produkte.de", false },
@@ -40276,6 +42059,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zoomseoservices.com", false },
{ "zooom.azurewebsites.net", true },
{ "zooom2.azurewebsites.net", true },
+ { "zoop.ml", true },
{ "zooparadies.eu", true },
{ "zooplankton.no", true },
{ "zootime.net", true },
@@ -40286,15 +42070,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zor.com", true },
{ "zorasvobodova.cz", true },
{ "zorgclustertool.nl", true },
- { "zorig.ch", true },
+ { "zorig.ch", false },
{ "zorium.org", true },
{ "zorntt.fr", true },
{ "zotero.org", true },
{ "zouk.info", true },
+ { "zouyaoji.top", true },
{ "zozo.com", true },
{ "zozzle.co.uk", true },
+ { "zp25.ninja", true },
+ { "zqstudio.top", true },
{ "zravypapir.cz", true },
- { "zrhdwz.cn", true },
{ "zrniecka-pre-sny.sk", true },
{ "zrnieckapresny.sk", true },
{ "zrt.io", true },
@@ -40308,9 +42094,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zsrbcs.com", true },
{ "zten.org", true },
{ "ztjuh.tk", true },
- { "zuan-in.net", true },
{ "zubel.it", false },
- { "zubora.co", true },
{ "zuefle.net", true },
{ "zug-anwalt.de", true },
{ "zug.fr", true },
@@ -40332,7 +42116,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zuppy.pm", true },
{ "zuralski.net", true },
{ "zurgl.com", false },
- { "zurickrelogios.com.br", true },
{ "zurret.de", true },
{ "zusjesvandenbos.nl", true },
{ "zuzumba.es", true },
@@ -40348,13 +42131,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zwy.ch", true },
{ "zx6rninja.de", true },
{ "zx7r.de", true },
- { "zxavier.com", true },
{ "zxe.com.br", true },
{ "zxtcode.com", true },
{ "zy.md", true },
{ "zybbo.com", true },
{ "zyciedlazwierzat.pl", true },
{ "zyciedogorynogami.pl", true },
+ { "zydronium.com", true },
+ { "zydronium.nl", true },
{ "zyger.co.za", true },
{ "zylai.com", true },
{ "zymmm.com", true },
@@ -40363,6 +42147,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zyrillezuno.com", true },
{ "zyul.ddns.net", true },
{ "zyzardx.com", true },
+ { "zyzsdy.com", true },
{ "zzekj.net", true },
{ "zzpd.nl", false },
{ "zzsec.org", true },
diff --git a/security/manager/ssl/tests/gtest/DeserializeCertTest.cpp b/security/manager/ssl/tests/gtest/DeserializeCertTest.cpp
index 868ecdba6..c3a4115b3 100644
--- a/security/manager/ssl/tests/gtest/DeserializeCertTest.cpp
+++ b/security/manager/ssl/tests/gtest/DeserializeCertTest.cpp
@@ -94,3 +94,89 @@ TEST(psm_DeserializeCert, gecko46)
ASSERT_EQ(NS_OK, rv);
ASSERT_TRUE(cert);
}
+
+TEST(psm_DeserializeCert, gecko64)
+{
+ // This is a serialization of nsITransportSecurityInfo from gecko 64.
+ // Deserialization should fail.
+ nsCString base64Serialization(
+ "FnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAgAAgAAAAAAAAAAAAAAAAAAAAEAMQFmCjIm"
+ "kVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAX2MIIF8jCCBNqgAwIBAgIQDmTF+8I2reFLFyrrQceMsDANBgkqhkiG"
+ "9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8w"
+ "LQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xNTExMDMwMDAwMDBaFw0xODExMjgxMjAw"
+ "MDBaMIGlMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEUMBIGA1UEBxMLTG9zIEFuZ2VsZXMxPDA6BgNVBAoTM0lu"
+ "dGVybmV0IENvcnBvcmF0aW9uIGZvciBBc3NpZ25lZCBOYW1lcyBhbmQgTnVtYmVyczETMBEGA1UECxMKVGVjaG5vbG9neTEYMBYG"
+ "A1UEAxMPd3d3LmV4YW1wbGUub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs0CWL2FjPiXBl61lRfvvE0KzLJmG"
+ "9LWAC3bcBjgsH6NiVVo2dt6uXfzi5bTm7F3K7srfUBYkLO78mraM9qizrHoIeyofrV/n+pZZJauQsPjCPxMEJnRoD8Z4KpWKX0Ly"
+ "Du1SputoI4nlQ/htEhtiQnuoBfNZxF7WxcxGwEsZuS1KcXIkHl5VRJOreKFHTaXcB1qcZ/QRaBIv0yhxvK1yBTwWddT4cli6GfHc"
+ "Ce3xGMaSL328Fgs3jYrvG29PueB6VJi/tbbPu6qTfwp/H1brqdjh29U52Bhb0fJkM9DWxCP/Cattcc7az8EXnCO+LK8vkhw/kAiJ"
+ "WPKx4RBvgy73nwIDAQABo4ICUDCCAkwwHwYDVR0jBBgwFoAUUWj/kK8CB3U8zNllZGKiErhZcjswHQYDVR0OBBYEFKZPYB4fLdHn"
+ "8SOgKpUW5Oia6m5IMIGBBgNVHREEejB4gg93d3cuZXhhbXBsZS5vcmeCC2V4YW1wbGUuY29tggtleGFtcGxlLmVkdYILZXhhbXBs"
+ "ZS5uZXSCC2V4YW1wbGUub3Jngg93d3cuZXhhbXBsZS5jb22CD3d3dy5leGFtcGxlLmVkdYIPd3d3LmV4YW1wbGUubmV0MA4GA1Ud"
+ "DwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGln"
+ "aWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc0LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2Vy"
+ "dmVyLWc0LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20v"
+ "Q1BTMAgGBmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYB"
+ "BQUHMAKGQWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwG"
+ "A1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggEBAISomhGn2L0LJn5SJHuyVZ3qMIlRCIdvqe0Q6ls+C8ctRwRO3UU3x8q8OH+2"
+ "ahxlQmpzdC5al4XQzJLiLjiJ2Q1p+hub8MFiMmVPPZjb2tZm2ipWVuMRM+zgpRVM6nVJ9F3vFfUSHOb4/JsEIUvPY+d8/Krc+kPQ"
+ "wLvyieqRbcuFjmqfyPmUv1U9QoI4TQikpw7TZU0zYZANP4C/gj4Ry48/znmUaRvy2kvIl7gRQ21qJTK5suoiYoYNo3J9T+pXPGU7"
+ "Lydz/HwW+w0DpArtAaukI8aNX4ohFUKSwDSiIIWIWJiJGbEeIO0TIFwEVWTOnbNl/faPXpk5IRXicapqiILALwADAAAAAAEBAAAA"
+ "AAAABFAyNTYAAAAQUlNBLVBLQ1MxLVNIQTUxMgGVn7FlZRdIf6ub2JE75TGXrnTNpc0vRz+W9fC3//YsaAAAAANmCjImkVxP+7sg"
+ "iYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAX2MIIF8jCCBNqgAwIBAgIQDmTF+8I2reFLFyrrQceMsDANBgkqhkiG9w0BAQsF"
+ "ADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQD"
+ "EyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0xNTExMDMwMDAwMDBaFw0xODExMjgxMjAwMDBaMIGl"
+ "MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEUMBIGA1UEBxMLTG9zIEFuZ2VsZXMxPDA6BgNVBAoTM0ludGVybmV0"
+ "IENvcnBvcmF0aW9uIGZvciBBc3NpZ25lZCBOYW1lcyBhbmQgTnVtYmVyczETMBEGA1UECxMKVGVjaG5vbG9neTEYMBYGA1UEAxMP"
+ "d3d3LmV4YW1wbGUub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs0CWL2FjPiXBl61lRfvvE0KzLJmG9LWAC3bc"
+ "BjgsH6NiVVo2dt6uXfzi5bTm7F3K7srfUBYkLO78mraM9qizrHoIeyofrV/n+pZZJauQsPjCPxMEJnRoD8Z4KpWKX0LyDu1Sputo"
+ "I4nlQ/htEhtiQnuoBfNZxF7WxcxGwEsZuS1KcXIkHl5VRJOreKFHTaXcB1qcZ/QRaBIv0yhxvK1yBTwWddT4cli6GfHcCe3xGMaS"
+ "L328Fgs3jYrvG29PueB6VJi/tbbPu6qTfwp/H1brqdjh29U52Bhb0fJkM9DWxCP/Cattcc7az8EXnCO+LK8vkhw/kAiJWPKx4RBv"
+ "gy73nwIDAQABo4ICUDCCAkwwHwYDVR0jBBgwFoAUUWj/kK8CB3U8zNllZGKiErhZcjswHQYDVR0OBBYEFKZPYB4fLdHn8SOgKpUW"
+ "5Oia6m5IMIGBBgNVHREEejB4gg93d3cuZXhhbXBsZS5vcmeCC2V4YW1wbGUuY29tggtleGFtcGxlLmVkdYILZXhhbXBsZS5uZXSC"
+ "C2V4YW1wbGUub3Jngg93d3cuZXhhbXBsZS5jb22CD3d3dy5leGFtcGxlLmVkdYIPd3d3LmV4YW1wbGUubmV0MA4GA1UdDwEB/wQE"
+ "AwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwdQYDVR0fBG4wbDA0oDKgMIYuaHR0cDovL2NybDMuZGlnaWNlcnQu"
+ "Y29tL3NoYTItaGEtc2VydmVyLWc0LmNybDA0oDKgMIYuaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItaGEtc2VydmVyLWc0"
+ "LmNybDBMBgNVHSAERTBDMDcGCWCGSAGG/WwBATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAgG"
+ "BmeBDAECAjCBgwYIKwYBBQUHAQEEdzB1MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTQYIKwYBBQUHMAKG"
+ "QWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJIaWdoQXNzdXJhbmNlU2VydmVyQ0EuY3J0MAwGA1UdEwEB"
+ "/wQCMAAwDQYJKoZIhvcNAQELBQADggEBAISomhGn2L0LJn5SJHuyVZ3qMIlRCIdvqe0Q6ls+C8ctRwRO3UU3x8q8OH+2ahxlQmpz"
+ "dC5al4XQzJLiLjiJ2Q1p+hub8MFiMmVPPZjb2tZm2ipWVuMRM+zgpRVM6nVJ9F3vFfUSHOb4/JsEIUvPY+d8/Krc+kPQwLvyieqR"
+ "bcuFjmqfyPmUv1U9QoI4TQikpw7TZU0zYZANP4C/gj4Ry48/znmUaRvy2kvIl7gRQ21qJTK5suoiYoYNo3J9T+pXPGU7Lydz/HwW"
+ "+w0DpArtAaukI8aNX4ohFUKSwDSiIIWIWJiJGbEeIO0TIFwEVWTOnbNl/faPXpk5IRXicapqiIJmCjImkVxP+7sgiYWmMt8FvcOX"
+ "mlQiTNWFiWlrbpbqgwAAAAAAAAS1MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYD"
+ "VQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2Vy"
+ "dCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMx"
+ "FTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBI"
+ "aWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C/CJAbIbQRf1+8KZAayfSIm"
+ "ZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK/IHe1NnF9Xt4ZQ"
+ "aJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3"
+ "Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvy"
+ "SC/zA/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr"
+ "BgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYD"
+ "VR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9"
+ "BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj/"
+ "kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD"
+ "5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk/gNHE+r1hspZcX30BJZr01lYPf7TMSVc"
+ "GDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zu"
+ "xICaEnL6VpPX/78whQYwvwt/Tv9XBZ0k7YXDK/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHv"
+ "FwY+3sAzm2fTYS5yh+Rp/BIAV0AecPUeybRmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAPJMIIDxTCCAq2g"
+ "AwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5j"
+ "MRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4X"
+ "DTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UE"
+ "CxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2UgRVYgUm9vdCBDQTCCASIwDQYJKoZI"
+ "hvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW"
+ "PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuN"
+ "s8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3hzBWBOUR"
+ "tCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQD"
+ "AgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY"
+ "JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlM"
+ "MUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78a"
+ "G6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZd"
+ "kGCevEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9KAA==");
+
+ nsCOMPtr<nsISupports> transportSecurityInfo;
+ nsresult rv = NS_DeserializeObject(base64Serialization, getter_AddRefs(transportSecurityInfo));
+ ASSERT_EQ(NS_ERROR_FACTORY_NOT_REGISTERED, rv);
+ ASSERT_FALSE(transportSecurityInfo);
+}
diff --git a/security/manager/ssl/tests/unit/test_cert_chains.js b/security/manager/ssl/tests/unit/test_cert_chains.js
index 8abcb4e65..dd1fc9369 100644
--- a/security/manager/ssl/tests/unit/test_cert_chains.js
+++ b/security/manager/ssl/tests/unit/test_cert_chains.js
@@ -31,9 +31,30 @@ function test_cert_equals() {
" should return false");
}
+function test_bad_cert_list_serialization() {
+ // Normally the serialization of an nsIX509CertList consists of some header
+ // junk (IIDs and whatnot), 4 bytes representing how many nsIX509Cert follow,
+ // and then the serialization of each nsIX509Cert. This serialization consists
+ // of the header junk for an nsIX509CertList with 1 "nsIX509Cert", but then
+ // instead of an nsIX509Cert, the subsequent bytes represent the serialization
+ // of another nsIX509CertList (with 0 nsIX509Cert). This test ensures that
+ // nsIX509CertList safely handles this unexpected input when deserializing.
+ const badCertListSerialization =
+ "lZ+xZWUXSH+rm9iRO+UxlwAAAAAAAAAAwAAAAAAAAEYAAAABlZ+xZWUXSH+rm9iRO+UxlwAAAAAA" +
+ "AAAAwAAAAAAAAEYAAAAA";
+ let serHelper = Cc["@mozilla.org/network/serialization-helper;1"]
+ .getService(Ci.nsISerializationHelper);
+ throws(() => serHelper.deserializeObject(badCertListSerialization),
+ /NS_ERROR_UNEXPECTED/,
+ "deserializing a bogus nsIX509CertList should throw NS_ERROR_UNEXPECTED");
+}
+
function test_cert_list_serialization() {
let certList = build_cert_chain(['default-ee', 'expired-ee']);
+ throws(() => certList.addCert(null), /NS_ERROR_ILLEGAL_VALUE/,
+ "trying to add a null cert to an nsIX509CertList should throw");
+
// Serialize the cert list to a string
let serHelper = Cc["@mozilla.org/network/serialization-helper;1"]
.getService(Ci.nsISerializationHelper);
@@ -78,6 +99,11 @@ function run_test() {
// Test serialization of nsIX509CertList
add_test(function() {
+ test_bad_cert_list_serialization();
+ run_next_test();
+ });
+
+ add_test(function() {
test_cert_list_serialization();
run_next_test();
});