summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl
diff options
context:
space:
mode:
Diffstat (limited to 'security/manager/ssl')
-rw-r--r--security/manager/ssl/DataStorage.cpp3
-rw-r--r--security/manager/ssl/SSLServerCertVerification.cpp147
-rw-r--r--security/manager/ssl/TransportSecurityInfo.cpp7
-rw-r--r--security/manager/ssl/nsKeygenHandler.cpp43
-rw-r--r--security/manager/ssl/nsNSSCallbacks.cpp130
-rw-r--r--security/manager/ssl/nsNSSCertificate.cpp13
-rw-r--r--security/manager/ssl/nsNSSComponent.cpp61
-rw-r--r--security/manager/ssl/nsNSSIOLayer.cpp89
-rw-r--r--security/manager/ssl/nsNTLMAuthModule.cpp5
-rw-r--r--security/manager/ssl/nsPKCS11Slot.cpp4
-rw-r--r--security/manager/ssl/nsSTSPreloadList.errors9711
-rw-r--r--security/manager/ssl/nsSTSPreloadList.inc15211
-rw-r--r--security/manager/ssl/tests/gtest/DeserializeCertTest.cpp86
-rw-r--r--security/manager/ssl/tests/unit/test_cert_chains.js26
-rw-r--r--security/manager/ssl/tests/unit/test_weak_crypto.js1
15 files changed, 17335 insertions, 8202 deletions
diff --git a/security/manager/ssl/DataStorage.cpp b/security/manager/ssl/DataStorage.cpp
index 2d9dbf5c4..c765fed00 100644
--- a/security/manager/ssl/DataStorage.cpp
+++ b/security/manager/ssl/DataStorage.cpp
@@ -276,9 +276,6 @@ DataStorage::Reader::Run()
}
}
} while (true);
-
- Telemetry::Accumulate(Telemetry::DATA_STORAGE_ENTRIES,
- mDataStorage->mPersistentDataTable.Count());
}
return NS_OK;
diff --git a/security/manager/ssl/SSLServerCertVerification.cpp b/security/manager/ssl/SSLServerCertVerification.cpp
index 4ef79f54a..757534955 100644
--- a/security/manager/ssl/SSLServerCertVerification.cpp
+++ b/security/manager/ssl/SSLServerCertVerification.cpp
@@ -567,15 +567,12 @@ CertErrorRunnable::CheckCertOverrides()
// want a ballpark answer, we don't care.
if (mErrorCodeTrust != 0) {
uint32_t probeValue = MapOverridableErrorToProbeValue(mErrorCodeTrust);
- Telemetry::Accumulate(Telemetry::SSL_CERT_ERROR_OVERRIDES, probeValue);
}
if (mErrorCodeMismatch != 0) {
uint32_t probeValue = MapOverridableErrorToProbeValue(mErrorCodeMismatch);
- Telemetry::Accumulate(Telemetry::SSL_CERT_ERROR_OVERRIDES, probeValue);
}
if (mErrorCodeTime != 0) {
uint32_t probeValue = MapOverridableErrorToProbeValue(mErrorCodeTime);
- Telemetry::Accumulate(Telemetry::SSL_CERT_ERROR_OVERRIDES, probeValue);
}
// all errors are covered by override rules, so let's accept the cert
@@ -660,7 +657,6 @@ CreateCertErrorRunnable(CertVerifier& certVerifier,
MOZ_ASSERT(cert);
uint32_t probeValue = MapCertErrorToProbeValue(defaultErrorCodeToReport);
- Telemetry::Accumulate(Telemetry::SSL_CERT_VERIFICATION_ERRORS, probeValue);
uint32_t collected_errors = 0;
PRErrorCode errorCodeTrust = 0;
@@ -869,19 +865,11 @@ void
AccumulateSubjectCommonNameTelemetry(const char* commonName,
bool commonNameInSubjectAltNames)
{
- if (!commonName) {
- // 1 means no common name present
- Telemetry::Accumulate(Telemetry::BR_9_2_2_SUBJECT_COMMON_NAME, 1);
- } else if (!commonNameInSubjectAltNames) {
+ if (!commonNameInSubjectAltNames) {
MOZ_LOG(gPIPNSSLog, LogLevel::Debug,
("BR telemetry: common name '%s' not in subject alt. names "
"(or the subject alt. names extension is not present)\n",
commonName));
- // 2 means the common name is not present in subject alt names
- Telemetry::Accumulate(Telemetry::BR_9_2_2_SUBJECT_COMMON_NAME, 2);
- } else {
- // 0 means the common name is present in subject alt names
- Telemetry::Accumulate(Telemetry::BR_9_2_2_SUBJECT_COMMON_NAME, 0);
}
}
@@ -947,8 +935,6 @@ GatherBaselineRequirementsTelemetry(const UniqueCERTCertList& certList)
MOZ_LOG(gPIPNSSLog, LogLevel::Debug,
("BR telemetry: no subject alt names extension for '%s'\n",
commonName.get()));
- // 1 means there is no subject alt names extension
- Telemetry::Accumulate(Telemetry::BR_9_2_1_SUBJECT_ALT_NAMES, 1);
AccumulateSubjectCommonNameTelemetry(commonName.get(), false);
return;
}
@@ -960,8 +946,6 @@ GatherBaselineRequirementsTelemetry(const UniqueCERTCertList& certList)
MOZ_LOG(gPIPNSSLog, LogLevel::Debug,
("BR telemetry: could not decode subject alt names for '%s'\n",
commonName.get()));
- // 2 means the subject alt names extension could not be decoded
- Telemetry::Accumulate(Telemetry::BR_9_2_1_SUBJECT_ALT_NAMES, 2);
AccumulateSubjectCommonNameTelemetry(commonName.get(), false);
return;
}
@@ -1044,24 +1028,6 @@ GatherBaselineRequirementsTelemetry(const UniqueCERTCertList& certList)
currentName = CERT_GetNextGeneralName(currentName);
} while (currentName && currentName != subjectAltNames);
- if (nonDNSNameOrIPAddressPresent) {
- // 3 means there's an entry that isn't an ip address or dns name
- Telemetry::Accumulate(Telemetry::BR_9_2_1_SUBJECT_ALT_NAMES, 3);
- }
- if (malformedDNSNameOrIPAddressPresent) {
- // 4 means there's a malformed ip address or dns name entry
- Telemetry::Accumulate(Telemetry::BR_9_2_1_SUBJECT_ALT_NAMES, 4);
- }
- if (nonFQDNPresent) {
- // 5 means there's a DNS name entry with a non-fully-qualified domain name
- Telemetry::Accumulate(Telemetry::BR_9_2_1_SUBJECT_ALT_NAMES, 5);
- }
- if (!nonDNSNameOrIPAddressPresent && !malformedDNSNameOrIPAddressPresent &&
- !nonFQDNPresent) {
- // 0 means the extension is acceptable
- Telemetry::Accumulate(Telemetry::BR_9_2_1_SUBJECT_ALT_NAMES, 0);
- }
-
AccumulateSubjectCommonNameTelemetry(commonName.get(),
commonNameInSubjectAltNames);
}
@@ -1111,7 +1077,6 @@ GatherEKUTelemetry(const UniqueCERTCertList& certList)
}
if (!foundEKU) {
- Telemetry::Accumulate(Telemetry::SSL_SERVER_AUTH_EKU, 0);
return;
}
@@ -1133,18 +1098,6 @@ GatherEKUTelemetry(const UniqueCERTCertList& certList)
foundOther = true;
}
}
-
- // Cases 3 is included only for completeness. It should never
- // appear in these statistics, because CheckExtendedKeyUsage()
- // should require the EKU extension, if present, to contain the
- // value id_kp_serverAuth.
- if (foundServerAuth && !foundOther) {
- Telemetry::Accumulate(Telemetry::SSL_SERVER_AUTH_EKU, 1);
- } else if (foundServerAuth && foundOther) {
- Telemetry::Accumulate(Telemetry::SSL_SERVER_AUTH_EKU, 2);
- } else if (!foundServerAuth) {
- Telemetry::Accumulate(Telemetry::SSL_SERVER_AUTH_EKU, 3);
- }
}
// Gathers telemetry on which CA is the root of a given cert chain.
@@ -1210,9 +1163,6 @@ GatherEndEntityTelemetry(const UniqueCERTCertList& certList)
if (durationInWeeks > (2 * ONE_YEAR_IN_WEEKS)) {
durationInWeeks = (2 * ONE_YEAR_IN_WEEKS) + 1;
}
-
- Telemetry::Accumulate(Telemetry::SSL_OBSERVED_END_ENTITY_CERTIFICATE_LIFETIME,
- durationInWeeks);
}
// There are various things that we want to measure about certificate
@@ -1229,75 +1179,14 @@ GatherSuccessfulValidationTelemetry(const UniqueCERTCertList& certList)
void
GatherTelemetryForSingleSCT(const ct::SignedCertificateTimestamp& sct)
{
- // See SSL_SCTS_ORIGIN in Histograms.json.
- uint32_t origin = 0;
- switch (sct.origin) {
- case ct::SignedCertificateTimestamp::Origin::Embedded:
- origin = 1;
- break;
- case ct::SignedCertificateTimestamp::Origin::TLSExtension:
- origin = 2;
- break;
- case ct::SignedCertificateTimestamp::Origin::OCSPResponse:
- origin = 3;
- break;
- default:
- MOZ_ASSERT_UNREACHABLE("Unexpected SCT::Origin type");
- }
- Telemetry::Accumulate(Telemetry::SSL_SCTS_ORIGIN, origin);
-
- // See SSL_SCTS_VERIFICATION_STATUS in Histograms.json.
- uint32_t verificationStatus = 0;
- switch (sct.verificationStatus) {
- case ct::SignedCertificateTimestamp::VerificationStatus::OK:
- verificationStatus = 1;
- break;
- case ct::SignedCertificateTimestamp::VerificationStatus::UnknownLog:
- verificationStatus = 2;
- break;
- case ct::SignedCertificateTimestamp::VerificationStatus::InvalidSignature:
- verificationStatus = 3;
- break;
- case ct::SignedCertificateTimestamp::VerificationStatus::InvalidTimestamp:
- verificationStatus = 4;
- break;
- default:
- MOZ_ASSERT_UNREACHABLE("Unexpected SCT::VerificationStatus type");
- }
- Telemetry::Accumulate(Telemetry::SSL_SCTS_VERIFICATION_STATUS,
- verificationStatus);
+/* STUB */
}
void
GatherCertificateTransparencyTelemetry(const UniqueCERTCertList& certList,
const CertificateTransparencyInfo& info)
{
- if (!info.enabled) {
- // No telemetry is gathered when CT is disabled.
- return;
- }
-
- if (!info.processedSCTs) {
- // We didn't receive any SCT data for this connection.
- Telemetry::Accumulate(Telemetry::SSL_SCTS_PER_CONNECTION, 0);
- return;
- }
-
- for (const ct::SignedCertificateTimestamp& sct : info.verifyResult.scts) {
- GatherTelemetryForSingleSCT(sct);
- }
-
- // Decoding errors are reported to the 0th bucket
- // of the SSL_SCTS_VERIFICATION_STATUS enumerated probe.
- for (size_t i = 0; i < info.verifyResult.decodingErrors; ++i) {
- Telemetry::Accumulate(Telemetry::SSL_SCTS_VERIFICATION_STATUS, 0);
- }
-
- // Handle the histogram of SCTs counts.
- uint32_t sctsCount = static_cast<uint32_t>(info.verifyResult.scts.length());
- // Note that sctsCount can be 0 in case we've received SCT binary data,
- // but it failed to parse (e.g. due to unsupported CT protocol version).
- Telemetry::Accumulate(Telemetry::SSL_SCTS_PER_CONNECTION, sctsCount);
+/* STUB */
}
// Note: Takes ownership of |peerCertChain| if SECSuccess is not returned.
@@ -1350,29 +1239,6 @@ AuthCertificate(CertVerifier& certVerifier,
uint32_t evStatus = (rv != Success) ? 0 // 0 = Failure
: (evOidPolicy == SEC_OID_UNKNOWN) ? 1 // 1 = DV
: 2; // 2 = EV
- Telemetry::Accumulate(Telemetry::CERT_EV_STATUS, evStatus);
-
- if (ocspStaplingStatus != CertVerifier::OCSP_STAPLING_NEVER_CHECKED) {
- Telemetry::Accumulate(Telemetry::SSL_OCSP_STAPLING, ocspStaplingStatus);
- }
- if (keySizeStatus != KeySizeStatus::NeverChecked) {
- Telemetry::Accumulate(Telemetry::CERT_CHAIN_KEY_SIZE_STATUS,
- static_cast<uint32_t>(keySizeStatus));
- }
- if (sha1ModeResult != SHA1ModeResult::NeverChecked) {
- Telemetry::Accumulate(Telemetry::CERT_CHAIN_SHA1_POLICY_STATUS,
- static_cast<uint32_t>(sha1ModeResult));
- }
-
- if (pinningTelemetryInfo.accumulateForRoot) {
- Telemetry::Accumulate(Telemetry::CERT_PINNING_FAILURES_BY_CA,
- pinningTelemetryInfo.rootBucket);
- }
-
- if (pinningTelemetryInfo.accumulateResult) {
- Telemetry::Accumulate(pinningTelemetryInfo.certPinningResultHistogram,
- pinningTelemetryInfo.certPinningResultBucket);
- }
if (rv == Success) {
// Certificate verification succeeded. Delete any potential record of
@@ -1517,7 +1383,6 @@ SSLServerCertVerificationJob::Run()
new SSLServerCertVerificationResult(mInfoObject, 0,
successTelemetry, interval));
restart->Dispatch();
- Telemetry::Accumulate(Telemetry::SSL_CERT_ERROR_OVERRIDES, 1);
return NS_OK;
}
@@ -1527,7 +1392,6 @@ SSLServerCertVerificationJob::Run()
{
TimeStamp now = TimeStamp::Now();
MutexAutoLock telemetryMutex(*gSSLVerificationTelemetryMutex);
- Telemetry::AccumulateTimeDelta(failureTelemetry, mJobStartTime, now);
}
if (error != 0) {
RefPtr<CertErrorRunnable> runnable(
@@ -1694,7 +1558,6 @@ AuthCertificateHook(void* arg, PRFileDesc* fd, PRBool checkSig, PRBool isServer)
MOZ_ASSERT(peerCertChain || rv != SECSuccess,
"AuthCertificate() should take ownership of chain on failure");
if (rv == SECSuccess) {
- Telemetry::Accumulate(Telemetry::SSL_CERT_ERROR_OVERRIDES, 1);
return SECSuccess;
}
@@ -1782,10 +1645,6 @@ SSLServerCertVerificationResult::Dispatch()
NS_IMETHODIMP
SSLServerCertVerificationResult::Run()
{
- // TODO: Assert that we're on the socket transport thread
- if (mTelemetryID != Telemetry::HistogramCount) {
- Telemetry::Accumulate(mTelemetryID, mTelemetryValue);
- }
// XXX: This cast will be removed by the next patch
((nsNSSSocketInfo*) mInfoObject.get())
->SetCertVerificationResult(mErrorCode, mErrorMessageType);
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/nsKeygenHandler.cpp b/security/manager/ssl/nsKeygenHandler.cpp
index c4529f877..9196e200c 100644
--- a/security/manager/ssl/nsKeygenHandler.cpp
+++ b/security/manager/ssl/nsKeygenHandler.cpp
@@ -399,48 +399,7 @@ loser:
void
GatherKeygenTelemetry(uint32_t keyGenMechanism, int keysize, char* curve)
{
- if (keyGenMechanism == CKM_RSA_PKCS_KEY_PAIR_GEN) {
- if (keysize > 8196 || keysize < 0) {
- return;
- }
-
- nsCString telemetryValue("rsa");
- telemetryValue.AppendPrintf("%d", keysize);
- mozilla::Telemetry::Accumulate(
- mozilla::Telemetry::KEYGEN_GENERATED_KEY_TYPE, telemetryValue);
- } else if (keyGenMechanism == CKM_EC_KEY_PAIR_GEN) {
- nsCString secp384r1 = NS_LITERAL_CSTRING("secp384r1");
- nsCString secp256r1 = NS_LITERAL_CSTRING("secp256r1");
-
- mozilla::UniqueSECItem decoded = DecodeECParams(curve);
- if (!decoded) {
- switch (keysize) {
- case 2048:
- mozilla::Telemetry::Accumulate(
- mozilla::Telemetry::KEYGEN_GENERATED_KEY_TYPE, secp384r1);
- break;
- case 1024:
- case 512:
- mozilla::Telemetry::Accumulate(
- mozilla::Telemetry::KEYGEN_GENERATED_KEY_TYPE, secp256r1);
- break;
- }
- } else {
- if (secp384r1.EqualsIgnoreCase(curve, secp384r1.Length())) {
- mozilla::Telemetry::Accumulate(
- mozilla::Telemetry::KEYGEN_GENERATED_KEY_TYPE, secp384r1);
- } else if (secp256r1.EqualsIgnoreCase(curve, secp256r1.Length())) {
- mozilla::Telemetry::Accumulate(
- mozilla::Telemetry::KEYGEN_GENERATED_KEY_TYPE, secp256r1);
- } else {
- mozilla::Telemetry::Accumulate(
- mozilla::Telemetry::KEYGEN_GENERATED_KEY_TYPE, NS_LITERAL_CSTRING("other_ec"));
- }
- }
- } else {
- MOZ_CRASH("Unknown keygen algorithm");
- return;
- }
+/* STUB */
}
nsresult
diff --git a/security/manager/ssl/nsNSSCallbacks.cpp b/security/manager/ssl/nsNSSCallbacks.cpp
index 941101265..b8f1b0eb7 100644
--- a/security/manager/ssl/nsNSSCallbacks.cpp
+++ b/security/manager/ssl/nsNSSCallbacks.cpp
@@ -40,9 +40,6 @@ using namespace mozilla::psm;
extern LazyLogModule gPIPNSSLog;
-static void AccumulateCipherSuite(Telemetry::ID probe,
- const SSLChannelInfo& channelInfo);
-
namespace {
// Bits in bit mask for SSL_REASONS_FOR_NOT_FALSE_STARTING telemetry probe
@@ -490,31 +487,6 @@ nsNSSHttpRequestSession::internal_send_receive_attempt(bool &retryable_error,
}
}
- if (!event->mStartTime.IsNull()) {
- if (request_canceled) {
- Telemetry::Accumulate(Telemetry::CERT_VALIDATION_HTTP_REQUEST_RESULT, 0);
- Telemetry::AccumulateTimeDelta(
- Telemetry::CERT_VALIDATION_HTTP_REQUEST_CANCELED_TIME,
- event->mStartTime, TimeStamp::Now());
- }
- else if (NS_SUCCEEDED(mListener->mResultCode) &&
- mListener->mHttpResponseCode == 200) {
- Telemetry::Accumulate(Telemetry::CERT_VALIDATION_HTTP_REQUEST_RESULT, 1);
- Telemetry::AccumulateTimeDelta(
- Telemetry::CERT_VALIDATION_HTTP_REQUEST_SUCCEEDED_TIME,
- event->mStartTime, TimeStamp::Now());
- }
- else {
- Telemetry::Accumulate(Telemetry::CERT_VALIDATION_HTTP_REQUEST_RESULT, 2);
- Telemetry::AccumulateTimeDelta(
- Telemetry::CERT_VALIDATION_HTTP_REQUEST_FAILED_TIME,
- event->mStartTime, TimeStamp::Now());
- }
- }
- else {
- Telemetry::Accumulate(Telemetry::CERT_VALIDATION_HTTP_REQUEST_RESULT, 3);
- }
-
if (request_canceled) {
return Result::ERROR_OCSP_SERVER_ERROR;
}
@@ -996,7 +968,6 @@ PreliminaryHandshakeDone(PRFileDesc* fd)
} else {
infoObject->SetNegotiatedNPN(nullptr, 0);
}
- mozilla::Telemetry::Accumulate(Telemetry::SSL_NPN_TYPE, state);
} else {
infoObject->SetNegotiatedNPN(nullptr, 0);
}
@@ -1091,9 +1062,6 @@ CanFalseStartCallback(PRFileDesc* fd, void* client_data, PRBool *canFalseStart)
}
}
- Telemetry::Accumulate(Telemetry::SSL_REASONS_FOR_NOT_FALSE_STARTING,
- reasonsForNotFalseStarting);
-
if (reasonsForNotFalseStarting == 0) {
*canFalseStart = PR_TRUE;
infoObject->SetFalseStarted();
@@ -1118,7 +1086,6 @@ AccumulateNonECCKeySize(Telemetry::ID probe, uint32_t bits)
: bits < 8192 ? 17 : bits == 8192 ? 18
: bits < 16384 ? 19 : bits == 16384 ? 20
: 0;
- Telemetry::Accumulate(probe, value);
}
// XXX: This attempts to map a bit count to an ECC named curve identifier. In
@@ -1134,70 +1101,6 @@ AccumulateECCCurve(Telemetry::ID probe, uint32_t bits)
: bits == 384 ? 24 // P-384
: bits == 521 ? 25 // P-521
: 0; // Unknown
- Telemetry::Accumulate(probe, value);
-}
-
-static void
-AccumulateCipherSuite(Telemetry::ID probe, const SSLChannelInfo& channelInfo)
-{
- uint32_t value;
- switch (channelInfo.cipherSuite) {
- // ECDHE key exchange
- case TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256: value = 1; break;
- case TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256: value = 2; break;
- case TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA: value = 3; break;
- case TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA: value = 4; break;
- case TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA: value = 5; break;
- case TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA: value = 6; break;
- case TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA: value = 7; break;
- case TLS_ECDHE_RSA_WITH_RC4_128_SHA: value = 8; break;
- case TLS_ECDHE_ECDSA_WITH_RC4_128_SHA: value = 9; break;
- case TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA: value = 10; break;
- case TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256: value = 11; break;
- case TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256: value = 12; break;
- case TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384: value = 13; break;
- case TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384: value = 14; break;
- // DHE key exchange
- case TLS_DHE_RSA_WITH_AES_128_CBC_SHA: value = 21; break;
- case TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA: value = 22; break;
- case TLS_DHE_RSA_WITH_AES_256_CBC_SHA: value = 23; break;
- case TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA: value = 24; break;
- case TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA: value = 25; break;
- case TLS_DHE_DSS_WITH_AES_128_CBC_SHA: value = 26; break;
- case TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA: value = 27; break;
- case TLS_DHE_DSS_WITH_AES_256_CBC_SHA: value = 28; break;
- case TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA: value = 29; break;
- case TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA: value = 30; break;
- // ECDH key exchange
- case TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA: value = 41; break;
- case TLS_ECDH_RSA_WITH_AES_128_CBC_SHA: value = 42; break;
- case TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA: value = 43; break;
- case TLS_ECDH_RSA_WITH_AES_256_CBC_SHA: value = 44; break;
- case TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA: value = 45; break;
- case TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA: value = 46; break;
- case TLS_ECDH_ECDSA_WITH_RC4_128_SHA: value = 47; break;
- case TLS_ECDH_RSA_WITH_RC4_128_SHA: value = 48; break;
- // RSA key exchange
- case TLS_RSA_WITH_AES_128_CBC_SHA: value = 61; break;
- case TLS_RSA_WITH_CAMELLIA_128_CBC_SHA: value = 62; break;
- case TLS_RSA_WITH_AES_256_CBC_SHA: value = 63; break;
- case TLS_RSA_WITH_CAMELLIA_256_CBC_SHA: value = 64; break;
- case SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA: value = 65; break;
- case TLS_RSA_WITH_3DES_EDE_CBC_SHA: value = 66; break;
- case TLS_RSA_WITH_SEED_CBC_SHA: value = 67; break;
- case TLS_RSA_WITH_RC4_128_SHA: value = 68; break;
- case TLS_RSA_WITH_RC4_128_MD5: value = 69; break;
- // TLS 1.3 PSK resumption
- case TLS_AES_128_GCM_SHA256: value = 70; break;
- case TLS_CHACHA20_POLY1305_SHA256: value = 71; break;
- case TLS_AES_256_GCM_SHA384: value = 72; break;
- // unknown
- default:
- value = 0;
- break;
- }
- MOZ_ASSERT(value != 0);
- Telemetry::Accumulate(probe, value);
}
// In the case of session resumption, the AuthCertificate hook has been bypassed
@@ -1309,7 +1212,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);
@@ -1318,26 +1220,12 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) {
// 1=tls1, 2=tls1.1, 3=tls1.2
unsigned int versionEnum = channelInfo.protocolVersion & 0xFF;
MOZ_ASSERT(versionEnum > 0);
- Telemetry::Accumulate(Telemetry::SSL_HANDSHAKE_VERSION, versionEnum);
- AccumulateCipherSuite(
- infoObject->IsFullHandshake() ? Telemetry::SSL_CIPHER_SUITE_FULL
- : Telemetry::SSL_CIPHER_SUITE_RESUMED,
- channelInfo);
SSLCipherSuiteInfo cipherInfo;
rv = SSL_GetCipherSuiteInfo(channelInfo.cipherSuite, &cipherInfo,
sizeof cipherInfo);
MOZ_ASSERT(rv == SECSuccess);
if (rv == SECSuccess) {
- usesFallbackCipher = channelInfo.keaType == ssl_kea_dh;
-
- // keyExchange null=0, rsa=1, dh=2, fortezza=3, ecdh=4
- Telemetry::Accumulate(
- infoObject->IsFullHandshake()
- ? Telemetry::SSL_KEY_EXCHANGE_ALGORITHM_FULL
- : Telemetry::SSL_KEY_EXCHANGE_ALGORITHM_RESUMED,
- channelInfo.keaType);
-
MOZ_ASSERT(infoObject->GetKEAUsed() == channelInfo.keaType);
if (infoObject->IsFullHandshake()) {
@@ -1359,9 +1247,6 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) {
break;
}
- Telemetry::Accumulate(Telemetry::SSL_AUTH_ALGORITHM_FULL,
- channelInfo.authType);
-
// RSA key exchange doesn't use a signature for auth.
if (channelInfo.keaType != ssl_kea_rsa) {
switch (channelInfo.authType) {
@@ -1380,12 +1265,6 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) {
}
}
}
-
- Telemetry::Accumulate(
- infoObject->IsFullHandshake()
- ? Telemetry::SSL_SYMMETRIC_CIPHER_FULL
- : Telemetry::SSL_SYMMETRIC_CIPHER_RESUMED,
- cipherInfo.symCipher);
}
}
@@ -1421,15 +1300,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/nsNSSComponent.cpp b/security/manager/ssl/nsNSSComponent.cpp
index 025f4bda2..f580f2bcb 100644
--- a/security/manager/ssl/nsNSSComponent.cpp
+++ b/security/manager/ssl/nsNSSComponent.cpp
@@ -805,29 +805,22 @@ nsNSSComponent::MaybeEnableFamilySafetyCompatibility()
if (familySafetyMode > 2) {
familySafetyMode = 0;
}
- Telemetry::Accumulate(Telemetry::FAMILY_SAFETY, familySafetyMode);
if (familySafetyMode == 0) {
return;
}
bool familySafetyEnabled;
nsresult rv = AccountHasFamilySafetyEnabled(familySafetyEnabled);
if (NS_FAILED(rv)) {
- Telemetry::Accumulate(Telemetry::FAMILY_SAFETY, 3);
return;
}
if (!familySafetyEnabled) {
- Telemetry::Accumulate(Telemetry::FAMILY_SAFETY, 4);
return;
}
- Telemetry::Accumulate(Telemetry::FAMILY_SAFETY, 5);
if (familySafetyMode == 2) {
rv = LoadFamilySafetyRoot();
if (NS_FAILED(rv)) {
- Telemetry::Accumulate(Telemetry::FAMILY_SAFETY, 6);
MOZ_LOG(gPIPNSSLog, LogLevel::Debug,
("failed to load Family Safety root"));
- } else {
- Telemetry::Accumulate(Telemetry::FAMILY_SAFETY, 7);
}
}
#endif // XP_WIN
@@ -1316,8 +1309,8 @@ typedef struct {
bool weak;
} CipherPref;
-// Update the switch statement in AccumulateCipherSuite in nsNSSCallbacks.cpp
-// when you add/remove cipher suites here.
+// List of available cipher suites and their prefs
+// Format: "pref", cipherSuite, defaultEnabled, [isWeak = false]
static const CipherPref sCipherPrefs[] = {
{ "security.ssl3.ecdhe_rsa_aes_128_gcm_sha256",
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, true },
@@ -1376,12 +1369,18 @@ static const CipherPref sCipherPrefs[] = {
TLS_RSA_WITH_AES_256_CBC_SHA, true },
// Expensive/deprecated/weak
+// Deprecated
{ "security.ssl3.rsa_aes_128_gcm_sha256",
TLS_RSA_WITH_AES_128_GCM_SHA256, false }, // Deprecated
{ "security.ssl3.rsa_aes_128_sha256",
TLS_RSA_WITH_AES_128_CBC_SHA256, false }, // Deprecated
+// Weak/vulnerable
{ "security.ssl3.rsa_des_ede3_sha",
- TLS_RSA_WITH_3DES_EDE_CBC_SHA, false }, // Weak (3DES)
+ TLS_RSA_WITH_3DES_EDE_CBC_SHA, false, true }, // Weak (3DES)
+ { "security.ssl3.rsa_rc4_128_sha",
+ TLS_RSA_WITH_RC4_128_SHA, false, true }, // RC4
+ { "security.ssl3.rsa_rc4_128_md5",
+ TLS_RSA_WITH_RC4_128_MD5, false, true }, // RC4, HMAC-MD5
// All the rest are disabled
@@ -1391,8 +1390,8 @@ static const CipherPref sCipherPrefs[] = {
// Bit flags indicating what weak ciphers are enabled.
// The bit index will correspond to the index in sCipherPrefs.
// Wrtten by the main thread, read from any threads.
-static Atomic<uint32_t> sEnabledWeakCiphers;
-static_assert(MOZ_ARRAY_LENGTH(sCipherPrefs) - 1 <= sizeof(uint32_t) * CHAR_BIT,
+static uint64_t sEnabledWeakCiphers;
+static_assert(MOZ_ARRAY_LENGTH(sCipherPrefs) - 1 <= sizeof(uint64_t) * CHAR_BIT,
"too many cipher suites");
/*static*/ bool
@@ -1404,10 +1403,10 @@ nsNSSComponent::AreAnyWeakCiphersEnabled()
/*static*/ void
nsNSSComponent::UseWeakCiphersOnSocket(PRFileDesc* fd)
{
- const uint32_t enabledWeakCiphers = sEnabledWeakCiphers;
+ const uint64_t enabledWeakCiphers = sEnabledWeakCiphers;
const CipherPref* const cp = sCipherPrefs;
for (size_t i = 0; cp[i].pref; ++i) {
- if (enabledWeakCiphers & ((uint32_t)1 << i)) {
+ if (enabledWeakCiphers & ((uint64_t)1 << i)) {
SSL_CipherPrefSet(fd, cp[i].id, true);
}
}
@@ -1534,11 +1533,11 @@ CipherSuiteChangeObserver::Observe(nsISupports* aSubject,
// are enabled in prefs. They are only used on specific
// sockets as a part of a fallback mechanism.
// Only the main thread will change sEnabledWeakCiphers.
- uint32_t enabledWeakCiphers = sEnabledWeakCiphers;
+ uint64_t enabledWeakCiphers = sEnabledWeakCiphers;
if (cipherEnabled) {
- enabledWeakCiphers |= ((uint32_t)1 << i);
+ enabledWeakCiphers |= ((uint64_t)1 << i);
} else {
- enabledWeakCiphers &= ~((uint32_t)1 << i);
+ enabledWeakCiphers &= ~((uint64_t)1 << i);
}
sEnabledWeakCiphers = enabledWeakCiphers;
} else {
@@ -1574,13 +1573,6 @@ void nsNSSComponent::setValidationOptions(bool isInitialSetting,
bool ocspRequired = ocspEnabled &&
Preferences::GetBool("security.OCSP.require", false);
- // We measure the setting of the pref at startup only to minimize noise by
- // addons that may muck with the settings, though it probably doesn't matter.
- if (isInitialSetting) {
- Telemetry::Accumulate(Telemetry::CERT_OCSP_ENABLED, ocspEnabled);
- Telemetry::Accumulate(Telemetry::CERT_OCSP_REQUIRED, ocspRequired);
- }
-
bool ocspStaplingEnabled = Preferences::GetBool("security.ssl.enable_ocsp_stapling",
true);
PublicSSLState()->SetOCSPStaplingEnabled(ocspStaplingEnabled);
@@ -1932,20 +1924,6 @@ nsNSSComponent::InitializeNSS()
return NS_ERROR_FAILURE;
}
- // TLSServerSocket may be run with the session cache enabled. It is necessary
- // to call this once before that can happen. This specifies a maximum of 1000
- // cache entries (the default number of cache entries is 10000, which seems a
- // little excessive as there probably won't be that many clients connecting to
- // any TLSServerSockets the browser runs.)
- // Note that this must occur before any calls to SSL_ClearSessionCache
- // (otherwise memory will leak).
- if (SSL_ConfigServerSessionIDCache(1000, 0, 0, nullptr) != SECSuccess) {
-#ifdef ANDROID
- MOZ_RELEASE_ASSERT(false);
-#endif
- return NS_ERROR_FAILURE;
- }
-
// ensure the CertBlocklist is initialised
nsCOMPtr<nsICertBlocklist> certList = do_GetService(NS_CERTBLOCKLIST_CONTRACTID);
#ifdef ANDROID
@@ -1986,9 +1964,6 @@ nsNSSComponent::InitializeNSS()
return NS_ERROR_FAILURE;
}
- if (PK11_IsFIPS()) {
- Telemetry::Accumulate(Telemetry::FIPS_ENABLED, true);
- }
MOZ_LOG(gPIPNSSLog, LogLevel::Debug, ("NSS Initialization done\n"));
return NS_OK;
}
@@ -2476,7 +2451,7 @@ InitializeCipherSuite()
}
// Now only set SSL/TLS ciphers we knew about at compile time
- uint32_t enabledWeakCiphers = 0;
+ uint64_t enabledWeakCiphers = 0;
const CipherPref* const cp = sCipherPrefs;
for (size_t i = 0; cp[i].pref; ++i) {
bool cipherEnabled = Preferences::GetBool(cp[i].pref,
@@ -2485,7 +2460,7 @@ InitializeCipherSuite()
// Weak ciphers are not used by default. See the comment
// in CipherSuiteChangeObserver::Observe for details.
if (cipherEnabled) {
- enabledWeakCiphers |= ((uint32_t)1 << i);
+ enabledWeakCiphers |= ((uint64_t)1 << i);
}
} else {
SSL_CipherPrefSetDefault(cp[i].id, cipherEnabled);
diff --git a/security/manager/ssl/nsNSSIOLayer.cpp b/security/manager/ssl/nsNSSIOLayer.cpp
index 2d49540fb..d2549c52d 100644
--- a/security/manager/ssl/nsNSSIOLayer.cpp
+++ b/security/manager/ssl/nsNSSIOLayer.cpp
@@ -237,9 +237,6 @@ nsNSSSocketInfo::NoteTimeUntilReady()
mNotedTimeUntilReady = true;
- // This will include TCP and proxy tunnel wait time
- Telemetry::AccumulateTimeDelta(Telemetry::SSL_TIME_UNTIL_READY,
- mSocketCreationTimestamp, TimeStamp::Now());
MOZ_LOG(gPIPNSSLog, LogLevel::Debug,
("[%p] nsNSSSocketInfo::NoteTimeUntilReady\n", mFd));
}
@@ -259,16 +256,6 @@ nsNSSSocketInfo::SetHandshakeCompleted()
: mFalseStarted ? FalseStarted
: mFalseStartCallbackCalled ? ChoseNotToFalseStart
: NotAllowedToFalseStart;
-
- // This will include TCP and proxy tunnel wait time
- Telemetry::AccumulateTimeDelta(Telemetry::SSL_TIME_UNTIL_HANDSHAKE_FINISHED,
- mSocketCreationTimestamp, TimeStamp::Now());
-
- // If the handshake is completed for the first time from just 1 callback
- // that means that TLS session resumption must have been used.
- Telemetry::Accumulate(Telemetry::SSL_RESUMED_SESSION,
- handshakeType == Resumption);
- Telemetry::Accumulate(Telemetry::SSL_HANDSHAKE_TYPE, handshakeType);
}
@@ -623,11 +610,6 @@ nsNSSSocketInfo::SetCertVerificationResult(PRErrorCode errorCode,
SetCanceled(errorCode, errorMessageType);
}
- if (mPlaintextBytesRead && !errorCode) {
- Telemetry::Accumulate(Telemetry::SSL_BYTES_BEFORE_CERT_CALLBACK,
- AssertedCast<uint32_t>(mPlaintextBytesRead));
- }
-
mCertVerificationState = after_cert_verification;
}
@@ -1121,8 +1103,6 @@ retryDueToTLSIntolerance(PRErrorCode err, nsNSSSocketInfo* socketInfo)
PRErrorCode originalReason =
helpers.getIntoleranceReason(socketInfo->GetHostName(),
socketInfo->GetPort());
- Telemetry::Accumulate(Telemetry::SSL_VERSION_FALLBACK_INAPPROPRIATE,
- tlsIntoleranceTelemetryBucket(originalReason));
helpers.forgetIntolerance(socketInfo->GetHostName(),
socketInfo->GetPort());
@@ -1144,11 +1124,8 @@ retryDueToTLSIntolerance(PRErrorCode err, nsNSSSocketInfo* socketInfo)
helpers.mUnrestrictedRC4Fallback) {
if (helpers.rememberStrongCiphersFailed(socketInfo->GetHostName(),
socketInfo->GetPort(), err)) {
- Telemetry::Accumulate(Telemetry::SSL_WEAK_CIPHERS_FALLBACK,
- tlsIntoleranceTelemetryBucket(err));
return true;
}
- Telemetry::Accumulate(Telemetry::SSL_WEAK_CIPHERS_FALLBACK, 0);
}
}
@@ -1191,18 +1168,12 @@ retryDueToTLSIntolerance(PRErrorCode err, nsNSSSocketInfo* socketInfo)
return false;
}
- // The difference between _PRE and _POST represents how often we avoided
- // TLS intolerance fallback due to remembered tolerance.
- Telemetry::Accumulate(pre, reason);
-
if (!helpers.rememberIntolerantAtVersion(socketInfo->GetHostName(),
socketInfo->GetPort(),
range.min, range.max, err)) {
return false;
}
- Telemetry::Accumulate(post, reason);
-
return true;
}
@@ -1242,8 +1213,6 @@ reportHandshakeResult(int32_t bytesTransferred, bool wasReading, PRErrorCode err
} else {
bucket = 671;
}
-
- Telemetry::Accumulate(Telemetry::SSL_HANDSHAKE_RESULT, bucket);
}
int32_t
@@ -1947,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
@@ -2008,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/nsNTLMAuthModule.cpp b/security/manager/ssl/nsNTLMAuthModule.cpp
index a0564118a..46a4a21a0 100644
--- a/security/manager/ssl/nsNTLMAuthModule.cpp
+++ b/security/manager/ssl/nsNTLMAuthModule.cpp
@@ -1009,11 +1009,6 @@ nsNTLMAuthModule::Init(const char *serviceName,
static bool sTelemetrySent = false;
if (!sTelemetrySent) {
- mozilla::Telemetry::Accumulate(
- mozilla::Telemetry::NTLM_MODULE_USED_2,
- serviceFlags & nsIAuthModule::REQ_PROXY_AUTH
- ? NTLM_MODULE_GENERIC_PROXY
- : NTLM_MODULE_GENERIC_DIRECT);
sTelemetrySent = true;
}
diff --git a/security/manager/ssl/nsPKCS11Slot.cpp b/security/manager/ssl/nsPKCS11Slot.cpp
index 780a7c4b2..015f86901 100644
--- a/security/manager/ssl/nsPKCS11Slot.cpp
+++ b/security/manager/ssl/nsPKCS11Slot.cpp
@@ -541,10 +541,6 @@ nsPKCS11ModuleDB::ToggleFIPSMode()
return NS_ERROR_FAILURE;
}
- if (PK11_IsFIPS()) {
- Telemetry::Accumulate(Telemetry::FIPS_ENABLED, true);
- }
-
return NS_OK;
}
diff --git a/security/manager/ssl/nsSTSPreloadList.errors b/security/manager/ssl/nsSTSPreloadList.errors
index 4cfa9bd84..92e7ea00f 100644
--- a/security/manager/ssl/nsSTSPreloadList.errors
+++ b/security/manager/ssl/nsSTSPreloadList.errors
@@ -1,32 +1,71 @@
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
+0005.com: did not receive HSTS header
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: could not connect to host
+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: could not connect to host
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
+016028.com: did not receive HSTS header
+016098.com: did not receive HSTS header
016298.com: did not receive HSTS header
+016328.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
-0222aa.com: did not receive HSTS header
-023838.com: did not receive HSTS header
-02607.com: could not connect to host
+0222.mg: did not receive HSTS header
+0222aa.com: could not connect to host
+023838.com: could not connect to host
+023sec.com: could not connect to host
+028718.com: did not receive HSTS header
+029978.com: did not receive HSTS header
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
-066318.com: could not connect to host
+055268.com: did not receive HSTS header
+066318.com: did not receive HSTS header
+066538.com: did not receive HSTS header
066718.com: did not receive HSTS header
066928.com: could not connect to host
066938.com: could not connect to host
070709.net: could not connect to host
-09115.com: 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
+086628.com: did not receive HSTS header
0c.eu: did not receive HSTS header
0cdn.ga: could not connect to host
0day.su: could not connect to host
@@ -34,18 +73,18 @@
0fl.com: did not receive HSTS header
0g.org.uk: could not connect to host
0i0.nl: could not connect to host
-0iz.net: could not connect to host
0o0.ooo: could not connect to host
0p.no: did not receive HSTS header
0vi.org: could not connect to host
0w0.vc: could not connect to host
0x0a.net: could not connect to host
0x1337.eu: could not connect to host
-0x44.net: did not receive HSTS header
+0x44.net: could not connect to host
0x4b0c131e.pub: could not connect to host
0x52.org: could not connect to host
0x539.be: did not receive HSTS header
-0x539.pw: did not receive HSTS header
+0x539.pw: could not connect to host
+0x5f3759df.cf: could not connect to host
0x65.net: did not receive HSTS header
0x90.fi: could not connect to host
0x90.in: could not connect to host
@@ -53,131 +92,209 @@
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
+1001carats.fr: could not connect to host
100onrainkajino.com: could not connect to host
+100rembourse.be: did not receive HSTS header
1017scribes.com: could not connect to host
1018hosting.nl: did not receive HSTS header
1022996493.rsc.cdn77.org: could not connect to host
+10414.org: could not connect to host
+1066.io: 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
+10xiuxiu.com: did not receive HSTS header
+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
-12.net: did not receive HSTS header
+11scc.com: could not connect to host
120dayweightloss.com: could not connect to host
123110.com: could not connect to host
+123djdrop.com: did not receive HSTS header
123movies.fyi: did not receive HSTS header
+123pay.ir: 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
+1288366.com: could not connect to host
12vpn.org: could not connect to host
12vpnchina.com: could not connect to host
-1359826938.rsc.cdn77.org: did not receive HSTS header
+130978.com: did not receive HSTS header
+13318522.com: could not connect to host
135vv.com: could not connect to host
13826145000.com: could not connect to host
-1396.cc: did not receive HSTS header
+1391kj.com: did not receive HSTS header
+1395kj.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: could not connect to host
1536.cf: could not connect to host
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
+16book.org: could not connect to host
16deza.com: did not receive HSTS header
16packets.com: could not connect to host
-173vpn.cn: did not receive HSTS header
+173vpn.cn: could not connect to host
173vpns.com: could not connect to host
173vpnv.com: could not connect to host
174.net.nz: did not receive HSTS header
-174343.com: did not receive HSTS header
+174343.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: did not receive HSTS header
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
+1a-vermessung.at: did not receive HSTS header
+1a-werkstattgeraete.de: did not receive HSTS header
+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]
1er-secours.ch: could not connect to host
+1europlan.nl: could not connect to host
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
-1st4abounce.co.uk: did not receive HSTS header
+1salland.nl: could not connect to host
+1st4abounce.co.uk: could not connect to host
1stcapital.com.sg: did not receive HSTS header
+1ststop.co.uk: did not receive HSTS header
1three1.net: did not receive HSTS header
+1upinternet.com: could not connect to host
1xcess.com: did not receive HSTS header
1years.cc: did not receive HSTS header
2-cpu.de: could not connect to host
-20188088.com: did not receive HSTS header
+200fcw.com: could not connect to host
+2018.wales: could not connect to host
+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
+20denier.com: 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
+22digital.agency: could not connect to host
+22scc.com: could not connect to host
2333.press: could not connect to host
-233boy.com: could not connect to host
+247a.co.uk: 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
24hourpaint.com: could not connect to host
-24hrs.shopping: did not receive HSTS header
+24hrs.shopping: could not connect to host
24kbet.com: could not connect to host
24pcr.com: could not connect to host
24sihu.com: 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
+263.info: could not connect to host
+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
-2au.ru: could not connect to host
2b3b.com: could not connect to host
+2bad2c0.de: did not receive HSTS header
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
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
+301.website: did not receive HSTS header
302.nyc: could not connect to host
+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
+31tv.ru: did not receive HSTS header
32ph.com: could not connect to host
330.net: could not connect to host
+33836.com: could not connect to host
338da.com: could not connect to host
-33drugstore.com: did not receive HSTS header
-341.mg: did not receive HSTS header
-3555500.com: could not connect to host
+33drugstore.com: could not connect to host
+33scc.com: could not connect to host
+341.mg: could not connect to host
+34oztonic.eu: did not receive HSTS header
+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
-3778xl.com: did not receive HSTS header
+3778vip.com: did not receive HSTS header
+3778xl.com: could not connect to host
3839.ca: could not connect to host
-388da.com: could not connect to host
+38888msc.com: could not connect to host
+38blog.com: did not receive HSTS header
38sihu.com: could not connect to host
-3aandl.com: did not receive HSTS header
+398.info: could not connect to host
3candy.com: could not connect to host
3chit.cf: could not connect to host
3click-loan.com: could not connect to host
@@ -188,11 +305,13 @@
3dproteinimaging.com: did not receive HSTS header
3fl.com: did not receive HSTS header
3hl0.net: could not connect to host
-3lot.ru: could not connect to host
+3ik.us: could not connect to host
3mbo.de: did not receive HSTS header
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
4036aa.com: did not receive HSTS header
4036bb.com: did not receive HSTS header
4036cc.com: did not receive HSTS header
@@ -202,158 +321,276 @@
404404.info: could not connect to host
404forest.com: did not receive HSTS header
41844.de: could not connect to host
-41studio.com: could not connect to host
420dongstorm.com: could not connect to host
+4237.com: could not connect to host
+42entrepreneurs.fr: did not receive HSTS header
42ms.org: could not connect to host
42t.ru: could not connect to host
-439191.com: did not receive HSTS header
+439191.com: could not connect to host
440hz-radio.de: did not receive HSTS header
440hz.radio: did not receive HSTS header
-4455software.com: could not connect to host
+4455software.com: did not receive HSTS header
+448da.com: did not receive HSTS header
44957.com: could not connect to host
+44scc.com: could not connect to host
+4500.co.il: did not receive HSTS header
+4553vip.com: could not connect to host
4679.space: did not receive HSTS header
+4736666.com: could not connect to host
+478933.com: could not connect to host
+47essays.com: could not connect to host
47tech.com: could not connect to host
-4azino777.ru: could not connect to host
+4997777.com: could not connect to host
+4azino777.ru: did not receive HSTS header
4baby.com.br: could not connect to host
4bike.eu: did not receive HSTS header
4cclothing.com: could not connect to host
4d2.xyz: could not connect to host
-4flex.info: could not connect to host
+4decor.org: max-age too low: 0
4hvac.com: did not receive HSTS header
4loc.us: could not connect to host
4miners.net: could not connect to host
4mybaby.ch: did not receive HSTS header
4ourty2.org: could not connect to host
+4sics.se: could not connect to host
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
+50plusnet.nl: 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
+52hentai.ml: 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]
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
+558da.com: could not connect to host
+55bt.cc: did not receive HSTS header
+55scc.com: could not connect to host
56877.com: could not connect to host
56ct.com: could not connect to host
57aromas.com: did not receive HSTS header
+57he.com: could not connect to host
+593380.com: could not connect to host
+598380.com: could not connect to host
+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]
+5986fc.com: could not connect to host
+5chat.it: could not connect to host
+5ece.de: could not connect to host
5piecesofadvice.com: could not connect to host
+5starbouncycastlehire.co.uk: could not connect to host
+5w5.la: could not connect to host
605508.cc: could not connect to host
605508.com: could not connect to host
60ych.net: did not receive HSTS header
6120.eu: did not receive HSTS header
-62755.com: could not connect to host
+626380.com: could not connect to host
+62755.com: did not receive HSTS header
+645ds.cn: did not receive HSTS header
+645ds.com: did not receive HSTS header
64616e.xyz: could not connect to host
-660011.com: max-age too low: 0
-68277.me: 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
+65d88.com: could not connect to host
+660011.com: did not receive HSTS header
+6616fc.com: could not connect to host
+66205.net: did not receive HSTS header
+6677.us: could not connect to host
+668da.com: did not receive HSTS header
+66bwf.com: could not connect to host
+67899876.com: did not receive HSTS header
+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
+6w6.la: could not connect to host
+6z3.net: could not connect to host
+7045.com: could not connect to host
7183.org: could not connect to host
-721av.com: max-age too low: 2592000
+721av.com: could not connect to host
724go.com: could not connect to host
7261696e626f77.net: could not connect to host
72ty.com: could not connect to host
72ty.net: could not connect to host
73223.com: did not receive HSTS header
-776573.net: could not connect to host
+7570.com: did not receive HSTS header
+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
-77book.cn: did not receive HSTS header
-7bwin.com: max-age too low: 3600
+778da.com: did not receive HSTS header
+77book.cn: could not connect to host
+788da.com: did not receive HSTS header
+789zr.com: could not connect to host
7f-wgg.cf: could not connect to host
+7kovrikov.ru: did not receive HSTS header
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
808phone.net: could not connect to host
-81818app.com: did not receive HSTS header
+818bwf.com: could not connect to host
81uc.com: could not connect to host
+8206688.com: did not receive HSTS header
826468.com: could not connect to host
826498.com: could not connect to host
82ty.com: could not connect to host
83i.net: could not connect to host
8522.am: could not connect to host
8522cn.com: did not receive HSTS header
+8522top.com: could not connect to host
8560.be: could not connect to host
+8649955.com: could not connect to host
+8649966.com: could not connect to host
+8649977.com: could not connect to host
+8688fc.com: could not connect to host
+8722.com: did not receive HSTS header
87577.com: could not connect to host
-88.to: could not connect to host
+88.to: did not receive HSTS header
+8876205.com: did not receive HSTS header
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
+888bwf.com: could not connect to host
888lu.co: could not connect to host
+888msc.vip: could not connect to host
+88bwf.com: 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: could not connect to host
+8azino777.ru: did not receive HSTS header
8ballbombom.uk: could not connect to host
-8dabet.com: could not connect to host
+8da2017.com: did not receive HSTS header
+8da2018.com: could not connect to host
8mpay.com: did not receive HSTS header
-8svn.com: could not connect to host
+8pecxstudios.com: could not connect to host
+8shequapp.com: could not connect to host
+8svn.com: did not receive HSTS header
8t88.biz: 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
+8xxxxxxx.com: could not connect to host
90smthng.com: could not connect to host
91-freedom.com: could not connect to host
9118b.com: could not connect to host
911911.pw: could not connect to host
-915ers.com: did not receive HSTS header
+915ers.com: could not connect to host
+918yy.com: could not connect to host
+919945.com: did not receive HSTS header
91dh.cc: could not connect to host
-91lt.info: could not connect to host
+91lt.info: did not receive HSTS header
922.be: could not connect to host
92bmh.com: did not receive HSTS header
-94cs.cn: did not receive HSTS header
+9454.com: could not connect to host
+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
-9998722.com: could not connect to host
+99599.net: could not connect to host
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
+9jaxtreme.com.ng: did not receive HSTS header
9point6.com: could not connect to host
+9ss6.com: could not connect to host
+9tolife.be: did not receive HSTS header
+9vies.ca: could not connect to host
+9won.kr: could not connect to host
a-intel.com: did not receive HSTS header
a-ix.net: could not connect to host
a-plus.space: could not connect to host
a-rickroll-n.pw: could not connect to host
+a-shafaat.ir: did not receive HSTS header
+a-starbouncycastles.co.uk: could not connect to host
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
a2c-co.net: could not connect to host
-a2it.gr: did not receive HSTS header
+a2it.gr: max-age too low: 0
+a3.pm: did not receive HSTS header
a3workshop.swiss: could not connect to host
+a7m2.me: could not connect to host
a8q.org: could not connect to host
a9c.co: could not connect to host
+aa-tour.ru: 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
+aanbieders.ga: could not connect to host
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
-aarkue.eu: did not receive HSTS header
aaron-gustafson.com: did not receive HSTS header
-aaronmcguire.me: did not receive HSTS header
+aaronmcguire.me: could not connect to host
aarvinproperties.com: could not connect to host
-aati.info: 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
abareplace.com: did not receive HSTS header
abasky.net: 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
+abchelp.net: could not connect to host
+abdullah.pw: could not connect to host
abearofsoap.com: could not connect to host
abecodes.net: 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
@@ -362,17 +599,18 @@ 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
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
+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
-abstractbarista.net: could not connect to host
abt.de: did not receive HSTS header
abtom.de: did not receive HSTS header
abury.fr: did not receive HSTS header
@@ -381,12 +619,14 @@ abyssgaming.eu: 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
-academicenterprise.org: could not connect to host
+academicenterprise.org: did not receive HSTS header
academy4.net: did not receive HSTS header
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
accelight.co.jp: did not receive HSTS header
@@ -394,20 +634,24 @@ 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
-accountradar.com: max-age too low: 86400
-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
+acelpb.com: could not connect to host
+acemypaper.com: could not connect to host
+acevik.de: could not connect to host
acg.mn: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
acg.sb: could not connect to host
+acg18.us: max-age too low: 0
acgaudio.com: could not connect to host
-acgmoon.org: did not receive HSTS header
acgpiano.club: could not connect to host
acheirj.com.br: could not connect to host
-acheritage.co.uk: did not receive HSTS header
+acheritage.co.uk: could not connect to host
+achmadfamily.com: could not connect to host
achow101.com: did not receive HSTS header
achterhoekseveiligheidsbeurs.nl: could not connect to host
+acidbin.co: 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
@@ -415,59 +659,74 @@ 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
+across.ml: could not connect to host
acrossgw.com: could not connect to host
+acsihostingsolutions.com: did not receive HSTS header
acslimited.co.uk: did not receive HSTS header
+actc81.fr: could not connect to host
actilove.ch: could not connect to host
actiontowingroundrock.com: could not connect to host
activateplay.com: did not receive HSTS header
active-escape.com: did not receive HSTS header
+activeclearweb.com: could not connect to host
activeweb.top: could not connect to host
+activeworld.net: max-age too low: 2592000
+activistasconstructivos.org: did not receive HSTS header
activiti.alfresco.com: did not receive HSTS header
+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]
+acupofsalt.tv: could not connect to host
acuve.jp: could not connect to host
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
adamcoffee.net: could not connect to host
adamdixon.co.uk: could not connect to host
+adamjoycegames.co.uk: could not connect to host
adamricheimer.com: could not connect to host
+adamsfoundationrepair.com: did not receive HSTS header
+adamwilcox.org: did not receive HSTS header
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
adelevie.com: could not connect to host
-adeline.mobi: could not connect to host
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
adfa-1.com: could not connect to host
-adhigamindia.com: did not receive HSTS header
+adhigamindia.com: could not connect to host
adhosting.nl: did not receive HSTS header
adhs-chaoten.net: did not receive HSTS header
adigitali.biz: did not receive HSTS header
adindexr.com: could not connect to host
+adint.net: could not connect to host
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.net: did not receive HSTS header
-admiral.dp.ua: did not receive HSTS header
+adminwerk.com: did not receive HSTS header
admitcard.co.in: could not connect to host
admsel.ec: could not connect to host
adoal.net: did not receive HSTS header
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
+adorade.ro: could not connect to host
adprospb.com: did not receive HSTS header
adquisitio.de: could not connect to host
adquisitio.in: could not connect to host
@@ -475,6 +734,8 @@ adrenaline-gaming.ru: could not connect to host
adrianajewelry.my: could not connect to host
adriancohea.ninja: did not receive HSTS header
adrianseo.ro: did not receive HSTS header
+adrien.vin: max-age too low: 172800
+adrinet.tk: could not connect to host
adrl.ca: could not connect to host
adsfund.org: could not connect to host
aduedu.de: did not receive HSTS header
@@ -487,14 +748,19 @@ advanced-online.eu: could not connect to host
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
+advelty.cz: 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
advertisemant.com: could not connect to host
+advicepro.org.uk: did not receive HSTS header
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
+aelisya.ch: could not connect to host
aelurus.com: could not connect to host
aemoria.com: could not connect to host
aeon.wiki: could not connect to host
@@ -503,23 +769,34 @@ aerolog.co: did not receive HSTS header
aeroparking.es: did not receive HSTS header
aerotheque.fr: did not receive HSTS header
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
af-fotografie.net: did not receive HSTS header
+af-internet.nl: did not receive HSTS header
afdkompakt.de: max-age too low: 86400
+afeefzarapackages.com: did not receive HSTS header
affily.io: could not connect to host
+affinity.vc: did not receive HSTS header
+affloc.com: could not connect to host
affordablebouncycastle.co.uk: did not receive HSTS header
+affordablepapers.com: could not connect to host
aficotroceni.ro: did not receive HSTS header
afiru.net: could not connect to host
-afmchandler.com: did not receive HSTS header
+aflamtorrent.com: could not connect to host
+afmchandler.com: could not connect to host
afp548.tk: could not connect to host
-after.im: did not receive HSTS header
+africatravel.de: did not receive HSTS header
+after.im: could not connect to host
+afterskool.eu: could not connect to host
afterstack.net: could not connect to host
afvallendoeje.nu: could not connect to host
afyou.co.kr: could not connect to host
+afzco.asia: did not receive HSTS header
agalaxyfarfaraway.co.uk: could not connect to host
agatheetraphael.fr: could not connect to host
agbremen.de: could not connect to host
@@ -527,74 +804,88 @@ agdalieso.com.ba: could not connect to host
agelesscitizen.com: could not connect to host
agelesscitizens.com: could not connect to host
agenbettingasia.com: did not receive HSTS header
+agenceactiv.immo: did not receive HSTS header
+agenceklic.com: did not receive HSTS header
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
agingstop.net: could not connect to host
+agonswim.com: did not receive HSTS header
agoravm.tk: could not connect to host
agowa.eu: did not receive HSTS header
agowa338.de: did not receive HSTS header
agrafix.design: did not receive HSTS header
-agrarking.com: could not connect to host
agrias.com.br: did not receive HSTS header
agrikulturchic.com: could not connect to host
agrimap.com: did not receive HSTS header
agro-id.gov.ua: did not receive HSTS header
+agro.rip: did not receive HSTS header
agroglass.com.br: did not receive HSTS header
-agroline.by: 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
-ahmedcharles.com: could not connect to host
+ahiru3.com: did not receive HSTS header
aholic.co: did not receive HSTS header
-ahoynetwork.com: could not connect to host
+ahoynetwork.com: did not receive HSTS header
ahri.ovh: could not connect to host
ahsin.online: could not connect to host
ahwah.net: could not connect to host
-ahwatukeefoothillsmontessori.com: did not receive HSTS header
+ahwatukeefoothillsmontessori.com: could not connect to host
ai1989.com: could not connect to host
+aibaoyou.com: could not connect to host
aibsoftware.mx: could not connect to host
-aicial.co.uk: could not connect to host
aicial.com: did not receive HSTS header
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: could not connect to host
+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
-aignermunich.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]
-aignermunich.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]
-aignermunich.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]
+aiheisi.com: did not receive HSTS header
aikenorganics.com: could not connect to host
-aim-consultants.com: could not connect to host
+aim-consultants.com: did not receive HSTS header
aimrom.org: could not connect to host
ainrb.com: could not connect to host
-aintevenmad.ch: could not connect to host
aioboot.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]
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
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
aishnair.com: could not connect to host
aisle3.space: could not connect to host
+aisr.nl: did not receive HSTS header
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
+aizxxs.com: could not connect to host
+aizxxs.net: could not connect to host
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
+ak-webit.de: could not connect to host
aka.my: did not receive HSTS header
akboy.pw: could not connect to host
akclinics.org: did not receive HSTS header
@@ -604,19 +895,26 @@ akgundemirbas.com: could not connect to host
akhilindurti.com: could not connect to host
akhras.at: did not receive HSTS header
akiba-server.info: could not connect to host
+akihiro.xyz: could not connect to host
+akita-boutique.com: could not connect to host
akita-stream.com: could not connect to host
akkadia.cc: 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
-akselimedia.fi: did not receive HSTS header
+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]
+akritikos.info: could not connect to host
+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
+aktuelle-uhrzeit.at: did not receive HSTS header
+akul.co.in: could not connect to host
al-f.net: could not connect to host
al-shami.net: could not connect to host
-alamgir.works: could not connect to host
-alanhuang.name: did not receive HSTS header
+al3366.tech: could not connect to host
alanlee.net: could not connect to host
alanrickmanflipstable.com: did not receive HSTS header
+alanya.law: did not receive HSTS header
alariel.de: did not receive HSTS header
alarme-gps.ch: could not connect to host
alarmegps.ch: could not connect to host
@@ -626,35 +924,45 @@ 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: did not receive HSTS header
albertify.xyz: could not connect to host
+albertonplumber24-7.co.za: did not receive HSTS header
albertopimienta.com: did not receive HSTS header
+albuic.tk: could not connect to host
alcantarafleuriste.com: did not receive HSTS header
-alcatraz.online: could not connect to host
+alcatelonetouch.us: could not connect to host
+alcatraz.online: did not receive HSTS header
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
-aleksejjocic.tk: could not connect to host
+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]
+alessandro.pw: could not connect to host
+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
-alexbaker.org: did not receive HSTS header
+alexdaulby.com: did not receive HSTS header
alexdodge.ca: did not receive HSTS header
-alexei.su: could not connect to host
alexfisherhealth.com.au: did not receive HSTS header
alexhaydock.co.uk: did not receive HSTS header
+alexischaussy.xyz: could not connect to host
+alexismeza.com: could not connect to host
+alexismeza.com.mx: could not connect to host
alexismeza.dk: could not connect to host
+alexismeza.es: could not connect to host
+alexismeza.nl: could not connect to host
alexkidd.de: did not receive HSTS header
alexmak.net: did not receive HSTS header
alexmol.tk: could not connect to host
alexperry.io: could not connect to host
+alexsinnott.me: could not connect to host
alfa24.pro: could not connect to host
alfaperfumes.com.br: could not connect to host
alfaponny.se: could not connect to host
@@ -662,36 +970,49 @@ alfirous.com: could not connect to host
alfredxing.com: did not receive HSTS header
algarmatic-automatismos.pt: could not connect to host
algebraaec.com: did not receive HSTS header
-alghaib.com: did not receive HSTS header
-alghanimcatering.com: did not receive HSTS header
-alibababee.com: did not receive HSTS header
+algercounty.gov: could not connect to host
+alghaib.com: could not connect to host
+alibababee.com: could not connect to host
+alibip.de: could not connect to host
+alicialab.org: could not connect to host
+alien.bz: 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
+alis-test.tk: 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: did not receive HSTS header
+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
all-subtitles.com: could not connect to host
all.tf: could not connect to host
all4os.com: did not receive HSTS header
-allangirvan.net: could not connect to host
+allaboutbelgaum.com: did not receive HSTS header
alldaymonitoring.com: could not connect to host
alldm.ru: could not connect to host
allegro-inc.com: did not receive HSTS header
+allemobieleproviders.nl: could not connect to host
allenosgood.com: could not connect to host
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
+allinone-ranking150.com: did not receive HSTS header
+allinonecyprus.com: could not connect to host
allkindzabeats.com: did not receive HSTS header
+allladyboys.com: could not connect to host
allmbw.com: could not connect to host
allmystery.de: did not receive HSTS header
+allo-symo.fr: did not receive HSTS header
allods-zone.ru: did not receive HSTS header
alloffice.com.ua: did not receive HSTS header
alloinformatique.net: could not connect to host
@@ -700,19 +1021,26 @@ allpropertyservices.com: did not receive HSTS header
allprorisk.com: did not receive HSTS header
allrealty.co.za: could not connect to host
allscammers.exposed: could not connect to host
+allseasons-cleaning.co.uk: could not connect to host
allsortscastles.co.uk: could not connect to host
+allstarautokiaparts.com: could not connect to host
allstarswithus.com: could not connect to host
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
almagalla.com: could not connect to host
-almatinki.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]
+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
+alpencam.com: could not connect to host
alpha.irccloud.com: could not connect to host
alphabit-secure.com: could not connect to host
+alphabrock.cn: could not connect to host
alphabuild.io: could not connect to host
alphagamers.net: did not receive HSTS header
alphahunks.com: could not connect to host
@@ -725,30 +1053,43 @@ altahrim.net: could not connect to host
altaide.com: did not receive HSTS header
altailife.ru: did not receive HSTS header
altamarea.se: could not connect to host
+altbinaries.com: could not connect to host
alteqnia.com: could not connect to host
-altercpa.ru: did not receive HSTS header
+altercpa.ru: max-age too low: 0
+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]
-altmv.com: max-age too low: 7776000
+altoneum.com: could not connect to host
altporn.xyz: could not connect to host
+altruistgroup.net: max-age too low: 300
+alttrackr.com: could not connect to host
aluminium-scaffolding.co.uk: could not connect to host
alunjam.es: did not receive HSTS header
-alunonaescola.com.br: could not connect to host
-aluoblog.top: 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: 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
+amaforro.com: could not connect to host
amaforums.org: did not receive HSTS header
-amagical.net: did not receive HSTS header
+amalficoastchauffeur.com: could not connect to host
+amalfirock.it: could not connect to host
amandaonishi.com: could not connect to host
+amandaworldstudies.com: could not connect to host
amaranthus.com.ph: could not connect to host
+amateri.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
@@ -762,17 +1103,27 @@ 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
+amesplash.co.uk: 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
+ameza.io: could not connect to host
+ameza.me: could not connect to host
+ameza.net: could not connect to host
amicsdelbus.com: did not receive HSTS header
amigogeek.net: could not connect to host
amihub.com: could not connect to host
amilum.org: could not connect to host
amilx.com: could not connect to host
amilx.org: could not connect to host
-amimoto-ami.com: max-age too low: 3153600
+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
+amitube.com: 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
@@ -784,44 +1135,50 @@ 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
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
anaisypirueta.es: did not receive HSTS header
+anajianu.ro: max-age too low: 2592000
anakros.me: could not connect to host
+analangelsteen.com: could not connect to host
analpantyhose.org: could not connect to host
+analteengirls.net: could not connect to host
analytic-s.ml: could not connect to host
-analytics-shop.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]
analyticsinmotion.net: could not connect to host
analyzemyfriends.com: could not connect to host
+anastasiafond.com: did not receive HSTS header
ancarda.net: could not connect to host
anchorgrounds.com: did not receive HSTS header
anchorinmarinainc.com: did not receive HSTS header
ancient-gates.de: could not connect to host
-ancientcraft.eu: could not connect to host
ancientkarma.com: could not connect to host
andbraiz.com: did not receive HSTS header
-andere-gedanken.net: max-age too low: 10
+andere-gedanken.net: did not receive HSTS header
anderslind.dk: could not connect to host
-andre-ballensiefen.de: could not connect to host
+andiscyber.space: could not connect to host
andreagobetti.com: did not receive HSTS header
andreas-kluge.eu: could not connect to host
andreasanti.net: did not receive HSTS header
+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-nakov.org: did not receive HSTS header
+andrefaber.nl: did not receive HSTS header
+andrei-coman.com: did not receive HSTS header
andreigec.net: did not receive HSTS header
+andrejstefanovski.com: did not receive HSTS header
+andrepicard.de: could not connect to host
andrerose.ca: did not receive HSTS header
-andrew.fi: did not receive HSTS header
-andrew.london: did not receive HSTS header
-andrewbroekman.com: did not receive HSTS header
+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
@@ -829,7 +1186,7 @@ andrewdaws.tv: could not connect to host
andrewmichaud.beer: could not connect to host
andrewrdaws.com: could not connect to host
andrewregan.me: could not connect to host
-andrewtebert.com: could not connect to host
+andrewtebert.com: did not receive HSTS header
andrewthelott.net: could not connect to host
andrewvoce.com: did not receive HSTS header
andrewx.net: could not connect to host
@@ -842,9 +1199,11 @@ androled.fr: max-age too low: 5184000
andronika.net: could not connect to host
androoz.se: could not connect to host
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
+andys-place.co.uk: could not connect to host
andyuk.org: could not connect to host
anecuni-club.com: could not connect to host
anecuni-rec.com: could not connect to host
@@ -852,21 +1211,28 @@ anendlesssupply.co.uk: did not receive HSTS header
anfenglish.com: did not receive HSTS header
anfsanchezo.co: could not connect to host
anfsanchezo.me: could not connect to host
+ange-de-bonheur444.com: could not connect to host
angelic47.com: could not connect to host
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
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: 2628000
+anime1.top: could not connect to host
anime1video.tk: could not connect to host
animeday.ml: could not connect to host
+animes-portal.info: did not receive HSTS header
animesfusion.com.br: could not connect to host
animurecs.com: could not connect to host
aniplus.cf: could not connect to host
@@ -879,39 +1245,52 @@ anitube-nocookie.ch: could not connect to host
anivar.net: could not connect to host
ankakaak.com: could not connect to host
ankaraprofesyonelnakliyat.com: did not receive HSTS header
-ankaraprofesyonelnakliyat.com.tr: did not receive HSTS header
+ankaraprofesyonelnakliyat.com.tr: could not connect to host
+ankenbrand.me: 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
-annarbor.group: could not connect to host
+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
+annotate.software: could not connect to host
+annrusnak.com: did not receive HSTS header
annsbouncycastles.com: could not connect to host
+anohana.org: 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
anothermilan.net: could not connect to host
-anoxinon.de: max-age too low: 2628000
ansdell.info: could not connect to host
anseo.ninja: could not connect to host
ansermfg.com: max-age too low: 0
ansgar.tk: could not connect to host
-anshuman-chatterjee.com: could not connect to host
+anshuman-chatterjee.com: did not receive HSTS header
anshumanbiswas.com: could not connect to host
-ansibeast.net: could not connect to host
+ansibeast.net: did not receive HSTS header
answers-online.ru: could not connect to host
ant.land: could not connect to host
+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
-antimatiere.space: could not connect to host
+antifraud.net.ru: could not connect to host
+antimatiere.space: did not receive HSTS header
antimine.kr: could not connect to host
antipa.ch: could not connect to host
+antirayapmalang.com: did not receive HSTS header
antoine-roux.fr: did not receive HSTS header
antoinebetas.be: max-age too low: 0
antoined.fr: did not receive HSTS header
@@ -919,62 +1298,82 @@ 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
-anulowano.pl: could not connect to host
anunayk.com: could not connect to host
-anycoin.me: could not connect to host
+anycoin.me: did not receive HSTS header
anyfood.fi: could not connect to host
+anypool.fr: did not receive HSTS header
+anypool.net: did not receive HSTS header
+anyprime.net: could not connect to host
anytonetech.com: did not receive HSTS header
+anyways.at: could not connect to host
aobogo.com: could not connect to host
aocast.info: could not connect to host
aojao.cn: could not connect to host
aojf.fr: could not connect to host
aolabs.nz: did not receive HSTS header
aomberg.com: did not receive HSTS header
+aomonk.com: did not receive HSTS header
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
-apac-tech.com: did not receive HSTS header
-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
+aperim.com: max-age too low: 43200
aperture-laboratories.science: did not receive HSTS header
+apexitsolutions.ca: could not connect to host
api.mega.co.nz: could not connect to host
apibot.de: could not connect to host
apience.com: did not receive HSTS header
+apila.care: could not connect to host
+apila.us: could not connect to host
+apiled.io: 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
+apivia.fr: did not receive HSTS header
+apkdv.com: did not receive HSTS header
+apkmod.id: did not receive HSTS header
apkoyunlar.club: could not connect to host
apkriver.com: did not receive HSTS header
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
-apogeephoto.com: did not receive HSTS header
-apolloyl.com: could not connect to host
+apo-deutschland.biz: could not connect to host
+apolloyl.com: did not receive HSTS header
+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
+apostilasaprovacao.com: could not connect to host
+apotheek-nl.org: did not receive HSTS header
app: could not connect to host
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
+appel-aide.ch: could not connect to host
appeldorn.me: did not receive HSTS header
appengine.google.com: did not receive HSTS header (error ignored - included regardless)
+appformacpc.com: did not receive HSTS header
appimlab.it: could not connect to host
-apple-watch-zubehoer.de: did not receive HSTS header
+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
applez.xyz: could not connect to host
+appliancerepairlosangeles.com: did not receive HSTS header
applic8.com: did not receive HSTS header
+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
@@ -983,57 +1382,72 @@ 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
+aprefix.com: could not connect to host
aprpullmanportermuseum.org: did not receive HSTS header
aptitude9.com: could not connect to host
aqilacademy.com.au: could not connect to host
aqqrate.com: could not connect to host
-aquariumaccessories.shop: did not receive HSTS header
+aquariumaccessories.shop: could not connect to host
+aquaron.com: did not receive HSTS header
aquilaguild.com: could not connect to host
aquilalab.com: could not connect to host
-aquireceitas.com: could not connect to host
+aquireceitas.com: did not receive HSTS header
ar.al: did not receive HSTS header
arabdigitalexpression.org: did not receive HSTS header
+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
+architectdirect.nl: did not receive HSTS header
architecte-interieur.be: did not receive HSTS header
archmediamarketing.com: could not connect to host
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
-ardorlabs.se: could not connect to host
+ardorlabs.se: did not receive HSTS header
area3.org: could not connect to host
+area536.com: did not receive HSTS header
areallyneatwebsite.com: could not connect to host
-arenlor.com: could not connect to host
-arenlor.info: could not connect to host
-arenns.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
-arewedubstepyet.com: did not receive HSTS header
+arewedubstepyet.com: could not connect to host
areyouever.me: could not connect to host
argama-nature.com: did not receive HSTS header
argennon.xyz: could not connect to host
argh.io: could not connect to host
-argovpay.com: did not receive HSTS header
arguggi.co.uk: could not connect to host
+ariaartgallery.com: did not receive HSTS header
ariacreations.net: did not receive HSTS header
arifburhan.online: could not connect to host
arifp.me: could not connect to host
+arimarie.com: could not connect to host
arinflatablefun.co.uk: could not connect to host
arislight.com: 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
+arkbyte.com: 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.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
@@ -1044,6 +1458,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
@@ -1052,7 +1467,6 @@ aroundme.org: did not receive HSTS header
arpa.ph: did not receive HSTS header
arpr.co: did not receive HSTS header
arrayify.com: could not connect to host
-arresttracker.com: could not connect to host
arrivedconsulting.com: could not connect to host
arrow-cloud.nl: could not connect to host
arrowfunction.com: could not connect to host
@@ -1060,15 +1474,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
-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
+arteequipamientos.com.uy: did not receive HSTS header
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
+arti-group.ml: max-age too low: 2592000
articaexports.com: could not connect to host
artifex21.com: did not receive HSTS header
artifex21.fr: did not receive HSTS header
@@ -1079,12 +1494,16 @@ artisense.de: could not connect to host
artisphere.ch: did not receive HSTS header
artisticedgegranite.net: could not connect to host
artistnetwork.nl: did not receive HSTS header
+artmaxi.eu: could not connect to host
+artnims.com: could not connect to host
arto.bg: did not receive HSTS header
artofeyes.nl: could not connect to host
artsinthevalley.net.au: did not receive HSTS header
+artstopinc.com: did not receive HSTS header
arturkohut.com: could not connect to host
artyland.ru: could not connect to host
arvamus.eu: could not connect to host
+arw.me: did not receive HSTS header
arzaroth.com: did not receive HSTS header
as.se: could not connect to host
as9178.net: could not connect to host
@@ -1093,44 +1512,51 @@ asahikoji.net: could not connect to host
asana.studio: did not receive HSTS header
asasuou.pw: could not connect to host
asc16.com: could not connect to host
-ascamso.com: could not connect to host
aschaefer.net: could not connect to host
-ascii.moe: could not connect to host
-asciitable.tips: could not connect to host
asdpress.cn: could not connect to host
+aseith.com: could not connect to host
+aseko.gr: did not receive HSTS header
asepms.com: max-age too low: 7776000
+ashd1.goip.de: could not connect to host
+ashd2.goip.de: could not connect to host
+ashd3.goip.de: could not connect to host
ashlane-cottages.com: could not connect to host
ashleakunowski.com: could not connect to host
ashleyadum.com: could not connect to host
ashleyfoley.photography: could not connect to host
+ashleymadison.com: could not connect to host
ashleymedway.com: could not connect to host
-ashutoshmishra.org: did not receive HSTS header
+asian-archi.com.tw: did not receive HSTS header
asianbet77.co: did not receive HSTS header
-asianbet77.net: could not connect to host
+asianbet77.net: did not receive HSTS header
asisee.co.il: could not connect to host
-ask.fedoraproject.org: did not receive HSTS header
-ask.stg.fedoraproject.org: could not connect to host
askfit.cz: did not receive HSTS header
askmagicconch.com: could not connect to host
-asm-x.com: did not receive HSTS header
+aslinfinity.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]
+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
asphaltfruehling.de: could not connect to host
-asphyxia.su: could not connect to host
+aspisdata.com: did not receive HSTS header
asral7.com: could not connect to host
-asryflorist.com: could not connect to host
-ass.org.au: could not connect to host
-assadrivesloirecher.com: could not connect to host
+asryflorist.com: did not receive HSTS header
+ass.org.au: did not receive HSTS header
+assadrivesloirecher.com: did not receive HSTS header
assdecoeur.org: could not connect to host
assekuranzjobs.de: could not connect to host
asset-alive.com: did not receive HSTS header
-asset-alive.net: did not receive HSTS header
+asset-alive.net: could not connect to host
+assetict.com: max-age too low: 0
assetsupervision.com: could not connect to host
-assindia.nl: could not connect to host
+assindia.nl: did not receive HSTS header
+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: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+astaninki.com: could not connect to host
+astenretail.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
@@ -1139,13 +1565,14 @@ astrea-voetbal-groningen.nl: could not connect to host
astrolpost.com: could not connect to host
astromelody.com: did not receive HSTS header
astronomie-fulda.de: did not receive HSTS header
-astural.org: did not receive HSTS header
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
+at-one.ca: did not receive HSTS header
at1.co: could not connect to host
+ataber.pw: 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
@@ -1153,49 +1580,63 @@ atavio.de: could not connect to host
atbeckett.com: did not receive HSTS header
atcreform.gov: did not receive HSTS header
atelier-rk.com: did not receive HSTS header
-atelier-viennois-cannes.fr: did not receive HSTS header
+atelier-viennois-cannes.fr: could not connect to host
+atelierhupsakee.nl: did not receive HSTS header
ateliernihongo.ch: did not receive HSTS header
ateliersantgervasi.com: did not receive HSTS header
-atencionbimbo.com: max-age too low: 86400
+atg.soy: could not connect to host
athaliasoft.com: could not connect to host
athenelive.com: could not connect to host
-athensbusinessresources.us: did not receive HSTS header
+athensbusinessresources.us: could not connect to host
+atheoryofchange.com: could not connect to host
+atherosense.ga: 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
+atlantahairsurgeon.com: did not receive HSTS header
atlas-5.site: could not connect to host
atlas-staging.ml: could not connect to host
+atlas.co: did not receive HSTS header
atlassian.net: did not receive HSTS header
-atlayo.com: did not receive HSTS header
atlex.nl: did not receive HSTS header
atlseccon.com: did not receive HSTS header
+atmocdn.com: could not connect to host
atomic.menu: could not connect to host
+atomic.red: could not connect to host
atomik.pro: did not receive HSTS header
atop.io: could not connect to host
atracaosexshop.com.br: could not connect to host
+atrevillot.com: could not connect to host
+attelage.net: did not receive HSTS header
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
+audiobookstudio.com: could not connect to host
+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: 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
+aulaschrank.gq: could not connect to host
auntieme.com: did not receive HSTS header
+auntmia.com: could not connect to host
+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
auraredshield.com: could not connect to host
-aurora-terraria.org: did not receive HSTS header
+aurora-terraria.org: could not connect to host
aurorarecordings.com: could not connect to host
auroratownshipfd.org: could not connect to host
aurugs.com: did not receive HSTS header
@@ -1204,7 +1645,7 @@ auskunftsbegehren.at: did not receive HSTS header
auslandsjahr-usa.de: did not receive HSTS header
ausnah.me: could not connect to host
ausschreibungen-suedtirol.it: did not receive HSTS header
-aussiecable.org: did not receive HSTS header
+aussiecable.org: could not connect to host
aussiehq.com.au: did not receive HSTS header
aussiewebmarketing.com.au: did not receive HSTS header
austinmobilemechanics.net: did not receive HSTS header
@@ -1215,10 +1656,11 @@ australianfreebets.com.au: did not receive HSTS header
auth.mail.ru: did not receive HSTS header
authenitech.com: did not receive HSTS header
authentication.io: could not connect to host
+authinfo-bestellen.de: 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
authsrv.nl.eu.org: could not connect to host
auto-serwis.zgorzelec.pl: could not connect to host
auto3d.cn: could not connect to host
@@ -1228,9 +1670,11 @@ autobedrijfschalkoort.nl: did not receive HSTS header
autocarparts.ro: could not connect to host
autodeploy.it: could not connect to host
autoecolebudget.ch: did not receive HSTS header
-autoecoledumontblanc.com: did not receive HSTS header
+autoecoledumontblanc.com: could not connect to host
autoeet.cz: did not receive HSTS header
+autohaus-snater.de: did not receive HSTS header
autojuhos.sk: could not connect to host
+autokovrik-diskont.ru: did not receive HSTS header
automobiles5.com: could not connect to host
autos-retro-plaisir.com: did not receive HSTS header
autosearch.me: could not connect to host
@@ -1239,21 +1683,21 @@ 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
-auvernet.org: could not connect to host
auvious.com: did not receive HSTS header
auxetek.se: could not connect to host
auxiliumincrementum.co.uk: could not connect to host
av.de: did not receive HSTS header
+av01.tv: could not connect to host
av163.cc: could not connect to host
avadatravel.com: did not receive HSTS header
-avalon-island.ru: could not connect to host
+avalon-studios.de: could not connect to host
+avalyuan.com: could not connect to host
avantmfg.com: did not receive HSTS header
avaq.fr: did not receive HSTS header
avastantivirus.ro: did not receive HSTS header
-avdelivers.com: could not connect to host
+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
@@ -1262,66 +1706,188 @@ 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
+avmemo.com: could not connect to host
avmo.pw: could not connect to host
+avmoo.com: could not connect to host
avonlearningcampus.com: could not connect to host
+avotoma.com: could not connect to host
avso.pw: could not connect to host
avspot.net: could not connect to host
avus-automobile.com: did not receive HSTS header
avxo.pw: could not connect to host
awan.tech: could not connect to host
awanderlustadventure.com: did not receive HSTS header
+awccanadianpharmacy.com: could not connect to host
awei.pub: could not connect to host
+awen.me: did not receive HSTS header
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
+axa-middleeast.com: could not connect to host
axado.com.br: could not connect to host
axel-fischer.net: could not connect to host
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: did not receive HSTS header
axg.io: did not receive HSTS header
axialsports.com: did not receive HSTS header
+axis-stralis.co.uk: could not connect to host
axiumacademy.com: did not receive HSTS header
+axka.com: did not receive HSTS header
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
-aymerick.fr: did not receive HSTS header
+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-moga.bg: 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
-azino777.ru: could not connect to host
+azia.info: could not connect to host
azirevpn.com: did not receive HSTS header
azlo.com: did not receive HSTS header
azprep.us: could not connect to host
-b-boom.nl: could not connect to host
+azun.pl: did not receive HSTS header
+azuxul.fr: could not connect to host
+azzag.co.uk: did not receive HSTS header
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: did not receive HSTS header
+b-space.de: could not connect to host
+b-ticket.ch: 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
+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
-b8a.me: could not connect to host
+b422edu.com: could not connect to host
+b4r7.de: did not receive HSTS header
+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: did not receive HSTS header
+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: could not connect to host
+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
-b9970.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
+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]
+baas-becking.biology.utah.edu: could not connect to host
+babarkata.com: could not connect to host
babelfisch.eu: could not connect to host
-babursahvizeofisi.com: did not receive HSTS header
+babursahvizeofisi.com: could not connect to host
baby-click.de: could not connect to host
babybee.ie: could not connect to host
babybic.hu: could not connect to host
@@ -1330,14 +1896,16 @@ babyhouse.xyz: could not connect to host
babyliss-pro.com: could not connect to host
babyliss-pro.net: did not receive HSTS header
babysaying.me: could not connect to host
-babystep.tv: 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
backenmachtgluecklich.de: max-age too low: 2592000
-backgroundchecks.online: did not receive HSTS header
backgroundz.net: could not connect to host
backintomotionphysiotherapy.com: did not receive HSTS header
+backlogapp.io: could not connect to host
+backpacken.org: could not connect to host
backscattering.de: did not receive HSTS header
backyardbbqbash.com: did not receive HSTS header
baconate.com: did not receive HSTS header
@@ -1346,18 +1914,22 @@ badai.at: could not connect to host
badbee.cc: could not connect to host
badcronjob.com: could not connect to host
badenhard.eu: could not connect to host
+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: did not receive HSTS header
bagiobella.com: max-age too low: 0
+baglu.com: could not connect to host
+bagstage.de: 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
bairdzhang.com: could not connect to host
baito-j.jp: did not receive HSTS header
baixoutudo.com: did not receive HSTS header
-bajic.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]
+bajajfinserv.in: did not receive HSTS header
bakabt.info: could not connect to host
+bakanin.ru: could not connect to host
bakaweb.fr: could not connect to host
bakhansen.com: did not receive HSTS header
bakkerdesignandbuild.com: did not receive HSTS header
@@ -1366,10 +1938,13 @@ balatoni-nyar.hu: did not receive HSTS header
balcan-underground.net: could not connect to host
baldwinkoo.com: could not connect to host
baleares.party: could not connect to host
-balidesignshop.com.br: 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
+ballbusting-cbt.com: could not connect to host
+balle.dk: could not connect to host
+ballitolocksmith.com: could not connect to host
balloonphp.com: could not connect to host
-ballparkbuns.com: max-age too low: 86400
balnearionaturaspa.com: did not receive HSTS header
balonmano.co: could not connect to host
bals.org: did not receive HSTS header
@@ -1383,28 +1958,40 @@ banbanchs.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: could not connect to host
-bandrcrafts.com: did not receive HSTS header
+bandb.xyz: did not receive HSTS header
+bandrcrafts.com: could not connect to host
banduhn.com: did not receive HSTS header
-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: could not connect to host
+bankitt.network: could not connect to host
bankmilhas.com.br: 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: could not connect to host
baosuckhoedoisong.net: could not connect to host
+baptistboard.com: did not receive HSTS header
baptiste-destombes.fr: did not receive HSTS header
baraxolka.ru: could not connect to host
-barbershop-harmony.org: could not connect to host
-barcel.com.mx: max-age too low: 86400
-bardiharborow.com: did not receive HSTS header
-barely.sexy: could not connect to host
-bargainmovingcompany.com: could not connect to host
+barbaros.info: could not connect to host
+barcouniforms.com: did not receive HSTS header
+barely.sexy: did not receive HSTS header
+barf-alarm.de: did not receive HSTS header
+bargainmovingcompany.com: did not receive HSTS header
bariller.fr: did not receive HSTS header
+baris-sagdic.com: could not connect to host
+barnrats.com: could not connect to host
baropkamp.be: did not receive HSTS header
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]
@@ -1414,21 +2001,40 @@ 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
-bartbania.com: did not receive HSTS header
+bartel.ws: could not connect to host
+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
+basilicaknights.org: could not connect to host
basilisk.io: could not connect to host
+basilm.co: could not connect to host
+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
+batipresta.ch: 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
+bautied.de: did not receive HSTS header
bayinstruments.com: could not connect to host
bayrisch-fuer-anfaenger.de: did not receive HSTS header
baysse.eu: did not receive HSTS header
@@ -1436,11 +2042,13 @@ bazarstupava.sk: could not connect to host
bazisszoftver.hu: could not connect to host
bb-shiokaze.jp: did not receive HSTS header
bbb1991.me: could not connect to host
-bbdos.ru: could not connect to host
+bbdos.ru: did not receive HSTS header
+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
-bbuio.com: max-age too low: 86400
+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
@@ -1448,92 +2056,143 @@ 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
bcbsmagentprofile.com: could not connect to host
bcchack.com: could not connect to host
bccx.com: could not connect to host
bcheng.cf: did not receive HSTS header
bckp.de: could not connect to host
bcm.com.au: did not receive HSTS header
-bcnet.hk: 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
+bcs.adv.br: did not receive HSTS header
bcsytv.com: could not connect to host
+bcvps.com: did not receive HSTS header
bcweightlifting.ca: could not connect to host
+bdata.cl: could not connect to host
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
+bdikaros-network.net: 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: could not connect to host
+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: could not connect to host
+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: could not connect to host
+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: could not connect to host
+be9966.com: could not connect to host
beach-inspector.com: did not receive HSTS header
+beachfutbolclub.com: did not receive HSTS header
beachi.es: could not connect to host
+beacinsight.com: could not connect to host
beaglewatch.com: could not connect to host
beagreenbean.co.uk: could not connect to host
beamitapp.com: could not connect to host
beanbot.party: could not connect to host
beanworks.ca: did not receive HSTS header
-bearden.io: did not receive HSTS header
+bearden.io: could not connect to host
beardydave.com: did not receive HSTS header
beasel.biz: could not connect to host
beastlog.tk: could not connect to host
beastowner.com: did not receive HSTS header
+beautyconcept.co: did not receive HSTS header
beavers.io: could not connect to host
bebeefy.uk: could not connect to host
bebesurdoue.com: could not connect to host
beccajoshwedding.com: could not connect to host
-becklove.cn: did not receive HSTS header
+becklove.cn: could not connect to host
+beckon.com: did not receive HSTS header
+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
+bedlingtonterrier.com.br: 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
+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
beetgroup.id: could not connect to host
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
beholdthehurricane.com: 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
+belastingdienst-in-beeld.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]
+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
bellavistaoutdoor.com: could not connect to host
belliash.eu.org: did not receive HSTS header
-belltower.io: did not receive HSTS header
+belltower.io: could not connect to host
belmontprom.com: could not connect to host
belpbleibtbelp.ch: could not connect to host
+belua.com: did not receive HSTS header
belwederczykow.eu: could not connect to host
-bemcorp.de: did not receive HSTS header
-bemvindoaolar.com.br: did not receive HSTS header
+belyvly.com: did not receive HSTS header
+bemvindoaolar.com.br: could not connect to host
bemyvictim.com: max-age too low: 2678400
+benchcast.com: did not receive HSTS header
bendechrai.com: did not receive HSTS header
+bendingtheending.com: 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
+benevita.life: could not connect to host
+benevita.live: could not connect to host
+benevita.organic: could not connect to host
benfairclough.com: could not connect to host
+benhchuyenkhoa.net: could not connect to host
benjakesjohnson.com: could not connect to host
benjamin-horvath.com: could not connect to host
benjamin-suess.de: could not connect to host
+benjamindietrich.com: could not connect to host
benjaminesims.com: did not receive HSTS header
+benjaminjurke.net: did not receive HSTS header
benk.press: could not connect to host
-benny003.de: could not connect to host
+benmorecentre.co.uk: did not receive HSTS header
+benny003.de: did not receive HSTS header
benohead.com: did not receive HSTS header
bentphotos.se: could not connect to host
-benwattie.com: could not connect to host
+benwattie.com: did not receive HSTS header
benzkosmetik.de: did not receive HSTS header
benzou-space.com: could not connect to host
beourvictim.com: max-age too low: 2678400
bep.gov: did not receive HSTS header
-bep362.vn: did not receive HSTS header
+bep362.vn: could not connect to host
beraru.tk: could not connect to host
-berdu.id: did not receive HSTS header
-berduri.com: could not connect to host
+beraten-entwickeln-steuern.de: could not connect to host
+berdaguermontes.eu: could not connect to host
+berduri.com: did not receive HSTS header
+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
berhampore-gateway.tk: could not connect to host
berlatih.com: did not receive HSTS header
@@ -1542,12 +2201,13 @@ berlin-kohlefrei.de: could not connect to host
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
-berr.yt: could not connect to host
-berry.cat: could not connect to host
+bernieware.de: 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
+berz.one: could not connect to host
besb66.club: could not connect to host
+besb66.com: did not receive HSTS header
besb66.me: could not connect to host
besb66.ninja: could not connect to host
besb66.rocks: could not connect to host
@@ -1556,154 +2216,206 @@ 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
-best-wedding-quotes.com: did not receive HSTS header
+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: could not connect to host
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
+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
+betakah.net: did not receive HSTS header
betamint.org: 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]
bethditto.com: did not receive HSTS header
betkoo.com: could not connect to host
betnet.fr: could not connect to host
betonmoney.com: could not connect to host
betplanning.it: did not receive HSTS header
bets.de: did not receive HSTS header
-bets.gg: 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
-bettertest.it: could not connect to host
bettween.com: did not receive HSTS header
+between.be: did not receive HSTS header
+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
bewerbungsfibel.de: did not receive HSTS header
+bewertet.de: could not connect to host
bexit-hosting.nl: could not connect to host
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
+beylikduzuvaillant.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
beyuna.nl: did not receive HSTS header
+bez-energie.de: could not connect to host
bezoomnyville.com: could not connect to host
bezorg.ninja: could not connect to host
bezprawnik.pl: did not receive HSTS header
bf.am: max-age too low: 0
-bf7088.com: did not receive HSTS header
-bf7877.com: did not receive HSTS header
bfd.vodka: did not receive HSTS header
bfear.com: could not connect to host
bfelob.gov: could not connect to host
bffm.biz: could not connect to host
bfrailwayclub.cf: could not connect to host
+bg-sexologia.com: could not connect to host
+bg16.de: could not connect to host
bgcparkstad.nl: did not receive HSTS header
bgdaddy.com: did not receive HSTS header
+bgenlisted.com: could not connect to host
+bgfashion.net: could not connect to host
bgneuesheim.de: did not receive HSTS header
+bgp.ee: could not connect to host
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]
+bhosted.nl: did not receive HSTS header
+biancolievito.it: 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
biapinheiro.com.br: max-age too low: 5184000
biblerhymes.com: did not receive HSTS header
+bibliafeminina.com.br: could not connect to host
+biblio.wiki: could not connect to host
+bichines.es: did not receive HSTS header
bichonfrise.com.br: could not connect to host
bichonmaltes.com.br: could not connect to host
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
+biewen.me: did not receive HSTS header
big-black.de: did not receive HSTS header
bigbbqbrush.bid: could not connect to host
bigbounceentertainment.co.uk: could not connect to host
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
-biglou.com: max-age too low: 3153600
bigshinylock.minazo.net: could not connect to host
+bigshort.org: could not connect to host
biguixhe.net: 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
+bijuteriicualint.ro: could not connect to host
bikelifetvkidsquads.co.uk: could not connect to host
bikermusic.net: could not connect to host
+bikeshopitalia.com: could not connect to host
bilanligne.com: did not receive HSTS header
bildermachr.de: could not connect to host
biletru.net: could not connect to host
biletua.de: could not connect to host
-biletyplus.com: could not connect to host
biletyplus.ru: did not receive HSTS header
-bill-nye-the.science: did not receive HSTS header
+bilibili.red: could not connect to host
+bill-nye-the.science: could not connect to host
billdestler.com: did not receive HSTS header
billigssl.dk: did not receive HSTS header
-billin.net: 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
-bimbo.com: max-age too low: 86400
-bimbo.com.ar: max-age too low: 86400
-bimbobakeriesusa.com: max-age too low: 86400
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
-binaryevolved.com: did not receive HSTS header
-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
bingo-wear.com: could not connect to host
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
-biocrafting.net: could not connect to host
+binkanhada.biz: could not connect to host
+binsp.net: could not connect to host
+bintelligence.nl: 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
+biopreferred.gov: could not connect to host
+biospeak.solutions: could not connect to host
biou.me: could not connect to host
biovalue.eu: could not connect to host
bip.gov.sa: could not connect to host
+birchbarkfurniture.ch: 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
+bismarck.moe: could not connect to host
bisterfeldt.com: did not receive HSTS header
+bistrodeminas.com: could not connect to host
biswas.me: could not connect to host
-bit.biz.tr: 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: did not receive HSTS header
+bitcalt.ga: 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
+bitcoin.com: did not receive HSTS header
+bitcoinclashic.ninja: could not connect to host
bitcoinec.info: could not connect to host
+bitcoinfo.jp: did not receive HSTS header
bitcoinhk.org: did not receive HSTS header
bitcoinjpn.com: could not connect to host
bitcoinprivacy.net: did not receive HSTS header
-bitcoinworld.me: did not receive HSTS header
+bitcoinwalletscript.tk: could not connect to host
+bitcoinworld.me: could not connect to host
bitconcepts.co.uk: could not connect to host
+bitedge.com: did not receive HSTS header
bitenose.net: could not connect to host
bitenose.org: could not connect to host
biteoftech.com: did not receive HSTS header
@@ -1713,71 +2425,100 @@ bitfarm-archiv.com: did not receive HSTS header
bitfarm-archiv.de: did not receive HSTS header
bitheus.com: could not connect to host
bithosting.io: did not receive HSTS header
-bitk.co: could not connect to host
-bitk.co.uk: could not connect to host
-bitk.eu: 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
+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
-bitmoe.com: did not receive HSTS header
+bitmon.net: could not connect to host
bitnet.io: did not receive HSTS header
bitplay.space: could not connect to host
bitpod.de: 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
-bitskins.co: 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
bitvigor.com: could not connect to host
bitwrought.net: could not connect to host
bityes.org: could not connect to host
bivsi.com: could not connect to host
-bizcms.com: did not receive HSTS header
+biyori.moe: did not receive HSTS header
+bizcms.com: could not connect to host
+bizedge.co.nz: did not receive HSTS header
bizon.sk: did not receive HSTS header
-bizpare.com: did not receive HSTS header
+bizpare.com: max-age too low: 2592000
bizzartech.com: did not receive HSTS header
+bizzi.tv: could not connect to host
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]
+bjolanta.pl: could not connect to host
+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
+bl00.se: could not connect to host
+blaauwgeers.travel: could not connect to host
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
+black-gay-porn.biz: could not connect to host
black-octopus.ru: could not connect to host
-black-pool.net: did not receive HSTS header
+blackapron.com.br: could not connect to host
blackberrycentral.com: could not connect to host
+blackberryforums.be: did not receive HSTS header
blackburn.link: could not connect to host
+blackdesertsp.com: could not connect to host
blackdiam.net: did not receive HSTS header
+blackdragoninc.org: could not connect to host
+blackhell.xyz: could not connect to host
blacklane.com: did not receive HSTS header
-blacklightparty.be: could not connect to host
blackly.uk: max-age too low: 0
-blackmagic.sk: did not receive HSTS header
+blackmagic.sk: could not connect to host
blackmirror.com.au: did not receive HSTS header
-blackmonday.gr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-blackpayment.ru: did not receive HSTS header
blackphantom.de: could not connect to host
+blackroot.eu: max-age too low: 10368000
blackscreen.me: 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
-blameomar.com: could not connect to host
+blakerandall.xyz: did not receive HSTS header
blantik.net: could not connect to host
+blantr.com: 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
-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
+blitzvendor.com: could not connect to host
+blizz.news: max-age too low: 0
blmiller.com: did not receive HSTS header
blocksatz-medien.de: could not connect to host
blockshopauto.com: could not connect to host
@@ -1787,11 +2528,12 @@ blog.cyveillance.com: did not receive HSTS header
blog.gparent.org: could not connect to host
blog.torproject.org: max-age too low: 1000
blogabout.ru: could not connect to host
-blogarts.net: did not receive HSTS header
+blogcuaviet.com: could not connect to host
+blogdeyugioh.com: could not connect to host
blogdieconomia.it: did not receive HSTS header
blogdimoda.com: did not receive HSTS header
blogdimotori.it: did not receive HSTS header
-bloglife-bb.com: did not receive HSTS header
+bloglife-bb.com: could not connect to host
bloglikepro.com: could not connect to host
blognone.com: did not receive HSTS header
blognr.com: could not connect to host
@@ -1806,49 +2548,75 @@ bls-fiduciaire.be: did not receive HSTS header
bltc.co: could not connect to host
blubbablasen.de: could not connect to host
blucas.org: did not receive HSTS header
+bludnykoren.ml: could not connect to host
blue17.co.uk: did not receive HSTS header
+bluebahari.gq: could not connect to host
bluebill.net: did not receive HSTS header
-bluecon.eu: did not receive HSTS header
+bluecardlottery.eu: could not connect to host
+bluecon.eu: 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
bluemosh.com: could not connect to host
-blueoakart.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: 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
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
bluteklab.com: did not receive HSTS header
+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
+bmone.net: could not connect to host
+bn4t.me: did not receive HSTS header
+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
-bobiji.com: did not receive HSTS header
+bobep.ru: could not connect to host
+bobiji.com: could not connect to host
+boboates.com: did not receive HSTS header
+bodixite.com: could not connect to host
bodo-wolff.de: could not connect to host
-bodrumfarm.com: did not receive HSTS header
+bodrumfarm.com: could not connect to host
bodyblog.nl: did not receive HSTS header
bodybuilding-legends.com: could not connect to host
bodybuilding.events: could not connect to host
bodyweightsolution.com: could not connect to host
boel073.nl: did not receive HSTS header
boensou.com: did not receive HSTS header
-bogosity.se: could not connect to host
bohaishibei.com: did not receive HSTS header
bohan.life: could not connect to host
bohyn.cz: could not connect to host
@@ -1856,6 +2624,8 @@ 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: could not connect to host
+bollywood.uno: did not receive HSTS header
boltdata.io: could not connect to host
boltn.uk: did not receive HSTS header
bolwerk.com.br: did not receive HSTS header
@@ -1863,56 +2633,85 @@ bomberus.de: could not connect to host
bombsquad.studio: could not connect to host
bonamihome.ro: could not connect to host
bonapp.restaurant: could not connect to host
-bondtofte.dk: did not receive HSTS header
-boneko.de: could not connect to host
-bonigo.de: did not receive HSTS header
+bondagefetishstore.com: could not connect to host
+boneko.de: did not receive HSTS header
+bonigo.de: could not connect to host
+bonita.com.br: could not connect to host
bonitabrazilian.co.nz: did not receive HSTS header
+bonniekitchen.com: could not connect to host
bonnin.fr: did not receive HSTS header
bonobo.cz: could not connect to host
bonop.com: did not receive HSTS header
+bonsi.net: could not connect to host
bonta.one: could not connect to host
bonus-flexi.com: did not receive HSTS header
boobox.xyz: could not connect to host
-book-of-ra.de: did not receive HSTS header
+book-of-ra.de: could not connect to host
bookcelerator.com: did not receive HSTS header
booked.holiday: could not connect to host
+bookingdeluxesp.com: did not receive HSTS header
bookingentertainment.com: did not receive HSTS header
-bookmakersfreebets.com.au: could not connect to host
+bookmakersfreebets.com.au: did not receive HSTS header
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
+boonehenry.co.uk: did not receive HSTS header
boosterlearnpro.com: did not receive HSTS header
boostgame.win: could not connect to host
-boote.wien: did not receive HSTS header
+boote.wien: could not connect to host
booter.es: could not connect to host
+booter.pw: did not receive HSTS header
booth.in.th: could not connect to host
bootikexpress.fr: did not receive HSTS header
boozinyan.com: could not connect to host
bopera.co.uk: could not connect to host
+borchers-media.de: could not connect to host
+borchers.ninja: did not receive HSTS header
borderlinegroup.com: could not connect to host
+borgmestervangen.xyz: could not connect to host
+borgodigatteraia.it: could not connect to host
boringsecurity.net: could not connect to host
-boris.one: did not receive HSTS header
+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
+borzoi.com.br: could not connect to host
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
+botstack.host: could not connect to host
boueki.jp: did not receive HSTS header
boueki.org: did not receive HSTS header
-bounce-r-us.co.uk: did not receive HSTS header
+bouk.co: could not connect to host
+bounceaboutsussex.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
bouncycastlehiremedway.com: did not receive HSTS header
+bouncycastles.me: could not connect to host
+bouncycastlesperth.net: could not connect to host
+bouncyhouses.co.uk: did not receive HSTS header
+bouncymadness.com: did not receive HSTS header
+bountiful.gov: could not connect to host
+bourgdepabos.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
@@ -1922,15 +2721,18 @@ 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
-bozemancarpetcleaningservices.com: could not connect to host
+boypoint.de: could not connect to host
+bozemancarpetcleaningservices.com: did not receive HSTS header
bp-wahl.at: did not receive HSTS header
bpadvisors.eu: could not connect to host
bqcp.net: could not connect to host
bqtoolbox.com: could not connect to host
-bracoitaliano.com.br: did not receive HSTS header
+bracoitaliano.com.br: could not connect to host
+braemer-it-consulting.de: could not connect to host
bragasoft.com.br: did not receive HSTS header
bragaweb.com.br: could not connect to host
brainbuxa.com: did not receive HSTS header
@@ -1943,40 +2745,44 @@ braintm.com: could not connect to host
braintreebouncycastles.com: could not connect to host
braintreegateway.com: did not receive HSTS header
braintreepayments.com: did not receive HSTS header
-brainvation.de: did not receive HSTS header
-brakstad.org: could not connect to host
+bramburek.net: could not connect to host
bran.cc: could not connect to host
bran.soy: could not connect to host
-branchtrack.com: did not receive HSTS header
branchzero.com: did not receive HSTS header
brand-foo.com: did not receive HSTS header
brand-foo.jp: did not receive HSTS header
brand-foo.net: did not receive HSTS header
+brandbuilderwebsites.com: could not connect to host
brandnewdays.nl: 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
brandspray.com: could not connect to host
+brandtrapselfie.nl: could not connect to host
+brandweeruitgeest.nl: could not connect to host
brasilien.guide: could not connect to host
brasilmorar.com: did not receive HSTS header
-bratteng.xyz: did not receive HSTS header
bravz.de: could not connect to host
brb.city: did not receive HSTS header
breatheav.com: did not receive HSTS header
breatheproduction.com: did not receive HSTS header
-breest.net: could not connect to host
breeswish.org: did not receive HSTS header
+bregnedalsystems.dk: did not receive HSTS header
+bremensaki.com: max-age too low: 2592000
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
+briangarcia.ga: could not connect to host
+brianmwaters.net: did not receive HSTS header
brianpcurran.com: did not receive HSTS header
brickoo.com: could not connect to host
brickwerks.io: could not connect to host
brickyardbuffalo.com: did not receive HSTS header
-brideandgroomdirect.ie: could not connect to host
+brideandgroomdirect.ie: did not receive HSTS header
bridgeout.com: could not connect to host
bridholm.se: could not connect to host
brightfuturemadebyme.com: could not connect to host
@@ -1984,160 +2790,216 @@ brightstarkids.co.uk: did not receive HSTS header
brightstarkids.com.au: did not receive HSTS header
brightstarkids.net: did not receive HSTS header
brightstarkids.sg: did not receive HSTS header
+brigittebutt.tk: could not connect to host
brilliantbuilders.co.uk: did not receive HSTS header
+brilliantdecisionmaking.com: did not receive HSTS header
brimspark.com: could not connect to host
+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
brix.ninja: did not receive HSTS header
brks.xyz: could not connect to host
brmascots.com: could not connect to host
-brmsalescommunity.com: could not connect to host
+brn.by: could not connect to host
broerweb.nl: could not connect to host
broken-oak.com: could not connect to host
+brokenjoysticks.net: did not receive HSTS header
brookechase.com: did not receive HSTS header
brookframework.org: could not connect to host
+brossman.it: could not connect to host
+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
+bruckner.li: could not connect to host
brunix.net: did not receive HSTS header
brunoonline.co.uk: could not connect to host
+brunoramos.org: could not connect to host
bryancastillo.site: 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
+brztec.com: 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
-btc-e.com: did not receive HSTS header
+bsuru.xyz: could not connect to host
+bt78.cn: could not connect to host
+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: could not connect to host
+btc2secure.com: could not connect to host
btcdlc.com: could not connect to host
-btcgo.nl: 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
+btcpot.ltd: could not connect to host
btku.org: could not connect to host
+btrb.ml: could not connect to host
+btserv.de: did not receive HSTS header
+btth.xyz: could not connect to host
+bturboo.com: 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
-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: did not receive HSTS header
bucket.tk: could not connect to host
buckmulligans.com: did not receive HSTS header
-buddhistische-weisheiten.org: 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: did not receive HSTS header
+budskap.eu: could not connect to host
+buehnenbande.ch: max-age too low: 2592000
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
-bugwie.com: did not receive HSTS header
buhler.pro: did not receive HSTS header
buiko.com: did not receive HSTS header
build.chromium.org: did not receive HSTS header (error ignored - included regardless)
buildci.asia: could not connect to host
buildify.co.za: could not connect to host
+building-cost-estimators.com: did not receive HSTS header
buildingclouds.at: could not connect to host
buildingclouds.ch: could not connect to host
buildingclouds.es: could not connect to host
buildingclouds.eu: could not connect to host
buildingclouds.fr: could not connect to host
buildsaver.co.za: did not receive HSTS header
-builmaker.com: did not receive HSTS header
+builmaker.com: could not connect to host
built.by: did not receive HSTS header
buka.jp: could not connect to host
+bukai.men: did not receive HSTS header
bukatv.cz: could not connect to host
+bulbgenie.com: could not connect to host
buldogueingles.com.br: could not connect to host
bulgarien.guide: could not connect to host
bulkbuy.tech: could not connect to host
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
+bumarkamoda.com: could not connect to host
bumshow.ru: did not receive HSTS header
bunadarbankinn.is: could not connect to host
bunaken.asia: could not connect to host
bunbomenu.de: could not connect to host
+bundaberg.com: did not receive HSTS header
bunsenlabs.org: max-age too low: 2592000
-buonventosbt.eu: could not connect to host
-bupu.ml: did not receive HSTS header
+buonventosbt.eu: did not receive HSTS header
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
-busybee360.com: did not receive HSTS header
+busybee360.com: could not connect to host
+busyon.cloud: could not connect to host
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: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+buvinghausen.com: max-age too low: 86400
+buy-thing.com: could not connect to host
+buyaccessible.gov: did not receive HSTS header
buybaby.eu: could not connect to host
buydesired.com: did not receive HSTS header
-buyfox.de: 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: could not connect to host
buyingsellingflorida.com: could not connect to host
buynowdepot.com: did not receive HSTS header
buyshoe.org: could not connect to host
buywood.shop: could not connect to host
-buzzconcert.com: did not receive HSTS header
+buzzconcert.com: could not connect to host
+buzzconf.io: could not connect to host
buzzdeck.com: did not receive HSTS header
buzztelco.com.au: could not connect to host
bvexplained.co.uk: could not connect to host
+bvgg.eu: did not receive HSTS header
bvionline.eu: did not receive HSTS header
+bvv-europe.eu: could not connect to host
bw81.xyz: could not connect to host
bwear4all.de: could not connect to host
+bwf11.com: could not connect to host
+bwf55.com: could not connect to host
+bwf6.com: could not connect to host
+bwf66.com: could not connect to host
+bwf77.com: could not connect to host
+bwf99.com: could not connect to host
+bwin86.com: did not receive HSTS header
+bwin8601.com: did not receive HSTS header
+bwin8602.com: did not receive HSTS header
+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: did not receive HSTS header
bx-web.com: did not receive HSTS header
-bxdev.me: could not connect to host
+by.cx: did not receive HSTS header
by1896.com: could not connect to host
-by1898.com: could not connect to host
+by1898.com: did not receive HSTS header
by1899.com: could not connect to host
-by2230.com: max-age too low: 3600
-by2238.com: max-age too low: 3600
-by2239.com: max-age too low: 3600
-by2251.com: max-age too low: 3600
-by2253.com: max-age too low: 3600
-by2254.com: max-age too low: 3600
by4cqb.cn: could not connect to host
by77.com: could not connect to host
by777.com: did not receive HSTS header
+bydisk.com: could not connect to host
+byhe.me: could not connect to host
byji.com: could not connect to host
-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
@@ -2153,21 +3015,27 @@ 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
+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
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
+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]
+bzhub.bid: could not connect to host
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
@@ -2177,55 +3045,72 @@ 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
-cabaladada.org: could not connect to host
+ca-terminal-multiservices.fr: did not receive HSTS header
+cablehighspeed.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
+cacr.pw: 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
+cadra.nl: could not connect to host
+cadusilva.com: could not connect to host
caerostris.com: could not connect to host
caesreon.com: could not connect to host
cafe-murr.de: could not connect to host
cafe-scientifique.org.ec: could not connect to host
+cafe-service.ru: could not connect to host
cafechesscourt.com: could not connect to host
-caferagazzi.de: did not receive HSTS header
-cafesg.net: could not connect to host
+cafefresco.pe: did not receive HSTS header
+cafesg.net: did not receive HSTS header
+caijunyi.net: did not receive HSTS header
caim.cz: did not receive HSTS header
caipai.fm: could not connect to host
cairnterrier.com.br: could not connect to host
-cais.de: could not connect to host
-cajapopcorn.com: did not receive HSTS header
+cais.de: 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
+caldecotevillagehall.co.uk: could not connect to host
+calebmorris.com: max-age too low: 60
calgaryconstructionjobs.com: did not receive HSTS header
+calidoinvierno.com: could not connect to host
callabs.net: could not connect to host
+callanbryant.co.uk: did not receive HSTS header
+callawayracing.se: could not connect to host
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
calories.org: could not connect to host
caltonnutrition.com: did not receive HSTS header
calvin.me: did not receive HSTS header
-calvinallen.net: could not connect to host
+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
+cambridge-security.com: could not connect to host
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
+camjobs.net: did not receive HSTS header
cammarkets.com: could not connect to host
-camolist.com: could not connect to host
-campaignelves.com: did not receive HSTS header
+campaignelves.com: could not connect to host
campbellsoftware.co.uk: could not connect to host
+campbrainybunch.com: did not receive HSTS header
+campeoesdofutebol.com.br: did not receive HSTS header
+campeonatoalemao.com.br: could not connect to host
campfire.co.il: did not receive HSTS header
campfourpaws.com: did not receive HSTS header
campingcarlovers.com: could not connect to host
@@ -2233,7 +3118,7 @@ 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
-canadabread.com: max-age too low: 86400
+camshowhub.com: could not connect to host
canadiangamblingchoice.com: did not receive HSTS header
canarianlegalalliance.com: did not receive HSTS header
cancelmyprofile.com: could not connect to host
@@ -2242,40 +3127,50 @@ 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
+canfield.gov: did not receive HSTS header
+canglong.net: could not connect to host
canifis.net: did not receive HSTS header
-canterbury.ws: did not receive HSTS header
-canyonshoa.com: did not receive HSTS header
+cannarobotics.com: could not connect to host
+canterberry.cc: did not receive HSTS header
+canterbury.ws: could not connect to host
+canyons.media: did not receive HSTS header
caodecristachines.com.br: could not connect to host
+caodesantohumberto.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: did not receive HSTS header
-caps.is: could not connect to host
+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: could not connect to host
-car-shop.top: did not receive HSTS header
+car-rental24.com: did not receive HSTS header
carano-service.de: did not receive HSTS header
-caraudio69.cz: could not connect to host
-carboneselectricosnettosl.info: did not receive HSTS header
+caraudio69.cz: did not receive HSTS header
+carbonmonoxidelawyer.net: could not connect to host
card-cashing.com: max-age too low: 0
-card-toka.jp: did not receive HSTS header
+card-toka.jp: could not connect to host
cardloan-manual.net: could not connect to host
cardoni.net: did not receive HSTS header
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: could not connect to host
-carif-idf.net: did not receive HSTS header
-carif-idf.org: did not receive HSTS header
-carlgo11.com: did not receive HSTS header
-carlo.mx: did not receive HSTS header
+carey.bio: 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
carlolly.co.uk: could not connect to host
carlosalves.info: could not connect to host
carloshmm.com: could not connect to host
@@ -2283,15 +3178,20 @@ 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
+caroli.biz: could not connect to host
+caroli.info: could not connect to host
carpliyz.com: could not connect to host
carrando.de: could not connect to host
-carredejardin.com: could not connect to host
+carredejardin.com: did not receive HSTS header
+carrentalsathens.com: max-age too low: 0
carroarmato0.be: did not receive HSTS header
carsforbackpackers.com: 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
carwashvapeur.be: could not connect to host
+casadellecose.com: did not receive HSTS header
casajardininsecticidas.com: did not receive HSTS header
casamorelli.com.br: did not receive HSTS header
casashopp.com.br: could not connect to host
@@ -2301,38 +3201,44 @@ casefall.com: could not connect to host
cash-pos.com: did not receive HSTS header
cashfortulsahouses.com: could not connect to host
cashless.fr: did not receive HSTS header
+cashlink.io: did not receive HSTS header
cashmyphone.ch: could not connect to host
cashsector.ga: 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: could not connect to host
casioshop.eu: did not receive HSTS header
-casjay.cloud: did not receive HSTS header
-casjay.us: could not connect to host
-casjaygames.com: could not connect to host
+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
+castleswa.com.au: could not connect to host
+cat-blum.com: could not connect to host
cata.ga: could not connect to host
catalin.pw: did not receive HSTS header
catarsisvr.com: could not connect to host
-catchers.cc: did not receive HSTS header
catcontent.cloud: could not connect to host
caterkids.com: did not receive HSTS header
-catfooddispensersreviews.com: did not receive HSTS header
+catgirl.me: did not receive HSTS header
catgirl.pics: could not connect to host
catharisme.org: could not connect to host
+catherineidylle.com: max-age too low: 0
catherinesarasin.com: did not receive HSTS header
-catinmay.com: could not connect to host
+cathosting.org: could not connect to host
+catinmay.com: did not receive HSTS header
catnapstudios.com: could not connect to host
catnmeow.com: could not connect to host
+catprog.org: did not receive HSTS header
catsmagic.pp.ua: could not connect to host
-caughtredhanded.co.nz: could not connect to host
causae-fincas.es: did not receive HSTS header
causae.es: did not receive HSTS header
-cav.ac: could not connect to host
cavaleria.ro: did not receive HSTS header
cavalierkingcharlesspaniel.com.br: could not connect to host
+cave-reynard.ch: could not connect to host
caveclan.org: did not receive HSTS header
cavedevs.de: could not connect to host
cavedroid.xyz: could not connect to host
@@ -2340,19 +3246,24 @@ cavern.tv: did not receive HSTS header
cayafashion.de: did not receive HSTS header
cayounglab.co.jp: 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
+cbdev.de: 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
+ccgn.co: 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
+ccu.io: 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: did not receive HSTS header
cdmhp.org.nz: could not connect to host
cdmon.tech: could not connect to host
cdn.sx.cn: could not connect to host
@@ -2362,267 +3273,360 @@ cdnk39.com: could not connect to host
cdreporting.co.uk: did not receive HSTS header
cdt.org: did not receive HSTS header
ce-agentur.de: did not receive HSTS header
+ceagriproducts.com: did not receive HSTS header
cecilwalker.com.au: did not receive HSTS header
cee.io: could not connect to host
-cefak.org.br: could not connect to host
+cefak.org.br: did not receive HSTS header
cegfw.com: could not connect to host
ceilingpac.org: could not connect to host
+cekaja.com: did not receive HSTS header
celebphotos.blog: could not connect to host
-celebrityhealthcritic.com: did not receive HSTS header
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
+celtadigital.com: did not receive HSTS header
+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
+centerpoint.ovh: did not receive HSTS header
+centillien.com: did not receive HSTS header
centos.pub: could not connect to host
-central4.me: did not receive HSTS header
+central4.me: could not connect to host
centralcountiesservices.org: did not receive HSTS header
-centralfor.me: did not receive HSTS header
+centralfor.me: could not connect to host
centrallead.net: could not connect to host
centralvacsunlimited.net: did not receive HSTS header
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
centrolavoro.org: did not receive HSTS header
centsforchange.net: could not connect to host
+century-group.com: max-age too low: 2592000
ceoimon.com: did not receive HSTS header
+ceoptique.com: did not receive HSTS header
cercevelet.com: did not receive HSTS header
+ceres1.space: did not receive HSTS header
ceresia.ch: could not connect to host
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
cesal.net: could not connect to host
+cesantias.co: 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
+cf11.de: did not receive HSTS header
+cfa.gov: did not receive HSTS header
+cfan.space: could not connect to host
cfcnexus.org: could not connect to host
cfcproperties.com: did not receive HSTS header
-cfda.gov: could not connect to host
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
cganx.org: could not connect to host
cgerstner.eu: did not receive HSTS header
cgsshelper.tk: could not connect to host
cgtx.us: could not connect to host
+chabaojia.com: did not receive HSTS header
chadklass.com: could not connect to host
+chadtaljaardt.com: could not connect to host
chahub.com: could not connect to host
chainmonitor.com: could not connect to host
+chaip.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]
+chairinstitute.com: did not receive HSTS header
+chaldeen.pro: did not receive HSTS header
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]
chamilo.org: did not receive HSTS header
champ.dog: did not receive HSTS header
championnat-romand-cuisiniers-amateurs.ch: could not connect to host
championsofregnum.com: did not receive HSTS header
-chancat.blog: did not receive HSTS header
+chancat.blog: could not connect to host
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: could not connect to host
-channyc.com: did not receive HSTS header
-chanshiyu.com: did not receive HSTS header
+channellife.asia: did not receive HSTS header
+channellife.co.nz: did not receive HSTS header
+channellife.com.au: did not receive HSTS header
+channyc.com: could not connect to host
chaos.fail: could not connect to host
-chaospott.de: did not receive HSTS header
+chaoscastles.co.uk: did not receive HSTS header
chaoswebs.net: did not receive HSTS header
+chaotichive.com: could not connect to host
+chaoticlaw.com: did not receive HSTS header
chaouby.com: could not connect to host
-charge.co: could not connect to host
+chapelaria.tf: could not connect to host
+charakato.com: 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
-charlenevondell.com: could not connect to host
+charl.eu: could not connect to host
+charlesjay.com: could not connect to host
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
+charr.xyz: 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
+chatbotclic.com: could not connect to host
+chatbotclick.com: could not connect to host
chatbots.email: could not connect to host
+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
chaulootz.com: did not receive HSTS header
+chaverde.org: could not connect to host
+chaz6.com: did not receive HSTS header
+chazgie.se: did not receive HSTS header
chcemvediet.sk: max-age too low: 1555200
+chdgaming.xyz: could not connect to host
cheah.xyz: could not connect to host
cheapdns.org: could not connect to host
-cheapwritingservice.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]
+cheapwritinghelp.com: could not connect to host
+cheapwritingservice.com: could not connect to host
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
-checkmatewebsolutions.com: did not receive HSTS header
+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)
-checkrente.nl: did not receive HSTS header
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
+cheesehosting.net: did not receive HSTS header
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
chejianer.cn: could not connect to host
+chelema.xyz: could not connect to host
chellame.com: could not connect to host
chellame.fr: could not connect to host
chelseafs.co.uk: did not receive HSTS header
chemicalguys-ruhrpott.de: could not connect to host
chenfengyi.com: could not connect to host
-chengtongled.com: did not receive HSTS header
+chengtongled.com: could not connect to host
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
+cherrett.digital: 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
-chestnut.cf: could not connect to host
+chez-janine.de: could not connect to host
+chhy.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]
chiamata-aiuto.ch: could not connect to host
+chiaramail.com: could not connect to host
chib.chat: could not connect to host
-chicorycom.net: could not connect to host
+chicorycom.net: did not receive HSTS header
chihiro.xyz: could not connect to host
chijiokeindustries.co.uk: could not connect to host
+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
+childrendeservebetter.org: could not connect to host
+chilli943.info: did not receive HSTS header
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
+chiralsoftware.com: could not connect to host
chirgui.eu: could not connect to host
chloca.jp: did not receive HSTS header
chloe.re: did not receive HSTS header
+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
chocolat-suisse.ch: could not connect to host
+chocolate13tilias.com.br: did not receive HSTS header
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
+choisirmonerp.com: did not receive HSTS header
+chollima.pro: could not connect to host
chontalpa.pw: could not connect to host
+choootto.club: did not receive HSTS header
chopperforums.com: could not connect to host
-chordso.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
chris-web.info: could not connect to host
chrisandsarahinasia.com: could not connect to host
chrisbrakebill.com: did not receive HSTS header
chrisbrown.id.au: could not connect to host
-chriscowley.me.uk: did not receive HSTS header
chrisebert.net: could not connect to host
chrisfaber.com: could not connect to host
chrisfinazzo.com: did not receive HSTS header
chriskirchner.de: did not receive HSTS header
chriskyrouac.com: could not connect to host
-chrisnicholas.io: did not receive HSTS header
-chrisopperwall.com: did not receive HSTS header
+chrisopperwall.com: could not connect to host
chrisself.xyz: could not connect to host
christiaandruif.nl: could not connect to host
+christian-krug.website: did not receive HSTS header
christianbro.gq: could not connect to host
christianhoffmann.info: could not connect to host
christianhospitaltank.org: did not receive HSTS header
christiansayswords.com: could not connect to host
-christina-quast.de: could not connect to host
+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
+chrisvannooten.tk: could not connect to host
chrisvicmall.com: did not receive HSTS header
chromaryu.net: could not connect to host
-chromaxa.com: could not connect to host
+chromaxa.com: did not receive HSTS header
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
chs.us: max-age too low: 0
chsh.moe: could not connect to host
-chua.cf: could not connect to host
-chuckame.fr: did not receive HSTS header
+chua.cf: did not receive HSTS header
+chua.family: did not receive HSTS header
+chuckame.fr: could not connect to host
chulado.com: did not receive HSTS header
chundelac.com: could not connect to host
-churchux.co: did not receive HSTS header
+churchlinkpro.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]
+churchux.co: could not connect to host
churrasqueirafacil.com.br: could not connect to host
-ci-labo.com.tw: max-age too low: 7889238
+chxdf.net: could not connect to host
cianmawhinney.xyz: could not connect to host
+cidadedopoker.com.br: did not receive HSTS header
+ciderclub.com: could not connect to host
cidr.ml: could not connect to host
cienbeaute-lidl.fr: could not connect to host
cigarblogs.net: could not connect to host
+cigarterminal.com: could not connect to host
cigi.site: could not connect to host
ciicutini.ro: did not receive HSTS header
+ciiex.co: could not connect to host
cim2b.de: could not connect to host
cimalando.eu: could not connect to host
cinartelorgu.com: did not receive HSTS header
+cinay.pw: could not connect to host
+cindey.io: could not connect to host
cinefilia.tk: could not connect to host
+cinelite.club: could not connect to host
+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
+cintactimber.com: 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
+cipher.land: did not receive HSTS header
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
+cirope.com: could not connect to host
cirrohost.com: did not receive HSTS header
+cirugiasplasticas.com.mx: did not receive HSTS header
+cirujanooral.com: could not connect to host
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
citra-emu.org: did not receive HSTS header
+citroner.blog: did not receive HSTS header
citybusexpress.com: did not receive HSTS header
+cityofeastpointemi.gov: could not connect to host
cityoflaurel.org: did not receive HSTS header
+cityoftitansmmo.com: could not connect to host
+cityofwadley-ga.gov: did not receive HSTS header
citywalkr.com: could not connect to host
ciuciucadou.ro: could not connect to host
cium.ru: could not connect to host
-ciurcasdan.eu: did not receive HSTS header
+civicunicorn.com: could not connect to host
+civicunicorn.us: could not connect to host
cjcaron.org: could not connect to host
-cjdpenterprises.com: could not connect to host
-cjdpenterprises.com.au: could not connect to host
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
+clacetandil.com.ar: 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: did not receive HSTS header
+clanthor.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: 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
+clash-movies.de: max-age too low: 172800
clashersrepublic.com: could not connect to host
classicday.nl: could not connect to host
+classics.io: did not receive HSTS header
classicsandexotics.com: could not connect to host
classicshop.ua: did not receive HSTS header
classicspublishing.com: could not connect to host
classifiedssa.co.za: could not connect to host
-claster.it: did not receive HSTS header
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
@@ -2635,54 +3639,77 @@ clearviewwealthprojector.com.au: 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
-cleververmarkten.com: did not receive HSTS header
-cleververmarkten.de: did not receive HSTS header
+cleververmarkten.com: could not connect to host
+cleververmarkten.de: could not connect to host
clic-music.com: could not connect to host
click-2-order.co.uk: did not receive HSTS header
click2order.co.uk: did not receive HSTS header
clickandgo.com: did not receive HSTS header
clickandshoot.nl: could not connect to host
clickclickphish.com: did not receive HSTS header
+clickforclever.com: did not receive HSTS header
clickgram.biz: could not connect to host
+clickomobile.com: did not receive HSTS header
clicks.co.za: max-age too low: 1800
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
+clinicadelogopedia.net: 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
clintonbloodworth.com: could not connect to host
clintonbloodworth.io: could not connect to host
+clintonplasticsurgery.com: did not receive HSTS header
clintwilson.technology: max-age too low: 2592000
+clip.ovh: did not receive HSTS header
clipped4u.com: could not connect to host
+clnet.com.au: did not receive HSTS header
cloghercastles.co.uk: did not receive HSTS header
+clojurescript.ru: could not connect to host
+clorik.com: could not connect to host
closient.com: did not receive HSTS header
closingholding.com: could not connect to host
+cloturea.fr: could not connect to host
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
+cloudalice.com: could not connect to host
+cloudalice.net: could not connect to host
cloudapi.vc: could not connect to host
-cloudbased.info: could not connect to host
+cloudbased.info: did not receive HSTS header
cloudbasedsite.com: did not receive HSTS header
cloudberlin.goip.de: could not connect to host
cloudbleed.info: could not connect to host
-cloudcert.org: did not receive HSTS header
+cloudbreaker.de: could not connect to host
+cloudconsulting.net.za: did not receive HSTS header
+cloudconsulting.org.za: did not receive HSTS header
+cloudconsulting.web.za: did not receive HSTS header
cloudcy.net: could not connect to host
clouddesktop.co.nz: could not connect to host
-cloudfren.com: did not receive HSTS header
+cloudfren.com: could not connect to host
cloudimag.es: could not connect to host
-cloudlink.club: could not connect to host
+cloudimproved.com: could not connect to host
+cloudimprovedtest.com: could not connect to host
+cloudlink.club: did not receive HSTS header
+cloudmigrator365.com: did not receive HSTS header
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
+cloudsocial.io: could not connect to host
cloudspotterapp.com: did not receive HSTS header
cloudstoragemaus.com: could not connect to host
cloudstorm.me: could not connect to host
cloudstrike.co: could not connect to host
-cloudteam.de: did not receive HSTS header
+cloudteam.de: could not connect to host
cloudwalk.io: did not receive HSTS header
cloudwarez.xyz: could not connect to host
clounix.online: could not connect to host
@@ -2694,42 +3721,51 @@ clsimplex.com: did not receive HSTS header
clubcall.com: did not receive HSTS header
clubdeslecteurs.net: could not connect to host
clubmix.co.kr: could not connect to host
+clubscannan.ie: did not receive HSTS header
+clueful.ca: max-age too low: 0
cluj.apartments: could not connect to host
-cluster.biz.tr: could not connect to host
+clush.pw: did not receive HSTS header
cluster.id: could not connect to host
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
-cmangos.net: could not connect to host
+cm3.pw: could not connect to host
+cmahy.be: 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
cmci.dk: did not receive HSTS header
cmdtelecom.net.br: did not receive HSTS header
-cmitao.com: could not connect to host
cmpr.es: could not connect to host
-cmrss.com: did not receive HSTS header
-cms-weble.jp: did not receive HSTS header
+cmrss.com: 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
+cmusical.es: 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: did not receive HSTS header
+cnitdog.com: could not connect to host
+cnlau.com: could not connect to host
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: could not connect to host
+co-driversphoto.se: did not receive HSTS header
co-yutaka.com: could not connect to host
+co2eco.cn: did not receive HSTS header
+coa.one: could not connect to host
coach-sportif.paris: did not receive HSTS header
coachingconsultancy.com: did not receive HSTS header
cobaltlp.com: could not connect to host
+cobcode.com: could not connect to host
cobrax.net: could not connect to host
coccinellaskitchen.com: could not connect to host
coccinellaskitchen.de: could not connect to host
@@ -2740,21 +3776,21 @@ cockerspanielamericano.com.br: could not connect to host
cockerspanielingles.com.br: could not connect to host
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: could not connect to host
+cocyou.ooo: could not connect to host
codabix.net: could not connect to host
code-35.com: could not connect to host
code-digsite.com: could not connect to host
code-judge.tk: could not connect to host
code.google.com: did not receive HSTS header (error ignored - included regardless)
codealkemy.co: could not connect to host
+codebreaking.org: did not receive HSTS header
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
-codejunkie.de: did not receive HSTS header
+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
@@ -2766,31 +3802,47 @@ codeofhonor.tech: could not connect to host
codeplay.org: could not connect to host
codepoet.de: did not receive HSTS header
codeproxy.ddns.net: could not connect to host
-codepx.com: did not receive HSTS header
+codepx.com: could not connect to host
+codercy.com: could not connect to host
+coderhangout.com: could not connect to host
+codersatlas.co: could not connect to host
+codersatlas.com: could not connect to host
+codersatlas.xyz: could not connect to host
+codersbistro.com: could not connect to host
+codestep.io: could not connect to host
codewiththepros.org: could not connect to host
codewiz.xyz: could not connect to host
-codigosddd.com.br: did not receive HSTS header
+codimaker.com: did not receive HSTS header
+codymoniz.com: could not connect to host
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
-cogsquad.house: could not connect to host
+coffeetocode.me: did not receive HSTS header
+cogniflex.com: could not connect to host
+cognixia.com: did not receive HSTS header
cogumelosmagicos.org: could not connect to host
-cohesive.io: did not receive HSTS header
+cohesive.io: could not connect to host
coin-exchange.cz: could not connect to host
+coincoele.com.br: could not connect to host
coindam.com: could not connect to host
-coins2001.ru: could not connect to host
+coindatabase.net: 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
-coldlostsick.net: could not connect to host
+coldaddy.com: could not connect to host
+coldawn.com: could not connect to host
+coldlostsick.net: did not receive HSTS header
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
-collectiblebeans.com: could not connect to host
-collectosaurus.com: did not receive HSTS header
+collbox.co: 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
@@ -2799,17 +3851,22 @@ collins.press: could not connect to host
collinsartworks.com: did not receive HSTS header
collision.fyi: could not connect to host
colmexpro.com: did not receive HSTS header
+colo-tech.com: could not connect to host
colognegaming.net: could not connect to host
coloradocomputernetworking.net: could not connect to host
colorcentertoner.com.br: did not receive HSTS header
+coloringnotebook.com: did not receive HSTS header
colorlib.com: did not receive HSTS header
colorunhas.com.br: did not receive HSTS header
-coltonrb.com: could not connect to host
+com-news.io: could not connect to host
com.cc: could not connect to host
combatshield.cz: did not receive HSTS header
-comefollowme2016.com: did not receive HSTS header
+comchezmeme.com: could not connect to host
+comdotgame.com: could not connect to host
comeoncolleen.com: did not receive HSTS header
comercialtrading.eu: could not connect to host
+cometbot.cf: could not connect to host
+cometrueunlimited.com: 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
@@ -2821,20 +3878,19 @@ comicspines.com: could not connect to host
comiq.io: could not connect to host
comitesaustria.at: could not connect to host
comiteshopping.com: could not connect to host
-commania.co.kr: could not connect to host
commencepayments.com: did not receive HSTS header
-commerciallocker.com: did not receive HSTS header
+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
communityflow.info: could not connect to host
-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
+comorecuperaratumujerpdf.com: could not connect to host
comotalk.com: could not connect to host
compalytics.com: could not connect to host
comparamejor.com: did not receive HSTS header
-compareandrecycle.co.uk: did not receive HSTS header
+compareandrecycle.com: did not receive HSTS header
comparejewelleryprices.co.uk: could not connect to host
comparetravelinsurance.com.au: did not receive HSTS header
compassionate-biology.com: could not connect to host
@@ -2843,49 +3899,64 @@ compiledworks.com: could not connect to host
completesportperformance.com: did not receive HSTS header
completionist.audio: could not connect to host
complex-organization.com: could not connect to host
-compliance-systeme.de: could not connect to host
+complexsystems.fail: did not receive HSTS header
complt.xyz: could not connect to host
complymd.com: did not receive HSTS header
compredietlight.com.br: did not receive HSTS header
-comprefitasadere.com.br: did not receive HSTS header
+comprefitasadere.com.br: could not connect to host
comprehensiveihc.com: could not connect to host
-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]
+compromised.com: could not connect to host
+compros.me: could not connect to host
+compsmag.com: did not receive HSTS header
+compucastell.ch: could not connect to host
compucorner.com.mx: could not connect to host
-computeremergency.com.au: did not receive HSTS header
+compusolve.nl: could not connect to host
+computeracademy.co.za: could not connect to host
+computercraft.net: could not connect to host
computertal.de: could not connect to host
+comssa.org.au: did not receive HSTS header
+comw.cc: could not connect to host
comyuno.com: did not receive HSTS header
concentrade.de: did not receive HSTS header
conceptatelier.de: could not connect to host
conception.sk: could not connect to host
concerts-metal.ch: did not receive HSTS header
conclave.global: could not connect to host
+conclinica.com.br: did not receive HSTS header
concord-group.co.jp: did not receive HSTS header
-concretehermit.com: did not receive HSTS header
-conectalmeria.com: could not connect to host
+conectalmeria.com: did not receive HSTS header
+confidential.network: could not connect to host
confirm365.com: could not connect to host
+conflux.tw: did not receive HSTS header
conformal.com: could not connect to host
+conformist.jp: could not connect to host
confucio.cl: could not connect to host
-congz.me: could not connect to host
+confuddledpenguin.com: did not receive HSTS header
+cong5.net: max-age too low: 0
+congz.me: did not receive HSTS header
+conkret.ch: could not connect to host
conkret.co.uk: could not connect to host
conkret.eu: could not connect to host
conkret.in: did not receive HSTS header
-connaitre-les-astres.com: could not connect to host
-connect-me.com: did not receive HSTS header
+conkret.mobi: could not connect to host
+connaitre-les-astres.com: did not receive HSTS header
connect.ua: could not connect to host
connected-verhuurservice.nl: did not receive HSTS header
connectfss.com: could not connect to host
-connectingconcepts.com: did not receive HSTS header
+connectingconcepts.com: could not connect to host
+conniesacademy.com: could not connect to host
+conocimientosdigitales.com: could not connect to host
conrad.am: could not connect to host
-conrail.blue: could not connect to host
consciousandglamorous.com: could not connect to host
+consciousbrand.co: did not receive HSTS header
consciousbrand.org.au: could not connect to host
consciousbranding.org.au: could not connect to host
consciousbrands.net.au: could not connect to host
+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
-constructive.men: could not connect to host
-consultation.biz.tr: 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
@@ -2896,32 +3967,47 @@ contaimo.com: did not receive HSTS header
container-lion.com: did not receive HSTS header
containerstatistics.com: could not connect to host
contarkos.xyz: could not connect to host
+content-design.de: did not receive HSTS header
+contentdesign.de: did not receive HSTS header
+contents.ga: did not receive HSTS header
continuation.io: could not connect to host
continuumgaming.com: could not connect to host
+contractdigital.co.uk: did not receive HSTS header
contraout.com: could not connect to host
controlcenter.gigahost.dk: did not receive HSTS header
-controleer-maar-een-ander.nl: did not receive HSTS header
+contxt-agentur.de: did not receive HSTS header
convergemagazine.com: did not receive HSTS header
+convert.zone: could not connect to host
+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
cookiestudies.cf: could not connect to host
+cookingbazart.com: did not receive HSTS header
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
cooljs.me: could not connect to host
coolkidsbouncycastles.co.uk: did not receive HSTS header
+coolrc.me: did not receive HSTS header
+cooltang.ooo: did not receive HSTS header
+coolviewthermostat.com: 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: did not receive HSTS header
+cooperativehandmade.com: did not receive HSTS header
+cooperativehandmade.pe: did not receive HSTS header
+cooxa.com: could not connect to host
+copperhead.co: did not receive HSTS header
copshop.com.br: could not connect to host
+coptic-treasures.com: max-age too low: 2592000
copycaught.com: could not connect to host
+copytrack.com: did not receive HSTS header
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
+coralrosado.com.br: could not connect to host
+coramcdaniel.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
@@ -2929,10 +4015,12 @@ coreapm.com: could not connect to host
corecdn.org: could not connect to host
coreinfrastructure.org: did not receive HSTS header
corenetworking.de: could not connect to host
+coresos.com: could not connect to host
corex.io: could not connect to host
+corgi.party: could not connect to host
corgicloud.com: could not connect to host
corinnanese.de: could not connect to host
-coriver.me: could not connect to host
+coriver.me: did not receive HSTS header
corkyoga.site: could not connect to host
cormactagging.ie: could not connect to host
cormilu.com.br: did not receive HSTS header
@@ -2949,18 +4037,23 @@ 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: could not connect to host
+cosmeticosdelivery.com.br: could not connect to host
+cosmeticosnet.com.br: did not receive HSTS header
cosmiatria.pe: could not connect to host
+cosmic-os.org: did not receive HSTS header
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
+cosni.co: could not connect to host
+costa-rica-reisen.ch: did not receive HSTS header
+costcofinance.com: did not receive HSTS header
costow.club: did not receive HSTS header
cotonea.de: did not receive HSTS header
cougarsland.com: did not receive HSTS header
coughlan.de: did not receive HSTS header
counselling.network: could not connect to host
+counsellingtime.co.uk: could not connect to host
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
couragewhispers.ca: could not connect to host
@@ -2969,185 +4062,244 @@ course.pp.ua: did not receive HSTS header
course.rs: could not connect to host
coursella.com: did not receive HSTS header
courses.nl: could not connect to host
+courseworkbank.info: could not connect to host
+covaci.pro: did not receive HSTS header
cove.sh: could not connect to host
covenantbank.net: could not connect to host
+covenantmatrix.com: did not receive HSTS header
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
+cpahunt.com: did not receive HSTS header
cpaneltips.com: could not connect to host
cpbanq.com: could not connect to host
-cpu.biz.tr: 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
-crackingking.com: did not receive HSTS header
+crackingking.com: could not connect to host
crackpfer.de: could not connect to host
-crackslut.eu: could not connect to host
craftbeerbarn.co.uk: could not connect to host
craftedge.xyz: could not connect to host
craftination.net: could not connect to host
craftmain.eu: could not connect to host
craftmine.cz: could not connect to host
craftngo.hu: could not connect to host
+craftwmcp.xyz: could not connect to host
craftydev.design: could not connect to host
-craigsimpson.scot: did not receive HSTS header
+craigary.net: could not connect to host
cranems.com.ua: could not connect to host
cranesafe.com: max-age too low: 7889238
cranioschule.com: did not receive HSTS header
-crashsec.com: could not connect to host
+crashsec.com: did not receive HSTS header
crate.io: did not receive HSTS header
cravelyrics.com: could not connect to host
crazifyngers.com: could not connect to host
crazy-crawler.de: did not receive HSTS header
-crazycen.com: did not receive HSTS header
-crazycraftland.de: did not receive HSTS header
-crazycraftland.net: did not receive HSTS header
+crazycen.com: could not connect to host
+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
-crealogix-online.com: could not connect to host
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
+create-together.nl: did not receive HSTS header
+creations-edita.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
-creativeink.de: could not connect to host
creativephysics.ml: could not connect to host
creativeplayuk.com: did not receive HSTS header
+creativlabor.ch: 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
creditclear.com.au: did not receive HSTS header
-creditreporttips.net: could not connect to host
+creditreporttips.net: did not receive HSTS header
+creepycraft.nl: could not connect to host
crendontech.com: did not receive HSTS header
+creorin.com: did not receive HSTS header
crestoncottage.com: could not connect to host
+creusalp.ch: did not receive HSTS header
crewplanner.eu: did not receive HSTS header
+crge.eu: could not connect to host
+criadorespet.com.br: could not connect to host
+crickey.eu: could not connect to host
crimewatch.net.za: could not connect to host
+crimson.no: did not receive HSTS header
+crip-usk.ba: could not connect to host
crisissurvivalspecialists.com: could not connect to host
+cristiandeluxe.com: did not receive HSTS header
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
-cronix.cc: could not connect to host
+croisieres.discount: did not receive HSTS header
+cromosomax.com: could not connect to host
+cronberg.ch: could not connect to host
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
+croquette.net: did not receive HSTS header
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
crow.tw: could not connect to host
-crowd.supply: did not receive HSTS header
crowdcurity.com: did not receive HSTS header
crowdjuris.com: could not connect to host
+crowdwis.com: could not connect to host
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.sh: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
crtvmgmt.com: could not connect to host
crudysql.com: could not connect to host
crufad.org: did not receive HSTS header
-cruikshank.com.au: could not connect to host
+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
+crypalert.com: did not receive HSTS header
crypt.guru: did not receive HSTS header
cryptify.eu: could not connect to host
+crypto-navi.org: did not receive HSTS header
+crypto.tube: max-age too low: 2592000
+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
cryptojar.io: could not connect to host
cryptolab.pro: could not connect to host
cryptolab.tk: could not connect to host
-cryptolosophy.io: could not connect to host
+cryptonom.org: could not connect to host
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
+crystallizedcouture.com: 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
csapak.com: did not receive HSTS header
csawctf.poly.edu: could not connect to host
+csbgtribalta.com: did not receive HSTS header
cscau.com: did not receive HSTS header
csehnyelv.hu: could not connect to host
cselzer.com: did not receive HSTS header
-cser.me: 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: did not receive HSTS header
+csgodicegame.com: could not connect to host
csgoelemental.com: could not connect to host
+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
-csinterstargeneve.ch: could not connect to host
+cskdoc.com: did not receive HSTS header
csohack.tk: could not connect to host
-cspbuilder.info: could not connect to host
-cspeti.hu: 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
-ctrl.blog: did not receive HSTS header
-cuanhua3s.com: did not receive HSTS header
+cthomas.work: could not connect to host
+cthulhuden.com: could not connect to host
+ctyi.me: could not connect to host
+cuanhua3s.com: could not connect to host
cubecart.net: could not connect to host
+cubecraftstore.com: could not connect to host
+cubecraftstore.net: could not connect to host
cubela.tech: could not connect to host
cubeserver.eu: could not connect to host
cubewano.com: could not connect to host
-cubix.host: did not receive HSTS header
-cublick.com: did not receive HSTS header
+cubix.host: could not connect to host
cucc.date: could not connect to host
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
-cumparama.com: did not receive HSTS header
+cultureelbeleggen.nl: did not receive HSTS header
+cultureroll.com: could not connect to host
cumshots-video.ru: could not connect to host
-cuni-cuni-club.com: could not connect to host
-cuni-rec.com: could not connect to host
+cunha.be: could not connect to host
+cuni-cuni-club.com: did not receive HSTS header
+cuni-rec.com: did not receive HSTS header
cuntflaps.me: could not connect to host
cuongquach.com: did not receive HSTS header
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
+cupi.co: could not connect to host
+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
-curatedgeek.com: did not receive HSTS header
+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: did not receive HSTS header
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
+cutephil.com: could not connect to host
+cutimbo.com: could not connect to host
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
-cvsoftub.com: could not connect to host
+cvninja.pl: 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
cw-bw.de: could not connect to host
cwage.com: could not connect to host
-cwarren.is: could not connect to host
cwbw.network: could not connect to host
cwilson.ga: could not connect to host
cy.technology: did not receive HSTS header
@@ -3155,75 +4307,93 @@ 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
-cyberlab.kiev.ua: did not receive HSTS header
+cybercymru.co.uk: did not receive HSTS header
+cyberdyne-industries.net: 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
-cyberpioneer.net: could not connect to host
+cyberphaze.com: did not receive HSTS header
cyberprey.com: did not receive HSTS header
cyberpunk.ca: could not connect to host
-cybersafesolutions.com: did not receive HSTS header
-cyberscan.io: did not receive HSTS header
+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
-cyberxpert.nl: 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: 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.com: could not connect to host
+cypad.cn: did not receive HSTS header
+cype.dedyn.io: could not connect to host
cypherpunk.ws: could not connect to host
cyphertite.com: could not connect to host
cytadel.fr: did not receive HSTS header
+cyyzaid.cn: max-age too low: 0
czaw.org: did not receive HSTS header
+czechamlp.com: could not connect to host
czirnich.org: did not receive HSTS header
czlx.co: could not connect to host
d-academia.com: did not receive HSTS header
+d-garnier-delaunay.fr: did not receive HSTS header
+d-macindustries.com: did not receive HSTS header
d-rickroll-e.pw: 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
+d88688.com: could not connect to host
+d88871.com: could not connect to host
d8studio.net: could not connect to host
+da-ist-kunst.de: 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
-daemon.xin: did not receive HSTS header
+daemon.xin: could not connect to host
+daemonslayer.net: did not receive HSTS header
dah5.com: did not receive HSTS header
dahl-pind.dk: did not receive HSTS header
dai-rin.co.jp: could not connect to host
-dailybunda.com: 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
-daiwai.de: could not connect to host
-daiyuu.jp: could not connect to host
-dakerealestate.com: could not connect to host
+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
+dalepresencia.com: did not receive HSTS header
dalfiume.it: did not receive HSTS header
dalingk.co: could not connect to host
+dallas.gov: could not connect to host
daltonedwards.me: could not connect to host
dam74.com.ar: could not connect to host
damedrogy.cz: could not connect to host
-damianuv-blog.cz: did not receive HSTS header
+damianuv-blog.cz: could not connect to host
+damienpontifex.com: did not receive HSTS header
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
+dancingshiva.at: could not connect to host
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
@@ -3232,22 +4402,29 @@ danielcowie.me: could not connect to host
danieldk.eu: did not receive HSTS header
danielgraziano.ca: could not connect to host
danieliancu.com: could not connect to host
+danieljireh.com: did not receive HSTS header
danielkratz.com: max-age too low: 172800
+danielnaaman.net: could not connect to host
+danielnaaman.org: 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
+danoz.net: could not connect to host
danrl.de: 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
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
darkanzali.pl: max-age too low: 0
darkdestiny.ch: could not connect to host
@@ -3261,91 +4438,116 @@ darkpony.ru: could not connect to host
darksideof.it: could not connect to host
darkstance.org: could not connect to host
darktree.in: could not connect to host
+darkwebkittens.xyz: could not connect to host
darlastudio66.com: did not receive HSTS header
darlo.co.uk: could not connect to host
-daropia.org: 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
dashboard.yt: could not connect to host
dashburst.com: did not receive HSTS header
+dashlane.com: did not receive HSTS header
dashnimorad.com: did not receive HSTS header
data-abundance.com: could not connect to host
data-detox.com: could not connect to host
data.haus: could not connect to host
data.qld.gov.au: did not receive HSTS header
+data.world: did not receive HSTS header
+databeam.de: could not connect to host
datacave.is: could not connect to host
+datacenternews.asia: did not receive HSTS header
+datacenternews.co.nz: did not receive HSTS header
+datacentrenews.eu: did not receive HSTS header
+datacool.tk: could not connect to host
datacubed.com: did not receive HSTS header
datahoarder.download: could not connect to host
-datahoarder.xyz: could not connect to host
+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
dataretention.solutions: could not connect to host
+datascomemorativas.com.br: 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
datatekniikka.com: could not connect to host
datedeposit.com: could not connect to host
datengrab.ws: could not connect to host
+datenlast.de: did not receive HSTS header
datenreiter.cf: could not connect to host
datenreiter.gq: could not connect to host
datenreiter.ml: could not connect to host
datenreiter.tk: could not connect to host
-datenschutzhelden.org: did not receive HSTS header
+datenschutzhelden.org: max-age too low: 172800
datine.com.br: could not connect to host
datorb.com: could not connect to host
-datortipsen.se: did not receive HSTS header
+datortipsen.se: could not connect to host
+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
davidgrudl.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]
davidhunter.scot: did not receive HSTS header
davidletellier.com: did not receive HSTS header
+davidlillo.com: could not connect to host
davidnoren.com: did not receive HSTS header
davidreinhardt.de: could not connect to host
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
dawnofeden.org: did not receive HSTS header
dawnson.is: could not connect to host
-day.vip: did not receive HSTS header
+dawnsonb.com: could not connect to host
+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
+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: could not connect to host
dbyz.co.uk: max-age too low: 43200
dcaracing.nl: could not connect to host
-dcc.moe: did not receive HSTS header
+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
-dclaisse.fr: could not connect to host
+dcl.re: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dctxf.com: did not receive HSTS header
dcuofriends.net: could not connect to host
-dcw.io: did not receive HSTS header
-ddatsh.com: did not receive HSTS header
+dd.art.pl: could not connect to host
dden.website: could not connect to host
dden.xyz: could not connect to host
+ddholdingservices.com: did not receive HSTS header
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-osopanda.com: could not connect to host
de-servers.de: could not connect to host
deadmann.com: could not connect to host
-deadsoul.net: max-age too low: 0
+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
+debigare.com: did not receive HSTS header
debiton.dk: could not connect to host
debitoutil.com: did not receive HSTS header
+debitpaie.com: did not receive HSTS header
+debkleinteam.com: did not receive HSTS header
deborahmarinelli.eu: could not connect to host
debtkit.co.uk: did not receive HSTS header
debtprotectionreporting.com: did not receive HSTS header
@@ -3353,7 +4555,7 @@ decafu.co: could not connect to host
decentralizedweb.net: did not receive HSTS header
decesus.com: could not connect to host
decibelios.li: could not connect to host
-decloverly.com: did not receive HSTS header
+decloverly.com: could not connect to host
deco.me: could not connect to host
decoboutique.com: did not receive HSTS header
decofire.pl: did not receive HSTS header
@@ -3364,58 +4566,72 @@ decorincasa.com.br: could not connect to host
decorland.com.ua: could not connect to host
decormiernissanparts.com: could not connect to host
decoyrouting.com: could not connect to host
-dedeo.tk: did not receive HSTS header
+decstasy.de: did not receive HSTS header
+dede.ml: 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
+dedietrich-asia.com: did not receive HSTS header
+deeonix.eu: could not connect to host
+deep.club: could not connect to host
+deep.social: did not receive HSTS header
+deepaero.com: could not connect to host
deepcovelabs.net: could not connect to host
deepcreampie.com: could not connect to host
deepearth.uk: could not connect to host
-deephill.com: could not connect to host
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
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
-degroetenvanrosaline.nl: 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
+dehydrated.de: did not receive HSTS header
deight.co: could not connect to host
deight.in: could not connect to host
+dejan.media: could not connect to host
dekasan.ru: could not connect to host
+dekoh-shouyu.com: did not receive HSTS header
delandalucia.com: did not receive HSTS header
delayrefunds.co.uk: could not connect to host
+delcopa.gov: did not receive HSTS header
+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]
+delitto.top: could not connect to host
deliver.moe: did not receive HSTS header
deliverance.co.uk: could not connect to host
deloittequant.com: could not connect to host
-deltaconcepts.de: did not receive HSTS header
+deltaconcepts.de: could not connect to host
+deltasmart.ch: did not receive HSTS header
delvj.org: could not connect to host
-demandware.com: could not connect to host
-demarche-expresse.com: could not connect to host
+demandware.com: did not receive HSTS header
+demarche-expresse.com: did not receive HSTS header
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
democracy.io: did not receive HSTS header
-democraticdifference.com: did not receive HSTS header
+democraticdifference.com: could not connect to host
demomanca.com: did not receive HSTS header
demotops.com: could not connect to host
-dempsters.ca: max-age too low: 86400
-dengchangdong.com: could not connect to host
+demuzere.eu: could not connect to host
+dengchangdong.com: did not receive HSTS header
denh.am: did not receive HSTS header
+denimio.com: did not receive HSTS header
denisjean.fr: could not connect to host
dennispotter.eu: did not receive HSTS header
densmirnov.com: max-age too low: 7776000
@@ -3427,15 +4643,16 @@ denverphilharmonic.org: did not receive HSTS header
denverprophit.us: did not receive HSTS header
depaco.com: did not receive HSTS header
deped.blog: could not connect to host
-depedtayo.ph: could not connect to host
+depedshs.com: could not connect to host
+depedtayo.com: did not receive HSTS header
+depedtayo.ph: did not receive HSTS header
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
dequehablamos.es: could not connect to host
derbyshiredotnet.co.uk: did not receive HSTS header
derchris.me: could not connect to host
-derekseaman.com: did not receive HSTS header
-derekseaman.studio: did not receive HSTS header
derevtsov.com: did not receive HSTS header
derivativeshub.pro: could not connect to host
derive.cc: could not connect to host
@@ -3445,19 +4662,23 @@ derrickemery.com: did not receive HSTS header
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
+designgears.com: could not connect to host
designgraphic.fr: did not receive HSTS header
designsbykerrialee.co.uk: could not connect to host
designthinking.or.jp: did not receive HSTS header
+desormiers.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]
+despachomartinyasociados.com: could not connect to host
despora.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]
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
desuperheroes.co: could not connect to host
-detalhecomercio.com.br: could not connect to host
+desveja.com.br: 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
@@ -3465,46 +4686,60 @@ detectefuite.ch: could not connect to host
detector.exposed: could not connect to host
detest.org: could not connect to host
dethikiemtra.com: did not receive HSTS header
+detroitrocs.org: did not receive HSTS header
detteflies.com: max-age too low: 7889238
+detuprovincia.cl: did not receive HSTS header
detutorial.com: max-age too low: 36000
deusu.de: could not connect to host
deusu.org: could not connect to host
+deux.solutions: could not connect to host
+deuxsol.co: could not connect to host
+deuxsol.com: could not connect to host
+deuxsolutions.com: could not connect to host
deuxvia.com: could not connect to host
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.eu: could not connect to host
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
+devdoodle.net: could not connect to host
+develop.cool: could not connect to host
develop.fitness: could not connect to host
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
+devh.net: could not connect to host
+deviltracks.net: did not receive HSTS header
deviltraxxx.de: could not connect to host
devin-balimuhac.de: did not receive HSTS header
devincrow.me: could not connect to host
-devinpacker.com: did not receive HSTS header
+devinpacker.com: could not connect to host
devisonline.ch: could not connect to host
devistravaux.org: did not receive HSTS header
-devkit.cc: could not connect to host
-devlux.ch: did not receive HSTS header
-devmsg.com: did not receive HSTS header
+devjack.de: did not receive HSTS header
+devmsg.com: could not connect to host
devnsec.com: could not connect to host
devnull.team: could not connect to host
-devopps.me: did not receive HSTS header
+devolution.ws: could not connect to host
+devopps.me: could not connect to host
devops.moe: could not connect to host
devopsconnected.com: could not connect to host
-devpsy.info: could not connect to host
+devpgsv.com: did not receive HSTS header
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
+dexonsoftware.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]
dfixit.com: could not connect to host
dfrance.com.br: did not receive HSTS header
dfviana.com.br: max-age too low: 2592000
+dgby.org: did not receive HSTS header
dggwp.de: did not receive HSTS header
+dgx.io: could not connect to host
dharamkot.com: could not connect to host
dharma.ai: did not receive HSTS header
dhl-smart.ch: could not connect to host
@@ -3518,7 +4753,9 @@ 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
-diamondcare.com.br: could not connect to host
+diagrammingoutloud.co.uk: 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
dianlujitao.com: did not receive HSTS header
@@ -3531,110 +4768,122 @@ 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
-didierlaumen.be: could not connect to host
-die-besten-weisheiten.de: did not receive HSTS header
+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
-diegobarrosmaia.com.br: could not connect to host
diejanssens.net: did not receive HSTS header
diemogebhardt.com: could not connect to host
+dierencompleet.nl: did not receive HSTS header
dierenkruiden.nl: did not receive HSTS header
dieser.me: could not connect to host
dietagespresse.com: did not receive HSTS header
+dietergreven.de: did not receive HSTS header
diewebstube.de: could not connect to host
diezel.com: could not connect to host
diferenca.com: did not receive HSTS header
+diff2html.xyz: 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
+digimomedia.co.uk: did not receive HSTS header
diginota.com: did not receive HSTS header
+digired.ro: could not connect to host
digired.xyz: could not connect to host
+digital1world.com: could not connect to host
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
-digitaldaddy.net: did not receive HSTS header
+digitalcash.cf: could not connect to host
+digitalcloud.ovh: could not connect to host
+digitalcuko.com: did not receive HSTS header
+digitaldaddy.net: could not connect to host
digitalero.rip: did not receive HSTS header
+digitalewelten.de: could not connect to host
digitalexhale.com: did not receive HSTS header
-digitalhurricane.io: did not receive HSTS header
+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
digitalrxcloud.com: could not connect to host
-digitalunite.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]
-digitalwasteland.net: could not connect to host
+digitalwasteland.net: did not receive HSTS header
digiworks.se: did not receive HSTS header
diguass.us: could not connect to host
dijks.com: could not connect to host
dikshant.net: could not connect to host
-diletec.com.br: did not receive HSTS header
+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
din-tools.com: did not receive HSTS header
dinamoelektrik.com: could not connect to host
dingcc.com: could not connect to host
-dingcc.me: could not connect to host
-dingcc.org: did not receive HSTS header
+dingcc.org: could not connect to host
dingcc.xyz: could not connect to host
+dinge.xyz: did not receive HSTS header
+dingelbob-schuhcreme.gq: could not connect to host
dingss.com: could not connect to host
dinkum.online: could not connect to host
+dinotopia.org.uk: did not receive HSTS header
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
+direct2uk.com: max-age too low: 2592000
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
+dirips.com: did not receive HSTS header
dirtycat.ru: could not connect to host
disadattamentolavorativo.it: could not connect to host
-disclosure.io: 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
discountmania.eu: did not receive HSTS header
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
+discoverrsv.com: could not connect to host
+discoverucluelet.com: 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
-discoveryottawa.ca: did not receive HSTS header
-disking.co.uk: did not receive HSTS header
dislocated.de: did not receive HSTS header
disorderboutique.com: did not receive HSTS header
-displayideas.gr: max-age too low: 0
disruptivelabs.net: could not connect to host
disruptivelabs.org: could not connect to host
+dissieux.com: did not receive HSTS header
dissimulo.me: could not connect to host
+distiduffer.org: could not connect to host
distinctivephotography.com.au: could not connect to host
distinguishedwindows.co.uk: did not receive HSTS header
-distractionco.de: could not connect to host
+distractionco.de: did not receive HSTS header
distrilogservices.com: could not connect to host
+distro.re: did not receive HSTS header
ditch.ch: could not connect to host
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
-divingwithnic.com: could not connect to host
divvi.co.nz: did not receive HSTS header
divvymonkey.com: did not receive HSTS header
divvyradio.com: did not receive HSTS header
-diwei.vip: did not receive HSTS header
dixiediner.com: did not receive HSTS header
dixmag.com: could not connect to host
diz.in.ua: could not connect to host
@@ -3642,118 +4891,152 @@ 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
+djursland-psykologen.dk: did not receive HSTS header
djxmmx.net: did not receive HSTS header
djz4music.com: 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: did not receive HSTS header
+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
dmcglobaltravel.com.mx: did not receive HSTS header
dmcibulldog.com: did not receive HSTS header
dmdre.com: did not receive HSTS header
+dmeevalumate.com: did not receive HSTS header
dmenergy.ru: did not receive HSTS header
+dmfd.net: could not connect to host
dmix.ca: could not connect to host
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
+dndesign.be: did not receive HSTS header
+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
-dnscrypt.org: could not connect to host
+dnscrypt.nl: could not connect to host
+dnscrypt.org: did not receive HSTS header
dnsknowledge.com: did not receive HSTS header
dnsql.io: could not connect to host
+dnzz123.com: did not receive HSTS header
do-do.tk: could not connect to host
+do-it.cz: could not connect to host
doak.io: did not receive HSTS header
dobet.in: could not connect to host
-doc-justice.com: 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
-doclot.io: did not receive HSTS header
+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
-doctorsonmaps.com: could not connect to host
+docsoc.org.uk: 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
+docupet.com: did not receive HSTS header
docxtemplater.com: did not receive HSTS header
doesmycodehavebugs.today: could not connect to host
doeswindowssuckforeveryoneorjustme.com: could not connect to host
-dogbox.se: could not connect to host
+dog-blum.com: could not connect to host
+dogbox.se: did not receive HSTS header
dogcratereview.info: could not connect to host
+doge.town: 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
+dogoodbehappyllc.com: could not connect to host
+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: did not receive HSTS header
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
dollywiki.co.uk: could not connect to host
dolphin-cloud.com: could not connect to host
dolphin-hosting.com: could not connect to host
-dolphincorp.co.uk: did not receive HSTS header
+dolphincorp.co.uk: could not connect to host
dolphinswithlasers.com: could not connect to host
+dolt.xyz: did not receive HSTS header
domaine-aigoual-cevennes.com: did not receive HSTS header
domainelaremejeanne.com: did not receive HSTS header
domaris.de: did not receive HSTS header
+domasazu.pl: did not receive HSTS header
domen-reg.ru: could not connect to host
domengrad.ru: did not receive HSTS header
domenicocatelli.com: did not receive HSTS header
domfee.com: could not connect to host
+domian.cz: could not connect to host
dominikanskarepubliken.guide: could not connect to host
dominioanimal.com: could not connect to host
-dominique-mueller.de: did not receive HSTS header
+dominioanimal.com.br: could not connect to host
+dominique-mueller.de: could not connect to host
+domwkwiatach.pl: did not receive HSTS header
+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
-donotcall.gov: did not receive HSTS header
+donna-bellini-business-fotografie-muenchen.de: 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
-dontpayfull.com: did not receive HSTS header
donttrustrobots.nl: could not connect to host
donzelot.co.uk: did not receive HSTS header
+donzool.es: could not connect to host
doobydude.us: could not connect to host
doodledraw.ninja: could not connect to host
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
+dopfer-fenstertechnik.de: did not receive HSTS header
dopost.it: could not connect to host
-dorfbaeck.at: did not receive HSTS header
-doridian.com: could not connect to host
-doridian.de: could not connect to host
-doridian.org: could not connect to host
+doppenpost.nl: could not connect to host
doriginal.es: did not receive HSTS header
dorkfarm.com: did not receive HSTS header
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
-dot42.no: could not connect to host
dotadata.me: could not connect to host
-dotbrick.co.th: did not receive HSTS header
+dotb.dn.ua: 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
dotspaperie.com: could not connect to host
doublethink.online: could not connect to host
doubleyummy.uk: did not receive HSTS header
dougferris.id.au: could not connect to host
+douglas-ma.gov: did not receive HSTS header
douglasstafford.com: did not receive HSTS header
doujin-domain.cz: could not connect to host
doujin.nagoya: could not connect to host
@@ -3761,19 +5044,22 @@ doulasofgreaterkansascity.org: max-age too low: 300
dovecotadmin.org: could not connect to host
doveholesband.co.uk: did not receive HSTS header
dovetailnow.com: could not connect to host
+dovro.de: 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
-dpg.no: could not connect to host
-dps.srl: did not receive HSTS header
dpsart.it: did not receive HSTS header
-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]
-drabim.org: did not receive HSTS header
+dr-knirr.de: could not connect to host
+drabben.be: did not receive HSTS header
+drabbin.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
dragonsmoke.cloud: could not connect to host
@@ -3786,38 +5072,48 @@ drakensberg-tourism.com: did not receive HSTS header
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
+drawvesly.ovh: could not connect to host
+drbarnabus.com: could not connect to host
+drbethanybarnes.com: could not connect to host
+drdavidgilpin.com: did not receive HSTS header
drdevil.ru: could not connect to host
+drdim.ru: could not connect to host
dreadbyte.com: could not connect to host
-dreadd.org: did not receive HSTS header
+dreadd.org: could not connect to host
dreamaholic.club: could not connect to host
dreamcatcherblog.de: could not connect to host
+dreamersgiftshopec.com: 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
+dreamtechie.com: did not receive HSTS header
+dreatho.com: did not receive HSTS header
+dreax.win: could not connect to host
dredgepress.com: did not receive HSTS header
-dreischneidiger.de: 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
+drinkplanet.eu: 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.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
droidboss.com: did not receive HSTS header
droithxn.com: could not connect to host
droncentrum.pl: could not connect to host
+dronebotworkshop.com: did not receive HSTS header
+dronexpertos.com: could not connect to host
droomhuis-in-brielle-kopen.nl: could not connect to host
droomhuis-in-de-friese-meren-kopen.nl: could not connect to host
droomhuis-in-delfzijl-kopen.nl: could not connect to host
@@ -3833,90 +5129,124 @@ droomhuisindestadverkopen.nl: could not connect to host
droomhuisophetplattelandverkopen.nl: could not connect to host
dropcam.com: did not receive HSTS header
drostschocolates.com: did not receive HSTS header
-drpure.pw: did not receive HSTS header
+drpure.pw: could not connect to host
+drpure.top: did not receive HSTS header
+drrodina.com: 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
-drummondframing.com: 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
-dryan.com: did not receive HSTS header
+drvr.xyz: could not connect to host
drybasement.com: did not receive HSTS header
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: could not connect to host
+dsouzamusic.com: did not receive HSTS header
+dsuinnovation.com: could not connect to host
+dsyunmall.com: could not connect to host
+dtechstore.com.br: did not receive HSTS header
dtub.co: could not connect to host
-dtx.sk: could not connect to host
+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
+duchyoffeann.com: could not connect to host
+ducius.net: could not connect to host
+duckasylum.com: did not receive HSTS header
ducohosting.com: did not receive HSTS header
dudesunderwear.com.br: could not connect to host
duelsow.eu: could not connect to host
duelysthub.com: could not connect to host
duerls.de: did not receive HSTS header
-duesee.org: could not connect to host
+dugnet.tech: could not connect to host
dujsq.com: could not connect to host
dujsq.top: could not connect to host
-dukec.me: did not receive HSTS header
+dukec.me: could not connect to host
dukefox.com: could not connect to host
duks.com.br: did not receive HSTS header
dullsir.com: did not receive HSTS header
+dum.moe: could not connect to host
+dumbdemo.com: could not connect to host
+dunamiscommunity.com: could not connect to host
dunashoes.com: could not connect to host
-dune.io: could not connect to host
+dune.io: did not receive HSTS header
dunea.nl: did not receive HSTS header
dung-massage.fr: did not receive HSTS header
-dungi.org: did not receive HSTS header
duo.money: could not connect to host
+duocircle.com: did not receive HSTS header
duole30.com: could not connect to host
-duoluodeyu.com: could not connect to host
+duonganhtuan.com: could not connect to host
duongpho.com: did not receive HSTS header
+duploclique.pt: did not receive HSTS header
durangoenergyllc.com: could not connect to host
dushu.cat: could not connect to host
duskopy.top: could not connect to host
+dustycloth.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
duyao.de: max-age too low: 86400
-dv189.com: did not receive HSTS header
dvotx.org: did not receive HSTS header
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
+dxm.no-ip.biz: could not connect to host
dycem-ns.com: did not receive HSTS header
dycontrol.de: 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: 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
+dzndk.net: could not connect to host
+dzndk.org: could not connect to host
dzytdl.com: did not receive HSTS header
+e-apack.com.br: could not connect to host
e-aut.net: could not connect to host
e-baraxolka.ru: could not connect to host
e-deca2.org: did not receive HSTS header
+e-gemeinde.at: could not connect to host
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-tune-mt.net: 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
@@ -3927,16 +5257,26 @@ 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
+easez.net: could not connect to host
+eason-yang.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
+easycontentplan.com: could not connect to host
easykonto.de: could not connect to host
easyplane.it: did not receive HSTS header
-easysimplecrm.com: did not receive HSTS header
-eat-mine.ml: max-age too low: 0
+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
eatlowcarb.de: did not receive HSTS header
eattherich.us: did not receive HSTS header
@@ -3950,70 +5290,86 @@ ebiografias.com.br: could not connect to host
ebolsa.com.br: did not receive HSTS header
ebolsas.com.br: did not receive HSTS header
ebooksgratuits.org: could not connect to host
-ebp2p.com: did not receive HSTS header
-ebpglobal.com: did not receive HSTS header
+ebop.ch: could not connect to host
+ebp2p.com: could not connect to host
ebraph.com: could not connect to host
+ebrnd.de: could not connect to host
ebrowz.com: could not connect to host
+ec-baran.de: 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
+echoactive.com: max-age too low: 7776000
echomanchester.net: did not receive HSTS header
-echoteen.com: did not receive HSTS header
-eckro.com: did not receive HSTS header
+ecir.pro: could not connect to host
+eckro.com: could not connect to host
+eco-wiki.com: could not connect to host
+ecobrain.be: max-age too low: 0
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
ecolesrec.ch: did not receive HSTS header
ecology-21.ru: did not receive HSTS header
ecomlane.com: could not connect to host
+ecommercestore.net.br: could not connect to host
ecomparemo.com: did not receive HSTS header
+ecompen.co.za: could not connect to host
econativa.pt: 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
+ecos.srl: did not receive HSTS header
+ecoskif.ru: could not connect to host
+ecosoftconsult.com: could not connect to host
+ecosystemmanager.azurewebsites.net: did not receive HSTS header
ecotruck-pooling.com: did not receive HSTS header
-ecpannualmeeting.com: could not connect to host
ecrimex.net: did not receive HSTS header
ectora.com: could not connect to host
ed-matters.org: did not receive HSTS header
-edanni.io: could not connect to host
edati.lv: could not connect to host
edcphenix.tk: could not connect to host
eddmixpanel.com: could not connect to host
edelblack.ch: could not connect to host
edelsteincosmetic.com: did not receive HSTS header
+eden-institut-carita-valdisere.com: did not receive HSTS header
eden-mobility.co.uk: did not receive HSTS header
eden-noel.at: could not connect to host
edenaya.com: could not connect to host
edenmal.net: did not receive HSTS header
edenvaleplumber24-7.co.za: did not receive HSTS header
+edenvalerubbleremovals.co.za: did not receive HSTS header
edgecustomersportal.com: could not connect to host
edgereinvent.com: did not receive HSTS header
+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
-ediscomp.sk: did not receive HSTS header
+edisonchee.com: did not receive HSTS header
edissecurity.sk: did not receive HSTS header
-edition-pommern.com: did not receive HSTS header
+edition-pommern.com: max-age too low: 86400
editoraacademiacrista.com.br: could not connect to host
+editoraimaculada.com.br: did not receive HSTS header
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
educaid.be: did not receive HSTS header
educatio.tech: could not connect to host
+educators.co.nz: did not receive HSTS header
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
-eductf.org: 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]
eduvance.in: did not receive HSTS header
ee-terminals.com: could not connect to host
-eeb98.com: did not receive HSTS header
+eeb98.com: could not connect to host
eeetrust.org: could not connect to host
+eemcevn.com: could not connect to host
eenekorea.com: could not connect to host
eengezinswoning-in-alphen-aan-den-rijn-kopen.nl: could not connect to host
eengezinswoning-in-de-friese-meren-kopen.nl: could not connect to host
@@ -4027,36 +5383,49 @@ 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
effectiveosgi.com: could not connect to host
-efficienthealth.com: did not receive HSTS header
-effortlesshr.com: did not receive HSTS header
-eftcorp.biz: max-age too low: 0
+effectivepapers.com: could not connect to host
+efficienthealth.com: could not connect to host
+effizienta.ch: did not receive HSTS header
+eftcorp.biz: did not receive HSTS header
+egfl.org.uk: did not receive HSTS header
egge.com: max-age too low: 0
egit.co: could not connect to host
-ego-world.org: did not receive HSTS header
+ego-world.org: could not connect to host
egupova.ru: did not receive HSTS header
ehealthcounselor.com: could not connect to host
ehipaadev.com: could not connect to host
ehito.ovh: could not connect to host
+ehr.gov: could not connect to host
ehrenamt-skpfcw.de: could not connect to host
ehrlichesbier.de: could not connect to host
+ehsellert.com: did not receive HSTS header
ehuber.info: could not connect to host
eicfood.com: could not connect to host
eidolonhost.com: did not receive HSTS header
-eifelindex.de: did not receive HSTS header
+eiga-movie.com: max-age too low: 0
eigenbubi.de: could not connect to host
-eigo.work: could not connect to host
+eightyfour.ca: could not connect to host
+eigo.work: did not receive HSTS header
eimanavicius.lt: did not receive HSTS header
einfachmaldiefressehalten.de: could not connect to host
einhorn.space: could not connect to host
+einmonolog.de: could not connect to host
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: did not receive HSTS header
ekbanden.nl: could not connect to host
ekobudisantoso.net: could not connect to host
+ekodevices.com: could not connect to host
ekong366.com: could not connect to host
eksik.com: could not connect to host
el-soul.com: did not receive HSTS header
@@ -4066,15 +5435,23 @@ elanguest.pl: could not connect to host
elanguest.ro: could not connect to host
elanguest.ru: 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
+elblogdegoyo.mx: max-age too low: 2592000
+elbohlyart.com: did not receive HSTS header
+eldietista.es: could not connect to host
+eldisagjapi.de: could not connect to host
elearningpilot.com: did not receive HSTS header
-electicofficial.com: could not connect to host
+eleaut.com.br: did not receive HSTS header
+electicofficial.com: did not receive HSTS header
electricalcontrolpanels.co.uk: could not connect to host
electricant.com: did not receive HSTS header
electricant.nl: did not receive HSTS header
electriccitysf.com: could not connect to host
-electrician-umhlanga.co.za: could not connect to host
+electrician-umhlanga.co.za: did not receive HSTS header
+electrician-umhlangaridge.co.za: did not receive HSTS header
electricianforum.co.uk: did not receive HSTS header
+electricianlalucia.co.za: did not receive HSTS header
electricianumhlangarocks.co.za: did not receive HSTS header
electricoperaduo.com: did not receive HSTS header
electromc.com: could not connect to host
@@ -4082,40 +5459,50 @@ eled.io: could not connect to host
elektronring.com: could not connect to host
element-43.com: did not receive HSTS header
elementalict.com: did not receive HSTS header
-elementalrobotics.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
-eletesstilus.hu: could not connect to host
+elestanteliterario.com: max-age too low: 43200
elevateandprosper.com: could not connect to host
+elevator.ee: could not connect to host
+elexel.ru: could not connect to host
elgacien.de: could not connect to host
-elglobo.com.mx: max-age too low: 86400
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
+elielaloum.com: could not connect to host
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
elite-box.org: did not receive HSTS header
+elite-porno.ru: could not connect to host
elitecovering.fr: did not receive HSTS header
elitefishtank.com: could not connect to host
+elitehosting.de: did not receive HSTS header
elitesensual.com.br: did not receive HSTS header
-ellegaard.dk: could not connect to host
+elizeugomes.com.br: did not receive HSTS header
+ell-net.tokyo: could not connect to host
ellen-skye.de: max-age too low: 604800
+elliff.net: did not receive HSTS header
elliotgluck.com: did not receive HSTS header
+elliquiy.com: could not connect to host
elmar-kraamzorg.nl: did not receive HSTS header
elna-service.com.ua: did not receive HSTS header
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
+elonm.ru: could not connect to host
+elosuite.com: could not connect to host
+eloxt.com: could not connect to host
elpay.kz: did not receive HSTS header
elpo.xyz: could not connect to host
elsamakhin.com: could not connect to host
@@ -4124,30 +5511,43 @@ elsensohn.ch: did not receive HSTS header
elsitar.com: could not connect to host
elsword.moe: could not connect to host
eltransportquevolem.org: could not connect to host
-elytronsecurity.com: could not connect to host
+eltrox.me: 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
+emailalaperformance.fr: could not connect to host
+emailcontrol.nl: did not receive HSTS header
+emailing.alsace: could not connect to host
emanatepixels.com: could not connect to host
emanga.su: did not receive HSTS header
-emavok.eu: did not receive HSTS header
+emasex.es: could not connect to host
+emavok.eu: could not connect to host
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: 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
emergentvisiontec.com: did not receive HSTS header
emesolutions.net: did not receive HSTS header
emiele.com.br: could not connect to host
+emiliendevos.be: could not connect to host
emilyhorsman.com: 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
+emma.ca: did not receive HSTS header
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
@@ -4162,20 +5562,27 @@ 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: could not connect to host
en4u.org: could not connect to host
enaia.fr: did not receive HSTS header
+enaim.de: max-age too low: 0
+encadrer-mon-enfant.com: did not receive HSTS header
encode.space: could not connect to host
encode.uk.com: did not receive HSTS header
encoder.pw: could not connect to host
-encontrebarato.com.br: did not receive HSTS header
+encontrebarato.com.br: could not connect to host
encrypted.google.com: did not receive HSTS header (error ignored - included regardless)
encryptedaudience.com: could not connect to host
encryptio.com: could not connect to host
end.pp.ua: could not connect to host
endangeredwatch.com: could not connect to host
+ende-x.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]
endlessdark.net: max-age too low: 600
-endlesshorizon.net: could not connect to host
+endlesshorizon.net: max-age too low: 0
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
@@ -4184,137 +5591,296 @@ 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
-enginsight.com: did not receive HSTS header
+enelacto.com: did not receive HSTS header
+energethik-tulln.at: did not receive HSTS header
+energisammenslutningen.dk: could not connect to host
+energyradio.mk: max-age too low: 0
+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
+enginx.net: could not connect to host
englerts.de: did not receive HSTS header
+englishclub.com: did not receive HSTS header
englishdirectory.de: could not connect to host
englishyamal.ru: did not receive HSTS header
enigmacpt.com: did not receive HSTS header
enigmail.net: did not receive HSTS header
-enixgaming.com: could not connect to host
enjen.net: did not receive HSTS header
enjoymayfield.com: max-age too low: 0
-enlighten10x.ga: max-age too low: 0
+enjoystudio.ro: did not receive HSTS header
+enlatte.com: could not connect to host
+enlazaresbueno.cl: could not connect to host
+enlighten10x.ga: could not connect to host
+enlightened.si: did not receive HSTS header
enoou.com: could not connect to host
-enpalmademallorca.info: did not receive HSTS header
+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
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
-entercenter.ru: 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
enum.eu.org: could not connect to host
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
-envygeeks.com: could not connect to host
+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: did not receive HSTS header
+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.services: 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
-epdeveloperchallenge.com: did not receive HSTS header
+ephe.be: could not connect to host
ephry.com: could not connect to host
+epicbouncycastlehirenorwich.co.uk: could not connect to host
epicmc.games: could not connect to host
-epitesz.co: did not receive HSTS header
+epicpages.com: could not connect to host
eposcloud.net: could not connect to host
+eposmidlands.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: 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
-epsilon.dk: could not connect to host
+epsorting.cz: did not receive HSTS header
+epulsar.ru: did not receive HSTS header
+epvin.com: could not connect to host
eq8.net.au: could not connect to host
eqib.nl: did not receive HSTS header
+eqibank.com: could not connect to host
eqim.me: could not connect to host
eqorg.com: could not connect to host
+equallyy.com: did not receive HSTS header
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
+erectiepillenwinkel.nl: 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
erichalv.com: could not connect to host
ericloud.tk: could not connect to host
ericorporation.com: did not receive HSTS header
-ericyl.com: did not receive HSTS header
+eridanus.uk: could not connect to host
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: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+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
+eroma.com.au: did not receive HSTS header
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
+eruvalerts.com: 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]
esaborit.ddns.net: could not connect to host
-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: could not connect to host
+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
-escael.org: did not receive HSTS header
escalate.eu: could not connect to host
+escape2rooms.fr: did not receive HSTS header
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: max-age too low: 2592000
+escortshotsexy.com: did not receive HSTS header
escotour.com: did not receive HSTS header
escueladewordpress.com: did not receive HSTS header
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
+esipublications.com: did not receive HSTS header
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.community: did not receive HSTS header
+esp-desarrolladores.com: could not connect to host
+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
espo.com.ua: did not receive HSTS header
espra.com: could not connect to host
-espressivo.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]
+espressivo.com.br: did not receive HSTS header
+esprit-cloture.fr: did not receive HSTS header
esquonic.com: could not connect to host
esrs.gov: could not connect to host
+essayforum.com: could not connect to host
+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
+essencesdeprana.org: did not receive HSTS header
essential12.com: could not connect to host
essentialoilsimports.com: could not connect to host
essentiel-physique.com: could not connect to host
@@ -4323,28 +5889,37 @@ esseriumani.com: could not connect to host
essexghosthunters.co.uk: did not receive HSTS header
essplusmed.org: could not connect to host
estaciona.guru: could not connect to host
+estan.cn: did not receive HSTS header
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
-estoic.net: 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
+etalent.net: did not receive HSTS header
etangs-magazine.com: could not connect to host
etaoinwu.tk: could not connect to host
etdonline.co.uk: did not receive HSTS header
eteapparel.com: did not receive HSTS header
-etenendrinken.nu: could not connect to host
+etenendrinken.nu: did not receive HSTS header
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
+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
ether.school: could not connect to host
+etherderbies.com: could not connect to host
etheria-software.tk: did not receive HSTS header
-ethicalexploiting.com: did not receive HSTS header
+etherpad.fr: did not receive HSTS header
+ethicalexploiting.com: could not connect to host
ethicall.org.uk: did not receive HSTS header
+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
@@ -4356,10 +5931,11 @@ etoto.pl: did not receive HSTS header
etproxy.tech: could not connect to host
ets2mp.de: did not receive HSTS header
etsysecure.com: could not connect to host
-ettebiz.com: did not receive HSTS header
-etula.ga: could not connect to host
+ettebiz.com: max-age too low: 0
+etula.ga: did not receive HSTS header
etula.me: could not connect to host
etys.no: did not receive HSTS header
+etzi.myds.me: did not receive HSTS header
euanbaines.com: did not receive HSTS header
eucl3d.com: could not connect to host
euclideanpostulates.xyz: could not connect to host
@@ -4373,81 +5949,114 @@ eung.ga: could not connect to host
eupbor.com: could not connect to host
euph.eu: could not connect to host
eupho.me: could not connect to host
-eupresidency2018.com: did not receive HSTS header
+eupresidency2018.com: could not connect to host
euren.se: could not connect to host
eurocamping.se: could not connect to host
+eurocomcompany.cz: could not connect to host
+euroconthr.ro: could not connect to host
euroescortguide.com: could not connect to host
-europeancupinline.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]
+europapier.at: did not receive HSTS header
+europapier.ba: did not receive HSTS header
+europapier.bg: 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
eurospecautowerks.com: did not receive HSTS header
eurostrategy.vn.ua: could not connect to host
-eurotime.ua: could not connect to host
+euvo.tk: could not connect to host
+evades.io: did not receive HSTS header
+evadifranco.com: 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: did not receive HSTS header
+evegalaxy.net: could not connect to host
+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: 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
-everygayporn.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
-everything.place: did not receive HSTS header
+everything.place: could not connect to host
+everythingstech.com: could not connect to host
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
+evilarmy.com: did not receive HSTS header
+evilbeasts.ru: could not connect to host
+evilcult.me: did not receive HSTS header
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
+evokepk.com: could not connect to host
evoludis.net: did not receive HSTS header
evolutionexpeditions.com: did not receive HSTS header
evomon.com: could not connect to host
+evonews.com: did not receive HSTS header
evossd.tk: could not connect to host
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
+examplesu.com: could not connect to host
excelgum.ca: did not receive HSTS header
-exceptionalbits.com: did not receive HSTS header
-exceptionalservers.com: did not receive HSTS header
+exceptionalbits.com: could not connect to host
exceptionalservices.us: could not connect to host
exchangecoordinator.com: could not connect to host
-execution.biz.tr: could not connect to host
+exchangeworks.co: did not receive HSTS header
+exclusivedesignz.com: could not connect to host
+exebouncycastles.co.uk: did not receive HSTS header
exembit.com: did not receive HSTS header
-exfiles.cz: did not receive HSTS header
+exfiles.cz: could not connect to host
+exgaywatch.com: could not connect to host
exgravitus.com: could not connect to host
+exhaledayspa.com.au: did not receive HSTS header
exno.co: could not connect to host
-exo.do: could not connect to host
+exnovin.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]
+exocen.com: could not connect to host
+exoplatform.com: did not receive HSTS header
+exoticads.com: could not connect to host
exousiakaidunamis.xyz: could not connect to host
-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: could not connect to host
-explodie.org: could not connect to host
+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
+exploration.ga: did not receive HSTS header
expo-designers.com: did not receive HSTS header
-expo-larionov.org: did not receive HSTS header
+expokohler.com: did not receive HSTS header
expoort.com.br: could not connect to host
-expoundite.net: 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
expressfinance.co.za: did not receive HSTS header
-extensibility.biz.tr: 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
@@ -4455,18 +6064,23 @@ extratorrent.red: could not connect to host
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: could not connect to host
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
+eyes-of-universe.eu: could not connect to host
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
+ezequiel-garzon.net: 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
ezorgportaal.nl: could not connect to host
ezrefurb.co.uk: did not receive HSTS header
eztv.ch: did not receive HSTS header
@@ -4476,142 +6090,176 @@ f00.ca: did not receive HSTS header
f1bigpicture.com: could not connect to host
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
+fabian-koeppen.de: did not receive HSTS header
+fabianasantiago.com: could not connect to host
fabianfischer.de: did not receive HSTS header
fabianmunoz.com: did not receive HSTS header
fabienbaker.com: could not connect to host
-fabled.com: did not receive HSTS header
+fabled.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]
fabriko.fr: did not receive HSTS header
+fabriziorocca.com: could not connect to host
fabulouslyyouthfulskin.com: could not connect to host
fabulouslyyouthfulskineyeserum.com: could not connect to host
+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
factorable.net: did not receive HSTS header
+factoringsolutions.co.uk: did not receive HSTS header
factorygw.com: did not receive HSTS header
factorypartsdirect.com: could not connect to host
factureenlinea.com: could not connect to host
fadednet.com: could not connect to host
+fadeev.legal: did not receive HSTS header
fadilus.com: did not receive HSTS header
fads-center.online: could not connect to host
+faeriecakes.be: could not connect to host
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
-fail4free.de: 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
fairlyoddtreasures.com: did not receive HSTS header
faisalshuvo.com: did not receive HSTS header
-faithindemocracy.eu: did not receive HSTS header
faizan.net: did not receive HSTS header
faizan.xyz: did not receive HSTS header
-fakeletters.org: did not receive HSTS header
+fakeletters.org: could not connect to host
faktura.pl: did not receive HSTS header
+falaland.com: did not receive HSTS header
falcibiosystems.org: did not receive HSTS header
falconwiz.com: did not receive HSTS header
-falkhusemann.de: could not connect to host
falkp.no: did not receive HSTS header
falkus.net: could not connect to host
fallenangeldrinks.eu: could not connect to host
fallenangelspirits.uk: could not connect to host
fallingapart.de: could not connect to host
+false.in.net: could not connect to host
faluninfo.ba: did not receive HSTS header
-fam-weyer.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]
+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
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-sprink.de: did not receive HSTS header
familie-zimmermann.at: could not connect to host
-famio.cn: did not receive HSTS header
-fan.gov: could not connect to host
-fanflow.com: did not receive HSTS header
+familiegrottendieck.de: max-age too low: 7776000
+familletouret.fr: did not receive HSTS header
+famio.cn: could not connect to host
+fanflow.com: could not connect to host
+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
faraonplay8.com: could not connect to host
faraslot8.net: could not connect to host
-farces.com: could not connect to host
faretravel.co.uk: could not connect to host
farkas.bz: did not receive HSTS header
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: max-age too low: 2592000
+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]
+farrel-f.id: could not connect to host
+farsil.eu: could not connect to host
+fascia.fit: could not connect to host
fashion.net: did not receive HSTS header
fashioncare.cz: did not receive HSTS header
+fashiondays.bg: max-age too low: 0
+fashiondays.hu: max-age too low: 0
+fashiondays.ro: max-age too low: 0
fashionholic.my: did not receive HSTS header
fashionoutfits24.com: did not receive HSTS header
fasset.jp: could not connect to host
fastaim.de: could not connect to host
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
+fastcp.top: 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
-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
+fawkex.me: did not receive HSTS header
faxreader.net: could not connect to host
fayolle.info: did not receive HSTS header
-fbook.top: 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
+fecik.sk: did not receive HSTS header
fed51.com: did not receive HSTS header
fedbizopps.gov: could not connect to host
fedemo.top: did not receive HSTS header
federalregister.gov: did not receive HSTS header
-federalreserveconsumerhelp.gov: could not connect to host
fedn.it: could not connect to host
fedo.moe: could not connect to host
-fedpartnership.gov: could not connect to host
+fee-hosting.com: max-age too low: 0
feedstringer.com: could not connect to host
feedthebot.com: did not receive HSTS header
+feegg.com.br: could not connect to host
+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
+feist.io: could not connect to host
feitobrasilcosmeticos.com.br: did not receive HSTS header
-felett.es: could not connect to host
+fejes.house: could not connect to host
felger-times.fr: could not connect to host
+felgitscher.xyz: max-age too low: 2592000
+felisslovakia.sk: did not receive HSTS header
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
fensdorf.de: did not receive HSTS header
fensterbau-mutscheller.de: could not connect to host
fenteo.com: could not connect to host
-feragon.net: did not receive HSTS header
feras-alhajjaji.com: could not connect to host
feriahuamantla.com: could not connect to host
ferienwohnungen-lastminute.de: could not connect to host
@@ -4622,20 +6270,24 @@ ferrolatino.com: could not connect to host
feschiyan.com: could not connect to host
festember.com: did not receive HSTS header
festival.house: did not receive HSTS header
+festivalxdentro.com: did not receive HSTS header
festrip.com: could not connect to host
-fetch.co.uk: did not receive HSTS header
+fetch.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]
fetclips.se: could not connect to host
+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
-ffh.me: could not connect to host
+ff-bg.xyz: could not connect to host
+ffbans.org: did not receive HSTS header
ffl123.com: did not receive HSTS header
fgequipamentos.com.br: did not receive HSTS header
+fhg90.com: 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
@@ -4650,82 +6302,99 @@ 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]
+fiissh.tech: did not receive HSTS header
fiksel.info: could not connect to host
fikt.space: could not connect to host
-file-cloud.eu: could not connect to host
-filebox.space: did not receive HSTS header
+filamentia.nl: could not connect to host
+filebox.moe: could not connect to host
+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
filesense.com: could not connect to host
+filewall.de: did not receive HSTS header
filey.co.uk: did not receive HSTS header
filhomes.ph: could not connect to host
fillitupchallenge.eu: did not receive HSTS header
fillmysuitca.se: did not receive HSTS header
+film-storyboards.com: did not receive HSTS header
+film.photography: did not receive HSTS header
+film.photos: did not receive HSTS header
+filmatiporno.xxx: could not connect to host
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: 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
findthere.net: could not connect to host
findtutorsnearme.com: did not receive HSTS header
findyour.diet: could not connect to host
-finer04.pw: did not receive HSTS header
+fine-services.paris: could not connect to host
+finer04.pw: could not connect to host
+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
-finpt.com: 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
fiodental.com.br: did not receive HSTS header
-fiork.com: could not connect to host
+fiork.com: did not receive HSTS header
fire-wolf.com: could not connect to host
fireandelectrical.co.uk: did not receive HSTS header
firebaseio-demo.com: could not connect to host
firebaseio.com: could not connect to host (error ignored - included regardless)
-firebird.io: could not connect to host
+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
+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
+fischer-its.com: 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
fitshop.com.br: could not connect to host
fitsw.com: did not receive HSTS header
+fiuxy.org: could not connect to host
five.vn: did not receive HSTS header
+fiveboosts.xyz: could not connect to host
fivestarsitters.com: did not receive HSTS header
fivestepfunnels.com: could not connect to host
fivezerocreative.com: did not receive HSTS header
fiws.net: did not receive HSTS header
fix-the-timeline.com: could not connect to host
fix-the-timeline.org: could not connect to host
-fixate.ru: max-age too low: 3153600
+fixate.ru: could not connect to host
fixeaide.com: did not receive HSTS header
fixeaider.com: did not receive HSTS header
fixico-staging.nl: could not connect to host
@@ -4734,8 +6403,7 @@ fixmyglitch.com: could not connect to host
fixtectools.co.za: could not connect to host
fixthetimeline.com: could not connect to host
fixthetimeline.org: could not connect to host
-fixvoltage.ru: did not receive HSTS header
-fjruiz.es: did not receive HSTS header
+fjruiz.es: could not connect to host
fkcovering.be: could not connect to host
fl0000.com: max-age too low: 129600
fl010.com: max-age too low: 129600
@@ -4747,6 +6415,7 @@ 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
+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
@@ -4760,59 +6429,83 @@ 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
+fleamarketgoods.com: did not receive HSTS header
flemingtonaudiparts.com: could not connect to host
+flesters.com.br: did not receive HSTS header
+fleurette.me: could not connect to host
fleursdesoleil.fr: did not receive HSTS header
flexdrukker.nl: could not connect to host
flexinvesting.fi: could not connect to host
+flextribly.xyz: 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
+flipbell.com: could not connect to host
flipkey.com: did not receive HSTS header
-flirchi.com: could not connect to host
+flirchi.com: did not receive HSTS header
+flirtycourts.com: could not connect to host
+flixhaven.net: did not receive HSTS header
flixtor.net: could not connect to host
-floless.co.uk: did not receive HSTS header
-flomeyer.de: could not connect to host
+flkrpxl.com: max-age too low: 86400
+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
-florian-lillpopp.de: max-age too low: 10
+florian-lillpopp.de: did not receive HSTS header
florian-schlachter.de: did not receive HSTS header
-florianlillpopp.de: max-age too low: 10
+florian2833z.de: could not connect to host
+florianlillpopp.de: did not receive HSTS header
floridaderi.ru: did not receive HSTS header
floridaescapes.co.uk: did not receive HSTS header
florinapp.com: could not connect to host
florispoort.nl: did not receive HSTS header
floro.me: did not receive HSTS header
+floseed.fr: could not connect to host
+flosserver.de: could not connect to host
floth.at: could not connect to host
flouartistique.ch: could not connect to host
flow.pe: could not connect to host
+flowcount.xyz: could not connect to host
flowerandplant.org: did not receive HSTS header
flowersandclouds.com: could not connect to host
floweslawncare.com: could not connect to host
flowlo.me: could not connect to host
+flox.io: could not connect to host
floydm.com: did not receive HSTS header
+flucky.xyz: could not connect to host
+flucto.com: did not receive HSTS header
+flue-ducting.co.uk: did not receive HSTS header
flugplatz-edvc.de: could not connect to host
+flugsportvereinigungcelle.de: did not receive HSTS header
flugstadplasticsurgery.com: did not receive HSTS header
fluidojobs.com: could not connect to host
fluitbeurt.nl: could not connect to host
flukethoughts.com: did not receive HSTS header
-flurrybridge.com: did not receive HSTS header
+flurrybridge.com: could not connect to host
flushstudios.com: did not receive HSTS header
flyaces.com: could not connect to host
flybunnyfly.dk: did not receive HSTS header
flygpost.com: did not receive HSTS header
flyingdoggy.net: could not connect to host
-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]
+flyingspaghettimonsterdonationsfund.nl: could not connect to host
+flyingyoung.top: could not connect to host
flyspace.ga: did not receive HSTS header
+flyspace.ml: did not receive HSTS header
flyss.net: could not connect to host
flyssh.net: could not connect to host
fm83.nl: could not connect to host
fm992.com: could not connect to host
-fmovies.life: 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: did not receive HSTS header
+fnfpt.co.uk: could not connect to host
fniephaus.com: did not receive HSTS header
fnncat.com: did not receive HSTS header
fnvsecurity.com: could not connect to host
@@ -4822,90 +6515,110 @@ foerster-kunststoff.de: did not receive HSTS header
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
fonetiq.io: could not connect to host
-fonseguin.ca: did not receive HSTS header
fontawesome.com: did not receive HSTS header
foo: could not connect to host
food4health.guide: could not connect to host
+foodacademy.capetown: max-age too low: 43200
foodbuddy.ch: could not connect to host
+foodcowgirls.com: could not connect to host
foodiebox.no: did not receive HSTS header
foodies.my: did not receive HSTS header
foodievenues.com: could not connect to host
foodplantengineering.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]
foodsafetyworkinggroup.gov: could not connect to host
+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
forcamp.ga: could not connect to host
-force-des-maths.com: could not connect to host
+force-des-maths.com: did not receive HSTS header
fordbydesign.com: could not connect to host
fordshop.by: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
foreignexchangeresource.com: did not receive HSTS header
forestfinance.fr: did not receive HSTS header
foreveralone.io: could not connect to host
foreveryoung.pt: did not receive HSTS header
-forewordreviews.com: did not receive HSTS header
forex-dan.com: did not receive HSTS header
+forex-plus.com: did not receive HSTS header
+forexsignals7.com: could not connect to host
forgix.com: could not connect to host
+forglemmigej.net: could not connect to host
forlagetmarx.dk: did not receive HSTS header
-formadmin.com: could not connect to host
-formaliteo.com: could not connect to host
+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
+formkiq.com: could not connect to host
formula.cf: could not connect to host
+forpc.us: did not receive HSTS header
forplanetsake.com: could not connect to host
forplayers.pl: could not connect to host
-forschbach-janssen.de: 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]
fortworth.ch: did not receive HSTS header
-forty-two.nl: did not receive HSTS header
forty2.eu: did not receive HSTS header
forum.linode.com: did not receive HSTS header
+forumjuridico.org: did not receive HSTS header
forus.be: could not connect to host
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: did not receive HSTS header
fotiu.com: could not connect to host
+foto-pro.by: did not receive HSTS header
fotoallerlei.com: did not receive HSTS header
fotocerita.net: could not connect to host
fotogiraffe.ru: did not receive HSTS header
fotografosexpertos.com: did not receive HSTS header
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: did not receive HSTS header
foxes.no: could not connect to host
+foxhound.com.br: 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
fr0zenbits.io: could not connect to host
fr33d0m.link: could not connect to host
fragilesolar.cf: 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
francevpn.xyz: could not connect to host
francois-vidit.com: did not receive HSTS header
frangor.info: did not receive HSTS header
-frank.fyi: could not connect to host
+frankedier.com: did not receive HSTS header
+frankfurt-am-start.de: did not receive HSTS header
franklinhua.com: could not connect to host
-frankwei.xyz: 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
@@ -4916,61 +6629,68 @@ 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
-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
-freakyawesome.fashion: could not connect to host
-freakyawesome.fitness: could not connect to host
-freakyawesome.fm: could not connect to host
-freakyawesome.fun: could not connect to host
-freakyawesome.fyi: could not connect to host
-freakyawesome.games: could not connect to host
-freakyawesome.guide: could not connect to host
-freakyawesome.guru: could not connect to host
-freakyawesome.in: could not connect to host
-freakyawesome.info: could not connect to host
-freakyawesome.io: could not connect to host
-freakyawesome.life: could not connect to host
-freakyawesome.live: could not connect to host
-freakyawesome.marketing: could not connect to host
-freakyawesome.me: could not connect to host
-freakyawesome.media: could not connect to host
-freakyawesome.net: could not connect to host
-freakyawesome.network: could not connect to host
-freakyawesome.news: could not connect to host
-freakyawesome.online: could not connect to host
-freakyawesome.org: could not connect to host
-freakyawesome.photography: could not connect to host
-freakyawesome.photos: could not connect to host
-freakyawesome.press: could not connect to host
-freakyawesome.recipes: could not connect to host
-freakyawesome.rentals: could not connect to host
-freakyawesome.reviews: could not connect to host
-freakyawesome.services: could not connect to host
-freakyawesome.shop: could not connect to host
-freakyawesome.site: could not connect to host
-freakyawesome.social: could not connect to host
-freakyawesome.software: could not connect to host
+freakyaweso.me: did not receive HSTS header
+freakyawesome.blog: max-age too low: 86400
+freakyawesome.club: did not receive HSTS header
+freakyawesome.co: did not receive HSTS header
+freakyawesome.com: did not receive HSTS header
+freakyawesome.company: did not receive HSTS header
+freakyawesome.dance: did not receive HSTS header
+freakyawesome.design: could not connect to host
+freakyawesome.education: did not receive HSTS header
+freakyawesome.email: did not receive HSTS header
+freakyawesome.events: did not receive HSTS header
+freakyawesome.fashion: did not receive HSTS header
+freakyawesome.fitness: did not receive HSTS header
+freakyawesome.fm: did not receive HSTS header
+freakyawesome.fun: did not receive HSTS header
+freakyawesome.fyi: did not receive HSTS header
+freakyawesome.games: did not receive HSTS header
+freakyawesome.guide: did not receive HSTS header
+freakyawesome.guru: did not receive HSTS header
+freakyawesome.info: did not receive HSTS header
+freakyawesome.io: did not receive HSTS header
+freakyawesome.lgbt: did not receive HSTS header
+freakyawesome.life: did not receive HSTS header
+freakyawesome.live: did not receive HSTS header
+freakyawesome.management: did not receive HSTS header
+freakyawesome.marketing: did not receive HSTS header
+freakyawesome.me: did not receive HSTS header
+freakyawesome.media: did not receive HSTS header
+freakyawesome.network: did not receive HSTS header
+freakyawesome.news: did not receive HSTS header
+freakyawesome.online: did not receive HSTS header
+freakyawesome.photography: did not receive HSTS header
+freakyawesome.photos: did not receive HSTS header
+freakyawesome.press: did not receive HSTS header
+freakyawesome.recipes: did not receive HSTS header
+freakyawesome.rentals: did not receive HSTS header
+freakyawesome.reviews: did not receive HSTS header
+freakyawesome.science: did not receive HSTS header
+freakyawesome.services: did not receive HSTS header
+freakyawesome.shop: did not receive HSTS header
+freakyawesome.site: did not receive HSTS header
+freakyawesome.social: did not receive HSTS header
+freakyawesome.software: did not receive HSTS header
freakyawesome.solutions: could not connect to host
-freakyawesome.store: could not connect to host
-freakyawesome.team: could not connect to host
-freakyawesome.tips: could not connect to host
-freakyawesome.today: could not connect to host
-freakyawesome.tours: could not connect to host
-freakyawesome.tv: could not connect to host
-freakyawesome.video: could not connect to host
-freakyawesome.website: could not connect to host
-freakyawesome.work: could not connect to host
+freakyawesome.space: did not receive HSTS header
+freakyawesome.store: did not receive HSTS header
+freakyawesome.support: did not receive HSTS header
+freakyawesome.team: did not receive HSTS header
+freakyawesome.tech: did not receive HSTS header
+freakyawesome.technology: did not receive HSTS header
+freakyawesome.tips: did not receive HSTS header
+freakyawesome.today: did not receive HSTS header
+freakyawesome.tours: did not receive HSTS header
+freakyawesome.training: did not receive HSTS header
+freakyawesome.tv: did not receive HSTS header
+freakyawesome.video: did not receive HSTS header
+freakyawesome.website: did not receive HSTS header
+freakyawesome.work: did not receive HSTS header
freakyawesome.world: could not connect to host
-freakyawesome.xyz: could not connect to host
+freakyawesome.wtf: did not receive HSTS header
+freakyawesome.xyz: did not receive HSTS header
+freakyawesome.yoga: could not connect to host
freakyawesomeblog.com: could not connect to host
freakyawesomeio.com: could not connect to host
freakyawesomemedia.com: could not connect to host
@@ -4982,127 +6702,177 @@ freakyawesometeam.com: could not connect to host
freakyawesometheme.com: could not connect to host
freakyawesomethemes.com: could not connect to host
freakyawesomewp.com: could not connect to host
-freddieonfire.tk: could not connect to host
-freddythechick.uk: did not receive HSTS header
+frebi.org: could not connect to host
+frebib.co.uk: could not connect to host
+frebib.com: could not connect to host
+frebib.me: could not connect to host
+frebib.net: could not connect to host
+freddythechick.uk: could not connect to host
+fredericcote.com: could not connect to host
+frederickalcantara.com: could not connect to host
fredliang.cn: could not connect to host
+fredriksslekt.se: did not receive HSTS header
+free-your-pc.com: could not connect to host
free8.xyz: could not connect to host
freeasinlliure.org: did not receive HSTS header
-freeassangenow.org: could not connect to host
freeben666.fr: could not connect to host
+freebies.id: 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
+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
freeflow.tv: could not connect to host
+freehao123.cn: could not connect to host
freejidi.com: could not connect to host
-freekdevries.nl: did not receive HSTS header
+freelancecollab.com: could not connect to host
freelanced.co.za: could not connect to host
+freelanceshipping.com: did not receive HSTS header
freelandinnovation.com: did not receive HSTS header
freelansir.com: could not connect to host
freemanning.de: could not connect to host
freematthale.net: did not receive HSTS header
+freepoints.us: could not connect to host
freeslots.guru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
freesoftwaredriver.com: could not connect to host
freesounding.com: did not receive HSTS header
freesounding.ru: did not receive HSTS header
-freesourcestl.org: did not receive HSTS header
freethought.org.au: could not connect to host
freeutopia.org: did not receive HSTS header
-freezion.com: could not connect to host
+freevps.us: did not receive HSTS header
+freitasul.com.br: could not connect to host
+freitasul.io: could not connect to host
+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
+freshkiss.com.au: did not receive HSTS header
+freshmaza.com: could not connect to host
+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
frickenate.com: could not connect to host
fridaperfumaria.com.br: could not connect to host
-fridolinka.cz: did not receive HSTS header
friedhelm-wolf.de: could not connect to host
friendica.ch: could not connect to host
friendlyfiregameshow.com: 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
fromix.de: could not connect to host
fromlemaytoz.com: could not connect to host
+fromthesoutherncross.com: could not connect to host
front-end.dog: could not connect to host
+frontierdiscount.com: did not receive HSTS header
frontisme.nl: did not receive HSTS header
frontline.cloud: did not receive HSTS header
frontline6.com: did not receive HSTS header
frontmin.com: did not receive HSTS header
frost-ci.xyz: could not connect to host
-frostbytes.net: did not receive HSTS header
+frostbytes.net: could not connect to host
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
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
-fsapubs.gov: could not connect to host
-fsf.moe: did not receive HSTS header
+fs-fitness.eu: could not connect to host
+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
+fsj4u.ch: 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
fstatic.io: could not connect to host
fstfy.de: could not connect to host
-ftc.gov: did not receive HSTS header
+fsvoboda.cz: could not connect to host
+ftang.de: could not connect to host
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]
+fu639.top: did not receive HSTS header
fuchsy.com: could not connect to host
fuckbilibili.com: could not connect to host
fuckcf.cf: could not connect to host
fuckgfw233.org: could not connect to host
+fuckobr.com: could not connect to host
+fuckobr.net: could not connect to host
+fuckobr.org: could not connect to host
fuckobr.ru: could not connect to host
+fuckobr.su: could not connect to host
fudanshi.org: could not connect to host
fuelministry.com: did not receive HSTS header
+fugamo.de: did not receive HSTS header
fugle.de: could not connect to host
fuitedeau.ch: 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
fukushima-web.com: did not receive HSTS header
fuli.am: max-age too low: 129600
fulilingyu.info: could not connect to host
-fuliydys.com: did not receive HSTS header
-fullytrained.co.uk: 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: 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
fun99.cc: could not connect to host
-funarena.com.ua: did not receive HSTS header
+funarena.com.ua: could not connect to host
fundacionfranciscofiasco.org: could not connect to host
fundacionhijosdelsol.org: could not connect to host
+fundayltd.com: could not connect to host
funderburg.me: did not receive HSTS header
+fundingempire.com: could not connect to host
+funerariahogardecristo.cl: did not receive HSTS header
fungame.eu: did not receive HSTS header
+funi4u.com: could not connect to host
funideas.org: could not connect to host
funkes-ferien.de: did not receive HSTS header
-funkner.ru: could not connect to host
funkyweddingideas.com.au: could not connect to host
+funnelweb.xyz: could not connect to host
funny-joke-pictures.com: did not receive HSTS header
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
-fuorifuocogenova.it: did not receive HSTS header
+funtimebourne.co.uk: did not receive HSTS header
+fuorifuocogenova.it: could not connect to host
+furaje-iasi.com: could not connect to host
+furcity.me: could not connect to host
furi.ga: could not connect to host
furiffic.com: did not receive HSTS header
+furikake.xyz: could not connect to host
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
+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
+futa.agency: could not connect to host
futbol11.com: did not receive HSTS header
-futbolvivo.tv: did not receive HSTS header
+futbolvivo.tv: could not connect to host
futos.de: could not connect to host
+futurefire.de: could not connect to host
+futurefundapp.com: could not connect to host
futuresonline.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]
futurestarsusa.org: did not receive HSTS header
futuretechnologi.es: could not connect to host
@@ -5111,63 +6881,78 @@ futuristarchitecture.com: did not receive HSTS header
fuvpn.com: could not connect to host
fuxwerk.de: could not connect to host
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: could not connect to host
fxgame.online: could not connect to host
fxpig-ib.com: could not connect to host
fxwebstudio.com.au: max-age too low: 0
-fyfywka.com: max-age too low: 86400
+fydjbsd.cn: could not connect to host
fyodorpi.com: did not receive HSTS header
fyol.pw: could not connect to host
-fyol.xyz: did not receive HSTS header
fysiohaenraets.nl: did not receive HSTS header
fzn.io: did not receive HSTS header
fzslm.me: did not receive HSTS header
g-i-s.vn: did not receive HSTS header
+g-marketing.ro: could not connect to host
+g-o.pl: 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
+g1s.cc: could not connect to host
g2-inc.com: max-age too low: 600
g2a.co: did not receive HSTS header
g2g.com: did not receive HSTS header
g4w.co: could not connect to host (error ignored - included regardless)
g5led.nl: could not connect to host
+g6666g.tk: could not connect to host
g77.ca: could not connect to host
gaanbaksho.com.au: did not receive HSTS header
gaasuper6.com: could not connect to host
gabber.scot: could not connect to host
gabethebabetv.com: could not connect to host
gabi.com.es: could not connect to host
-gabi.soy: could not connect to host
+gabi.soy: did not receive HSTS header
gabi.uno: could not connect to host
gablaxian.com: max-age too low: 2592000
gabriele-kluge.de: could not connect to host
+gabrielsimonet.ch: could not connect to host
gaelleetarnaud.com: did not receive HSTS header
gafachi.com: could not connect to host
+gagne-enterprises.com: did not receive HSTS header
gaichanh.com: did not receive HSTS header
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-epsilon.jp: could not connect to host
gakkainavi4.com: could not connect to host
+gala.kiev.ua: 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
+galeriart.xyz: 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
-gallerify.eu: did not receive HSTS header
+galileomtz.com: did not receive HSTS header
+gallerify.eu: could not connect to host
gallery44.org: did not receive HSTS header
-galletasgabi.com.mx: max-age too low: 86400
galoisvpn.xyz: could not connect to host
gam3rs.de: could not connect to host
+gamajo.com: did not receive HSTS header
gambitcloud.net: could not connect to host
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
gamechasm.com: could not connect to host
-gameclue.jp: did not receive HSTS header
gamefund.me: could not connect to host
gamehacks.me: could not connect to host
gameink.net: did not receive HSTS header
@@ -5175,17 +6960,17 @@ 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
gameparagon.info: could not connect to host
gamepiece.com: did not receive HSTS header
-gamereader.de: could not connect to host
gamerpoets.com: did not receive HSTS header
gamers-life.fr: could not connect to host
gamerslair.org: did not receive HSTS header
gamerz-point.de: could not connect to host
-gamesdepartment.co.uk: could not connect to host
+gamerz-stream.com: did not receive HSTS header
gameserver-sponsor.de: did not receive HSTS header
gamesurferapp.com: could not connect to host
gameswitchers.uk: could not connect to host
@@ -5194,107 +6979,150 @@ gametium.es: could not connect to host
gamhealth.net: could not connect to host
gamingmedia.eu: did not receive HSTS header
gamingreinvented.com: did not receive HSTS header
+gamismodelbaru.com: did not receive HSTS header
+gamismu.com: did not receive HSTS header
gamoice.com: did not receive HSTS header
gampenhof.de: could not connect to host
+gan.wtf: 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
-gaphag.ddns.net: could not connect to host
+ganyouxuan.com: could not connect to host
+ganzgraph.de: did not receive HSTS header
+gaon.network: could not connect to host
+gaptek.id: did not receive HSTS header
+gar-nich.net: could not connect to host
+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: did not receive HSTS header
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
+gassouthkenticoqa.azurewebsites.net: could not connect to host
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: 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
gatomix.net: could not connect to host
gatorsa.es: could not connect to host
gaussorgues.me: could not connect to host
-gautham.pro: could not connect to host
+gautham.pro: did not receive HSTS header
gavick.com: did not receive HSTS header
-gaycc.cc: could not connect to host
+gay-jays.com: could not connect to host
+gay-sissies.com: could not connect to host
+gaya-sa.org: could not connect to host
+gayauthors.org: could not connect to host
+gayforgenji.com: could not connect to host
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
-gc-mc.de: 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
-gdhzcgs.com: could not connect to host
-gdprhallofshame.com: could not connect to host
+gdprhallofshame.com: did not receive HSTS header
+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
+geass.xyz: could not connect to host
geblitzt.de: did not receive HSTS header
gedankenbude.info: could not connect to host
-gee.is: could not connect to host
+gedankenworks.com: could not connect to host
+geek.ch: could not connect to host
+geek1.de: did not receive HSTS header
geekbaba.com: could not connect to host
-geekcast.co.uk: did not receive HSTS header
+geekcast.co.uk: could not connect to host
+geekchimp.com: could not connect to host
geekdt.com: could not connect to host
geekmind.org: max-age too low: 172800
-geeks.berlin: did not receive HSTS header
+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
-geertdegraaf.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]
-gehaowu.com: did not receive HSTS header
gehrke.nrw: could not connect to host
geigr.de: could not connect to host
geiser.io: did not receive HSTS header
+gekosoft.eu: could not connect to host
geldteveel.eu: could not connect to host
geli-graphics.com: did not receive HSTS header
gemeinfreie-lieder.de: did not receive HSTS header
gemsoftheworld.org: could not connect to host
gemuplay.com: could not connect to host
+genbright.com: could not connect to host
genemesservwparts.com: could not connect to host
+general-insurance.tk: could not connect to host
generalpants.com.au: did not receive HSTS header
generationnext.pl: could not connect to host
genesischangelog.com: did not receive HSTS header
geneve.guide: could not connect to host
genia-life.de: could not connect to host
+genie-seiner-generation.de: did not receive HSTS header
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
+genuxtsg.com: did not receive HSTS header
genxbeats.com: could not connect to host
+genxnotes.com: could not connect to host
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
+geoffreyrichard.com: did not receive HSTS header
geopals.net: did not receive HSTS header
+georgehalachev.com: did not receive HSTS header
georgeperez.me: could not connect to host
georgesonarthurs.com.au: did not receive HSTS header
-gerardobsd.com: could not connect to host
+gepe.ch: did not receive HSTS header
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
+germancraft.net: 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
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-it-live.de: 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
@@ -5303,6 +7131,7 @@ getcarina.com: could not connect to host
getcleartouch.com: did not receive HSTS header
getcolor.com: did not receive HSTS header
getdigitized.net: could not connect to host
+geteduroam.no: could not connect to host
getenergized2018.kpn: could not connect to host
getfestify.com: did not receive HSTS header
getfilterlive.org: could not connect to host
@@ -5319,15 +7148,15 @@ getgeek.nu: could not connect to host
getgeek.pl: could not connect to host
getgeek.se: did not receive HSTS header
getinternet.de: did not receive HSTS header
-getitlive.de: could not connect to host
getkai.co.nz: did not receive HSTS header
getlantern.org: did not receive HSTS header
+getleanflorida.gov: could not connect to host
getlifti.com: could not connect to host
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
@@ -5335,52 +7164,72 @@ getremembrall.com: could not connect to host
getronics.care: could not connect to host
getsello.com: could not connect to host
getserum.xyz: could not connect to host
+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
+getyou.onl: could not connect to host
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: did not receive HSTS header
+gfw.moe: could not connect to host
+gfwno.win: could not connect to host
gfwsb.ml: could not connect to host
gglks.com: could not connect to host
+ggobbo.com: could not connect to host
ggrks-asano.com: could not connect to host
ggss.cf: could not connect to host
ggss.ml: could not connect to host
gh16.com.ar: could not connect to host
-ghaglund.se: could not connect to host
ghcif.de: could not connect to host
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
-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
+gibraltar.at: could not connect to host
+gicl.dk: could not connect to host
+giddyaunt.net: could not connect to host
gidea.nu: could not connect to host
-giegler.software: did not receive HSTS header
+giduv.com: did not receive HSTS header
+giegler.software: could not connect to host
+giftbg.org: did not receive HSTS header
+giftedconsortium.com: could not connect to host
giftgofers.com: max-age too low: 2592000
+giftservices.nl: could not connect to host
gifzilla.net: could not connect to host
-gigacloud.org: did not receive HSTS header
+gigacloud.org: 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
+gilpinmanagement.com: did not receive HSTS header
+gilpinrealty.com: did not receive HSTS header
gilroywestwood.org: did not receive HSTS header
gincher.net: did not receive HSTS header
gingali.de: did not receive HSTS header
+ginie.de: did not receive HSTS header
ginijony.com: did not receive HSTS header
ginkel.com: did not receive HSTS header
+ginnegappen.nl: could not connect to host
gintenreiter-photography.com: did not receive HSTS header
giochistem.it: could not connect to host
giogadesign.com: did not receive HSTS header
@@ -5388,108 +7237,139 @@ 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
+giraffeinflatables.co.uk: did not receive HSTS header
+girlsgonesporty.com: could not connect to host
girlsnet.work: 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
git-stuff.tk: could not connect to host
+git.ac.cn: could not connect to host
git.co: could not connect to host
+gitar.io: could not connect to host
github.party: did not receive HSTS header
givemyanswer.com: could not connect to host
giverang.biz: could not connect to host
giverang.com: could not connect to host
+givip.eu: 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
+gkimanyar.org: did not receive HSTS header
glabiatoren-kst.de: could not connect to host
gladystudio.com: did not receive HSTS header
+glahcks.com: could not connect to host
+glaspe.com: could not connect to host
glass.google.com: did not receive HSTS header (error ignored - included regardless)
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: could not connect to host
glittersjabloon.nl: did not receive HSTS header
glitzmirror.com: could not connect to host
glnpo.gov: could not connect to host
+global.hr: could not connect to host
globalado.com: could not connect to host
globalbridge-japan.com: did not receive HSTS header
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
+globalnewsdaily.cf: did not receive HSTS header
globalnomadvintage.com: could not connect to host
globalperspectivescanada.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
-globuli-info.de: did not receive HSTS header
+globeinform.com: did not receive HSTS header
+globuli-info.de: could not connect to host
gloomyspark.com: could not connect to host
-glossopnorthendafc.co.uk: 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: did not receive HSTS header
+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: could not connect to host
-gn00.com: could not connect to host
+gmoes.at: did not receive HSTS header
+gmplab.com: did not receive HSTS header
gnaptracker.tk: could not connect to host
gnom.me: could not connect to host
gnosticjade.net: did not receive HSTS header
+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
goabonga.com: could not connect to host
goalsetup.com: did not receive HSTS header
goaltree.ch: did not receive HSTS header
-goapunks.net: could not connect to host
-goarmy.eu: could not connect to host
+goapunks.net: did not receive HSTS header
goat.chat: did not receive HSTS header
goat.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]
+godofnea.com: could not connect to host
godrealms.com: could not connect to host
+godruoyi.com: did not receive HSTS header
goedeke.ml: could not connect to host
goerner.me: did not receive HSTS header
-goerres2014.de: could not connect to host
+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
goggs.eu: could not connect to host
gogold-g.com: could not connect to host
-goguel.org: could not connect to host
+goguel.org: did not receive HSTS header
goiaspropaganda.com.br: could not connect to host
gold24.in: could not connect to host
+goldclubcasino.com: could not connect to host
goldendata.io: could not connect to host
goldfelt.com: could not connect to host
goldminer.ga: could not connect to host
goldpros.com: did not receive HSTS header
+goldsky.com.au: did not receive HSTS header
goldwater.gov: could not connect to host
goldwaterfoundation.gov: could not connect to host
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
+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
+gooddomainna.me: could not connect to host
+goodeats.nyc: could not connect to host
+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
goodsex4all.com.br: could not connect to host
goodtech.com.br: could not connect to host
+goodvibesblog.com: could not connect to host
goodwin43.ru: could not connect to host
goodyearsotn.co.uk: could not connect to host
google: could not connect to host (error ignored - included regardless)
@@ -5502,91 +7382,112 @@ 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
-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
gorognyelv.hu: could not connect to host
gosharewood.com: did not receive HSTS header
goshop.cz: did not receive HSTS header
-gospelofmark.ch: could not connect to host
-gostream.asia: did not receive HSTS header
+goshow.tv: could not connect to host
+gostream.asia: could not connect to host
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
gotocloud.ru: could not connect to host
+gotowned.org: could not connect to host
gotspot.com: could not connect to host
-gottfridsberg.org: could not connect to host
gottfriedfeyen.com: did not receive HSTS header
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: could not connect to host
+gouthro-goteborg.se: did not receive HSTS header
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
gparent.org: did not receive HSTS header
+gpfclan.de: could not connect to host
gpga.cf: could not connect to host
-gpio.gq: 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
+gpsarena.ro: could not connect to host
+gpsfix.cz: could not connect to host
gpstuner.com: did not receive HSTS header
graavaapi.elasticbeanstalk.com: could not connect to host
-gracebaking.com: max-age too low: 86400
+grabi.ga: could not connect to host
gracechurchpc.net: could not connect to host
-graceful-project.eu: could not connect to host
+graceful-project.eu: did not receive HSTS header
gracesofgrief.com: could not connect to host
grachtenpandverkopen.nl: could not connect to host
-grademymac.com: did not receive HSTS header
-grademypc.com: did not receive HSTS header
+grademymac.com: could not connect to host
+grademypc.com: could not connect to host
+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
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
-graniteind.com: did not receive HSTS header
+grandmascookieblog.com: could not connect to host
+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
+graphire.io: could not connect to host
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
+gravitation.pro: could not connect to host
gravito.nl: did not receive HSTS header
-gravity-dev.de: could not connect to host
gravity-net.de: could not connect to host
graycell.net: could not connect to host
grazetech.com: did not receive HSTS header
grcnode.co.uk: could not connect to host
great.nagoya: could not connect to host
-greatfire.kr: did not receive HSTS header
+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
+greatsong.net: max-age too low: 2592000
+greedbutt.com: max-age too low: 2592000
green-light.cf: could not connect to host
green-light.ga: could not connect to host
green-light.gq: could not connect to host
green-light.ml: could not connect to host
+greenbaysecuritysolutions.com: did not receive HSTS header
greencardtalent.com: could not connect to host
+greenconn.ca: could not connect to host
+greendroid.de: did not receive HSTS header
+greenenergysolution.uk: did not receive HSTS header
greenesting.ch: could not connect to host
greenesting.com: could not connect to host
+greenglam.biz: did not receive HSTS header
+greengoblindev.com: could not connect to host
greengov.gov: could not connect to host
greenhillantiques.co.uk: did not receive HSTS header
-greenitpark.net: could not connect to host
-greenpeace.berlin: could not connect to host
+greenitpark.net: did not receive HSTS header
greensolid.biz: could not connect to host
+greenville.ag: did not receive HSTS header
greenvines.com.tw: did not receive HSTS header
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
+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
@@ -5598,27 +7499,29 @@ greuel.online: could not connect to host
greve.xyz: could not connect to host
grevesgarten.de: could not connect to host
greyline.se: could not connect to host
-greysky.me: max-age too low: 300
grian-bam.at: did not receive HSTS header
gribani.com: could not connect to host
grid2osm.org: could not connect to host
gridle.io: did not receive HSTS header
+griecopelino.com: 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: did not receive HSTS header
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
groentefruitzeep.nl: could not connect to host
groetzner.net: did not receive HSTS header
groseb.net: did not receive HSTS header
-grossberger-ge.org: could not connect to host
+grossell.ru: could not connect to host
grossmann.gr: could not connect to host
grossmisconduct.news: could not connect to host
+grouchysysadmin.com: could not connect to host
groupe-cassous.com: did not receive HSTS header
groups.google.com: did not receive HSTS header (error ignored - included regardless)
grow-shop.ee: could not connect to host
@@ -5626,43 +7529,52 @@ 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
-gruenderwoche-dresden.de: did not receive HSTS header
+gruelang.org: could not connect to host
+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
+gtalife.net: did not receive HSTS header
gtamodshop.org: could not connect to host
gtanda.tk: could not connect to host
+gtdgo.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]
gtech.work: did not receive HSTS header
gtldna.com: could not connect to host
gtraxapp.com: could not connect to host
+gts-dp.de: did not receive HSTS header
gts-schulsoftware.de: did not receive HSTS header
+gtts.space: did not receive HSTS header
guarajubaimoveis.com.br: did not receive HSTS header
guava.studio: did not receive HSTS header
+gudangpangan.id: could not connect to host
+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
+gufen.ga: 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
gugga.dk: could not connect to host
guguke.net: did not receive HSTS header
guidechecking.com: could not connect to host
-guideline.gov: could not connect to host
-guidelines.gov: could not connect to host
+guides-et-admin.com: did not receive HSTS header
+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
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
@@ -5671,15 +7583,18 @@ 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
+gumballs.com: did not receive HSTS header
gummibande.noip.me: could not connect to host
gunhunter.com: could not connect to host
guniram.com: did not receive HSTS header
gunnarhafdal.com: did not receive HSTS header
-gunnaro.com: could not connect to host
+gunnaro.com: did not receive HSTS header
guntbert.net: could not connect to host
guoqiang.info: 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
+gurugardener.co.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]
gurusupe.com: could not connect to host
gus.moe: could not connect to host
guso.gq: could not connect to host
@@ -5687,58 +7602,73 @@ guso.ml: could not connect to host
guso.site: could not connect to host
guso.tech: could not connect to host
gussi.is: did not receive HSTS header
-guthabenkarten-billiger.de: did not receive HSTS header
-guts.me: did not receive HSTS header
-guts.moe: did not receive HSTS header
+guthabenkarten-billiger.de: could not connect to host
+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
+gvm.io: could not connect to host
gvpt.sk: did not receive HSTS header
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: did not receive HSTS header
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
-gypsycatdreams.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: did not receive HSTS header
+h2check.org: could not connect to host
h3x.jp: 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
+habbos.es: could not connect to host
habbotalk.nl: could not connect to host
habeo.si: could not connect to host
hablemosdetecnologia.com.ve: could not connect to host
+habtium.com: 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
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: did not receive HSTS header
-hackerchai.com: could not connect to host
-hackerforever.com: could not connect to host
+hackercat.ninja: max-age too low: 2592000
+hackerco.com: did not receive HSTS header
+hackerforever.com: did not receive HSTS header
+hackerlite.xyz: max-age too low: 0
hackerone-ext-adroll.com: could not connect to host
-hackerpoints.com: could not connect to host
+hackerpoints.com: did not receive HSTS header
hackerspace-ntnu.no: did not receive HSTS header
+hackerstxt.org: could not connect to host
hackest.org: did not receive HSTS header
hackingsafe.com: could not connect to host
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
-hackworx.com: 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
+hadret.com: did not receive HSTS header
+hadret.sh: could not connect to host
hadzic.co: could not connect to host
haeckdesign.com: did not receive HSTS header
haeckl.eu: did not receive HSTS header
@@ -5747,47 +7677,60 @@ haemmerle.net: [Exception... "Component returned failure code: 0x80004005 (NS_ER
haf.gr: could not connect to host
hafoda.com: did not receive HSTS header
hahayidu.org: could not connect to host
+haidihai.ro: did not receive HSTS header
+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
-hajnzic.at: could not connect to host
-hakase.pw: 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
-hallettxn.com: could not connect to host
+halledesprix.fr: did not receive HSTS header
+halloweenthings.website: could not connect to host
halo.red: could not connect to host
-halta.info: could not connect to host
+halta.info: did not receive HSTS header
halyul.cc: did not receive HSTS header
halyul.com: did not receive HSTS header
haman.nl: could not connect to host
+hamish.ca: did not receive HSTS header
hamking.tk: could not connect to host
hammamsayad.com: could not connect to host
+hammer-corp.com: did not receive HSTS header
hamon.cc: did not receive HSTS header
hamu.blue: 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
handicapindeles.nl: did not receive HSTS header
-handinhandfoundation.org.uk: could not connect to host
+handinhandfoundation.org.uk: did not receive HSTS header
handiworker.com: could not connect to host
+handmadegobelin.com: did not receive HSTS header
+handmadeshoes.pe: did not receive HSTS header
handmadetutorials.ro: could not connect to host
handsandall.com: did not receive HSTS header
+handyglas.com: could not connect to host
+handynummer.online: did not receive HSTS header
hanfu.la: could not connect to host
+hang333.moe: could not connect to host
hang333.pw: could not connect to host
hangar18-modelismo.com.br: could not connect to host
hanimalis.fr: could not connect to host
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
haobo1111.com: could not connect to host
@@ -5799,6 +7742,8 @@ haobo6666.com: could not connect to host
haobo7777.com: could not connect to host
haomwei.com: could not connect to host
haoyugao.com: 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
@@ -5807,17 +7752,21 @@ 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: could not connect to host
+haqaza.com.br: did not receive HSTS header
+harald-pfeiffer.de: could not connect to host
harambe.site: could not connect to host
harbourweb.net: did not receive HSTS header
-hardergayporn.com: could not connect to host
hardline.xyz: could not connect to host
+hardtime.ru: could not connect to host
hardyboyplant.com: did not receive HSTS header
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
@@ -5825,23 +7774,27 @@ 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: 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
hasalittle.wang: could not connect to host
+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
hastherebeenamassshooting.today: could not connect to host
+hatcherlawgroupnm.com: did not receive HSTS header
hatethe.uk: could not connect to host
hatoko.net: could not connect to host
haufschild.de: could not connect to host
+hauntedfishtank.com: did not receive HSTS header
haurumcraft.net: could not connect to host
hausarzt-stader-str.de: did not receive HSTS header
+hauswarteam.com: could not connect to host
hav.com: could not connect to host
haveeruexaminer.com: could not connect to host
haven-staging.cloud: could not connect to host
@@ -5850,15 +7803,18 @@ havenmoon.com: could not connect to host
havenswift-hosting.co.uk: did not receive HSTS header
hawk-la.com: could not connect to host
hawthornharpist.com: could not connect to host
-haxoff.com: could not connect to host
+haxoff.com: did not receive HSTS header
haxon.me: could not connect to host
haxx.hu: did not receive HSTS header
haydenhill.us: could not connect to host
hayleishop.fr: did not receive HSTS header
+hayzepvp.us: did not receive HSTS header
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
@@ -5875,51 +7831,70 @@ hbvip06.com: could not connect to host
hbvip07.com: could not connect to host
hbvip08.com: could not connect to host
hcfhomelottery.ca: did not receive HSTS header
-hcie.pl: did not receive HSTS header
+hcoe.fi: did not receive HSTS header
hcr.io: did not receive HSTS header
hcs-company.com: did not receive HSTS header
-hcs-company.nl: did not receive HSTS header
+hcs-company.nl: could not connect to host
hcstr.com: did not receive HSTS header
-hd1tj.org: did not receive HSTS header
+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
+hdtwinks.com: could not connect to host
hduin.xyz: could not connect to host
+hdwallpapers.net: could not connect to host
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
+health.gov: could not connect to host
+healthcare6.com: did not receive HSTS header
+healthfinder.gov: could not connect to host
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
hearingshofar.com: could not connect to host
heart.ge: could not connect to host
heartlandrentals.com: did not receive HSTS header
+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
+hearty.us: could not connect to host
+heartyapp.com: 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
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
+heberut.gov: did not receive HSTS header
+hebriff.com: could not connect to host
+hechamano.es: did not receive HSTS header
+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
-heinemeier.dk: could not connect to host
-heisenberg.co: could not connect to host
+hejahanif.se: could not connect to host
hejsupport.se: could not connect to host
hekeki.com: could not connect to host
-hele.cz: did not receive HSTS header
+hele.cz: could not connect to host
+helencrump.co.uk: did not receive HSTS header
helgakristoffer.com: could not connect to host
helgakristoffer.wedding: could not connect to host
helicaldash.com: could not connect to host
helixflight.com: did not receive HSTS header
hellenicaward.com: did not receive HSTS header
+hellerup.net: could not connect to host
hello-nestor.com: did not receive HSTS header
helloanselm.com: did not receive HSTS header
hellofilters.com: could not connect to host
@@ -5927,64 +7902,84 @@ hellomouse.cf: did not receive HSTS header
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
+helpdebit.com: did not receive HSTS header
helpekwendenihospital.com: could not connect to host
+helpfacile.com: did not receive HSTS header
+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
+hendyisaac.com: 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
-hentai.design: 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
+heracles-hotel.eu: did not receive HSTS header
+herbal-id.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
-herecsrymy.cz: could not connect to host
-heribe-maruo.com: could not connect to host
-heritagedentistry.ca: could not connect to host
+here4funpartysolutions.ie: could not connect to host
+heribe-maruo.com: did not receive HSTS header
+heritagedentistry.ca: did not receive HSTS header
+hermann.in: could not connect to host
hermes-servizi.it: could not connect to host
+hermes.cat: could not connect to host
heroin.org.uk: could not connect to host
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.net: did not receive HSTS header
+hetzflix.stream: did not receive HSTS header
heutger.net: did not receive HSTS header
+heverhagen.rocks: did not receive HSTS header
+hex.bz: could not connect to host
hex2013.com: did not receive HSTS header
hexacon.io: could not connect to host
-hexadecimal.tech: did not receive HSTS header
-hexe.net: did not receive HSTS header
+hexadecimal.tech: could not connect to host
+hexe.net: could not connect to host
hexhu.com: could not connect to host
+hexieshe.com: could not connect to host
hexobind.com: could not connect to host
+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
+hg525.com: could not connect to host
hg71839.com: could not connect to host
hg881.com: could not connect to host
+hgfa.fi: 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
hicn.gq: could not connect to host
-hiddendepth.ie: max-age too low: 0
hiddenmail.xyz: could not connect to host
hiddenprocess.com: did not receive HSTS header
hiddenrefuge.eu.org: could not connect to host
@@ -5992,24 +7987,30 @@ 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
+highlatitudestravel.com: did not receive HSTS header
+highperformancehvac.com: did not receive HSTS header
highseer.com: did not receive HSTS header
+highspeedinternetservices.ca: did not receive HSTS header
highsurf-miyazaki.com: could not connect to host
hightechgadgets.net: could not connect to host
+hightimes.com: could not connect to host
hightower.eu: could not connect to host
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
+hijoan.com: did not receive HSTS header
hik-cloud.com: did not receive HSTS header
hikagestudios.com: did not receive HSTS header
hikariempire.com: could not connect to host
-hikarukujo.com: could not connect to host
-hikinggearlab.com: did not receive HSTS header
hilaolu.com: could not connect to host
+hilaolu.studio: max-age too low: 0
+hilariousbeer.com.mx: could not connect to host
hilinemerchandising.com: did not receive HSTS header
hill.selfip.net: could not connect to host
hillcity.org.nz: did not receive HSTS header
@@ -6021,24 +8022,32 @@ hingle.me: could not connect to host
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: could not connect to host
+hintermeier-rae.at: did not receive HSTS header
+hiojbk.com: did not receive HSTS header
hipercultura.com: did not receive HSTS header
-hiphop.ren: could not connect to host
hiphopconvention.nl: could not connect to host
-hipnos.net: did not receive HSTS header
+hipi.jp: could not connect to host
hipnoseinstitute.org: did not receive HSTS header
-hiqhub.co.uk: could not connect to host
-hiraku.me: did not receive HSTS header
+hiqfleet.co.uk: did not receive HSTS header
+hiraku.me: could not connect to host
+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
+hirte-digital.de: did not receive HSTS header
hisingenrunt.se: did not receive HSTS header
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
-hitrek.ml: could not connect to host
+hitoy.org: could not connect to host
hittipps.com: could not connect to host
+hivatal-info.hu: 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
@@ -6046,80 +8055,90 @@ hlpublicidad.com: could not connect to host
hlyue.com: did not receive HSTS header
hm1ch.com: could not connect to host
hm1ch.ovh: could not connect to host
-hm773.net: did not receive HSTS header
hmksq.ae: max-age too low: 7776000
hmm.nyc: could not connect to host
-hoast.xyz: could not connect to host
+hnwebi.com: did not receive HSTS header
+hoast.xyz: did not receive HSTS header
hobaugh.social: could not connect to host
hobby-gamerz-community.de: did not receive HSTS header
-hochhaus.us: could not connect to host
+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
+hohm.in: 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
-hokioisecurity.com: did not receive HSTS header
+hokepon.com: did not receive HSTS header
+hokify.at: did not receive HSTS header
+hokify.ch: did not receive HSTS header
+hokify.de: 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
holisticdrbright.com: max-age too low: 300
hollandguns.com: did not receive HSTS header
+hollerau.de: could not connect to host
holowaty.me: could not connect to host
+holstphoto.com: max-age too low: 2592000
holymoly.lu: could not connect to host
-holytransaction.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]
+holymolycasinos.com: did not receive HSTS header
homa.website: could not connect to host
homads.com: did not receive HSTS header
home-cloud.online: could not connect to host
home-coaching.be: did not receive HSTS header
home-craft.de: could not connect to host
+home-insurance-quotes.tk: could not connect to host
home-v.ind.in: could not connect to host
+home-work-jobs.com: could not connect to host
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
-homefacialpro.com: did not receive HSTS header
-homegreenmark.com: did not receive HSTS header
-homeownersassociationmanagementla.com: did not receive HSTS header
+homehunting.pt: did not receive HSTS header
+homeoesp.org: did not receive HSTS header
+homeownersassociationmanagementla.com: could not connect to host
homeremodelingcontractorsca.com: did not receive HSTS header
-homesandal.com: could not connect to host
+homesandal.com: did not receive HSTS header
homeseller.co.uk: could not connect to host
-homesfordinner.ca: could not connect to host
+homesfordinner.ca: 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
+honeybeard.co.uk: did not receive HSTS header
honeytracks.com: could not connect to host
-hong.io: could not connect to host
hongyd.online: could not connect to host
hongzhaxiaofendui.com: could not connect to host
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
+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
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
-hoovism.com: did not receive HSTS header
-hoowhen.cn: could not connect to host
+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
horace.li: did not receive HSTS header
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
-horror-forum.de: could not connect to host
+horrendous-servers.com: 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
@@ -6127,7 +8146,8 @@ horvathtom.com: could not connect to host
horvatnyelvkonyv.hu: could not connect to host
host.black: could not connect to host
hostam.link: could not connect to host
-hosted-oswa.org: could not connect to host
+hostcoz.com: did not receive HSTS header
+hosted-oswa.org: did not receive HSTS header
hostedbgp.net: did not receive HSTS header
hostedtalkgadget.google.com: did not receive HSTS header (error ignored - included regardless)
hostelite.com: did not receive HSTS header
@@ -6137,163 +8157,215 @@ 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
+hostserv.org: 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
hotchillibox.co.za: could not connect to host
hotchoc.io: could not connect to host
hotel-huberhof.at: did not receive HSTS header
-hotel-rosner.at: did not receive HSTS header
hotel-tongruben.de: max-age too low: 0
hotelaustria-wien.at: did not receive HSTS header
+hotello.io: could not connect to host
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: could not connect to host
+hotjuice.com: could not connect to host
+hotornot.com: could not connect to host
hotpoint-training.com: did not receive HSTS header
hottestwebcamgirls.org: could not connect to host
houkago-step.com: did not receive HSTS header
houseinvestor.com: could not connect to host
-housemaadiah.org: did not receive HSTS header
+housemaadiah.org: could not connect to host
+housetalk.ru: did not receive HSTS header
housingstudents.org.uk: could not connect to host
how2fsbo.com: could not connect to host
howardwatts.co.uk: did not receive HSTS header
howfargames.com: could not connect to host
howrandom.org: could not connect to host
+howsmytls.com: 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
-hpepub.asia: did not receive HSTS header
-hpepub.org: could not connect to host
+hpeditor.tk: could not connect to host
+hpepub.asia: could not connect to host
+hpepub.com: could not connect to host
+hpepub.org: did not receive HSTS header
+hpnow.com.br: could not connect to host
hppub.info: could not connect to host
hppub.org: could not connect to host
hppub.site: could not connect to host
hqhost.net: did not receive HSTS header
+hqq.tv: could not connect to host
hr-intranet.com: could not connect to host
hr-tech.store: could not connect to host
hr98.tk: could not connect to host
+hr98.xyz: could not connect to host
hrackydomino.cz: did not receive HSTS header
hrfhomelottery.com: did not receive HSTS header
+hrjfeedstock.com: did not receive HSTS header
hrk.io: 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
+hsex.tv: did not receive HSTS header
hsir.me: could not connect to host
+hsn.com: could not connect to host
hsts-preload-test.xyz: could not connect to host
hsts.com.br: could not connect to host
hsts.date: could not connect to host
-hsts.eu: could not connect to host
hstspreload.me: could not connect to host
+hsulei.com: could not connect to host
hszhyy120.com: could not connect to host
htlball.at: could not connect to host
html-lab.tk: could not connect to host
+htp2.top: could not connect to host
http418.xyz: could not connect to host
httphacker.com: could not connect to host
-https-rulesets.org: could not connect to host
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
-huang.nu: could not connect to host
+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-haitao.com: could not connect to host
huangguancq.com: could not connect to host
-huangh.com: could not connect to host
-huangzenghao.cn: 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
+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
-hugofs.com: did not receive HSTS header
+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]
huiser.nl: could not connect to host
hukaloh.com: could not connect to host
hukkatavara.com: could not connect to host
-humanexperiments.com: did not receive HSTS header
+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
-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]
+huniverse.co: could not connect to host
+hunqz.com: could not connect to host
+hunterjohnson.io: 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: did not receive HSTS header
+hup.blue: could not connect to host
+hurleyhomestead.com: 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
+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
+hveradistributions.com: could not connect to host
+hwcine.com: could not connect to host
+hwinfo.com: did not receive HSTS header
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
+hydrodipcenter.nl: could not connect to host
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
hypnos.hu: did not receive HSTS header
hypotheques24.ch: could not connect to host
hysg.me: could not connect to host
+hytzongxuan.com: did not receive HSTS header
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-aloks.ru: could not connect to host
i-jp.net: could not connect to host
-i-partners.sk: did not receive HSTS header
+i-partners.sk: could not connect to host
i-rickroll-n.pw: could not connect to host
i-stats.net: could not connect to host
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
+i95.me: did not receive HSTS header
i9multiequipamentos.com.br: did not receive HSTS header
-iacono.com.br: did not receive HSTS header
+ia1000.com: could not connect to host
iadttaveras.com: could not connect to host
iain.tech: did not receive HSTS header
+iamlbk.com: could not connect to host
+iamlizu.com: did not receive HSTS header
+iamlzh.com: 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: 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
ibenchu.com: did not receive HSTS header
ibestreview.com: did not receive HSTS header
+ibiu.xyz: did not receive HSTS header
ibizatopcharter.com: did not receive HSTS header
ibna.online: could not connect to host
ibnuwebhost.com: could not connect to host
-ibox.ovh: 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
-ibwin.com: max-age too low: 3600
icabanken.se: did not receive HSTS header
icaforsakring.se: did not receive HSTS header
+icake.life: did not receive HSTS header
icasnetwork.com: did not receive HSTS header
-iccpublisher.com: could not connect to host
-ice.xyz: could not connect to host
+icbemp.gov: could not connect to host
ice.yt: could not connect to host
icebat.dyndns.org: could not connect to host
icebound.cc: did not receive HSTS header
@@ -6305,23 +8377,30 @@ icewoman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERR
icfl.com.br: could not connect to host
ich-find-den-g.net: could not connect to host
ich-mach-druck.eu: did not receive HSTS header
+ichasco.com: 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: could not connect to host
+icnsoft.org: could not connect to host
icntorrent.download: could not connect to host
-icpc.pp.ua: could not connect to host
+ico500.com: 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
ictpro.info: did not receive HSTS header
icusignature.com: could not connect to host
icys2017.com: did not receive HSTS header
id-co.in: could not connect to host
id-conf.com: did not receive HSTS header
-id.fedoraproject.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]
-idblab.tk: did not receive HSTS header
+idblab.tk: could not connect to host
+idc.yn.cn: could not connect to host
idcrane.com: could not connect to host
iddconnect.com: could not connect to host
iddconnect.org: could not connect to host
@@ -6329,54 +8408,63 @@ ideadozz.hu: could not connect to host
ideal-envelopes.co.uk: did not receive HSTS header
idealmoto.com: did not receive HSTS header
idealmykonos.com: did not receive HSTS header
-idealvenir.com: could not connect to host
+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
idgsupply.com: did not receive HSTS header
idinby.dk: did not receive HSTS header
-idiopolis.org: could not connect to host
+idiopolis.org: did not receive HSTS header
idisplay.es: could not connect to host
idlekernel.com: could not connect to host
idol-bikes.ru: could not connect to host
idontexist.me: could not connect to host
idsafe.co.za: could not connect to host
idsoccer.com: did not receive HSTS header
-idtheft.gov: could not connect to host
+idvl.de: could not connect to host
+iec.pe: could not connect to host
+iemas.azurewebsites.net: did not receive HSTS header
iemb.cf: could not connect to host
ierna.com: did not receive HSTS header
ies.id.lv: could not connect to host
+ietsdoenofferte.nl: did not receive HSTS header
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
+ifconfig.co: did not receive HSTS header
ifleurs.com: could not connect to host
+ifly.pw: could not connect to host
ifreetion.cn: did not receive HSTS header
+ifroheweihnachten.net: 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
+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
+igforums.com: did not receive HSTS header
+igi.codes: could not connect to host
igiftcards.nl: did not receive HSTS header
ignatisd.gr: did not receive HSTS header
-ignatovich.by: could not connect to host
igule.net: could not connect to host
-ihoey.com: could not connect to host
+iha6.com: could not connect to host
+ihatethissh.it: could not connect to host
+ihc.im: did not receive HSTS header
+ihcr.top: 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
@@ -6384,118 +8472,140 @@ ihsbsd.tk: could not connect to host
ihzys.com: could not connect to host
iide.co: did not receive HSTS header
iideaz.org: could not connect to host
-iilin.com: could not connect to host
-iiong.com: did not receive HSTS header
+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
+ijr.com: did not receive HSTS header
+ike.io: did not receive HSTS header
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
+ikudo.top: could not connect to host
+ikuuuu.com: 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
+ilazycat.com: could not connect to host
ilbuongiorno.it: did not receive HSTS header
ildomani.it: did not receive HSTS header
ileat.com: could not connect to host
ilgi.work: could not connect to host
-ilhansubasi.com: did not receive HSTS header
-ilii.me: did not receive HSTS header
-ilikerainbows.co: could not connect to host
+ilii.me: 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
+ilikfreshweedstores.com: could not connect to host
ilmconpm.de: could not connect to host
iloilofit.org: did not receive HSTS header
ilona.graphics: did not receive HSTS header
+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
+imagenesdedibujosalapizfacilesdehacer.com: 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]
+imanhearts.com: max-age too low: 0
imanudin.net: did not receive HSTS header
+imaple.org: could not connect to host
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
-imgup.co: did not receive HSTS header
+imguoguo.com: could not connect to host
imim.pw: could not connect to host
imjiangtao.com: did not receive HSTS header
imlinan.cn: could not connect to host
imlinan.com: could not connect to host
imlinan.info: could not connect to host
imlinan.net: could not connect to host
+imlonghao.com: did not receive HSTS header
immanuel60.hu: did not receive HSTS header
-immersionwealth.com: could not connect to host
+immaternity.com: could not connect to host
+immersivewebportal.com: could not connect to host
+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
immoverkauf24.at: did not receive HSTS header
immoverkauf24.de: did not receive HSTS header
immunicity.cc: could not connect to host
-immunicity.date: did not receive HSTS header
+immunicity.date: could not connect to host
immunicity.eu: did not receive HSTS header
immunicity.host: could not connect to host
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.today: max-age too low: 0
+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
immunicity.works: could not connect to host
immunicity.world: could not connect to host
imoe.ac.cn: did not receive HSTS header
imolug.org: did not receive HSTS header
+imoner.com: could not connect to host
imoner.ga: could not connect to host
imoni-blog.net: could not connect to host
imoto.me: could not connect to host
+imperdin.com: 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
-imrejonk.nl: could not connect to host
imu.li: did not receive HSTS header
imusic.dk: did not receive HSTS header
-imy.life: could not connect to host
+imy.life: did not receive HSTS header
+imydl.com: could not connect to host
+imyjy.cn: could not connect to host
inandeyes.com: did not receive HSTS header
inb4.us: could not connect to host
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
-inche-ali.com: did not receive HSTS header
+incestporn.tv: could not connect to host
inchomatic.com: 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
+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
+indiemods.com: did not receive HSTS header
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
+indogerman.de: did not receive HSTS header
+indogermantrade.de: could not connect to host
+indoorplantsexpert.com: 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
+indusfastremit.com: could not connect to host
industreiler.com: could not connect to host
industreiler.com.br: could not connect to host
-industrybazar.com: max-age too low: 2592000
+industriasrenova.com: could not connect to host
+industrybazar.com: did not receive HSTS header
ineed.com.mt: could not connect to host
inetpub.cn: could not connect to host
+inevitavelbrasil.com.br: could not connect to host
inexlog.fr: could not connect to host
inexpensivecomputers.net: could not connect to host
-infcof.com: could not connect to host
-inference.biz.tr: could not connect to host
+infcof.com: did not receive HSTS header
infilock.com: could not connect to host
infinether.net: could not connect to host
infinitiofmarinparts.com: could not connect to host
@@ -6506,31 +8616,37 @@ infinitusgaming.eu: could not connect to host
infinity-freedom.com: could not connect to host
infinity-freedom.de: could not connect to host
infinity-lifestyle.de: could not connect to host
+infinity.to: could not connect to host
inflate-a-bubbles.co.uk: did not receive HSTS header
inflation.ml: could not connect to host
-influo.com: did not receive HSTS header
influxus.com: could not connect to host
info-bay.com: could not connect to host
info-sys.tk: could not connect to host
-infoduv.fr: did not receive HSTS header
-infopagina.es: did not receive HSTS header
+infoamin.com: did not receive HSTS header
+infocoin.es: did not receive HSTS header
+infopagina.es: could not connect to host
inforichjapan.com: did not receive HSTS header
inforisposte.com: did not receive HSTS header
informaticapremium.com: did not receive HSTS header
informatik.zone: could not connect to host
infos-generation.com: did not receive HSTS header
infosec.rip: could not connect to host
+infosimmo.com: did not receive HSTS header
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
-infranium.info: did not receive HSTS header
+infr.red: did not receive HSTS header
+infradio.am: could not connect to host
infranix.eu: max-age too low: 7360000
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
-ingresscode.cn: could not connect to host
+ingresscode.cn: did not receive HSTS header
inhelix.com: could not connect to host
inhive.group: did not receive HSTS header
iniiter.com: could not connect to host
@@ -6544,6 +8660,7 @@ injust.gq: could not connect to host
injust.me: could not connect to host
injust.ml: could not connect to host
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
inkstory.gr: did not receive HSTS header
@@ -6551,18 +8668,23 @@ 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
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
-inobun.jp: could not connect to host
+innoventure.de: could not connect to host
inondation.ch: could not connect to host
-inox.io: did not receive HSTS header
+inorder.website: could not connect to host
+inovatec.com: did not receive HSTS header
+inox.io: could not connect to host
inoxio.com: did not receive HSTS header
inoxio.de: did not receive HSTS header
inplacers.ru: did not receive HSTS header
-inquisitive.io: did not receive HSTS header
+inquisitive.io: could not connect to host
insane-bullets.com: could not connect to host
insane.zone: could not connect to host
inschrijfformulier.com: could not connect to host
@@ -6576,75 +8698,97 @@ inspiroinc.com: could not connect to host
inst.mobi: did not receive HSTS header
instacart.com: did not receive HSTS header
instant-hack.com: did not receive HSTS header
+instant-hack.io: could not connect to host
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
+integraelchen.de: could not connect to host
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
-intelliance.eu: could not connect to host
+intelliance.eu: did not receive HSTS header
+interabbit.com: could not connect to host
interboursegeneva.ch: did not receive HSTS header
-interference.io: could not connect to host
+interchanges.io: max-age too low: 0
+intercom.com: did not receive HSTS header
+intercom.io: did not receive HSTS header
+interference.io: 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
intergenx.org.uk: could not connect to host
interhosts.co.za: could not connect to host
interim-cto.de: could not connect to host
-interiorprofesional.com.ar: max-age too low: 604800
+interiorcheapo.com: could not connect to host
+interiortradingco.com.au: could not connect to host
interleucina.org: did not receive HSTS header
-interlocal.co.uk: could not connect to host
+interlocal.co.uk: did not receive HSTS header
interlun.com: could not connect to host
intermezzo-emmerich.de: did not receive HSTS header
intermezzo-emmerich.nl: did not receive HSTS header
+internacao.com: did not receive HSTS header
internaldh.com: could not connect to host
-internet-aukcion.info: could not connect to host
-internet-pornografie.de: did not receive HSTS header
+internationalschoolnewyork.com: could not connect to host
+internaut.co.za: 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
internetdentalalliance.com: did not receive HSTS header
internetradiocharts.de: did not receive HSTS header
-internetstaff.com: could not connect to host
internshipandwork.com: did not receive HSTS header
internshipandwork.ru: did not receive HSTS header
interociter-enterprises.com: could not connect to host
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
-intocities.de: did not receive HSTS header
+intracom.com: did not receive HSTS header
intranetsec.fr: could not connect to host
+intreaba.xyz: could not connect to host
+intrigue3d.com: could not connect to host
+introverted.ninja: did not receive HSTS header
introvertedtravel.space: max-age too low: 0
-intrp.net: did not receive HSTS header
-intune.life: could not connect to host
-intxt.net: could not connect to host
invenio.software: could not connect to host
+inventoryexpress.xyz: could not connect to host
inverselink.com: could not connect to host
investcountry.com: could not connect to host
investingdiary.cn: could not connect to host
investingtrader.net: could not connect to host
investnext.com: max-age too low: 43200
+investorloanshub.com: could not connect to host
invictusmc.uk: could not connect to host
invinsec.cloud: did not receive HSTS header
invinsec.com: max-age too low: 86400
+invis.net: could not connect to host
+invitation-factory.tk: could not connect to host
invite24.pro: could not connect to host
invuelto.com: did not receive HSTS header
+iodev.nl: could not connect to host
iodice.org: did not receive HSTS header
iodu.re: could not connect to host
+ioerror.us: did not receive HSTS header
ioiart.eu: could not connect to host
iolife.dk: could not connect to host
ionas-law.ro: did not receive HSTS header
@@ -6652,24 +8796,26 @@ ionc.ca: could not connect to host
ionote.me: could not connect to host
iop.intuit.com: max-age too low: 86400
iora.fr: could not connect to host
-iosmods.com: did not receive HSTS header
-iossifovlab.com: could not connect to host
iostips.ru: could not connect to host
+iotfen.com: could not connect to host
iotsms.io: could not connect to host
ip-life.net: did not receive HSTS header
ip.or.at: could not connect to host
ip6.im: did not receive HSTS header
+ipadportfolioapp.com: did not receive HSTS header
+ipawind.com: did not receive HSTS header
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
+iphoneportfolioapp.com: did not receive HSTS header
+ipid.me: could not connect to host
+iplabs.de: did not receive HSTS header
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: did not receive HSTS header
-ipop.gr: did not receive HSTS header
+ipo-times.com: could not connect to host
iprice.co.id: did not receive HSTS header
iprice.hk: did not receive HSTS header
iprice.my: did not receive HSTS header
@@ -6677,33 +8823,41 @@ 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: could not connect to host
ipsilon-project.org: did not receive HSTS header
+ipstoragesolutions.com: did not receive HSTS header
iptel.ro: could not connect to host
+iptvmakedonija.mk: did not receive HSTS header
ipuservicedesign.com: could not connect to host
ipv6.watch: did not receive HSTS header
ipv6cloud.club: could not connect to host
+ipv6demo.de: could not connect to host
ipv6only.network: could not connect to host
+ipv8.net: could not connect to host
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-geo.com: could not connect to host
+iran-poll.org: max-age too low: 0
+irandp.net: could not connect to host
iranianlawschool.com: could not connect to host
iraqidinar.org: did not receive HSTS header
+irasandi.com: could not connect to host
irazimina.ru: did not receive HSTS header
irccloud.com: did not receive HSTS header
-ircmett.de: could not connect to host
-ireef.tv: could not connect to host
+ircmett.de: 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: did not receive HSTS header
+irinkeby.nu: did not receive HSTS header
+irische-segenswuensche.info: could not connect to host
irisdina.de: could not connect to host
-irishmusic.nu: could not connect to host
+irishmusic.nu: did not receive HSTS header
irland.guide: could not connect to host
-irmag.ru: did not receive HSTS header
irmtrudjurke.de: did not receive HSTS header
irodorinet.com: max-age too low: 0
-iron-guard.net: could not connect to host
+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
@@ -6718,73 +8872,99 @@ isaackabel.gq: could not connect to host
isaackabel.ml: could not connect to host
isaackabel.tk: could not connect to host
ischool.co.jp: did not receive HSTS header
+isdecolaop.nl: could not connect to host
isdf.me: could not connect to host
isdown.cz: could not connect to host
-isef-eg.com: 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
+isfff.com: could not connect to host
isfriday.com: could not connect to host
ishadowsocks.ltd: could not connect to host
+ishet.al: max-age too low: 0
ishillaryclintoninprisonyet.com: could not connect to host
-ishome.org: could not connect to host
+isidom.fr: did not receive HSTS header
isipulsa.web.id: did not receive HSTS header
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
+iskkk.com: could not connect to host
+iskkk.net: could not connect to host
islandinthenet.com: did not receive HSTS header
+islandlakeil.gov: could not connect to host
islandoilsupply.com: max-age too low: 300
islandpumpandtank.com: did not receive HSTS header
islandzero.net: could not connect to host
+islazia.fr: did not receive HSTS header
isntall.us: did not receive HSTS header
-isocom.eu: could not connect to host
+isocom.eu: did not receive HSTS header
isoface33.fr: did not receive HSTS header
isogen5.com: could not connect to host
-isognattori.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
-issue.watch: could not connect to host
-istanbul.systems: did not receive HSTS header
istanbultravelguide.info: could not connect to host
istaspirtslietas.lv: did not receive HSTS header
-istgame.com: could not connect to host
+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
+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
itad.top: could not connect to host
+itblog.pp.ua: did not receive HSTS header
+itbrief.co.nz: did not receive HSTS header
+itbrief.com.au: did not receive HSTS header
itchimes.com: did not receive HSTS header
-itechgeek.com: max-age too low: 0
+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: did not receive HSTS header
items.lv: did not receive HSTS header
itemton.com: could not connect to host
+iterasoft.de: did not receive HSTS header
itfaq.nl: did not receive HSTS header
-itfensi.net: max-age too low: 6307200
+itfensi.net: could not connect to host
+itforcc.com: did not receive HSTS header
+ithakama.com: could not connect to host
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: 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
+its4living.com: could not connect to host
itsadog.co.uk: did not receive HSTS header
itsagadget.com: did not receive HSTS header
itsamurai.ru: max-age too low: 2592000
itsatrap.nl: could not connect to host
itsecurityassurance.pw: could not connect to host
itsg-faq.de: could not connect to host
+itshka.rv.ua: max-age too low: 604800
itshost.ru: could not connect to host
itsmejohn.org: could not connect to host
-itspawned.com: max-age too low: 200
+itspartytimesweetinflations.com: could not connect to host
itsupport-luzern.ch: could not connect to host
+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
@@ -6795,8 +8975,9 @@ 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
+ivoryonsunset.com: could not connect to host
+ivxv.ee: could not connect to host
ivyshop.com.br: could not connect to host
-ivystech.com: could not connect to host
iwannarefill.com: could not connect to host
iwex.swiss: could not connect to host
iwilcox.me.uk: could not connect to host
@@ -6806,43 +8987,59 @@ 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
+izevg.ru: could not connect to host
+izhaojie.com: could not connect to host
izolight.ch: could not connect to host
izonemart.com: did not receive HSTS header
izoox.com: did not receive HSTS header
+izxxs.com: could not connect to host
+izxxs.net: could not connect to host
+izxzw.net: could not connect to host
izzzorgconcerten.nl: could not connect to host
j-eck.nl: did not receive HSTS header
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: did not receive HSTS header
ja-publications.com: did not receive HSTS header
jaan.su: could not connect to host
-jaaxypro.com: did not receive HSTS header
-jabbas.eu: could not connect to host
+jaaxypro.com: could not connect to host
+jability.ovh: could not connect to host
jackalworks.com: could not connect to host
jackdoan.com: did not receive HSTS header
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: could not connect to host
-jacobsenarquitetura.com: max-age too low: 5184000
+jaco.by: could not connect to host
+jacobparry.ca: did not receive HSTS header
+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
-jakewalker.xyz: could not connect to host
+jaion.tech: could not connect to host
+jak-na-les.cz: could not connect to host
+jakenbake.com: could not connect to host
+jakeslab.tech: could not connect to host
+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
+jakubarbet.eu: could not connect to host
jamanji.com.ng: could not connect to host
+jamaware.org: could not connect to host
+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
+jamesandanneke.com: 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
jamesbywater.com: could not connect to host
@@ -6850,7 +9047,7 @@ jamesbywater.me: could not connect to host
jamesbywater.me.uk: could not connect to host
jamesbywater.uk: could not connect to host
jamesconroyfinn.com: did not receive HSTS header
-jamescostian.com: did not receive HSTS header
+jamescostian.com: max-age too low: 0
jamesdoell.com: could not connect to host
jamesdoylephoto.com: did not receive HSTS header
jamesevans.is: could not connect to host
@@ -6858,16 +9055,18 @@ 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: 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: did not receive HSTS header
+jami.am: max-age too low: 0
jamourtney.com: could not connect to host
jamyeprice.com: did not receive HSTS header
jan-cermak.cz: did not receive HSTS header
jan-daniels.de: did not receive HSTS header
jan27.org: did not receive HSTS header
-janada.cz: could not connect to host
janario.me: could not connect to host
+janebondsurety.com: did not receive HSTS header
jangho.me: could not connect to host
jangocloud.tk: could not connect to host
janheidler.dynv6.net: could not connect to host
@@ -6877,48 +9076,61 @@ 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
+janssenwigman.nl: did not receive HSTS header
janus-engineering.de: did not receive HSTS header
janverlaan.nl: did not receive HSTS header
jap-nope.de: did not receive HSTS header
-japan4you.org: could not connect to host
-japanbaths.com: could not connect to host
-japaneseemoticons.org: did not receive HSTS header
+japan4you.org: did not receive HSTS header
+japanbaths.com: did not receive HSTS header
+japaneseemoticons.org: could not connect to host
japanesenames.biz: did not receive HSTS header
-japangids.nl: could not connect to host
-japanwide.net: could not connect to host
+japangids.nl: max-age too low: 86400
+japansm.com: could not connect to host
+japanwide.net: did not receive HSTS header
japaripark.com: could not connect to host
+jape.today: could not connect to host
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
-jarivisual.com: did not receive HSTS header
+jaredfraser.com: could not connect to host
+jarivisual.com: could not connect to host
+jarl.ninja: could not connect to host
jarnail.ca: could not connect to host
-jaroslavc.eu: did not receive HSTS header
+jaroslavc.eu: 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
jartza.org: could not connect to host
+jasl.works: 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: max-age too low: 60
+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
+jasonsansone.com: could not connect to host
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
javachip.win: could not connect to host
-javan.ga: could not connect to host
+javan.ga: did not receive HSTS header
javascriptlab.fr: could not connect to host
javelinsms.com: could not connect to host
+javfree.me: could not connect to host
javiermixdjs.com: did not receive HSTS header
+javik.net: did not receive HSTS header
javilacat.info: could not connect to host
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
jayharris.ca: could not connect to host
-jaylen.com.ar: did not receive HSTS header
+jaylen.com.ar: could not connect to host
jayna.design: did not receive HSTS header
jayschulman.com: did not receive HSTS header
jayscoaching.com: could not connect to host
@@ -6927,10 +9139,11 @@ 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
+jcaicedo.tk: could not connect to host
jccars-occasions.be: could not connect to host
jcch.de: could not connect to host
jccrew.org: could not connect to host
@@ -6945,45 +9158,60 @@ jcyz.cf: could not connect to host
jdav-leipzig.de: could not connect to host
jdcdirectsales.com.ph: could not connect to host
jdfk.net: could not connect to host
-jdgonzalez95.com: did not receive HSTS header
+jdgonzalez95.com: could not connect to host
jdh8.org: did not receive HSTS header
-jdsf.tk: did not receive HSTS header
+jdsf.tk: could not connect to host
jean-remy.ch: could not connect to host
jebengotai.com: did not receive HSTS header
-jecho.cn: could not connect to host
-jeff.is: did not receive HSTS header
+jedayoshi.me: could not connect to host
+jedayoshi.tk: could not connect to host
+jeepmafia.com: did not receive HSTS header
+jeff.forsale: did not receive HSTS header
+jeff.is: could not connect to host
jeff393.com: could not connect to host
-jeffanderson.me: could not connect to host
+jeffanderson.me: did not receive HSTS header
jeffersonregan.org: could not connect to host
jeffhuxley.com: could not connect to host
+jeffmcneill.com: did not receive HSTS header
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
+jelewa.de: did not receive HSTS header
jellow.nl: did not receive HSTS header
jemoticons.com: did not receive HSTS header
+jena.space: could not connect to host
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
jens-prangenberg.de: did not receive HSTS header
jens.hk: could not connect to host
jensenbanden.no: could not connect to host
jenssen.org: did not receive HSTS header
+jeparamedia.com: did not receive HSTS header
jeremye77.com: did not receive HSTS header
jeremymade.com: did not receive HSTS header
jeremywagner.me: did not receive HSTS header
jermann.biz: did not receive HSTS header
+jeroenensanne.wedding: could not connect to host
+jeroensangers.com: 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
jesorsenville.com: did not receive HSTS header
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
+jetapi.org: could not connect to host
+jetbrains.pw: could not connect to host
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
-jettravel.com.mt: did not receive HSTS header
+jettlarue.com: could not connect to host
+jettravel.com.mt: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jettshome.org: could not connect to host
jetzt-elektromobil.de: could not connect to host
jevisite.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]
@@ -6991,7 +9219,7 @@ 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
-jfnllc.com: did not receive HSTS header
+jfnllc.com: could not connect to host
jfx.space: did not receive HSTS header
jh-media.eu: could not connect to host
jhburton.co.uk: could not connect to host
@@ -6999,105 +9227,129 @@ 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
+jiacl.com: could not connect to host
jiaidu.com: could not connect to host
jiangzequn.com: could not connect to host
-jiangzm.com: did not receive HSTS header
+jiangzm.com: could not connect to host
jianjiantv.com: could not connect to host
jiaqiang.vip: could not connect to host
+jiazhao.ga: could not connect to host
jichi.me: could not connect to host
jie.dance: could not connect to host
jief.me: could not connect to host
jigsawdevelopments.com: could not connect to host
jiid.ga: could not connect to host
-jikken.de: could not connect to host
+jikegu.com: could not connect to host
+jikken.de: did not receive HSTS header
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
+jimmycn.com: 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
-jinshavip.com: could not connect to host
jiosongs.com: did not receive HSTS header
jira.com: did not receive HSTS header
jirav.io: could not connect to host
-jiripudil.cz: 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
-jixun.moe: 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
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
+jkest.cc: could not connect to host
jkng.eu: could not connect to host
jko.works: could not connect to host
-jkyuan.tk: did not receive HSTS header
+jkuvw.xyz: could not connect to host
+jkyuan.tk: could not connect to host
+jldp.org: did not receive HSTS header
jlhmedia.com: did not receive HSTS header
+jlot.org: 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
-jmvbmx.ch: did not receive HSTS header
+jmotion.co.uk: did not receive HSTS header
+jmpmotorsport.co.uk: did not receive HSTS header
+jmvbmx.ch: could not connect to host
+jmvdigital.com: did not receive HSTS header
jn1.me: did not receive HSTS header
-joacimeldre.com: did not receive HSTS header
+jncde.de: did not receive HSTS header
+jncie.de: did not receive HSTS header
+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
-job.biz.tr: 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
jobmedic.com: could not connect to host
+jobmob.co.il: did not receive HSTS header
jobshq.com: did not receive HSTS header
+jobss.co.uk: could not connect to host
jobtestprep.de: max-age too low: 0
jobtestprep.dk: max-age too low: 0
jobtestprep.fr: max-age too low: 0
-jobtestprep.it: could not connect to host
+jobtestprep.it: did not receive HSTS header
jobtestprep.nl: max-age too low: 0
jobtestprep.se: max-age too low: 0
jodel.ninja: could not connect to host
+jodyshop.com: did not receive HSTS header
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
-joellombardo.com: could not connect to host
joerg-wellpott.de: did not receive HSTS header
joetyson.io: could not connect to host
+joeyfelix.com: could not connect to host
+joeyvilaro.com: 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
-johannesen.tv: could not connect to host
+johannes-sprink.de: did not receive HSTS header
johnbrownphotography.ch: did not receive HSTS header
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
+johngo.tk: 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
-johnsonho.net: 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
+jonathancarter.org: could not connect to host
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
+jonferwerda.net: 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: could not connect to host
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
jordanstrustcompany.cn: could not connect to host
jordanstrustcompany.ru: could not connect to host
@@ -7108,50 +9360,66 @@ 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
+jose.eti.br: did not receive HSTS header
joseaveleira.es: did not receive HSTS header
josecage.com: could not connect to host
-josefottosson.se: max-age too low: 2592000
-josephre.es: did not receive HSTS header
+josegerber.ch: 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
-journalof.tech: could not connect to host
+jouetspetitechanson.com: could not connect to host
+journalof.tech: max-age too low: 86400
+joworld.net: could not connect to host
joyceclerkx.com: could not connect to host
+joyceseamone.com: did not receive HSTS header
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
-jpod.cc: could not connect to host
+jpgangbang.com: could not connect to host
jproxx.com: did not receive HSTS header
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
+jrvar.com: could not connect to host
+js3311.com: could not connect to host
+js88.sg: could not connect to host
+js93029.com: 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
+jsevilleja.org: 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: could not connect to host
jsvr.tk: could not connect to host
-ju1ro.de: did not receive HSTS header
+jsxc.ch: could not connect to host
+jtcat.com: could not connect to host
+jtcjewelry.com: could not connect to host
+ju1ro.de: could not connect to host
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
+jubee.nl: 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]
+jucktehkeinen.de: 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
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
@@ -7160,6 +9428,8 @@ julianwallmeroth.de: could not connect to host
juliaoantiguidades.com.br: could not connect to host
juliawebber.co.za: could not connect to host
julido.de: did not receive HSTS header
+julio.jamil.nom.br: could not connect to host
+juliohernandezgt.com: could not connect to host
jumba.com.au: did not receive HSTS header
jumbopan.com: could not connect to host
jumbox.xyz: could not connect to host
@@ -7169,163 +9439,202 @@ jumping-duck.com: could not connect to host
jumpman-iphone-design.de: could not connect to host
junaos.com: did not receive HSTS header
junaos.xyz: did not receive HSTS header
+junctioncitywisconsin.gov: could not connect to host
jundimax.com.br: could not connect to host
junge-selbsthilfe.info: could not connect to host
+jungleculture.co.za: did not receive HSTS header
junglegoat.xyz: did not receive HSTS header
+junias-fenske.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]
juniwalk.cz: could not connect to host
junjung.me: could not connect to host
+junoaroma.com: could not connect to host
junqtion.com: could not connect to host
-jupp0r.de: did not receive HSTS header
-juridiqueo.com: could not connect to host
+jupp0r.de: could not connect to host
+juridiqueo.com: did not receive HSTS header
juristas.com.br: did not receive HSTS header
-juristeo.com: could not connect to host
+juristeo.com: did not receive HSTS header
jurke.com: did not receive HSTS header
jurko.cz: 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
-justanothercompany.name: could not connect to host
+justbelieverecovery.com: did not receive HSTS header
justiceforfathers.com: did not receive HSTS header
-justiceo.org: could not connect to host
-justin-tech.com: could not connect to host
+justiceo.org: did not receive HSTS header
+justinellingwood.com: could not connect to host
+justinharrison.ca: 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
justudin.com: did not receive HSTS header
justwood.cz: did not receive HSTS header
justzz.xyz: could not connect to host
jutella.de: did not receive HSTS header
juul.xyz: could not connect to host
+juventusclublugano.ch: did not receive HSTS header
juventusmania1897.com: could not connect to host
juwairen.cn: could not connect to host
+juzgalo.com: did not receive HSTS header
+jva-wuerzburg.de: could not connect to host
jvn.com: did not receive HSTS header
-jvoice.net: could not connect to host
+jvoice.net: did not receive HSTS header
+jwallet.cc: did not receive HSTS header
jwilsson.me: could not connect to host
jwolt-lx.com: could not connect to host
-jxm.in: could not connect to host
jysperm.me: did not receive HSTS header
+jzachpearson.com: max-age too low: 0
+jzcapital.co: could not connect to host
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
-k38.cc: max-age too low: 3600
+k3508.com: could not connect to host
+k38.cc: could not connect to host
ka-clan.com: could not connect to host
kaanduman.com: could not connect to host
-kaasbesteld.nl: did not receive HSTS header
kaasbijwijn.nl: did not receive HSTS header
-kabinapp.com: could not connect to host
+kaashosting.nl: did not receive HSTS header
+kabarlinux.id: could not connect to host
+kabinapp.com: did not receive HSTS header
kabuabc.com: 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
+kai.cool: could not connect to host
+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
+kakoo-media.nl: could not connect to host
+kakoo.nl: did not receive HSTS header
+kakoomedia.nl: could not connect to host
+kakuto.me: 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
kalender.goip.de: could not connect to host
kalilinux.tech: could not connect to host
kaloix.de: could not connect to host
-kamagra-comprare.it: max-age too low: 600
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
+kampunginggris-ue.com: could not connect to host
kanada.guide: could not connect to host
-kanagawachuo-hospital.jp: did not receive HSTS header
+kanagawachuo-hospital.jp: could not connect to host
kanar.nl: could not connect to host
kancolle.me: could not connect to host
kandalife.com: 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
kaniklani.co.za: did not receive HSTS header
-kanmitao.com: could not connect to host
+kanmitao.com: did not receive HSTS header
+kanotijd.nl: could not connect to host
kanr.in: could not connect to host
kanscooking.org: could not connect to host
kantorad.io: could not connect to host
-kanuvu.de: could not connect to host
+kantv1.com: 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
+kaplatzis.com: could not connect to host
+kapo.info: did not receive HSTS header
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
+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
+karenledger.ca: did not receive HSTS header
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
karuneshjohri.com: could not connect to host
+kasadara.com: did not receive HSTS header
kashdash.ca: could not connect to host
kashis.com.au: max-age too low: 0
kat.al: could not connect to host
katalogakci.cz: did not receive HSTS header
-kateduggan.net: could not connect to host
+katalogbutikker.dk: 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
katoju.co.jp: could not connect to host
katproxy.al: could not connect to host
-katproxy.online: could not connect to host
+katproxy.online: did not receive HSTS header
katproxy.site: could not connect to host
katproxy.tech: could not connect to host
katproxy.top: could not connect to host
katrinjanke.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]
-kattenfun.be: did not receive HSTS header
-kattenfun.nl: did not receive HSTS header
+kattenfun.be: could not connect to host
+kattenfun.nl: could not connect to host
+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
+kaverti.com: did not receive HSTS header
+kavik.no: could not connect to host
kavinvin.me: could not connect to host
-kawaiii.link: did not receive HSTS header
+kawaii.io: could not connect to host
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
-kayscs.com: could not connect to host
+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
+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
kdm-online.de: did not receive HSTS header
kearney.io: could not connect to host
+keditor.biz: could not connect to host
keechain.io: could not connect to host
keeley.gq: could not connect to host
keeley.ml: could not connect to host
keeleysam.me: could not connect to host
-keepaa.com: could not connect to host
+keematdekho.com: could not connect to host
+keepaa.com: did not receive HSTS header
keepassa.co: could not connect to host
keepclean.me: could not connect to host
keepcoalintheground.org: could not connect to host
@@ -7334,110 +9643,135 @@ keepmanager.org: could not connect to host
keeprubyweird.com: did not receive HSTS header
kefaloniatoday.com: did not receive HSTS header
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
kekehouse.net: could not connect to host
kellyandantony.com: could not connect to host
kelm.me: could not connect to host
+kelmarsafety.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]
+kelp.agency: did not receive HSTS header
ken-electric.com.br: could not connect to host
+kenbillionsyuan.tk: could not connect to host
kenc.dk: max-age too low: 2592000
kenchristensen.dk: max-age too low: 2592000
kenderbeton-magyarorszag.hu: did not receive HSTS header
kenderbetonmagyarorszag.hu: did not receive HSTS header
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
-kennynet.co.uk: could not connect to host
+kennedy.ie: could not connect to host
kensparkesphotography.com: did not receive HSTS header
kentacademiestrust.org.uk: did not receive HSTS header
-kenyons.info: could not connect to host
kepler-seminar.de: did not receive HSTS header
kerangalam.com: did not receive HSTS header
+kerem.xyz: could not connect to host
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
kernelmode.io: did not receive HSTS header
kernl.us: did not receive HSTS header
+kersmexico.com: could not connect to host
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
-kevinbowers.me: could not connect to host
kevindekoninck.com: could not connect to host
-kevinpirnie.com: did not receive HSTS header
+kevinheslinphoto.com: did not receive HSTS header
+kevinmoreland.com: could not connect to host
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
+keypersonins.com: did not receive HSTS header
keyserver.sexy: could not connect to host
kfbrussels.be: could not connect to host
+kfm.ink: did not receive HSTS header
kg-rating.com: could not connect to host
-kgb.us: could not connect to host
+kgb.us: did not receive HSTS header
kgregorczyk.pl: could not connect to host
kgxtech.com: max-age too low: 2592000
khaganat.net: did not receive HSTS header
+khmath.com: did not receive HSTS header
khosla.uk: could not connect to host
ki-on.net: did not receive HSTS header
-kiaka.co: did not receive HSTS header
+kiaka.co: could not connect to host
kialo.com: did not receive HSTS header
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
+kiddies.academy: did not receive HSTS header
+kiddieschristianacademy.co.za: did not receive HSTS header
kidkat.cn: could not connect to host
-kiehls.pt: could not connect to host
+kidswallstickers.com.au: could not connect to host
+kiedys.net: 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]
+kieran.ie: could not connect to host
+kieranjones.uk: could not connect to host
kieranweightman.me: could not connect to host
+kiesuwcursus.nl: did not receive HSTS header
kievradio.com: could not connect to host
+kikimilyatacado.com.br: could not connect to host
kikuzuki.org: could not connect to host
kiladera.be: did not receive HSTS header
+kilerd.me: could not connect to host
kill-paff.com: did not receive HSTS header
-kilobyte22.de: did not receive HSTS header
-kimana.pe: could not connect to host
+kimana.pe: did not receive HSTS header
kimberg.co.uk: did not receive HSTS header
kimberlybeautysoapcompany.com: did not receive HSTS header
+kimo.se: did not receive HSTS header
kimpost.org: could not connect to host
kimscrazeecastles.co.uk: did not receive HSTS header
-kin.life: could not connect to host
kina.guide: could not connect to host
kinderbuecher-kostenlos.de: did not receive HSTS header
-kinderjugendfreizeitverein.de: could not connect to host
kinderly.co.uk: did not receive HSTS header
kinderopvangengeltjes.nl: did not receive HSTS header
+kinderopvangzevenbergen.nl: did not receive HSTS header
kinderwagen-test24.de: could not connect to host
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
kingpincages.com: could not connect to host
kingqueen.org.uk: did not receive HSTS header
kinkdr.com: could not connect to host
-kinmunity.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
kinow.com: did not receive HSTS header
kinsmenhomelottery.com: did not receive HSTS header
-kintawifi.com: could not connect to host
kintoandar.com: max-age too low: 0
-kintrip.com: did not receive HSTS header
+kintrip.com: could not connect to host
kintzingerfilm.de: did not receive HSTS header
kionetworks.com: did not receive HSTS header
kipin.fr: did not receive HSTS header
kipira.com: could not connect to host
+kipriakipita.gr: 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
+kirillpokrovsky.de: 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
-kirslis.com: could not connect to host
+kis-toitoidixi.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: could not connect to host
+kisskiss.ch: could not connect to host
+kissoft.ro: could not connect to host
+kisstube.tv: 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]
kita.id: did not receive HSTS header
@@ -7446,94 +9780,132 @@ kitakemon.com: could not connect to host
kitashop.com.br: could not connect to host
kitatec.com.br: could not connect to host
kitchenaccessories.pro: did not receive HSTS header
+kitchenalley.ca: max-age too low: 86400
+kitchenalley.com: max-age too low: 86400
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
kitsostech.com: could not connect to host
kitsta.com: could not connect to host
+kiwi.global: could not connect to host
+kiwico.com: max-age too low: 0
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
-kj1396.net: could not connect to host
+kj1391.com: did not receive HSTS header
+kj1396.net: did not receive HSTS header
+kj1397.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
+kjg-ummeln.de: did not receive HSTS header
kjoglum.me: could not connect to host
-kkull.tv: did not receive HSTS header
-kkzxak47.com: could not connect to host
+kkomputer.net: did not receive HSTS header
+kkull.tv: could not connect to host
+kkws.co: could not connect to host
+klantenadvies.nl: did not receive HSTS header
klas.or.id: did not receive HSTS header
klatschreime.de: did not receive HSTS header
klausimas.lt: did not receive HSTS header
klauwd.com: could not connect to host
klaxn.org: could not connect to host
+klean-ritekc.com: did not receive HSTS header
kleberstoff.xyz: could not connect to host
+kleding.website: did not receive HSTS header
kleertjesvoordelig.nl: could not connect to host
-kleidertauschpartys.de: did not receive HSTS header
+kleidertauschpartys.de: could not connect to host
kleinerarchitekturfuehrer.de: could not connect to host
kleinholding.com: could not connect to host
+kleinserienproduktion.com: could not connect to host
klempnershop.eu: did not receive HSTS header
-kleppe.co: could not connect to host
kletterkater.com: did not receive HSTS header
klicktojob.de: could not connect to host
klingeletest.de: could not connect to host
klingsundet.no: did not receive HSTS header
-kloentrup.de: did not receive HSTS header
+klinkerstreet.com.ua: did not receive HSTS header
+kliqsd.com: could not connect to host
+kloentrup.de: max-age too low: 604800
+klotz-labs.com: max-age too low: 7889238
klunkergarten.org: could not connect to host
-klva.cz: could not connect to host
-kmdev.me: could not connect to host
+klustekeningen.nl: did not receive HSTS header
+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
+kneipi.de: did not receive HSTS header
kngk-azs.ru: could not connect to host
+kniga.market: could not connect to host
knigadel.com: did not receive HSTS header
-knightsblog.de: could not connect to host
+knightsbridgegroup.org: could not connect to host
knightsweep.com: could not connect to host
-knnet.ch: could not connect to host
+kniwweler.com: 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
+koboldcraft.ch: could not connect to host
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
+koehn.com: could not connect to host
+koelbli.ch: could not connect to host
koen.io: max-age too low: 86400
-koenleemans.nl: did not receive HSTS header
-koenrouwhorst.nl: did not receive HSTS header
+koenen-bau.de: 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
-kojipkgs.fedoraproject.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]
kokenmetaanbiedingen.nl: could not connect to host
+kokoiroworks.com: could not connect to host
kola-entertainments.de: did not receive HSTS header
+kolania.com: could not connect to host
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
+kombidorango.com.br: did not receive HSTS header
komikito.com: could not connect to host
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
+konings.it: could not connect to host
+konkai.store: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
konkurs.ba: could not connect to host
kontakthuman.hu: did not receive HSTS header
kontaxis.network: could not connect to host
+kontrolapovinnosti.cz: did not receive HSTS header
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
+koretech.nl: could not connect to host
kori.ml: did not receive HSTS header
koriyoukai.net: did not receive HSTS header
kornersafe.com: did not receive HSTS header
korni22.org: could not connect to host
-korsanparti.org: could not connect to host
+korsanparti.org: did not receive HSTS header
kostuumstore.nl: could not connect to host
kostya.net: did not receive HSTS header
+kotakoo.id: could not connect to host
+kotausaha.com: could not connect to host
+kotelezobiztositas.eu: did not receive HSTS header
+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
@@ -7541,111 +9913,135 @@ 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
+kovnsk.net: could not connect to host
+kovuthehusky.com: did not receive HSTS header
kozmik.co: could not connect to host
kpdyer.com: did not receive HSTS header
kpebetka.net: did not receive HSTS header
+kpmgpublications.ie: 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
kraigwalker.com: could not connect to host
+kraiwan.com: did not receive HSTS header
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: did not receive HSTS header
kravelindo-adventure.com: could not connect to host
-krayx.com: could not connect to host
+kraynik.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
kredietpaspoort.nl: could not connect to host
kredite.sale: could not connect to host
kredite24.de: did not receive HSTS header
-kreditkarte-fuer-backpacker.de: did not receive HSTS header
+kreditkarte-fuer-backpacker.de: could not connect to host
krestanskydarek.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]
kreza.de: could not connect to host
kriegskindernothilfe.de: could not connect to host
kriegt.es: did not receive HSTS header
-krist.club: could not connect to host
+krist.club: did not receive HSTS header
kristjanrang.eu: did not receive HSTS header
kristofferkoch.com: could not connect to host
-krizek.cc: did not receive HSTS header
+krizek.cc: could not connect to host
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
+kronaw.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]
+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
krunut.com: did not receive HSTS header
-kryha.io: could not connect to host
+kryha.io: did not receive HSTS header
krypteia.org: could not connect to host
-kryptomech.com: could not connect to host
-ksero.center: could not connect to host
+kryptomodkingz.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
+kspg.tv: could not connect to host
kstan.me: could not connect to host
kswcosmetics.com: could not connect to host
kswriter.com: could not connect to host
-kteen.info: 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
kuchenschock.de: did not receive HSTS header
kucheryavenkovn.ru: could not connect to host
kucom.it: did not receive HSTS header
-kuechenplan.online: could not connect to host
-kuehnel.org: max-age too low: 604800
+kuechenplan.online: did not receive HSTS header
kueulangtahunanak.net: could not connect to host
kuko-crews.org: could not connect to host
kultmobil.se: did not receive HSTS header
+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
+kundenerreichen.com: could not connect to host
+kundenerreichen.de: could not connect to host
+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]
+kunstfehler.at: did not receive HSTS header
+kunstschule-krabax.de: did not receive HSTS header
kuops.com: did not receive HSTS header
kupdokuchyne.cz: could not connect to host
kupelne-ptacek.sk: did not receive HSTS header
kuppingercole.com: did not receive HSTS header
kura.io: could not connect to host
+kurashino-mall.com: could not connect to host
kurehun.org: could not connect to host
kuro346.moe: could not connect to host
kuroisalva.xyz: did not receive HSTS header
+kurrende.nrw: could not connect to host
+kurrietv.nl: 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: could not connect to host
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: could not connect to host
+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
-kwok.tv: 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
-kyanite.co: could not connect to host
+kyanite.co: max-age too low: 7889238
kyberna.xyz: could not connect to host
kykoonn.net: did not receive HSTS header
-kylapps.com: could not connect to host
+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
+kylescastles.co.uk: did not receive HSTS header
+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
-kyoto-mic.com: could not connect to host
+kyonagashima.com: did not receive HSTS header
+kyoto-sake.net: could not connect to host
kyouko.nl: could not connect to host
kyujin-office.net: could not connect to host
kzjnet.com: could not connect to host
l-rickroll-i.pw: could not connect to host
l.me.uk: could not connect to host
l18.io: could not connect to host
+l3j.net: could not connect to host
la-flora-negra.de: could not connect to host
la-grande-jaugue.fr: did not receive HSTS header
-la-retraite-info.com: did not receive HSTS header
+la-retraite-info.com: could not connect to host
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: 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
laboiteanem.fr: could not connect to host
@@ -7664,70 +10060,91 @@ lacasseroy.com: could not connect to host
lacaverne.nl: could not connect to host
lacentral.com: did not receive HSTS header
lacledeslan.ninja: could not connect to host
-lacocinadelila.com: did not receive HSTS header
lacuevadechauvet.com: did not receive HSTS header
+ladadate.com: could not connect to host
+ladenzeile.de: did not receive HSTS header
+ladybugjam.com: could not connect to host
ladylikeit.com: could not connect to host
-ladylucks.co.uk: did not receive HSTS header
+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
+lafka.org: could not connect to host
laforetenchantee.ch: could not connect to host
+lafosseobservatoire.be: did not receive HSTS header
lafr4nc3.xyz: could not connect to host
+lag-gbr.gq: could not connect to host
lagalerievirtuelle.fr: did not receive HSTS header
lagier.xyz: 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
laisashop.com.br: could not connect to host
lajijonencadebarbera.com: could not connect to host
+lakatrop.com: could not connect to host
lakefrontlittleelm.com: did not receive HSTS header
-lakehavasuhouserentals.com: did not receive HSTS header
-lakhesis.net: could not connect to host
+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
+lamaisondelatransformationculturelle.com: did not receive HSTS header
lamaland.ru: did not receive HSTS header
+lamanwebinfo.com: did not receive HSTS header
lambda-complex.org: could not connect to host
lambdafive.co.uk: could not connect to host
+lamiaposta.email: did not receive HSTS header
lamomebijou.paris: did not receive HSTS header
lampl.info: could not connect to host
-lamtv.com.mx: did not receive HSTS header
-lan.biz.tr: could not connect to host
+lamtv.com.mx: could not connect to host
+lan2k.org: max-age too low: 86400
lanauzedesigns.com: did not receive HSTS header
lanboll.com: could not connect to host
lanbyte.se: could not connect to host
lancehoteis.com: did not receive HSTS header
lancehoteis.com.br: did not receive HSTS header
+lancork.net: could not connect to host
land-links.org: did not receive HSTS header
-landbetweenthelakes.us: did not receive HSTS header
landell.ml: could not connect to host
landgoedverkopen.nl: could not connect to host
landhuisverkopen.nl: could not connect to host
-landinfo.no: max-age too low: 300
landscape.canonical.com: max-age too low: 2592000
-landscapelightingthousandoaks.com: could not connect to host
landscapingmedic.com: did not receive HSTS header
langenbach.rocks: could not connect to host
langendorf-ernaehrung-training.de: could not connect to host
langendries.eu: did not receive HSTS header
langhun.me: could not connect to host
+lanhhuyet510.tk: could not connect to host
laniakean.com: did not receive HSTS header
+lannainnovation.com: did not receive HSTS header
lanonfire.com: could not connect to host
lansinoh.co.uk: did not receive HSTS header
-lanzainc.xyz: did not receive HSTS header
+lanzainc.xyz: could not connect to host
laobox.fr: could not connect to host
-laohei.org: could not connect to host
+laohei.org: did not receive HSTS header
laospage.com: did not receive HSTS header
+lapakus.com: could not connect to host
+laperfumista.es: 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
+larsgujord.no: did not receive HSTS header
+larsmerke.de: did not receive HSTS header
lasepiataca.com: did not receive HSTS header
lasercloud.ml: could not connect to host
+laserfuchs.de: did not receive HSTS header
lashstuff.com: did not receive HSTS header
lasnaves.com: did not receive HSTS header
-lasst-uns-beten.de: did not receive HSTS header
+lassesworld.com: could not connect to host
+lassesworld.se: could not connect to host
+lasst-uns-beten.de: could not connect to host
+latabaccheria.net: 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
lateliercantaldeco.fr: could not connect to host
latelierdekathy.com: could not connect to host
@@ -7736,43 +10153,57 @@ latg.com: max-age too low: 300
lathamlabs.com: could not connect to host
lathamlabs.net: could not connect to host
lathamlabs.org: could not connect to host
-latinred.com: could not connect to host
+lathen-wahn.de: did not receive HSTS header
+latiendadelbebefeliz.com: did not receive HSTS header
+latinphone.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
+latterdaybride.com: max-age too low: 7889238
latus.xyz: could not connect to host
laufcampus.com: did not receive HSTS header
+laufers.pl: did not receive HSTS header
laufseminare-laufreisen.com: did not receive HSTS header
lauftrainer-ausbildung.com: did not receive HSTS header
laurel4th.org: did not receive HSTS header
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
+lausitzer-widerstand.de: did not receive HSTS header
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
lazulu.com: could not connect to host
+lazurit.com: did not receive HSTS header
lazytux.de: did not receive HSTS header
lbarrios.es: could not connect to host
lbrlh.tk: could not connect to host
lbrli.tk: could not connect to host
lbrls.tk: could not connect to host
lbrt.xyz: could not connect to host
-lcbizsolutions.com: did not receive HSTS header
-lcgaj.com: could not connect to host
+lbsi-nordwest.de: did not receive HSTS header
+lcbizsolutions.com: could not connect to host
lclarkpdx.com: could not connect to host
lcti.biz: could not connect to host
+lcy.cat: could not connect to host
+lcybox.com: did not receive HSTS header
ldarby.me.uk: could not connect to host
+ldcraft.pw: could not connect to host
leadbook.ru: max-age too low: 604800
-leadership9.com: could not connect to host
+leadstart.org: did not receive HSTS header
leakedminecraft.net: could not connect to host
-leakreporter.net: could not connect to host
+leakreporter.net: did not receive HSTS header
leaks.directory: could not connect to host
leanclub.org: could not connect to host
leaodarodesia.com.br: could not connect to host
@@ -7782,16 +10213,25 @@ 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
lecourtier.fr: did not receive HSTS header
led-tl-wereld.nl: did not receive HSTS header
+led.xyz: could not connect to host
leddruckalarm.de: did not receive HSTS header
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
@@ -7800,24 +10240,34 @@ legal.farm: 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
+legendarycamera.com: did not receive HSTS header
legitaxi.com: did not receive HSTS header
+legumefederation.org: did not receive HSTS header
legymnase.eu: did not receive HSTS header
lehtinen.xyz: could not connect to host
-leifdreizler.com: 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
+leiyun.me: could not connect to host
+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
+lemonthy.ca: could not connect to host
lemp.io: did not receive HSTS header
lenders.direct: could not connect to host
+lenguajedeprogramacion.com: did not receive HSTS header
lengyelnyelvoktatas.hu: could not connect to host
lengyelul.hu: could not connect to host
lenkunz.me: could not connect to host
@@ -7830,30 +10280,40 @@ 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
+leodaniels.com: did not receive HSTS header
leon-jaekel.com: could not connect to host
leonardcamacho.me: could not connect to host
-leonmahler.consulting: did not receive HSTS header
+leonauto.de: could not connect to host
+leonhooijer.nl: could not connect to host
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: could not connect to host
+leprado.com: could not connect to host
+lerasenglish.com: max-age too low: 0
lerlivros.online: 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
+lesbofight.com: could not connect to host
lescomptoirsdepierrot.com: could not connect to host
+lesconteursavis.org: could not connect to host
+lescourtiersbordelais.com: did not receive HSTS header
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
+leshervelines.com: 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
+letempsdunefleur.be: could not connect to host
leter.io: did not receive HSTS header
+lethbridgecoffee.com: did not receive HSTS header
letitfly.me: could not connect to host
letraba.com: could not connect to host
letras.mus.br: did not receive HSTS header
@@ -7871,22 +10331,25 @@ levelum.com: did not receive HSTS header
levelupwear.com: max-age too low: 7889238
leveredge.net: could not connect to host
levert.ch: could not connect to host
+lewdgamer.com: could not connect to host
lewisjuggins.co.uk: did not receive HSTS header
lewisseals.com: could not connect to host
lexiphanic.co.uk: did not receive HSTS header
lexpartsofac.com: could not connect to host
+lexxyn.nl: did not receive HSTS header
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: max-age too low: 86400
+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
-lhalbert.xyz: could not connect to host
lhasaapso.com.br: 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
lhsj68.com: could not connect to host
@@ -7895,6 +10358,12 @@ 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
lianyexiuchang.in: could not connect to host
liaoshuma.com: could not connect to host
@@ -7904,7 +10373,7 @@ libanco.com: could not connect to host
libdeer.so: could not connect to host
libertas-tech.com: could not connect to host
libertins.date: did not receive HSTS header
-libertyrp.org: did not receive HSTS header
+libertyrp.org: could not connect to host
libfte.org: did not receive HSTS header
librairie-asie.com: did not receive HSTS header
library.linode.com: did not receive HSTS header
@@ -7912,81 +10381,99 @@ librechan.net: 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
+liceo.cn: did not receive HSTS header
liceserv.com: could not connect to host
lichess4545.com: did not receive HSTS header
lichess4545.tv: did not receive HSTS header
+lickmypussy.us: could not connect to host
lidl-selection.at: did not receive HSTS header
liduan.com: could not connect to host
-liduan.net: could not connect to host
liebach.me: did not receive HSTS header
liebestarot.at: did not receive HSTS header
+lieblingsholz.de: could not connect to host
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
-lifecoachproviders.com: did not receive HSTS header
+lifecoach.tw: did not receive HSTS header
+lifecoachproviders.com: could not connect to host
lifeguard.aecom.com: did not receive HSTS header
lifeinitsownway.com: could not connect to host
lifeinsurances.pro: could not connect to host
-lifeinsurances24.com: could not connect to host
+lifeinsurances24.com: did not receive HSTS header
lifemarque.co.uk: did not receive HSTS header
-lifeng.us: did not receive HSTS header
+lifenexto.com: could not connect to host
+lifeng.us: could not connect to host
lifeskillsdirect.com: did not receive HSTS header
+lifestyle7788.com: could not connect to host
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: did not receive HSTS header
+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
+likc.me: did not receive HSTS header
like.lgbt: 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
+lilapmedia.com: did not receive HSTS header
lilismartinis.com: could not connect to host
lillpopp.eu: did not receive HSTS header
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
+limeburst.net: did not receive HSTS header
limeyeti.com: could not connect to host
-limiteddata.co.uk: did not receive HSTS header
+limiteddata.co.uk: could not connect to host
+limitget.com: could not connect to host
+limn.me: could not connect to host
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
+lincolncountytn.gov: could not connect to host
+lincsbouncycastlehire.co.uk: did not receive HSTS header
lindberg.io: did not receive HSTS header
-lindholmen.club: could not connect to host
+lindnerhof.info: could not connect to host
lineauniformes.com.br: could not connect to host
-linext.cn: could not connect to host
+linernotekids.com: could not connect to host
+linext.cn: did not receive HSTS header
lingerie.net.br: did not receive HSTS header
lingerielovers.com.br: did not receive HSTS header
-lingerieonline.com.br: did not receive HSTS header
+lingerieonline.com.br: could not connect to host
lingolia.com: did not receive HSTS header
lingros-test.tk: could not connect to host
+lingting.vip: could not connect to host
linguaquote.com: did not receive HSTS header
-linguatrip.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]
linhaoyi.com: could not connect to host
link.ba: could not connect to host
linkage.ph: did not receive HSTS header
linkages.org: could not connect to host
+linkonaut.net: could not connect to host
linksanitizer.com: could not connect to host
linksextremist.at: could not connect to host
-linkthisstatus.ml: could not connect to host
+linkybos.com: did not receive HSTS header
linley.de: could not connect to host
linmi.cc: did not receive HSTS header
linno.me: could not connect to host
linorman1997.me: could not connect to host
-linpx.com: could not connect to host
+linostassi.net: could not connect to host
linux-admin-california.com: could not connect to host
linux-mint.cz: could not connect to host
+linux.army: could not connect to host
+linux.im: did not receive HSTS header
linux.sb: could not connect to host
linuxandstuff.de: could not connect to host
linuxcode.net: could not connect to host
@@ -7994,20 +10481,27 @@ 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
+linxmind.eu: could not connect to host
+lionhosting.nl: could not connect to host
lipo.lol: could not connect to host
liquid.solutions: did not receive HSTS header
liquidcomm.net: could not connect to host
+liquidwarp.net: could not connect to host
+liquimoly.market: did not receive HSTS header
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
listage.ovh: did not receive HSTS header
+listal.com: could not connect to host
lists.mayfirst.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]
litcc.com: could not connect to host
litcomphonors.com: could not connect to host
@@ -8017,61 +10511,80 @@ little.pw: could not connect to host
littledisney.ro: did not receive HSTS header
littlefreelibrary.org: did not receive HSTS header
littlelife.co.uk: did not receive HSTS header
-littleqiu.net: could not connect to host
+littleservice.cn: could not connect to host
liud.im: could not connect to host
liujunyang.com: did not receive HSTS header
liukang.tech: could not connect to host
-liul.in: could not connect to host
-liushuyu.tk: could not connect to host
+liushuyu.tk: did not receive HSTS header
liv3ly.com: did not receive HSTS header
livechatlady.info: did not receive HSTS header
livedemo.io: could not connect to host
livej.am: could not connect to host
+livejasmin.dk: could not connect to host
liverewrite.com: could not connect to host
+livesearch-fukuoka.com: did not receive HSTS header
liviababynet.com.br: could not connect to host
livinghealthywithchocolate.com: did not receive HSTS header
+livrariacoad.com.br: could not connect to host
livrariahugodesaovitor.com.br: could not connect to host
+livroseuniformes.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
-lkiserver.com: could not connect to host
-llamasweet.tech: could not connect to host
+liyinjia.com: did not receive HSTS header
+lizzythepooch.com: did not receive HSTS header
+ljason.cn: could not connect to host
+lkiserver.com: max-age too low: 43200
lll.st: could not connect to host
-llslb.com: could not connect to host
llvm.us: could not connect to host
+lmerza.com: did not receive HSTS header
lmrcouncil.gov: could not connect to host
ln.io: could not connect to host
lnbeauty.ru: max-age too low: 0
+lnmp.me: could not connect to host
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
+loansharkpro.com: could not connect to host
loansonline.today: could not connect to host
loanstreet.be: could not connect to host
lobin21.com: could not connect to host
lobosdomain.ddns.net: could not connect to host
+lobosdomain.hopto.org: 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: could not connect to host
localdrive.me: could not connect to host
+localhorst.xyz: could not connect to host
localnetwork.nz: could not connect to host
locationvoitureautriche.com: could not connect to host
+locationvoiturecorse.net: could not connect to host
locationvoiturefinlande.com: could not connect to host
-locationvoitureirlande.com: could not connect to host
+locationvoitureirlande.com: did not receive HSTS header
locationvoitureislande.com: could not connect to host
locationvoiturenorvege.com: could not connect to host
locationvoiturepaysbas.com: could not connect to host
locationvoituresuede.com: could not connect to host
locchat.com: could not connect to host
+locker.email: could not connect to host
locker3.com: could not connect to host
+lockify.com: could not connect to host
+locksmith-durbannorth.co.za: could not connect to host
+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: did not receive HSTS header
+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
@@ -8080,15 +10593,15 @@ 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.at: did not receive HSTS header
-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
+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
logicsale.it: did not receive HSTS header
-logimagine.com: could not connect to host
+logimagine.com: did not receive HSTS header
login.corp.google.com: max-age too low: 7776000 (error ignored - included regardless)
login.persona.org: could not connect to host
logingate.hu: could not connect to host
@@ -8096,56 +10609,77 @@ 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: did not receive HSTS header
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
+lojatema.com.br: could not connect to host
lojavalcapelli.com.br: could not connect to host
-lolhax.org: could not connect to host
-loli.bz: did not receive HSTS header
+lojavirtualfct.com.br: did not receive HSTS header
+loli.bz: could not connect to host
+loli.com: could not connect to host
loli.vip: could not connect to host
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
+lonasdigital.com: could not connect to host
lonbali.com: did not receive HSTS header
londoncalling.co: did not receive HSTS header
londonlanguageexchange.com: could not connect to host
+londonseedcentre.co.uk: could not connect to host
lonerwolf.com: did not receive HSTS header
+long139.com: could not connect to host
+long18.cc: could not connect to host
+long688.com: could not connect to host
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
looktothestars.org: did not receive HSTS header
lookupclose.com: did not receive HSTS header
-lookyman.net: could not connect to host
looneymooney.com: could not connect to host
loongsg.xyz: could not connect to host
-loopstart.org: could not connect to host
+loony.info: could not connect to host
+loopower.com: could not connect to host
loperetti.ch: could not connect to host
loqyu.co: could not connect to host
-lordgun.com: could not connect to host
+lordgun.com: did not receive HSTS header
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
lostg.com: did not receive HSTS header
lostinsecurity.com: could not connect to host
lostinweb.eu: could not connect to host
+lostwithdan.com: could not connect to host
+loteks.de: did not receive HSTS header
lothai.re: did not receive HSTS header
lothuytinhsi.com: could not connect to host
-lotl.ru: could not connect to host
lotos-ag.ch: did not receive HSTS header
lotsencafe.de: did not receive HSTS header
lottosonline.com: did not receive HSTS header
-lotuscloud.de: did not receive HSTS header
+lotuscloud.de: could not connect to host
lotuscloud.org: could not connect to host
louduniverse.net: did not receive HSTS header
louiewatch.com: could not connect to host
+louisvillevmug.info: did not receive HSTS header
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: max-age too low: 0
lovelifelovelive.com: could not connect to host
lovelive-anime.tk: could not connect to host
lovelive-anime.tokyo: could not connect to host
@@ -8154,55 +10688,75 @@ lovelyblogacademy.com: did not receive HSTS header
lovelychalets-peisey.com: did not receive HSTS header
lovelycorral.com: did not receive HSTS header
lovelyfriends.org: did not receive HSTS header
+lovelytimes.net: could not connect to host
lovemen.cc: did not receive HSTS header
lovemysafetynet.com: did not receive HSTS header
+loveread-ec.appspot.com: did not receive HSTS header
loveto.at: could not connect to host
+lovetravel360.com: could not connect to host
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
+lpcom.de: max-age too low: 172800
lpgram.ga: could not connect to host
-lpm-uk.com: could not connect to host
+lpm-uk.com: did not receive HSTS header
+lqs.me: could not connect to host
lrhsclubs.com: could not connect to host
+lrhstsa.com: could not connect to host
ls-a.org: did not receive HSTS header
ls-reallife.de: did not receive HSTS header
ls-rp.es: did not receive HSTS header
-lsky.cn: did not receive HSTS header
+lshiy.com: did not receive HSTS header
+lsky.cn: could not connect to host
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
-lsys.ac: could not connect to host
+lsws.de: could not connect to host
+lsy.cn: did not receive HSTS header
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
+lubomirkazakov.com: did not receive HSTS header
lubot.net: could not connect to host
+lucakrebs.de: could not connect to host
lucas-garte.com: did not receive HSTS header
+lucascantor.com: did not receive HSTS header
+lucascobb.com: did not receive HSTS header
lucascodes.com: could not connect to host
-lucasgaland.com: could not connect to host
lucaterzini.com: could not connect to host
-luchscheider.de: could not connect to host
+lucianoalbanes.com: did not receive HSTS header
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
-ludwig.click: did not receive HSTS header
-ludwigpro.net: could not connect to host
+ludwig.click: could not connect to host
lufthansaexperts.com: max-age too low: 2592000
+luganskservers.net: could not connect to host
+luginbuehl.eu: could not connect to host
luis-checa.com: could not connect to host
-luisgf.es: could not connect to host
+luisgf.es: did not receive HSTS header
luisv.me: could not connect to host
+luizkowalski.net: could not connect to host
luk.photo: could not connect to host
+lukas-schauer.de: did not receive HSTS header
+lukas.im: did not receive HSTS header
+lukas2511.de: did not receive HSTS header
+lukasschauer.de: did not receive HSTS header
lukasunger.cz: could not connect to host
lukasunger.net: could not connect to host
lukaszdolan.com: did not receive HSTS header
-lukasztkacz.com: did not receive HSTS header
+lukasztkacz.com: could not connect to host
+lukem.eu: could not connect to host
lukeng.me: could not connect to host
lukonet.com: did not receive HSTS header
luludapomerania.com: could not connect to host
@@ -8212,130 +10766,159 @@ lumd.me: could not connect to host
lumer.tech: could not connect to host
lumi.do: did not receive HSTS header
luminancy.com: could not connect to host
-lunapatch.com: did not receive HSTS header
+lunapatch.com: max-age too low: 7889238
lunarift.com: could not connect to host
lunarrift.net: could not connect to host
-lunchbunch.me: could not connect to host
luneta.nearbuysystems.com: could not connect to host
lunight.ml: could not connect to host
+lunix.io: did not receive HSTS header
luno.io: could not connect to host
-luody.info: could not connect to host
luoe.ml: could not connect to host
-luolikong.vip: could not connect to host
+luolikong.vip: did not receive HSTS header
luom.net: could not connect to host
luoxiao.im: could not connect to host
luoxingyu.ml: could not connect to host
luripump.se: could not connect to host
lusis.fr: did not receive HSTS header
lusis.net: could not connect to host
+lustige-zitate.com: did not receive HSTS header
lustrumxi.nl: could not connect to host
luther.fi: could not connect to host
-luxcraft.eng.br: could not connect to host
+luvplay.co.uk: could not connect to host
luxe-it.co.uk: could not connect to host
luxinmo.com: did not receive HSTS header
-luxonetwork.com: did not receive HSTS header
-luxus-russen.de: 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
lv5.top: could not connect to host
-lwl.moe: could not connect to host
+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: could not connect to host
+lydiagorstein.com: did not receive HSTS header
+lyfbits.com: could not connect to host
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
+lyoness.digital: could not connect to host
+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
-lyukaacom.ru: could not connect to host
+lz.sb: could not connect to host
lzahq.tech: did not receive HSTS header
-lzh.one: could not connect to host
lzkill.com: did not receive HSTS header
lzqii.cn: could not connect to host
-lzzr.me: did not receive HSTS header
+lzzr.me: could not connect to host
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-rickroll-v.pw: could not connect to host
+m-warrior.tk: could not connect to host
m.gparent.org: could not connect to host
m.nu: did not receive HSTS header
m0wef.uk: could not connect to host
m2tc.fr: could not connect to host
m3-gmbh.de: did not receive HSTS header
m4570.xyz: could not connect to host
-m4g.ru: could not connect to host
m82labs.com: did not receive HSTS header
ma-musique.fr: could not connect to host
+ma-plancha.ch: did not receive HSTS header
maarten.nyc: could not connect to host
maartenprovo.be: did not receive HSTS header
maartenterpstra.xyz: could not connect to host
-mac-torrents.me: did not receive HSTS header
-mac.biz.tr: could not connect to host
+mac-torrents.me: could not connect to host
+mac-world.pl: 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
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
+machijun.net: did not receive HSTS header
+machinelearningjavascript.com: could not connect to host
+maciespartyhire.co.uk: did not receive HSTS header
mack.space: could not connect to host
-macleodnc.com: could not connect to host
+mackey7.net: did not receive HSTS header
+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
+madbicicletas.com: could not connect to host
madcatdesign.de: did not receive HSTS header
maddin.ga: could not connect to host
+made-to-usb.com: did not receive HSTS header
madebyfalcon.co.uk: did not receive HSTS header
madebymagnitude.com: did not receive HSTS header
-madeinorder.com: did not receive HSTS header
+madeglobal.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
+mademoiselle-emma.fr: did not receive HSTS header
+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
+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
+maff.scot: 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
magia360.com: did not receive HSTS header
-magicball.co: could not connect to host
+magickmoments.co.uk: did not receive HSTS header
+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
mahfouzadedimeji.com: did not receive HSTS header
-mahraartisan.com: max-age too low: 7889238
-maidofhonorcleaning.net: max-age too low: 200
+mahraartisan.com: could not connect to host
maik-mahlow.de: could not connect to host
mail-settings.google.com: did not receive HSTS header (error ignored - included regardless)
mail.google.com: did not receive HSTS header (error ignored - included regardless)
mail4geek.com: did not receive HSTS header
mailchuck.com: could not connect to host
-maildragon.com: could not connect to host
+maildragon.com: did not receive HSTS header
mailgarant.nl: could not connect to host
mailhost.it: could not connect to host
-mailing-femprendedores.com: did not receive HSTS header
+mailing-femprendedores.com: could not connect to host
mailing-jbgg.com: could not connect to host
+maillink.store: could not connect to host
mailon.ga: could not connect to host
+mailpenny.com: could not connect to host
main-street-seo.com: did not receive HSTS header
main-unit.com: could not connect to host
+mainston.com: could not connect to host
maintainerheaven.ch: could not connect to host
maisalto.ind.br: could not connect to host
+maitrechaton.fr: did not receive HSTS header
maitriser-son-stress.com: could not connect to host
+majesticcolorado.com: did not receive HSTS header
+majkl.me: 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
makeit-so.de: could not connect to host
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
+makerstuff.net: could not connect to host
+makeshiftco.de: could not connect to host
makeuplove.nl: could not connect to host
-makeyourank.com: max-age too low: 200
+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
@@ -8345,16 +10928,19 @@ malerversand.de: did not receive HSTS header
malesbdsm.com: could not connect to host
malfait.nl: could not connect to host
malgraph.net: could not connect to host
-malibubeachrecoverycenter.com: did not receive HSTS header
+malibubeachrecoverycenter.com: could not connect to host
maljaars-media.nl: could not connect to host
+malkaso.com.ua: 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
-malwaretips.com: did not receive HSTS header
+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
+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
@@ -8363,97 +10949,127 @@ mammothmail.net: could not connect to host
mammothmail.org: could not connect to host
mammut.space: could not connect to host
mamochka.org.ua: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+mamout.xyz: could not connect to host
+manaboutahor.se: could not connect to host
manage.zenpayroll.com: did not receive HSTS header
manage4all.com: could not connect to host
manageall.de: could not connect to host
-managed-varnish.de: did not receive HSTS header
+managed-varnish.de: could not connect to host
manageforall.com: could not connect to host
manageforall.de: could not connect to host
+management-ethics.com: did not receive HSTS header
managemynetsuite.com: did not receive HSTS header
-manalu.cz: did not receive HSTS header
+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
-mangazuki.co: 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
manipulatedtme.com: could not connect to host
manitasicily.com: did not receive HSTS header
-manneguiden.no: did not receive HSTS header
mannford.com: could not connect to host
manningbrothers.com: did not receive HSTS header
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
mansion-note.com: did not receive HSTS header
+mansiontech.cn: did not receive HSTS header
manududu.com.br: could not connect to host
+manuel7espejo.com: did not receive HSTS header
manuelrueger.de: could not connect to host
+manuscript.com: did not receive HSTS header
+manutrol.com.br: did not receive HSTS header
+maomao.blog: could not connect to host
+maomaobt.com: did not receive HSTS header
maomaofuli.vip: could not connect to host
maosi.xin: could not connect to host
-mapasmundi.com.br: 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
+maquininhamercadopoint.com.br: could not connect to host
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]
-marcberman.co: could not connect to host
+marbinvest.com: did not receive HSTS header
+marcaudefroy.com: did not receive HSTS header
+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
-marcelsiegert.com: could not connect to host
marchagen.nl: did not receive HSTS header
marche-nordic-jorat.ch: could not connect to host
-marchhappy.tech: did not receive HSTS header
+marco-kretz.de: did not receive HSTS header
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
+marcush.de: did not receive HSTS header
+marcusserver.synology.me: could not connect to host
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
+margo.ml: could not connect to host
+mariacorzo.com: could not connect to host
+mariacristinadoces.com.br: did not receive HSTS header
mariannematthew.com: could not connect to host
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
-marinela.com.mx: max-age too low: 86400
-marinelausa.com: max-age too low: 86400
+marinecadastre.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]
+marioabela.com: 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
markcp.me: could not connect to host
market.android.com: did not receive HSTS header (error ignored - included regardless)
-marketgot.com: could not connect to host
+marketgot.com: did not receive HSTS header
marketing-advertising.eu: could not connect to host
marketingdesignu.cz: could not connect to host
marketingromania.ro: did not receive HSTS header
+marketio.co: did not receive HSTS header
+marketlinks.org: did not receive HSTS header
markllego.com: could not connect to host
marko-fenster24.de: did not receive HSTS header
markorszulak.com: did not receive HSTS header
markow.io: max-age too low: 7776000
markrego.com: could not connect to host
-markrobin.de: did not receive HSTS header
marksill.com: could not connect to host
marktboten.de: did not receive HSTS header
markusabraham.com: did not receive HSTS header
+markusgran.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]
+markusueberallassetmanagement.de: could not connect to host
+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
@@ -8463,33 +11079,41 @@ martin-mattel.com: could not connect to host
martinec.co.uk: could not connect to host
martinestyle.com: could not connect to host
martineve.com: did not receive HSTS header
+martingansler.de: did not receive HSTS header
martinkup.cz: did not receive HSTS header
martinp.no: could not connect to host
-martinreed.net: did not receive HSTS header
martinrogalla.com: did not receive HSTS header
martins.im: could not connect to host
-martynhare.co.uk: could not connect to host
-martynhare.uk: could not connect to host
-marumagic.com: did not receive HSTS header
+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
+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
+maslife365.com: could not connect to host
+massagelimaperu.com: did not receive HSTS header
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
+masteragenasia.net: did not receive HSTS header
masterapi.ninja: did not receive HSTS header
masterhaus.bg: did not receive HSTS header
masteringtheterminal.com: did not receive HSTS header
+mastersquirrel.xyz: did not receive HSTS header
+mastersthesiswriting.com: could not connect to host
mastichor.info: could not connect to host
+mastiffingles.com.br: could not connect to host
mastimtibetano.com: could not connect to host
masto.io: could not connect to host
mastod.life: could not connect to host
@@ -8501,23 +11125,29 @@ mastodon.expert: could not connect to host
mastodon.fun: could not connect to host
mastodon.my: could not connect to host
mastodon.org.uk: did not receive HSTS header
-mastodon.pl: could not connect to host
-mastodones.club: could not connect to host
+mastodon.pl: did not receive HSTS header
+mastodones.club: did not receive HSTS header
masty.nl: could not connect to host
masumreza.tk: could not connect to host
mat99.dk: could not connect to host
-matarrosabierzo.com: did not receive HSTS header
-matatall.com: did not receive HSTS header
-maternalsafety.org: did not receive HSTS header
+matarrosabierzo.com: could not connect to host
+matchneedle.com: did not receive HSTS header
mateusmeyer.com.br: could not connect to host
mateuszpilszek.pl: could not connect to host
+mathematris.com: could not connect to host
mathers.ovh: did not receive HSTS header
+matheusmacedo.ddns.net: could not connect to host
mathias.re: did not receive HSTS header
+mathieui.net: could not connect to host
mathijskingma.nl: could not connect to host
+mathsource.ga: could not connect to host
+mathsweek.nz: could not connect to host
+mathsweek.org.nz: could not connect to host
+mathsweek.school.nz: could not connect to host
matillat.ovh: did not receive HSTS header
-matlabjo.ir: could not connect to host
+matlabjo.ir: did not receive HSTS header
+matmessages.com: did not receive HSTS header
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
@@ -8533,11 +11163,11 @@ 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]
-mattisam.com: 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
matty.digital: did not receive HSTS header
-matway.net: could not connect to host
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
@@ -8546,25 +11176,32 @@ 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
+max-mad.com: could not connect to host
+maxbachmann.de: did not receive HSTS header
+maxdev72.freeboxos.fr: 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
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
maynardnetworks.com: could not connect to host
-mazurlabs.tk: could not connect to host
+mayoimobiliare.ro: did not receive HSTS header
+mayoristassexshop.com: did not receive HSTS header
+mazternet.ru: 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]
+mb300sd.com: could not connect to host
+mb300sd.net: could not connect to host
mbconsultancy.nu: did not receive HSTS header
mbdrogenbos-usedcars.be: could not connect to host
-mbsec.net: could not connect to host
mbwemmel-usedcars.be: could not connect to host
mc81.com: did not receive HSTS header
mca2017.org: did not receive HSTS header
@@ -8572,35 +11209,39 @@ 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: did not receive HSTS header
mccordworks.com: did not receive HSTS header
mcdanieldevelopmentservices.com: could not connect to host
mcdonalds.ru: did not receive HSTS header
mcga.media: could not connect to host
mcgavocknissanwichitaparts.com: could not connect to host
+mchan.us: did not receive HSTS header
mchopkins.net: could not connect to host
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
-mcmillansedationdentistry.com: did not receive HSTS header
mcnoobs.pro: could not connect to host
mcooperlaw.com: did not receive HSTS header
+mcqyy.com: could not connect to host
mcsa-usa.org: could not connect to host
mcsniper.co: could not connect to host
mcsnovatamabayan.com: could not connect to host
+mctherealm.net: could not connect to host
mcuexchange.com: did not receive HSTS header
mcuong.tk: could not connect to host
md-student.com: did not receive HSTS header
+mdbouncycastlehirelondon.co.uk: did not receive HSTS header
+mdcloudpracticesolutions.com: could not connect to host
mdfnet.se: did not receive HSTS header
-mdkr.nl: did not receive HSTS header
-mdscomp.net: did not receive HSTS header
+mdscomp.net: could not connect to host
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: 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
@@ -8609,54 +11250,63 @@ 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
+medi-link.co.il: did not receive HSTS header
media-access.online: did not receive HSTS header
+media-courses.com: could not connect to host
+mediabm.jp: did not receive HSTS header
mediacru.sh: could not connect to host
mediadandy.com: could not connect to host
mediafinancelab.org: could not connect to host
mediamag.am: max-age too low: 0
-mediastorm.us: did not receive HSTS header
+mediarocks.de: did not receive HSTS header
+mediastorm.us: could not connect to host
mediawikicn.org: could not connect to host
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
mediweed.tk: could not connect to host
medm-test.com: could not connect to host
-medmarkt24.com: did not receive HSTS header
+medpot.net: did not receive HSTS header
+medsindex.com: did not receive HSTS header
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: did not receive HSTS header
mega-aukcion.ru: 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
-megauction.tk: could not connect to host
+megamarkey.de: did not receive HSTS header
+megashur.se: could not connect to host
+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
+meilleur.xyz: did not receive HSTS header
meincloudspeicher.de: could not connect to host
+meine-plancha.ch: did not receive HSTS header
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
melakaltenegger.at: did not receive HSTS header
melangebrasil.com: could not connect to host
-melaniebilodeau.com: could not connect to host
+melaniebilodeau.com: did not receive HSTS header
melcher.it: did not receive HSTS header
melenchatsmelenchiens.fr: could not connect to host
melf.nl: could not connect to host
melhoresdominios.net: could not connect to host
melhorproduto.com.br: could not connect to host
melikoff.es: could not connect to host
+melitopol.co.ua: did not receive HSTS header
melodic.com.au: could not connect to host
melody-lyrics.com: could not connect to host
melonstudios.net: could not connect to host
@@ -8666,74 +11316,95 @@ 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
+memberstweets.com: could not connect to host
memdoc.org: could not connect to host
memeblast.ninja: could not connect to host
memepasmal.org: 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
-menotag.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]
+menntagatt.is: did not receive HSTS header
+menotag.com: could not connect to host
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
+menuiserie-berard.com: did not receive HSTS header
menzaijia.com: could not connect to host
+menzel-motors.com: did not receive HSTS header
+meo.de: could not connect to host
meow.cloud: could not connect to host
meozcraft.com: could not connect to host
-mercamaris.es: did not receive HSTS header
+meraseo.com: could not connect to host
mercanix.co.uk: could not connect to host
merccorp.de: max-age too low: 0
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: could not connect to host
+meredithkm.info: 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
meshlab.co: could not connect to host
-meshok.info: 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
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
metasyntactic.xyz: 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
+meteosky.net: did not receive HSTS header
+metikam.pl: did not receive HSTS header
metin2blog.de: did not receive HSTS header
+metin2sepeti.com: could not connect to host
metis.pw: could not connect to host
metrans-spedition.de: could not connect to host
metricaid.com: did not receive HSTS header
metrix-money-ptc.com: could not connect to host
metrix.design: could not connect to host
+metropolisil.gov: did not receive HSTS header
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
+mevanshop.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
mexior.nl: could not connect to host
meyeraviation.com: could not connect to host
+mfacko.cz: did not receive HSTS header
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
-mgdigital.fr: did not receive HSTS header
+mfz.mk: did not receive HSTS header
+mgcraft.net: could not connect to host
+mgdigital.fr: could not connect to host
mgiay.com: did not receive HSTS header
mgoessel.de: did not receive HSTS header
mh-bloemen.co.jp: could not connect to host
@@ -8741,20 +11412,24 @@ mhdsyarif.com: did not receive HSTS header
mhealthdemocamp.com: could not connect to host
mhertel.com: did not receive HSTS header
mhict.nl: could not connect to host
+mhjuma.com: could not connect to host
mht-travel.com: could not connect to host
mhx.pw: could not connect to host
mia.ac: could not connect to host
mia.to: could not connect to host
+miamicityballet.org: did not receive HSTS header
mianfei-vpn.com: could not connect to host
-micado-software.com: could not connect to host
-michael-schilling.de: did not receive HSTS header
-michaelasawyer.com: could not connect to host
+miboulot.com: could not connect to host
+micaiahparker.com: could not connect to host
+micasamgmt.com: did not receive HSTS header
michaelcullen.name: could not connect to host
michaeldemuth.com: could not connect to host
-michaelfitzpatrickruth.com: could not connect to host
-michaelklos.nl: could not connect to host
+michaelfitzpatrickruth.com: did not receive HSTS header
+michaelizquierdo.com: max-age too low: 0
+michaelklos.nl: did not receive HSTS header
michaelmorpurgo.com: did not receive HSTS header
michaeln.net: did not receive HSTS header
+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
@@ -8762,6 +11437,7 @@ michaelwaite.org: could not connect to host
michal-kral.cz: could not connect to host
michalborka.cz: could not connect to host
michalkral.tk: could not connect to host
+michalp.pl: did not receive HSTS header
michalvasicek.cz: did not receive HSTS header
michasfahrschule.com: could not connect to host
michel.pt: did not receive HSTS header
@@ -8770,16 +11446,19 @@ 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: could not connect to host
+micro-rain-systems.com: did not receive HSTS header
microblading.pe: could not connect to host
microdesic.com: could not connect to host
-micromata.de: did not receive HSTS header
-microme.ga: did not receive HSTS header
+microme.ga: could not connect to host
micropple.net: could not connect to host
microtalk.org: could not connect to host
+middletowndelcopa.gov: could not connect to host
midirs.org: did not receive HSTS header
+midlgx.com: max-age too low: 0
midonet.org: did not receive HSTS header
midriversmotorsllc.com: did not receive HSTS header
+midterm.us: could not connect to host
+midweststructuralrepair.com: could not connect to host
midwestwomenworkers.org: could not connect to host
miegl.cz: could not connect to host
miemie.jp: could not connect to host
@@ -8791,28 +11470,33 @@ mightymillionslottery.com: did not receive HSTS header
mightymillionsraffle.com: did not receive HSTS header
migrantskillsregister.org.uk: could not connect to host
migrator.co: could not connect to host
+miguelgfierro.com: did not receive HSTS header
miguksaram.com: could not connect to host
mijn-email.org: could not connect to host
+mijndiad.nl: did not receive HSTS header
+mijnetickets.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
mikaelemilsson.net: did not receive HSTS header
mikeburns.com: could not connect to host
mikedugan.org: did not receive HSTS header
mikeg.de: did not receive HSTS header
-mikek.work: could not connect to host
+mikek.work: did not receive HSTS header
mikeology.org: could not connect to host
mikepair.net: could not connect to host
-mikes.tk: could not connect to host
-mikewillia.ms: could not connect to host
+mikes.tk: did not receive HSTS header
mikeybot.com: could not connect to host
-mikhirev.ru: could not connect to host
mikii.club: could not connect to host
mikk.cz: 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.cloud: could not connect to host
+miku.hatsune.my: did not receive HSTS header
+miku.party: could not connect to host
+mikumiku.stream: could not connect to host
mikusinec.com: could not connect to host
milahendri.com: did not receive HSTS header
milang.xyz: could not connect to host
@@ -8822,20 +11506,76 @@ 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
-milktea.info: could not connect to host
-millenniumweb.com: max-age too low: 86400
+milkingit.net: could not connect to host
+millibitcoin.jp: could not connect to host
+million5.com: did not receive HSTS header
+million6.com: did not receive HSTS header
+million8.com: did not receive HSTS header
millionairessecrets.com: could not connect to host
+millions11.com: did not receive HSTS header
+millions13.com: did not receive HSTS header
+millions14.com: did not receive HSTS header
+millions15.com: did not receive HSTS header
+millions16.com: did not receive HSTS header
+millions17.com: did not receive HSTS header
+millions19.com: did not receive HSTS header
+millions20.com: did not receive HSTS header
+millions22.com: did not receive HSTS header
+millions25.com: did not receive HSTS header
+millions26.com: did not receive HSTS header
+millions27.com: did not receive HSTS header
+millions28.com: did not receive HSTS header
+millions29.com: did not receive HSTS header
+millions31.com: did not receive HSTS header
+millions33.com: did not receive HSTS header
+millions35.com: did not receive HSTS header
+millions36.com: did not receive HSTS header
+millions37.com: did not receive HSTS header
+millions38.com: did not receive HSTS header
+millions39.com: could not connect to host
+millions40.com: could not connect to host
+millions41.com: could not connect to host
+millions42.com: could not connect to host
+millions43.com: could not connect to host
+millions5.com: did not receive HSTS header
+millions50.com: did not receive HSTS header
+millions55.com: did not receive HSTS header
+millions56.com: did not receive HSTS header
+millions58.com: did not receive HSTS header
+millions59.com: did not receive HSTS header
+millions6.com: did not receive HSTS header
+millions61.com: did not receive HSTS header
+millions62.com: did not receive HSTS header
+millions63.com: did not receive HSTS header
+millions66.com: did not receive HSTS header
+millions7.com: did not receive HSTS header
+millions70.com: did not receive HSTS header
+millions71.com: did not receive HSTS header
+millions72.com: did not receive HSTS header
+millions80.com: did not receive HSTS header
+millions81.com: did not receive HSTS header
+millions82.com: did not receive HSTS header
+millions88.com: did not receive HSTS header
+millions9.com: did not receive HSTS header
+millions99.com: did not receive HSTS header
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: did not receive HSTS header
mimobile.website: could not connect to host
mimoderoupa.pt: could not connect to host
min.kiwi: could not connect to host
+minacssas.com: could not connect to host
minantavla.se: could not connect to host
+mind-moves.es: could not connect to host
mind.sh: did not receive HSTS header
-mindbodycontinuum.com: did not receive HSTS header
+mindbodycontinuum.com: could not connect to host
+mindbodytherapymn.com: did not receive HSTS header
+mindcell.no: could not connect to host
mindcraft.ga: could not connect to host
-mine.world: could not connect to host
+mindwork.space: could not connect to host
+mine.world: did not receive HSTS header
minecraft-forum.cf: could not connect to host
minecraft-forum.ga: could not connect to host
minecraft-forum.gq: could not connect to host
@@ -8849,33 +11589,37 @@ minecraftforums.gq: could not connect to host
minecraftforums.ml: could not connect to host
minecraftserverz.com: could not connect to host
minecraftvoter.com: could not connect to host
-minecrell.net: max-age too low: 172800
+minei.me: did not receive HSTS header
mineover.es: could not connect to host
minetude.com: could not connect to host
+mingkyaa.com: could not connect to host
mingming.info: did not receive HSTS header
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
minimaliston.com: could not connect to host
minimoo.se: could not connect to host
minipainting.net: could not connect to host
-minis-hip.de: max-age too low: 172800
miniskipper.at: did not receive HSTS header
+miniwallaby.com: could not connect to host
minkondom.nu: could not connect to host
minnesotadata.com: could not connect to host
-minor.news: could not connect to host
+minor.news: did not receive HSTS header
minora.io: could not connect to host
minoris.se: 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
+mipla.ch: could not connect to host
miragrow.com: could not connect to host
mireillewendling.com.br: could not connect to host
mirgleich.dnshome.de: could not connect to host
mirindadomo.ru: did not receive HSTS header
+mirodasilva.be: could not connect to host
mironized.com: did not receive HSTS header
mirrorsedgearchive.ga: could not connect to host
mirrorx.com: did not receive HSTS header
@@ -8885,70 +11629,88 @@ misconfigured.io: could not connect to host
miscreant.me: could not connect to host
misericordiasegrate.org: could not connect to host
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
missrain.tw: could not connect to host
missycosmeticos.com.br: could not connect to host
mist.ink: could not connect to host
+mister-cooks.fr: did not receive HSTS header
mister.hosting: did not receive HSTS header
misterl.net: did not receive HSTS header
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
+mizumax.me: could not connect to host
mjcaffarattilaw.com: did not receive HSTS header
mjhsc.nl: did not receive HSTS header
mk-dizajn.com: could not connect to host
mkacg.com: could not connect to host
mkakh.xyz: could not connect to host
-mkasu.org: 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
mkp-deutschland.de: did not receive HSTS header
mkplay.io: could not connect to host
-mktemp.org: 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
+mlfaw.com: could not connect to host
+mlii.net: could not connect to host
+mlm-worldwide.de: did not receive HSTS header
mlpchan.net: could not connect to host
mlpepilepsy.org: could not connect to host
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
+mm13.at: 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
+mna7e.com: did not receive HSTS header
+mncr.nl: 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
mobaircon.com: did not receive HSTS header
-mobifinans.ru: could not connect to host
+mobi4.tk: could not connect to host
mobile-gesundheit.org: could not connect to host
mobile.eti.br: could not connect to host
mobilebay.top: could not connect to host
mobilecoach.com: did not receive HSTS header
mobilekey.co: could not connect to host
-mobilemalin.com: could not connect to host
+mobilemalin.com: did not receive HSTS header
mobileritelushi.com: could not connect to host
mobilethreat.net: could not connect to host
mobilethreatnetwork.net: could not connect to host
mobilpass.no: could not connect to host
-mobimalin.com: could not connect to host
+mobimalin.com: did not receive HSTS header
+mobisium.com: did not receive HSTS header
mobiwalk.com: could not connect to host
-mobix5.com: did not receive HSTS header
+mobix5.com: could not connect to host
mobmp4.co: could not connect to host
mobmp4.com: could not connect to host
mobmp4.info: could not connect to host
@@ -8958,31 +11720,40 @@ 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: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+modalrakyat.com: could not connect to host
+modalrakyat.id: did not receive HSTS header
modaperuimport.com: could not connect to host
+modcentral.pw: max-age too low: 2592000
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
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
modernibytovytextil.cz: could not connect to host
+moderntld.net: could not connect to host
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
+modydev.club: did not receive HSTS header
moe.pe: could not connect to host
+moe.wtf: could not connect to host
moe4sale.in: did not receive HSTS header
+moeali.com: could not connect to host
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
+moeli.org: 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
moevenpick-cafe.com: did not receive HSTS header
+moeyun.net: max-age too low: 86400
mogry.net: did not receive HSTS header
mohio.co.nz: did not receive HSTS header
moho.kr: could not connect to host
@@ -8991,50 +11762,66 @@ 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
mokadev.com: did not receive HSTS header
-mols.me: did not receive HSTS header
-momfulfilled.com: did not receive HSTS header
+mokken-fabriek.nl: did not receive HSTS header
+mols.me: could not connect to host
+momento.co.id: did not receive HSTS header
+momfulfilled.com: could not connect to host
+momjoyas.com: did not receive HSTS header
mommel.com: could not connect to host
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: could not connect to host
+mon-mobile.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
+mondedesnovels.com: did not receive HSTS header
mondopoint.com: did not receive HSTS header
mondwandler.de: could not connect to host
+moneoci.com.br: could not connect to host
moneromerchant.com: could not connect to host
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.solutions: could not connect to host
+monitorchain.com: did not receive HSTS header
monitori.ng: could not connect to host
+monkeydust.net: max-age too low: 0
+monkieteel.nl: did not receive HSTS header
monochrometoys.com: could not connect to host
-monoseis-monotica.gr: max-age too low: 300
+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
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
moobo.xyz: did not receive HSTS header
moodifiers.com: could not connect to host
moon.lc: could not connect to host
-moonagic.io: did not receive HSTS header
-moonchart.co.uk: did not receive HSTS header
+moonagic.io: could not connect to host
moonless.net: could not connect to host
+moonlightcapital.ml: could not connect to host
moonloupe.com: could not connect to host
+moonrhythm.info: could not connect to host
moonysbouncycastles.co.uk: could not connect to host
+mooretownrancheria-nsn.gov: 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
@@ -9043,8 +11830,11 @@ moparscape.org: did not receive HSTS header
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
+moreapp.co.uk: 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
@@ -9053,115 +11843,154 @@ morhys.com: could not connect to host
morningcalculation.com: could not connect to host
morninglory.com: did not receive HSTS header
mornings.com: did not receive HSTS header
-morotech.com.br: could not connect to host
+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
-morz.org: 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
+mostlikelyto.fail: 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
+motionpicturesolutions.com: could not connect to host
motocyklovedily.cz: did not receive HSTS header
motomorgen.com: could not connect to host
motorbiketourhanoi.com: could not connect to host
motorcheck.ie: did not receive HSTS header
+motornomaslo.bg: did not receive HSTS header
motoroilinfo.com: did not receive HSTS header
motorsportdiesel.com: did not receive HSTS header
-motransportinfo.com: did not receive HSTS header
+motovio.de: 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: could not connect to host
+mounp.me: max-age too low: 2592000
+mountainadventureseminars.com: did not receive HSTS header
mountainmusicpromotions.com: did not receive HSTS header
-movabletype.net: max-age too low: 3600
-move.mil: did not receive HSTS header
+mountairymd.gov: could not connect to host
+mousemessages.com: did not receive HSTS header
+movabletype.net: did not receive HSTS header
+moveek.com: did not receive HSTS header
+moveisfit.com.br: could not connect to host
movepin.com: could not connect to host
movie4k.fyi: could not connect to host
movie4k.life: could not connect to host
-moviedollars.com: did not receive HSTS header
+movie4kto.site: could not connect to host
+moviedollars.com: could not connect to host
+movienang.com: max-age too low: 0
+movienized.de: did not receive HSTS header
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: did not receive HSTS header
+movio.ga: could not connect to host
mowalls.net: could not connect to host
moy-gorod.od.ua: did not receive HSTS header
+moyoo.net: 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
+mozgb.ru: could not connect to host
mozillians.org: did not receive HSTS header
mozoa.net: could not connect to host
mozzilla.cz: could not connect to host
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
+mpg.ovh: could not connect to host
+mphoto.at: did not receive HSTS header
mpi-sa.fr: did not receive HSTS header
+mpintaamalabanna.it: could not connect to host
mpkossen.com: did not receive HSTS header
+mpn.poker: did not receive HSTS header
+mpodraza.pl: could not connect to host
+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]
+mpy.ovh: could not connect to host
+mqas.net: could not connect to host
mr-coffee.net: could not connect to host
mr-hosting.com: could not connect to host
+mr-labo.jp: could not connect to host
+mr3.io: could not connect to host
mrafrohead.com: could not connect to host
mrawe.com: could not connect to host
+mrazek.biz: did not receive HSTS header
mrburtbox.com: could not connect to host
mrdani.net: could not connect to host
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
-mrketolocksmith.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
-mrning.com: 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
-mrs-shop.com: did not receive HSTS header
-mrsbairds.com: max-age too low: 86400
+mrpropop.com: did not receive HSTS header
mruganiepodspacja.pl: could not connect to host
+ms-alternativ.de: did not receive HSTS header
msc-seereisen.net: could not connect to host
msgallery.tk: could not connect to host
+msopopop.cn: max-age too low: 5184000
+msp66.de: could not connect to host
mstd.tokyo: did not receive HSTS header
mstdn-tech.jp: could not connect to host
-mstdn.io: did not receive HSTS header
-mstdn.nl: did not receive HSTS header
-mstiles92.com: max-age too low: 0
+mstdn.nl: could not connect to host
+mstiles92.com: could not connect to host
msz-fotografie.de: could not connect to host
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
-mtcgf.com: did not receive HSTS header
+mtcgf.com: could not connect to host
+mtcq.jp: could not connect to host
mtd.ovh: could not connect to host
mtdn.jp: could not connect to host
mtfgnettoyage.fr: could not connect to host
mtg-esport.de: did not receive HSTS header
-mtg-tutor.de: could not connect to host
mtirc.co: could not connect to host
mtn.cc: could not connect to host
-mtrip.com: did not receive HSTS header
+mtr.md: 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]
+muahahahaha.co.uk: could not connect to host
+muchohentai.com: could not connect to host
+mudgezero.one: could not connect to host
+muenzubi.de: did not receive HSTS header
+muffet.pw: did not receive HSTS header
muga.space: could not connect to host
muj-svet.cz: could not connect to host
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
+multiplexcy.com: could not connect to host
+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
-mumei.space: did not receive HSTS header
+multiworldsoftware.com: did not receive HSTS header
+multizone.games: could not connect to host
+mumei.space: could not connect to host
+mundoadulto.com.br: did not receive HSTS header
mundoalpha.com.br: did not receive HSTS header
-mundodapoesia.com: did not receive HSTS header
+mundodoscarbonos.com.br: could not connect to host
munecoscabezones.com: did not receive HSTS header
munich-rage.de: did not receive HSTS header
munkiepus.com: did not receive HSTS header
@@ -9172,6 +12001,7 @@ munzee.com: did not receive HSTS header
muonium.ch: could not connect to host
murdercube.com: could not connect to host
murfy.kiwi: could not connect to host
+murgi.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]
muriburi.land: could not connect to host
muriburiland.com: could not connect to host
murodese.org: could not connect to host
@@ -9180,33 +12010,42 @@ 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
+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
+musique2nuit.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]
muslimbanter.co.za: could not connect to host
-musmann.io: did not receive HSTS header
+mustafa.space: could not connect to host
mustika.cf: did not receive HSTS header
mutamatic.com: could not connect to host
mutuelle-obligatoire-pme.fr: did not receive HSTS header
muusika.fun: could not connect to host
muzgra.in: did not receive HSTS header
+muzi.cz: could not connect to host
muzykaprzeszladoplay.pl: could not connect to host
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
-mx.org.ua: 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
+mxp.tw: did not receive HSTS header
my-demo.co: could not connect to host
-my-dick.ru: could not connect to host
+my-dick.ru: did not receive HSTS header
my-owncloud.com: could not connect to host
my-pawnshop.com.ua: could not connect to host
+my-plancha.ch: did not receive HSTS header
+my-static-demo-808795.c.cdn77.org: could not connect to host
+my-static-live-808795.c.cdn77.org: could not connect to host
my-voice.nl: could not connect to host
my.alfresco.com: did not receive HSTS header
my.swedbank.se: did not receive HSTS header
@@ -9214,125 +12053,150 @@ myairshop.gr: could not connect to host
myandroid.tools: could not connect to host
myandroidtools.cc: could not connect to host
myandroidtools.pro: could not connect to host
+myappliancerepairhouston.com: did not receive HSTS header
+myartsway.com: did not receive HSTS header
+mybboard.pl: did not receive HSTS header
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
-myday.eu.com: could not connect to host
+mycreativeartsconsulting.com: could not connect to host
+myday.eu.com: did not receive HSTS header
mydeos.com: could not connect to host
mydigipass.com: did not receive HSTS header
mydmdi.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]
mydnaresults.com: could not connect to host
mydnatest.com: did not receive HSTS header
mydriversedge.com: did not receive HSTS header
+mydrone.services: could not connect to host
+myeasybooking.de: could not connect to host
+myeml.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]
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
-mygate.at: could not connect to host
+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
mygov.scot: did not receive HSTS header
mygpsite.com: did not receive HSTS header
mygreatjob.eu: could not connect to host
+mygreenrecipes.com: could not connect to host
myhair.asia: did not receive HSTS header
-myicare.org: could not connect to host
+myhloli.com: 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
mykolab.com: did not receive HSTS header
mykreuzfahrt.de: could not connect to host
-mylene-chandelier.me: 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
-mymixtapez.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]
-mymp3singer.co: did not receive HSTS header
+mylotto.co.nz: could not connect to host
+mymp3singer.co: could not connect to host
mymp3singer.net: could not connect to host
-mymp3singer.site: did not receive HSTS header
+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
mynewleaf.co: did not receive HSTS header
-mynewselfbariatrics.com: could not connect to host
+mynewselfbariatrics.com: did not receive HSTS header
myni.io: could not connect to host
mynigma.org: did not receive HSTS header
myon.info: did not receive HSTS header
myonlinedating.club: could not connect to host
myownconference.de: did not receive HSTS header
+myownconference.es: did not receive HSTS header
myownconference.fr: did not receive HSTS header
myownconference.lt: did not receive HSTS header
myownconference.lv: did not receive HSTS header
+myownconference.pt: did not receive HSTS header
+myownwebinar.com: could not connect to host
mypagella.com: could not connect to host
mypagella.eu: could not connect to host
mypagella.it: could not connect to host
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
myqdu.com: could not connect to host
+myrig.com.ua: did not receive HSTS header
myrig.io: could not connect to host
-myrig.net: could not connect to host
+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
mysecretrewards.com: could not connect to host
+myseo.ga: could not connect to host
+myserv.one: 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
+mystatus24.com: did not receive HSTS header
mystery-science-theater-3000.de: did not receive HSTS header
mysteryblog.de: did not receive HSTS header
+mystown.org: could not connect to host
mystudy.me: could not connect to host
+mysupboard.de: could not connect to host
mytc.fr: could not connect to host
mythlogic.com: did not receive HSTS header
mythslegendscollection.com: did not receive HSTS header
-mytraiteurs.com: could not connect to host
mytravelblog.de: could not connect to host
+mytweeps.com: did not receive HSTS header
+mywallets.io: could not connect to host
myweb360.de: did not receive HSTS header
-myxbox.gr: did not receive HSTS header
-myzone.com: did not receive HSTS header
-mziulu.me: could not connect to host
+mywebinar.io: could not connect to host
+myxbox.gr: max-age too low: 0
+myzone.com: max-age too low: 0
mzlog.win: could not connect to host
mzorn.photography: could not connect to host
-mzzj.de: 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
-n2servers.com: could not connect to host
+n2host.eu: could not connect to host
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
-na.hn: did not receive HSTS header
+na.hn: could not connect to host
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
+nacktwanderfreunde.de: did not receive HSTS header
nadaquenosepas.com: could not connect to host
nadia.pt: could not connect to host
+nagajanroshiya.info: did not receive HSTS header
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
-nais.me: could not connect to host
-najedlo.sk: could not connect to host
+nailedithomebuilders.com: max-age too low: 300
+nais.me: did not receive HSTS header
nakamastreamingcommunity.com: could not connect to host
nakanishi-paint.com: could not connect to host
nakhonidc.com: could not connect to host
-nakitbonus2.com: did not receive HSTS header
+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: did not receive HSTS header
-nalinux.cz: did not receive HSTS header
+nalifornia.com: could not connect to host
+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
@@ -9341,10 +12205,14 @@ named.ga: could not connect to host
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: did not receive HSTS header
namikawatetsuji.jp: could not connect to host
-namorico.me: could not connect to host
+namorico.me: did not receive HSTS header
+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
@@ -9358,34 +12226,38 @@ 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
+narazaka.net: 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
-nasmocopati.com: could not connect to host
+naseco.se: did not receive HSTS header
+nasme.tk: could not connect to host
+nasmocopati.com: did not receive HSTS header
nasralmabrooka.com: did not receive HSTS header
+nassi.me: could not connect to host
nastysclaw.com: could not connect to host
natalia-fadeeva.ru: could not connect to host
-natalia.io: 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
+natatorium.org: did not receive HSTS header
nate.sh: could not connect to host
+natecraun.net: did not receive HSTS header
natenom.com: max-age too low: 7200
natenom.de: max-age too low: 7200
natenom.name: max-age too low: 7200
-nathankonopinski.com: could not connect to host
-nathanmfarrugia.com: did not receive HSTS header
nationalmall.gov: could not connect to host
-nationwiderealtyinvestors.com: 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
naturblogg.no: did not receive HSTS header
+nature-shots.net: did not receive HSTS header
naturecoaster.com: did not receive HSTS header
natuterra.com.br: could not connect to host
natuurbehangnederland.nl: could not connect to host
@@ -9393,34 +12265,46 @@ nauck.org: did not receive HSTS header
naudles.me: could not connect to host
nav.jobs: could not connect to host
naval.tf: could not connect to host
-naviaddress.io: could not connect to host
+navegos.net: could not connect to host
+navenlle.com: could not connect to host
+naviaddress.io: 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
+navstivime.cz: did not receive HSTS header
nawroth.info: could not connect to host
-nax.io: did not receive HSTS header
-nay.moe: did not receive HSTS header
+nax.io: could not connect to host
+nay.moe: could not connect to host
+nazigol.com: did not receive HSTS header
nba2kqq.com: could not connect to host
-nbb.io: 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: did not receive HSTS header
nbg-ha.de: could not connect to host
nbis.gov: could not connect to host
-nbrown.us: could not connect to host
+nbl.org.tw: could not connect to host
+nbp.com.pk: did not receive HSTS header
+nbtparse.org: could not connect to host
nc2c.com: could not connect to host
-nc99.co: could not connect to host
+ncaq.net: did not receive HSTS header
ncc60205.info: could not connect to host
ncdesigns-studio.com: could not connect to host
nchristo.com: did not receive HSTS header
+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
+ndatc.com: 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: did not receive HSTS header
neap.io: could not connect to host
near.st: did not receive HSTS header
+nearbi.com.mx: could not connect to host
nearbiwa.com: did not receive HSTS header
-nearon.nl: did not receive HSTS header
+nearon.nl: could not connect to host
neavision.de: did not receive HSTS header
nebulousenhanced.com: could not connect to host
necesitodinero.org: could not connect to host
@@ -9428,36 +12312,59 @@ 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]
+nedys.top: did not receive HSTS header
+needle.net.nz: could not connect to host
+needle.nz: could not connect to host
+neels.ch: could not connect to host
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
+neio.uk: could not connect to host
nejnamc.org: did not receive HSTS header
neko-life.com: did not receive HSTS header
neko.li: could not connect to host
nekoku.io: could not connect to host
nekox.ml: could not connect to host
+nella-project.org: could not connect to host
+nella.io: could not connect to host
+nellacms.com: could not connect to host
+nellacms.org: could not connect to host
+nellafw.org: could not connect to host
nellen.it: did not receive HSTS header
+nemanja.top: did not receive HSTS header
+nemecl.eu: could not connect to host
nemno.de: could not connect to host
nemovement.org: 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]
+neoeliteconsulting.com: could not connect to host
neofelhz.space: could not connect to host
+neojames.me: could not connect to host
+neokobe.city: could not connect to host
+neolink.dk: 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
+neotist.com: did not receive HSTS header
+neowa.tk: 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
nerdjokes.de: could not connect to host
nerfroute.com: could not connect to host
neris.io: could not connect to host
neriumhcp.com: did not receive HSTS header
-nerpa-club.ru: did not receive HSTS header
nesantuoka.lt: could not connect to host
+nestedquotes.ca: could not connect to host
+nesterov.pw: 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
@@ -9465,36 +12372,43 @@ 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
-netde.jp: could not connect to host
+netbrief.ml: could not connect to host
+netde.jp: did not receive HSTS header
netdego.jp: could not connect to host
+netducks.space: could not connect to host
netfs.pl: did not receive HSTS header
+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
+netprofile.com.au: could not connect to host
netresourcedesign.com: could not connect to host
netsafeid.biz: did not receive HSTS header
netscaler.expert: could not connect to host
netsight.org: could not connect to host
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
+nettopower.dk: did not receive HSTS header
+nettoyage.email: 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: did not receive HSTS header
-netzzwerg4u.de: did not receive HSTS header
+netzvieh.de: could not connect to host
+netzzwerg4u.de: could not connect to host
neuch.info: did not receive HSTS header
neueonlinecasino2016.com: could not connect to host
+neuhaus-city.de: could not connect to host
neuralgic.net: could not connect to host
neuro-plus-100.com: could not connect to host
+neurogroove.info: did not receive HSTS header
+neuronasdigitales.com: did not receive HSTS header
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
nevadafiber.net: could not connect to host
@@ -9502,62 +12416,78 @@ never-afk.de: did not receive HSTS header
neveta.com: could not connect to host
new: could not connect to host
newantiagingcreams.com: could not connect to host
+newbasemedia.us: did not receive HSTS header
+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
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
+newpathintegratedtherapy.com: could not connect to host
+newpoke.net: could not connect to host
newportpropertygroup.com: could not connect to host
+news47ell.com: did not receive HSTS header
news4c.com: did not receive HSTS header
+newsa2.com: could not connect to host
+newsaboutgames.de: did not receive HSTS header
+newserumforskin.com: could not connect to host
newsquantified.com: max-age too low: 0
newstarnootropics.com: could not connect to host
-newsyslog.org: could not connect to host
newtnote.com: could not connect to host
newtonhaus.com: could not connect to host
newtonwarp.com: could not connect to host
+nexgeneration-solutions.com: could not connect to host
nexlab.org: did not receive HSTS header
+nexril.net: max-age too low: 7776000
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.nerdpol.ovh: could not connect to host
nextcloud.org: could not connect to host
-nextgen.sk: could not connect to host
-nextgenthemes.com: did not receive HSTS header
+nextend.net: did not receive HSTS header
+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: did not receive HSTS header
+nexthop.co.jp: could not connect to host
nexthop.co.th: did not receive HSTS header
+nexthop.jp: could not connect to host
+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
-nexus-vienna.at: could not connect to host
nexusbyte.de: could not connect to host
nexuscorporation.in: could not connect to host
+nfhome.be: 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
-ngc.gov: could not connect to host
ngiemboon.net: could not connect to host
ngine.ch: did not receive HSTS header
nginxnudes.com: could not connect to host
nginxyii.tk: could not connect to host
+ngla.gov: could not connect to host
nglr.org: could not connect to host
ngocuong.net: could not connect to host
ngt-service.ru: could not connect to host
ngtoys.com.br: did not receive HSTS header
+nhccnews.org: could not connect to host
+nhliberty.org: did not receive HSTS header
nhsuites.com: did not receive HSTS header
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
+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
@@ -9566,113 +12496,154 @@ nicolaelmer.ch: did not receive HSTS header
nicolasbettag.me: did not receive HSTS header
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
nicorevin.ru: could not connect to host
nidux.com: did not receive HSTS header
niduxcomercial.com: could not connect to host
+niedersetz.de: could not connect to host
+niedrigsterpreis.de: did not receive HSTS header
nien.chat: could not connect to host
nien.com.tw: could not connect to host
nienfun.com: could not connect to host
nieuwsoverijssel.nl: did not receive HSTS header
+niffler.software: could not connect to host
nifpnet.nl: could not connect to host
nifume.com: could not connect to host
nightsnack.cf: could not connect to host
+nightwinds.tk: could not connect to host
+nigt.cf: did not receive HSTS header
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: did not receive HSTS header
niklaslindblad.se: did not receive HSTS header
nikobradshaw.com: could not connect to host
nikolaichik.photo: did not receive HSTS header
nikolasbradshaw.com: could not connect to host
-nikonnps.co.uk: did not receive HSTS header
+nikz.in: did not receive HSTS header
nilianwo.com: could not connect to host
niloxy.com: did not receive HSTS header
ninchisho-online.com: did not receive HSTS header
ninebytes.xyz: could not connect to host
ning.so: did not receive HSTS header
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
niouininon.eu: could not connect to host
nippler.org: could not connect to host
nippombashi.net: did not receive HSTS header
-nipponcareers.com: did not receive HSTS header
+nipponcareers.com: could not connect to host
nirada.info: 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
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
+nivi.ca: could not connect to host
nixien.fr: could not connect to host
nixmag.net: could not connect to host
+nixne.st: could not connect to host
+njujb.com: max-age too low: 5184000
nkadvertising.online: could not connect to host
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
+nmctest.net: did not receive HSTS header
+nmd.so: did not receive HSTS header
+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
+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
nocallaghan.com: could not connect to host
noclegi-online.pl: did not receive HSTS header
+nocmd.com: did not receive HSTS header
noctinus.tk: could not connect to host
+nodalr.com: did not receive HSTS header
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: did not receive HSTS header
nodefiles.com: could not connect to host
+nodefoo.com: could not connect to host
+nodelab-it.de: could not connect to host
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
-noegoph.com: did not receive HSTS header
+nodum.io: did not receive HSTS header
+noegoph.com: could not connect to host
noelblog.ga: could not connect to host
noelssanssoucipensacola.com: did not receive HSTS header
noesberts-weidmoos.de: did not receive HSTS header
noexpect.org: could not connect to host
-noima.com: did not receive HSTS header
noisebridge.social: could not connect to host
+nojok.es: could not connect to host
nolag.host: could not connect to host
nolatepayments.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]
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
+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
+noodlecrave.com: did not receive HSTS header
noodlesandwich.com: did not receive HSTS header
+noodleyum.com: did not receive HSTS header
+nootropicpedia.com: could not connect to host
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
+nordicess.dk: could not connect to host
nordlicht.photography: did not receive HSTS header
+noref.tk: could not connect to host
+noreply.mx: 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
-northernpage.com: could not connect to host
-northpennvwparts.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]
+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
-nossasenhoradaconceicao.com.br: did not receive HSTS header
+nosfermiers.com: could not connect to host
+nosproduitsdequalite.fr: did not receive HSTS header
+nossasenhoradaconceicao.com.br: could not connect to host
nostraspace.com: could not connect to host
+nosx.tk: could not connect to host
not-a.link: could not connect to host
+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
@@ -9684,53 +12655,62 @@ notevencode.com: could not connect to host
nothing.net.nz: max-age too low: 7776000
nothing.org.uk: could not connect to host
noticia.do: did not receive HSTS header
-notjustbitchy.com: did not receive HSTS header
+notificami.com: could not connect to host
+notjustbitchy.com: could not connect to host
notonprem.com: could not connect to host
+notrecourrier.net: did not receive HSTS header
nottheonion.net: did not receive HSTS header
+nottori.com: could not connect to host
notypiesni.sk: did not receive HSTS header
nou.si: did not receive HSTS header
nouma.fr: did not receive HSTS header
nouvelle-vague-saint-cast.fr: did not receive HSTS header
nova-elearning.com: could not connect to host
nova.com.hk: did not receive HSTS header
+novacal.ga: could not connect to host
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
novelabs.eu: could not connect to host
+novelrealm.com: did not receive HSTS header
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: did not receive HSTS header
-novinivo.com: did not receive HSTS header
+novinhabucetuda.com: could not connect to host
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
npool.org: did not receive HSTS header
nq7.pl: could not connect to host
+nqesh.com: could not connect to host
+nqeshreviewer.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: did not receive HSTS header
nrvnastudios.com: could not connect to host
+nsa.ovh: could not connect to host
+nsa.wtf: could not connect to host
nsbfalconacademy.org: could not connect to host
nsdev.cn: could not connect to host
nsellier.fr: did not receive HSTS header
nshost.ro: did not receive HSTS header
nsmail.cn: could not connect to host
nspeaks.com: did not receive HSTS header
-nstremsdoerfer.ovh: did not receive HSTS header
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
+nth.sh: did not receive HSTS header
ntse.xyz: could not connect to host
nu-pogodi.net: could not connect to host
nu3.at: did not receive HSTS header
@@ -9744,12 +12724,19 @@ nu3.fr: did not receive HSTS header
nu3.no: did not receive HSTS header
nu3.se: did not receive HSTS header
nube.ninja: did not receive HSTS header
+nubella.com.au: did not receive HSTS header
+nubeslayer.com: could not connect to host
+nuclear-crimes.com: did not receive HSTS header
+nuclearcrimes.com: did not receive HSTS header
+nuclearcrimes1.com: did not receive HSTS header
nudel.ninja: could not connect to host
+nudestpics.com: could not connect to host
nufla.de: could not connect to host
nugetdependencies.com: did not receive HSTS header
nuiguru.me: could not connect to host
nukenet.se: could not connect to host
nukute.com: did not receive HSTS header
+nulap.com: could not connect to host
null-pointer.eu: did not receive HSTS header
null-sec.ru: could not connect to host
null.cat: did not receive HSTS header
@@ -9758,125 +12745,145 @@ nullpoint.at: did not receive HSTS header
nullpro.com: could not connect to host
numericacu.com: did not receive HSTS header
numero-di-telefono.it: could not connect to host
+numis.tech: 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: did not receive HSTS header
nupef.org.br: did not receive HSTS header
nurserybook.co: did not receive HSTS header
nurture.be: did not receive HSTS header
nusatrip-api.com: did not receive HSTS header
+nusku.biz: did not receive HSTS header
+nutricaovegana.com: did not receive HSTS header
nutricuerpo.com: did not receive HSTS header
nutrieduca.com: could not connect to host
nutrienti.eu: did not receive HSTS header
+nutrifyyourself.com: could not connect to host
nutritionculture.com: could not connect to host
nutsandboltsmedia.com: did not receive HSTS header
nuttyveg.com: did not receive HSTS header
nuwaterglobal.com: did not receive HSTS header
+nvcogct.gov: could not connect to host
nvlop.xyz: did not receive HSTS header
nwa.xyz: could not connect to host
nweb.co.nz: could not connect to host
-nwerc.party: could not connect to host
-nwk1.com: did not receive HSTS header
-nwork.media: could not connect to host
+nwork.media: did not receive HSTS header
nxt.sh: did not receive HSTS header
+nyanco.space: could not connect to host
nyanpasu.tv: could not connect to host
nyatane.com: could not connect to host
nyazeeland.guide: could not connect to host
nycroth.com: could not connect to host
-nydnxs.com: could not connect to host
+nydnxs.com: did not receive HSTS header
nyesider.org: could not connect to host
+nyffo.com: did not receive HSTS header
+nylonfeetporn.com: could not connect to host
nyored.com: did not receive HSTS header
nyphox.net: could not connect to host
nysepho.pw: could not connect to host
nysifclaimcentral.com: did not receive HSTS header
nystart.no: did not receive HSTS header
+nystudio107.com: did not receive HSTS header
+nyuusannkinn.com: did not receive HSTS header
nz.search.yahoo.com: max-age too low: 172800
nzbs.io: could not connect to host
+nzdmo.govt.nz: did not receive HSTS header
nzmk.cz: could not connect to host
-nzquakes.maori.nz: could not connect to host
+nzquakes.maori.nz: did not receive HSTS header
+o-loska.cz: did not receive HSTS header
o-rickroll-y.pw: could not connect to host
o0o.one: did not receive HSTS header
+oakesfam.net: 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]
-oatmealdome.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]
+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: could not connect to host
+oberoi.de: did not receive HSTS header
+obioncountytn.gov: could not connect to host
+objectif-leger.com: did not receive HSTS header
oblikdom.pro: did not receive HSTS header
oblikdom.ru: did not receive HSTS header
oblondata.io: did not receive HSTS header
obrienlab.com: did not receive HSTS header
+obscur.us: could not connect to host
obscuredfiles.com: could not connect to host
observatory.se: could not connect to host
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]
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
+ocloudhost.com: could not connect to host
ocmeulebeke.be: did not receive HSTS header
ocrami.us: did not receive HSTS header
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
-octopus-agents.com: could not connect to host
+octohost.net: could not connect to host
oddmouse.com: could not connect to host
odin.xxx: could not connect to host
odinkapital.no: did not receive HSTS header
odinoffice.no: did not receive HSTS header
+odisealinux.com: did not receive HSTS header
odosblog.de: could not connect to host
odysseyandco.com: could not connect to host
odysseyconservationtrust.com: did not receive HSTS header
oe8.bet: could not connect to host
ofcourselanguages.com: could not connect to host
ofcss.com: did not receive HSTS header
-ofda.gov: max-age too low: 604800
-ofer.site: did not receive HSTS header
+ofer.site: could not connect to host
off-the-clock.us: could not connect to host
offenedialoge.de: max-age too low: 2592000
offersgame.com: could not connect to host
+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
+officium.tech: 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
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
+ogis.gov: could not connect to host
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: could not connect to host
-ohnemusik.com: could not connect to host
+ohma.ga: did not receive HSTS header
+ohnemusik.com: did not receive HSTS header
ohohrazi.com: did not receive HSTS header
+ohreally.de: could not connect to host
ohsocool.org: did not receive HSTS header
+oiaio.cn: could not connect to host
oiepoie.nl: could not connect to host
+oilfieldinjury.attorney: could not connect to host
oinky.ddns.net: could not connect to host
oishioffice.com: did not receive HSTS header
+ojanaho.com: did not receive HSTS header
ojbk.eu: 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
-okane.love: could not connect to host
-okashi.me: could not connect to host
-okaz.de: 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
+okaidi.es: could not connect to host
+okane.love: did not receive HSTS header
+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
@@ -9884,74 +12891,105 @@ okok.rent: could not connect to host
okutama.in.th: could not connect to host
olafnorge.de: did not receive HSTS header
olcso-vps-szerver.hu: could not connect to host
-oldandyounglesbians.us: did not receive HSTS header
+oldandyounglesbians.us: could not connect to host
+oldbrookinflatables.co.uk: did not receive HSTS header
+oldenglishsheepdog.com.br: could not connect to host
oldschool-criminal.com: did not receive HSTS header
oldtimer-trifft-flugplatz.de: did not receive HSTS header
-oliverdunk.com: did not receive HSTS header
+olightstore.com: did not receive HSTS header
+oliode.tk: could not connect to host
+olivlabs.com: could not connect to host
ollehbizev.co.kr: could not connect to host
+ollieowlsblog.com: 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
-omarh.net: could not connect to host
+omar.yt: did not receive HSTS header
+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
omnigon.network: could not connect to host
omnilab.tech: could not connect to host
+omnisafira.com: did not receive HSTS header
omniti.com: max-age too low: 1
+omorashi.org: could not connect to host
omquote.gq: could not connect to host
-omskit.ru: did not receive HSTS header
+omskit.ru: could not connect to host
omyogarishikesh.com: did not receive HSTS header
on-te.ch: did not receive HSTS header
+ondrejhoralek.cz: did not receive HSTS header
one-pe.com: did not receive HSTS header
onearth.one: did not receive HSTS header
oneb4nk.com: could not connect to host
onecycling.my: could not connect to host
onecycling.world: could not connect to host
onefour.co: could not connect to host
+onegoodthingbyjillee.com: did not receive HSTS header
onehourloan.com: could not connect to host
onehourloan.sg: did not receive HSTS header
-oneidentity.me: could not connect to host
oneiros.cc: could not connect to host
-onelawsuit.com: did not receive HSTS header
+onelawsuit.com: could not connect to host
+oneminute.io: did not receive HSTS header
oneminutefilm.tv: did not receive HSTS header
+onemusou.com: could not connect to host
onepathnetwork.com: max-age too low: 7776000
onepluscamps.com: did not receive HSTS header
+onepointsafeband.ca: could not connect to host
+onepointsafeband.com: could not connect to host
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
oneworldbank.com: did not receive HSTS header
-onewpst.com: did not receive HSTS header
+onewpst.com: could not connect to host
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
+onkfaktor.de: could not connect to host
online-casino.eu: did not receive HSTS header
+online-horoskop.ch: did not receive HSTS header
+online-results.dk: did not receive HSTS header
online-scene.com: did not receive HSTS header
-online-wetten.de: 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: did not receive HSTS header
+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
+onlineinfographic.com: could not connect to host
onlinekasino.de: did not receive HSTS header
onlinepollsph.com: could not connect to host
+onlineporno.tv: could not connect to host
onlineschadestaat.nl: did not receive HSTS header
-onlinespielothek.com: did not receive HSTS header
+onlinespielothek.com: could not connect to host
+onlineweblearning.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]
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: could not connect to host
onlyshopstation.com: did not receive HSTS header
onlyzero.net: could not connect to host
-onmuvo.com: did not receive HSTS header
+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
+onoranze-funebri.biz: could not connect to host
onovlena.dn.ua: could not connect to host
onpatient.com: did not receive HSTS header
+onpermit.net: could not connect to host
onsennuie.fr: could not connect to host
onsite4u.de: could not connect to host
onsitemassageco.com: did not receive HSTS header
@@ -9961,32 +12999,41 @@ 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: could not connect to host
+opadaily.com: could not connect to host
+opatut.de: did not receive HSTS header
opcaobolsas.com.br: could not connect to host
+open-desk.org: 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
+openbsd.id: could not connect to host
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
+openpresentes.com.br: 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
@@ -9999,111 +13046,160 @@ opensrd.com: could not connect to host
openssf.org: did not receive HSTS header
opentexon.com: could not connect to host
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
-opportunitycorps.org: max-age too low: 43200
-oprbox.com: could not connect to host
+opposer.me: could not connect to host
opsafewinter.net: could not connect to host
opsbears.com: did not receive HSTS header
-opstacks.com: did not receive HSTS header
+opsnotepad.com: could not connect to host
+opstacks.com: could not connect to host
+opteamax.eu: did not receive HSTS header
optenhoefel.de: could not connect to host
+optiekzien.nl: did not receive HSTS header
optimal-e.com: did not receive HSTS header
+optimised.cloud: could not connect to host
+optimised.io: could not connect to host
+optimisedlabs.info: could not connect to host
+optimisedlabs.net: could not connect to host
+optimisedlabs.uk: could not connect to host
optimista.soy: could not connect to host
+optimize-jpg.com: could not connect to host
+optimizedlabs.co.uk: could not connect to host
+optimizedlabs.info: could not connect to host
+optimizedlabs.net: could not connect to host
+optimizedlabs.uk: could not connect to host
+optisure.de: did not receive HSTS header
optometriepunt.nl: did not receive HSTS header
optumrxhealthstore.com: could not connect to host
opunch.org: did not receive HSTS header
+opure.ml: could not connect to host
+opure.ru: could not connect to host
oracaodocredo.com.br: could not connect to host
orangekey.tk: could not connect to host
+oranges.tokyo: did not receive HSTS header
oranic.com: did not receive HSTS header
orbiosales.com: could not connect to host
orbitcom.de: did not receive HSTS header
orbitdefence.co.uk: could not connect to host
orbograph-hrcm.com: could not connect to host
+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
oreka.online: could not connect to host
-orelavtomaster.ru: did not receive HSTS header
+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
oricejoc.com: could not connect to host
+orientravelmacas.com: did not receive HSTS header
originalmockups.com: did not receive HSTS header
-originalsport.com.br: did not receive HSTS header
-originpc.com: could not connect to host
+originalsport.com.br: could not connect to host
orioncustompcs.com: could not connect to host
orionfcu.com: did not receive HSTS header
-orionfinancialservices.com: did not receive HSTS header
orionrebellion.com: did not receive HSTS header
orleika.ml: could not connect to host
+orovillelaw.com: could not connect to host
oroweatorganic.com: could not connect to host
+orro.ro: did not receive HSTS header
+ortho-graz.at: max-age too low: 86400
orthodoxy.lt: did not receive HSTS header
-orum.in: could not connect to host
+ortodonciaian.com: did not receive HSTS header
+orui.com.br: did not receive HSTS header
+orum.in: max-age too low: 0
+orz.uno: did not receive HSTS header
osaiyuwu.com: could not connect to host
-oscarmashauri.com: could not connect to host
+osaka-onakura.com: did not receive HSTS header
+oscamp.eu: 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: could not connect to host
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
-osdls.gov: could not connect to host
+osdls.gov: did not receive HSTS header
osha-kimi.com: did not receive HSTS header
oshanko.de: could not connect to host
-oshinagaki.jp: could not connect to host
+oshinagaki.jp: did not receive HSTS header
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
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
+otakucloud.net: did not receive HSTS header
otakuworld.de: could not connect to host
-other98.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]
-otichi.com: did not receive HSTS header
+otichi.com: could not connect to host
otinane.eu: could not connect to host
+otmns.net: could not connect to host
+otmo7.com: could not connect to host
+otoblok.com: did not receive HSTS header
otokonna.com: could not connect to host
otrsdemo.hu: did not receive HSTS header
+otsu.beer: could not connect to host
ottospora.nl: could not connect to host
+ouimoove.com: could not connect to host
+ouowo.gq: could not connect to host
ourbank.com: max-age too low: 2592000
ourchoice2016.com: could not connect to host
-outdooradventures.pro: did not receive HSTS header
-outdoorproducts.com: did not receive HSTS header
+ouruglyfood.com: could not connect to host
+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
+ovabag.com: did not receive HSTS header
ovenapp.io: did not receive HSTS header
over25tips.com: did not receive HSTS header
-overclockers.ge: could not connect to host
+overceny.cz: did not receive HSTS header
override.io: 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
-overstockpromote.com: did not receive HSTS header
+overstappen.nl: did not receive HSTS header
+overture.london: did not receive HSTS header
+overwall.org: 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
+owl-hakkei.com: did not receive HSTS header
owlscrap.ru: could not connect to host
+ownc.at: could not connect to host
owncloud.help: could not connect to host
-owngeek.com: did not receive HSTS header
+owngeek.com: could not connect to host
ownmovies.fr: could not connect to host
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
@@ -10114,17 +13210,20 @@ 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
+p8r.de: could not connect to host
paavolastudio.com: 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
+pacificpalisadeselectrician.com: could not connect to host
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
@@ -10133,73 +13232,94 @@ 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]
paestbin.com: could not connect to host
page: could not connect to host
-pagefulloflies.io: could not connect to host
+pagedesignshop.com: did not receive HSTS header
+pageperform.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
-pahlawanpulsa.com: did not receive HSTS header
-pahnid.com: did not receive HSTS header
+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
paino.cloud: could not connect to host
painosso.org: could not connect to host
paintingat.com: could not connect to host
paio2-rec.com: could not connect to host
-paio2.com: did not receive HSTS header
+paio2.com: could not connect to host
paisaone.com: could not connect to host
+paizinhovirgula.com: did not receive HSTS header
pajonzeck.de: could not connect to host
paket.io: could not connect to host
-paket.ml: could not connect to host
+paket.ml: did not receive HSTS header
+paketkreditsuzuki.com: could not connect to host
+pakeystonescholars.gov: could not connect to host
+pakowanie-polska.pl: 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: could not connect to host
palmer.im: could not connect to host
-pammbook.com: did not receive HSTS header
+pammbook.com: could not connect to host
pamplona.tv: could not connect to host
pan.tips: could not connect to host
panaceallc.net: could not connect to host
-panama-gbs.com: could not connect to host
+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
+panoma.de: did not receive HSTS header
panoranordic.net: could not connect to host
panos.io: did not receive HSTS header
+panoti.com: could not connect to host
pansu.space: could not connect to host
-pants-off.xyz: could not connect to host
pantsu.cat: did not receive HSTS header
+paolo565.org: did not receive HSTS header
papalytics.com: could not connect to host
papatest24.de: could not connect to host
papeda.net: could not connect to host
papelariadante.com.br: could not connect to host
papercard.co.uk: did not receive HSTS header
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: max-age too low: 0
+parabhairavayoga.com: did not receive HSTS header
paradiesgirls.ch: could not connect to host
+paradigi.com.br: did not receive HSTS header
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
+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: did not receive HSTS header
+parfum-baza.ru: could not connect to host
+pariga.co.uk: could not connect to host
paris-cyber.fr: did not receive HSTS header
-parisbloom.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]
parisdimanche.com: did not receive HSTS header
parishome.jp: could not connect to host
+parisprovincedemenagements.fr: did not receive HSTS header
parisvox.info: did not receive HSTS header
parithy.net: could not connect to host
parkhillsbaptist.church: did not receive HSTS header
@@ -10210,25 +13330,33 @@ 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
+parquet-lascazes.fr: did not receive HSTS header
+partage.ovh: 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
-partiono.com: did not receive HSTS header
partirkyoto.jp: did not receive HSTS header
-partnercardservices.com: did not receive HSTS header
+partiwatch.com: max-age too low: 2592000
+partnerbeam.com: could not connect to host
+partnersfcu.org: 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
+partyschnaps.com: could not connect to host
partyspecialists.com: did not receive HSTS header
partyvan.eu: could not connect to host
partyvan.it: could not connect to host
partyvan.moe: could not connect to host
partyvan.nl: could not connect to host
partyvan.se: could not connect to host
-parvaneh.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]
pascalchristen.ch: did not receive HSTS header
+pascalspoerri.ch: could not connect to host
+pasportaservo.org: did not receive HSTS header
+passendonderwijs.nl: did not receive HSTS header
+passionebenessere.com: did not receive HSTS header
passpilot.co.uk: did not receive HSTS header
-passumpsicbank.com: did not receive HSTS header
passwd.io: did not receive HSTS header
-password.codes: 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
@@ -10240,37 +13368,46 @@ pastenib.com: could not connect to host
paster.li: did not receive HSTS header
pasteros.io: could not connect to host
pastie.se: could not connect to host
+pastorbelgagroenendael.com.br: could not connect to host
pastorcanadense.com.br: could not connect to host
-patadanabouca.pw: could not connect to host
+pastormaremanoabruzes.com.br: could not connect to host
+pastorsuico.com.br: could not connect to host
pataua.kiwi: did not receive HSTS header
-patbatesremodeling.com: could not connect to host
paternitydnatest.com: could not connect to host
patfs.com: did not receive HSTS header
pathwaytofaith.com: could not connect to host
patientinsight.net: could not connect to host
+patouille-et-gribouille.fr: did not receive HSTS header
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
+patrickmcnamara.xyz: did not receive HSTS header
patrickneuro.de: could not connect to host
-patt.us: did not receive HSTS header
+patrickquinn.ca: did not receive HSTS header
+patrickschneider.me: could not connect to host
+patt.us: could not connect to host
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
-paulerhof.com: did not receive HSTS header
+paulewen.ca: could not connect to host
+paulpetersen.dk: 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
-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
pay.gigahost.dk: did not receive HSTS header
pay.ubuntu.com: could not connect to host
+pay8522.com: could not connect to host
payclixpayments.com: did not receive HSTS header
payfreez.com: could not connect to host
+paykings.com: did not receive HSTS header
payload.tech: could not connect to host
payments-reference.org: could not connect to host
payments.google.com: did not receive HSTS header (error ignored - included regardless)
@@ -10278,59 +13415,69 @@ 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
-pb.ax: did not receive HSTS header
+pb.ax: could not connect to host
pbapp.net: did not receive HSTS header
pbbr.com: did not receive HSTS header
pbcknd.ml: could not connect to host
pbcomp.com.au: did not receive HSTS header
-pbprint.ru: did not receive HSTS header
+pbprint.ru: could not connect to host
pbqs.site: could not connect to host
+pbreen.co.uk: could not connect to host
pbscreens.com: could not connect to host
pbytes.com: could not connect to host
pc-nf.de: did not receive HSTS header
-pc-servis-brno.com: 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: max-age too low: 7889238
pcvirusclear.com: could not connect to host
pdamsidoarjo.co.id: could not connect to host
pdevio.com: could not connect to host
pdf.yt: could not connect to host
+pdomo.me: did not receive HSTS header
pe-bank.co.jp: max-age too low: 604800
pe-kyousai.jp: did not receive HSTS header
peaceandwool.com: did not receive HSTS header
peakapp.nl: could not connect to host
pebblesdemo.com: could not connect to host
pecot.fr: did not receive HSTS header
-peddy.dyndns.org: could not connect to host
-pedrosaurus.com: 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
pengisatelier.net: could not connect to host
pengui.uk: could not connect to host
penguinclientsystem.com: did not receive HSTS header
-pengumuman.id: did not receive HSTS header
+pengumuman.id: could not connect to host
pennyapp.io: did not receive HSTS header
pennylane.me.uk: did not receive HSTS header
pensanisso.com: did not receive HSTS header
-penser-electronique.com: could not connect to host
+penser-electronique.com: did not receive HSTS header
+pension-veldzigt.nl: did not receive HSTS header
pension-waldesruh.de: did not receive HSTS header
pensiunealido.ro: could not connect to host
pentagram.me: max-age too low: 2592000
-pentano.net: could not connect to host
+pentano.net: did not receive HSTS header
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
@@ -10339,149 +13486,198 @@ pepsicoemployeepreferencesurvey.com: could not connect to host
per-pedes.at: did not receive HSTS header
perdel.cn: could not connect to host
pereuda.com: could not connect to host
+perez-marrero.com: could not connect to host
perfect-radiant-wrinkles.com: could not connect to host
perfectionis.me: could not connect to host
-perfectionunite.com: did not receive HSTS header
+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]
+perm-jur.ch: could not connect to host
+perm-juridique.ch: could not connect to host
+permanence-juridique.com: could not connect to host
+permanencejuridique-ge.ch: could not connect to host
+permanencejuridique.com: could not connect to host
+permiscoderoute.fr: did not receive HSTS header
pernatie.ru: could not connect to host
peromsik.com: did not receive HSTS header
perplex.nl: did not receive HSTS header
perrone.co: could not connect to host
-perroud.pro: could not connect to host
+perroud.pro: did not receive HSTS header
persjrp.ca: could not connect to host
persoform.ch: could not connect to host
+personal-injury-attorney.co: could not connect to host
personalcommunicationsecurity.com: could not connect to host
personaldatabasen.no: could not connect to host
personalinjurylist.com: could not connect to host
personalizedtouch.co: could not connect to host
+personcar.com.br: could not connect to host
personnedisparue.fr: could not connect to host
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
-pesyun.cn: did not receive HSTS header
-pet-life.top: did not receive HSTS header
+pesyun.cn: max-age too low: 3600
pet-nsk.ru: could not connect to host
-petbooking.it: did not receive HSTS header
+petangen.se: could not connect to host
petchart.net: could not connect to host
-peterboers.info: could not connect to host
-peterkshultz.com: did not receive HSTS header
+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
petersmark.com: did not receive HSTS header
pethelpers.org: did not receive HSTS header
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
+petplum.com: did not receive HSTS header
petrkrapek.cz: did not receive HSTS header
-petrolplus.ru: max-age too low: 7776000
+petrotranz.com: did not receive HSTS header
petrovsky.pro: could not connect to host
+petruzz.net: did not receive HSTS header
petsittersservices.com: could not connect to host
-pettsy.com: could not connect to host
+pettsy.com: did not receive HSTS header
peuf.shop: could not connect to host
peuterspeelzaalhoekvanholland.nl: could not connect to host
+pewat.com: could not connect to host
pewboards.com: could not connect to host
pexieapp.com: did not receive HSTS header
peykezamin.ir: did not receive HSTS header
+peyote.org: could not connect to host
peytonfarrar.com: could not connect to host
+pf.dk: did not receive HSTS header
pferdeeinstreu-kaufen.com: did not receive HSTS header
pfgshop.com.br: could not connect to host
pflegedienst-gratia.de: max-age too low: 300
+pfo.io: could not connect to host
pfolta.net: could not connect to host
pgcpbc.com: could not connect to host
pgmsource.com: could not connect to host
-pgnetwork.net: could not connect to host
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
-pharmaboard.org: could not connect to host
+phantasie.cc: could not connect to host
+pharmaboard.org: did not receive HSTS header
pharmgkb.org: could not connect to host
+phaux.uno: 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
-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
-phil.tw: 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
+philipkohn.com: did not receive HSTS header
philipmordue.co.uk: could not connect to host
philippa.cool: could not connect to host
+philippinedroneassociation.org: did not receive HSTS header
phillippi.me: could not connect to host
phillmoore.com: did not receive HSTS header
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
+phoenics.de: 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: did not receive HSTS header
+photek.fm: 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
photographyforchange.org: could not connect to host
+photon.sh: could not connect to host
photops.fr: could not connect to host
photosoftware.nl: could not connect to host
+photosquare.com.tw: did not receive HSTS header
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]
+phpkari.cz: could not connect to host
+phr34kz.pw: did not receive HSTS header
+phra.gs: could not connect to host
phrasing.me: could not connect to host
+phrive.space: 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
-physicaltherapist.com: did not receive HSTS header
+physicpezeshki.com: did not receive HSTS header
pi-eng.fr: did not receive HSTS header
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: did not receive HSTS header
picallo.es: could not connect to host
picardiascr.com: 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
-picsandtours.com: could not connect to host
+picotronic.de: did not receive HSTS header
+picsandtours.com: did not receive HSTS header
picscare.co.uk: did not receive HSTS header
picshare.nz: could not connect to host
-pidatacenters.com: did not receive HSTS header
+pidatacenters.com: could not connect to host
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
+pikeitservices.com.au: 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
pilotcrowd.nl: did not receive HSTS header
+pimg136.com: could not connect to host
pimpmymac.ru: did not receive HSTS header
+pimpmypaper.com: could not connect to host
pims.global: did not receive HSTS header
pimspage.nl: could not connect to host
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
-pinoyonlinetv.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]
+pinoylinux.org: did not receive HSTS header
+pinscher.com.br: could not connect to host
+pintoselectrician.co.za: did not receive HSTS header
pioche.ovh: did not receive HSTS header
-pipenny.net: could not connect to host
pippen.io: could not connect to host
pips.rocks: could not connect to host
pir9.com: did not receive HSTS header
-pirata.ga: did not receive HSTS header
+piranil.com: did not receive HSTS header
+pirata.ga: could not connect to host
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
@@ -10495,73 +13691,106 @@ 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
-pirlitu.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
pitchup.com: did not receive HSTS header
pitonarms.com: could not connect to host
pitsstop.nu: could not connect to host
-pittaya.com: could not connect to host
+pittaya.com: did not receive HSTS header
pittonpreschool.com: did not receive HSTS header
-piwko.co: could not connect to host
pix-geeks.com: max-age too low: 2592000
pixdigital.net: did not receive HSTS header
-pixeame.com: did not receive HSTS header
+pixeame.com: could not connect to host
pixel.google.com: did not receive HSTS header (error ignored - included regardless)
pixelcode.com.au: could not connect to host
-pixelcubed.com: could not connect to host
+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
+pixiv.rip: could not connect to host
+pixivimg.me: could not connect to host
+pizala.de: could not connect to host
+pizzacook.ch: did not receive HSTS header
pizzadoc.ch: could not connect to host
+pizzafunny.com.br: could not connect to host
+pizzamc.eu: could not connect to host
+pj00100.com: did not receive HSTS header
+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: did not receive HSTS header
+pj009.com: could not connect to host
+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]
pj881988.com: could not connect to host
-pjbet.mg: did not receive HSTS header
+pjbet.mg: could not connect to host
+pjili.com: did not receive HSTS header
+pjsec.tk: could not connect to host
pkautodesign.com: did not receive HSTS header
+pko.ch: did not receive HSTS header
pkschat.com: could not connect to host
plaasprodukte.com: could not connect to host
+placassinal.com.br: did not receive HSTS header
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
+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
-planespotterblog.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]
+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
-plantastique.com: did not receive HSTS header
plantroon.com: could not connect to host
plass.hamburg: could not connect to host
+plasti-pac.ch: did not receive HSTS header
+plasticsurgeryartist.com: max-age too low: 300
+plastiflex.it: could not connect to host
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
+plattner.club: could not connect to host
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
+playhappywheelsunblocked.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
+playmaza.live: could not connect to host
playmfe.com: could not connect to host
-playnation.io: could not connect to host
+playsoundevents.be: could not connect to host
playsource.co: could not connect to host
playwhyyza.com: could not connect to host
-please-deny.me: did not receive HSTS header
-pleasure-science.com: could not connect to host
+playyou.be: 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
+plexi.dyndns.tv: could not connect to host
plexpy13.ddns.net: could not connect to host
+plextv.de: did not receive HSTS header
plexusmd.com: did not receive HSTS header
plfgr.eu.org: could not connect to host
plhdb.org: did not receive HSTS header
plinc.co: could not connect to host
plirt.ru: could not connect to host
-ploader.ru: could not connect to host
plogable.co: could not connect to host
plomberierenga.com: max-age too low: 2592000
plombirator.kz: did not receive HSTS header
@@ -10570,50 +13799,70 @@ 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
-plus-digital.net: did not receive HSTS header
+plumbingboksburg.co.za: did not receive HSTS header
+plumbingman.com.au: did not receive HSTS header
+plumnet.ch: could not connect to host
+plus-digital.net: could not connect to host
plus-u.com.au: did not receive HSTS header
plus.sandbox.google.com: did not receive HSTS header (error ignored - included regardless)
+plus1s.site: could not connect to host
plus1s.tk: could not connect to host
+plushev.com: did not receive HSTS header
plussizereviews.com: could not connect to host
plustech.id: did not receive HSTS header
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
+pmheart.site: could not connect to host
pmnts.io: could not connect to host
+pmponline.de: did not receive HSTS header
+pneumonline.be: did not receive HSTS header
pneusgppremium.com.br: did not receive HSTS header
pnukee.com: did not receive HSTS header
po.gl: could not connect to host
+poc17.com: could not connect to host
pocakdrops.com: did not receive HSTS header
+pocakking.tk: could not connect to host
pocket-lint.com: did not receive HSTS header
-pocketinsure.com: could not connect to host
+pocketfullofapps.com: did not receive HSTS header
pocketmemories.net: could not connect to host
pocketsix.com: could not connect to host
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
poinsot.beer: could not connect to host
pointeringles.com: could not connect to host
pointiswunderland.de: did not receive HSTS header
pointpro.de: did not receive HSTS header
+points4unitedway.com: could not connect to host
pointworksacademy.com: could not connect to host
+pokalsocial.de: could not connect to host
pokeduel.me: did not receive HSTS header
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
polarityschule.com: did not receive HSTS header
+pole.net.nz: could not connect to host
poleartschool.com: could not connect to host
polen.guide: could not connect to host
policeiwitness.sg: could not connect to host
polimat.org: could not connect to host
+polish-translations.com: could not connect to host
polish.directory: could not connect to host
polit-it.pro: could not connect to host
politeiaudesa.org: max-age too low: 2592000
@@ -10621,51 +13870,75 @@ politically-incorrect.xyz: could not connect to host
politiewervingshop.nl: did not receive HSTS header
politologos.org: could not connect to host
pollpodium.nl: could not connect to host
-polly.spdns.org: could not connect to host
+poloniex.co.za: did not receive HSTS header
polsport.live: did not receive HSTS header
polycoise.com: could not connect to host
polycrypt.us: could not connect to host
+polyfill.io: did not receive HSTS header
polymorph.rs: could not connect to host
polypho.nyc: could not connect to host
-polysage.org: could not connect to host
-pomfe.co: 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
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: did not receive HSTS header
ponteencima.com: could not connect to host
ponteus.com: could not connect to host
pontodogame.com.br: could not connect to host
pontokay.com.br: could not connect to host
pontualcomp.com: could not connect to host
-pony.today: did not receive HSTS header
+pony.today: could not connect to host
ponythread.com: did not receive HSTS header
+ponzi.life: could not connect to host
poolinstallers.co.za: could not connect to host
poolsandstuff.com: did not receive HSTS header
poon.tech: could not connect to host
+popcultureshack.com: could not connect to host
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
+pormat.cl: did not receive HSTS header
+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.im: did not receive HSTS header
port.social: could not connect to host
-portailevangelique.ca: did not receive HSTS header
+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
portalm.tk: could not connect to host
portalmundo.xyz: could not connect to host
portalplatform.net: could not connect to host
-portaluniversalista.org: could not connect to host
-portefeuillesignalen.nl: did not receive HSTS header
-portofrotterdam.com: 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: could not connect to host
+portraitsystem.biz: did not receive HSTS header
poshpak.com: max-age too low: 86400
-positivenames.net: could not connect to host
-post4me.at: could not connect to host
+positivesobrietyinstitute.com: did not receive HSTS header
+posoiu.net: could not connect to host
postback.io: did not receive HSTS header
postcardpayment.com: could not connect to host
postcodegarant.nl: could not connect to host
@@ -10673,75 +13946,92 @@ 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
+potenzprobleme-info.net: did not receive HSTS header
potlytics.com: could not connect to host
potomania.cz: could not connect to host
potpourrifestival.de: did not receive HSTS header
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: 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-coonies.de: could not connect to host
power-l.ch: did not receive HSTS header
-power-of-interest.com: did not receive HSTS header
+power-of-interest.com: could not connect to host
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
-powersergthisisthewebsitefuckyouscott.com: did not receive HSTS header
powersergunited.com: could not connect to host
powersergunited.org: could not connect to host
+powersergusercontent.com: could not connect to host
powershellmagic.com: could not connect to host
powershift.ne.jp: did not receive HSTS header
-powerxequality.com: could not connect to host
+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
-ppoozl.com: could not connect to host
+ppembed.com: did not receive HSTS header
+ppoou.co.uk: 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
practodev.com: could not connect to host
+prajwalkoirala.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
+prazynka.pl: did not receive HSTS header
precedecaritas.com.br: could not connect to host
precisionaeroimaging.com: did not receive HSTS header
prediksisydney.com: could not connect to host
-preexport.com: could not connect to host
+preexport.com: did not receive HSTS header
preezzie.com: could not connect to host
prefis.com: did not receive HSTS header
prefontaine.name: could not connect to host
prego-shop.de: 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
+pregono.com: did not receive HSTS header
+preio.cn: 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
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: did not receive HSTS header
+preposted.com: could not connect to host
preppertactics.com: did not receive HSTS header
preprodfan.gov: could not connect to host
+presbee.com: 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
+press-presse.ca: max-age too low: 2592000
+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: did not receive HSTS header
+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
@@ -10754,72 +14044,94 @@ 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
-primotiles.co.uk: did not receive HSTS header
-primotilesandbathrooms.co.uk: did not receive HSTS header
+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: could not connect to host
+primotilesandbathrooms.co.uk: max-age too low: 2592000
prinbanat.ngo: did not receive HSTS header
-princeofwhales.com: did not receive HSTS header
+princeagency.com: did not receive HSTS header
princessbackpack.de: could not connect to host
princessmargaretlotto.com: did not receive HSTS header
+principalship.net: 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
-printfn.com: did not receive HSTS header
+printexpress.cloud: could not connect to host
priolkar.com: could not connect to host
prism-communication.com: could not connect to host
-prismacloud.xyz: did not receive HSTS header
pristineevents.co.uk: did not receive HSTS header
pritchett.xyz: could not connect to host
privacylabs.io: did not receive HSTS header
privacymanatee.com: could not connect to host
-privacynow.eu: did not receive HSTS header
privacyrup.net: could not connect to host
+privategiant.com: could not connect to host
+privatepokertour.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: could not connect to host
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
+proclubs.news: did not receive HSTS header
procode.gq: could not connect to host
+procrastinatingengineer.co.uk: could not connect to host
+prodottogiusto.com: 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
+productoinnovador.com: did not receive HSTS header
+produkttest-online.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: could not connect to host
profi-durchgangsmelder.de: did not receive HSTS header
profinetz.de: could not connect to host
profivps.com: could not connect to host
profloorstl.com: did not receive HSTS header
+proformer.io: could not connect to host
profpay.com: could not connect to host
profundr.com: could not connect to host
profusion.io: could not connect to host
-progblog.net: 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
programmingstudent.com: could not connect to host
progress-technologies.com: could not connect to host
progressivecfo.co.nz: could not connect to host
prohostonline.fi: could not connect to host
+proimpact.it: did not receive HSTS header
proitconsulting.com.au: could not connect to host
proj.org.cn: could not connect to host
+project-rune.tech: could not connect to host
project-sparks.eu: did not receive HSTS header
+project-splash.com: could not connect to host
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
+projectmercury.space: did not receive HSTS header
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
projetoresecia.com: could not connect to host
-prokop.ovh: could not connect to host
-prolan.pw: did not receive HSTS header
+prok.pw: did not receive HSTS header
+prokop.ovh: did not receive HSTS header
promarketer.net: did not receive HSTS header
promecon-gmbh.de: did not receive HSTS header
promedicalapplications.com: did not receive HSTS header
@@ -10827,42 +14139,53 @@ promesa.net: did not receive HSTS header
promhadan.com: could not connect to host
promocao.email: could not connect to host
promohunt.ru: did not receive HSTS header
+pronostic-king.fr: could not connect to host
prontocleaners.co.uk: could not connect to host
prontolight.com: did not receive HSTS header
prontomovers.co.uk: could not connect to host
+proobec.cz: did not receive HSTS header
propactrading.com: could not connect to host
+propagandism.org: did not receive HSTS header
+propepper.net: did not receive HSTS header
propershave.com: could not connect to host
+prophiler.de: did not receive HSTS header
proplan.co.il: did not receive HSTS header
propmag.co: could not connect to host
prosenseit.com: did not receive HSTS header
+prosharp.com.au: could not connect to host
proslimdiets.com: could not connect to host
prosocialmachines.com: could not connect to host
-prosoft.sk: did not receive HSTS header
prosperident.com: did not receive HSTS header
+prostohobby.ru: could not connect to host
+prostoporno.net: could not connect to host
+prostoporno.sexy: could not connect to host
proteapower.co.za: could not connect to host
protecciondelconsumidor.gov: did not receive HSTS header
proteinnuts.cz: could not connect to host
-proteinnuts.sk: could not connect to host
protonmail.ch: did not receive HSTS header
-protoyou.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]
-provisionaldriving.com: could not connect to host
-provitacare.com: could not connect to host
+provisionaldriving.com: did not receive HSTS header
+provisionircd.tk: did not receive HSTS header
+provitacare.com: did not receive HSTS header
proweser.de: did not receive HSTS header
prowhisky.de: did not receive HSTS header
-proxbox.net: could not connect to host
+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: did not receive HSTS header
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
+proyecto13.com: did not receive HSTS header
+proymaganadera.com: did not receive HSTS header
+prpr.cloud: could not connect to host
prpsss.com: could not connect to host
prstatic.com: could not connect to host
pruikshop.nl: could not connect to host
@@ -10871,7 +14194,7 @@ prxio.site: 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
-pshostpk.com: did not receive HSTS header
+pseudo.coffee: could not connect to host
psicologia.co.ve: could not connect to host
psicologoforensebarcelona.com: did not receive HSTS header
psicosalud.online: could not connect to host
@@ -10884,27 +14207,31 @@ 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
-psychoco.net: could not connect to host
+psxtr.com: could not connect to host
+psychiatrie-betreuung.ch: could not connect to host
psychologie-hofner.at: 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
-ptrbrs.nl: could not connect to host
ptrujillo.com: did not receive HSTS header
+pub-online.ro: 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
puchunguis.com: did not receive HSTS header
puentes.info: did not receive HSTS header
puetter.eu: could not connect to host
pugilares.com.pl: could not connect to host
pugliese.fr: could not connect to host
puhe.se: could not connect to host
-puikheid.nl: could not connect to host
+puhka.me: could not connect to host
+puikheid.nl: did not receive HSTS header
puiterwijk.org: could not connect to host
+puli.com.br: could not connect to host
pulledporkheaven.com: could not connect to host
pulsar.guru: did not receive HSTS header
pulsedursley.co.uk: did not receive HSTS header
@@ -10912,20 +14239,22 @@ pult.co: could not connect to host
pumpgames.net: could not connect to host
punchkickinteractive.com: did not receive HSTS header
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
+purelunch.co.uk: 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
-purrfectswingers.com: did not receive HSTS header
push.world: did not receive HSTS header
pushapp.org: did not receive HSTS header
+pushphp.com: could not connect to host
pushstar.com: max-age too low: 0
puzz.gg: could not connect to host
pvagner.tk: did not receive HSTS header
@@ -10933,8 +14262,9 @@ pwd.ovh: could not connect to host
pwfrance.com: could not connect to host
pwi.agency: did not receive HSTS header
pwm.jp: could not connect to host
-pwnsdx.pw: could not connect to host
+pwnsdx.pw: did not receive HSTS header
pwntr.com: could not connect to host
+pwt.pw: could not connect to host
pxio.de: did not receive HSTS header
pyjiaoyi.cf: could not connect to host
pyol.org: could not connect to host
@@ -10952,71 +14282,90 @@ q-rickroll-u.pw: could not connect to host
q2.si: did not receive HSTS header
q8mp3.me: did not receive HSTS header
qadmium.tk: could not connect to host
-qaz.cloud: did not receive HSTS header
+qamrulhaque.com: could not connect to host
+qapital.com: did not receive HSTS header
qazcloud.com: 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
+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
qi0.de: did not receive HSTS header
qiannews.net: could not connect to host
-qikan.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
-qkmortgage.com: could not connect to host
+qkka.org: did not receive HSTS header
+qkzy.net: did not receive HSTS header
qldconservation.org: could not connect to host
-qledtech.com: did not receive HSTS header
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
+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
qrforex.com: did not receive HSTS header
qrlending.com: could not connect to host
qrlfinancial.com: could not connect to host
-qswoo.org: did not receive HSTS header
+qswoo.org: could not connect to host
+qtap.me: could not connect to host
qto.org: could not connect to host
+quaedam.org: did not receive HSTS header
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: could not connect to host
+quanjinlong.cn: did not receive HSTS header
quantacloud.ch: could not connect to host
+quantaloupe.tech: could not connect to host
quantenteranik.eu: could not connect to host
quantor.dk: did not receive HSTS header
quantum-cloud.xyz: could not connect to host
-quantum-ethics.com: did not receive HSTS header
+quantum-ethics.com: could not connect to host
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: did not receive HSTS header
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
+queercinema.ch: could not connect to host
quelmandataire.fr: did not receive HSTS header
+querkommentar.de: did not receive HSTS header
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
+questoj.cn: did not receive HSTS header
questsandrewards.com: could not connect to host
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
+quilmo.com: could not connect to host
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
@@ -11024,47 +14373,64 @@ quizmemes.org: 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: could not connect to host
+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: did not receive HSTS header
-r-ay.club: did not receive HSTS header
-r-ay.cn: could not connect to host
+r-ay.club: could not connect to host
r-core.org: could not connect to host
r-core.ru: could not connect to host
r-cut.fr: could not connect to host
r-rickroll-u.pw: could not connect to host
+r0t.co: could not connect to host
+r0uzic.net: did not receive HSTS header
r10n.com: did not receive HSTS header
r15.me: did not receive HSTS header
-r18.moe: did not receive HSTS header
-r3bl.me: did not receive HSTS header
-ra-schaal.de: 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]
racasdecachorro.org: could not connect to host
+racdek.net: max-age too low: 2628000
+racdek.nl: max-age too low: 2628000
+rachaelrussell.com: did not receive HSTS header
rackblue.com: could not connect to host
racktear.com: did not receive HSTS header
-rad-route.de: did not receive HSTS header
-raddavarden.nu: could not connect to host
+raconteur.net: did not receive HSTS header
+rad-route.de: could not connect to host
+rada-group.eu: could not connect to host
+radarnext.com: could not connect to host
+raddavarden.nu: did not receive HSTS header
radicaleducation.net: could not connect to host
-radioheteroglossia.com: did not receive HSTS header
-radiosendungen.com: did not receive HSTS header
+radioactivenetwork.xyz: could not connect to host
+radioafibra.com.br: could not connect to host
+radionicabg.com: could not connect to host
+radior9.it: could not connect to host
+radom-pack.pl: could not connect to host
+radtke.bayern: did not receive HSTS header
rafaelcz.de: could not connect to host
+raft.pub: could not connect to host
+raghavdua.in: could not connect to host
ragingserenity.com: did not receive HSTS header
ragnaroktop.com.br: could not connect to host
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
raidstone.com: could not connect to host
-raidstone.net: could not connect to host
raidstone.rocks: could not connect to host
-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: did not receive HSTS header
-raisecorp.com: could not connect to host
raitza.de: could not connect to host
-rajkapoordas.com: could not connect to host
-ramarka.de: could not connect to host
+rakugaki.cn: 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
@@ -11075,23 +14441,28 @@ randomwinpicker.de: could not connect to host
randy.pw: could not connect to host
ranegroup.hosting: could not connect to host
rankthespot.com: could not connect to host
-ranktopay.com: did not receive HSTS header
rannseier.org: did not receive HSTS header
ranos.org: could not connect to host
+rantanda.com: could not connect to host
rany.duckdns.org: could not connect to host
-rany.io: could not connect to host
+rany.io: did not receive HSTS header
rany.pw: could not connect to host
-rapidemobile.com: could not connect to host
+ranyeh.co: could not connect to host
+rapdogg.com: could not connect to host
+raphaelmoura.ddns.net: could not connect to host
+rapidemobile.com: did not receive HSTS header
rapidflow.io: could not connect to host
rapido.nu: could not connect to host
rapidresearch.me: could not connect to host
rapidthunder.io: could not connect to host
-rasing.me: did not receive HSTS header
+rasebo.ro: could not connect to host
+rasing.me: max-age too low: 43200
raspass.me: did not receive HSTS header
raspberry.us: could not connect to host
raspberryultradrops.com: did not receive HSTS header
-raspii.tech: could not connect to host
+raspitec.ddns.net: could not connect to host
rastreador.com.es: did not receive HSTS header
+rastreie.net: could not connect to host
ratajczak.fr: could not connect to host
rate-esport.de: could not connect to host
rathorian.fr: could not connect to host
@@ -11102,51 +14473,68 @@ 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: did not receive HSTS header
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: max-age too low: 360000
+raviparekh.co.uk: could not connect to host
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
+raymondelooff.nl: did not receive HSTS header
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]
razlaw.name: did not receive HSTS header
razzolini.com.br: could not connect to host
rb-china.net: could not connect to host
+rbcservicehub-uat.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]
rbhighinc.org: could not connect to host
+rbmafrica.co.za: 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
+rburchell.com: 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
+rca.ink: could not connect to host
rcafox.com: could not connect to host
-rcmlinx.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
+rdxsattamatka.mobi: could not connect to host
rdyrda.fr: could not connect to host
-re-customer.net: did not receive HSTS header
+re-customer.net: could not connect to host
re-wilding.com: could not connect to host
reachr.com: could not connect to host
reactdatepicker.com: did not receive HSTS header
+reactions.ai: could not connect to host
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: did not receive HSTS header
+readityourself.net: could not connect to host
readmeeatmedrinkme.com: did not receive HSTS header
readr.pw: could not connect to host
+readtldr.com: could not connect to host
readydok.com: did not receive HSTS header
reagir43.fr: did not receive HSTS header
reaiaer.com: could not connect to host
@@ -11154,28 +14542,37 @@ reakyaweso.me: could not connect to host
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
-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
-realwoo.com: 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
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
+rebtoor.com: could not connect to host
+receitas-de-bolos.pt: could not connect to host
receitasdebacalhau.pt: could not connect to host
-recetasdecocinaideal.com: did not receive HSTS header
+receptionsbook.com: could not connect to host
recetasfacilesdehacer.com: did not receive HSTS header
rechat.com: did not receive HSTS header
rechenwerk.net: could not connect to host
-recompiled.org: max-age too low: 7776000
+recht-freundlich.de: did not receive HSTS header
+rechtenliteratuurleiden.nl: could not connect to host
+reclamebureau-ultrax.nl: did not receive HSTS header
+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
+red-trigger.net: did not receive HSTS header
redair.es: could not connect to host
redar.xyz: could not connect to host
redburn.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]
@@ -11184,11 +14581,15 @@ reddiseals.com: [Exception... "Component returned failure code: 0x80004005 (NS_E
reddit.com: did not receive HSTS header
rede.ca: did not receive HSTS header
redeemingbeautyminerals.com: max-age too low: 0
-redhorsemountainranch.com: could not connect to host
+redespaulista.com: did not receive HSTS header
+redheeler.com.br: could not connect to host
+redhorsemountainranch.com: did not receive HSTS header
redicabo.de: could not connect to host
+redigest.it: max-age too low: 0
redirectman.com: could not connect to host
redizoo.com: did not receive HSTS header
-redlatam.org: could not connect to host
+redlatam.org: did not receive HSTS header
+redletter.link: could not connect to host
redmbk.com: did not receive HSTS header
redneck-gaming.de: did not receive HSTS header
redner.cc: did not receive HSTS header
@@ -11196,20 +14597,24 @@ rednertv.de: did not receive HSTS header
rednoseday.com: did not receive HSTS header
redoakmedia.net: did not receive HSTS header
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: max-age too low: 5184000
redstarsurf.com: did not receive HSTS header
reducerin.ro: did not receive HSTS header
redy.host: 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
+reformatreality.com: could not connect to host
refreshingserum.com: could not connect to host
reg.ru: did not receive HSTS header
regaloaks.com: did not receive HSTS header
@@ -11220,59 +14625,73 @@ regendevices.eu: could not connect to host
reggae-cdmx.com: could not connect to host
reginagroffy.com: could not connect to host
regio-salland.nl: could not connect to host
+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
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
+reher.pro: could not connect to host
+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
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
+reisenbauer.ee: could not connect to host
reismil.ch: could not connect to host
reisyukaku.org: did not receive HSTS header
reithguard-it.de: did not receive HSTS header
rejo.in: could not connect to host
+rejushiiplotter.ru: could not connect to host
rejuvemedspa.com: did not receive HSTS header
-rekyou.com: could not connect to host
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
-remaimodern.org: did not receive HSTS header
remain.london: could not connect to host
-remedica.fr: did not receive HSTS header
-remedioskaseros.com: did not receive HSTS header
+remedica.fr: could not connect to host
+remedioscaserosparalacistitis.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
-remitatm.com: could not connect to host
remodela.com.ve: could not connect to host
remodelwithlegacy.com: did not receive HSTS header
remonttitekniikka.fi: could not connect to host
-remoteham.com: could not connect to host
remotestance.com: did not receive HSTS header
rencaijia.com: did not receive HSTS header
rencontres-erotiques.com: did not receive HSTS header
+rene-guitton.fr: did not receive HSTS header
+reneclemens.nl: max-age too low: 2628000
+renedekoeijer.nl: max-age too low: 2628000
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
+renscreations.com: could not connect to host
rentacarcluj.xyz: did not receive HSTS header
+rentalmed.com.br: did not receive HSTS header
+rentasweb.gob.ar: did not receive HSTS header
rentbrowser.com: could not connect to host
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
-repex.co.il: did not receive HSTS header
+reo.gov: could not connect to host
+reorz.com: could not connect to host
+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
repo.ml: did not receive HSTS header
@@ -11289,14 +14708,19 @@ reporturl.com: did not receive HSTS header
reporturl.io: did not receive HSTS header
reposaarenkuva.fi: could not connect to host
reprolife.co.uk: could not connect to host
-reputationweaver.com: could not connect to host
+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
-res-rheingau.de: did not receive HSTS header
-res42.com: could not connect to host
+reqrut.net: could not connect to host
+request-trent.com: could not connect to host
+res-rheingau.de: could not connect to host
+res42.com: did not receive HSTS header
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
+reservoirtp.fr: did not receive HSTS header
residentsinsurance.co.uk: did not receive HSTS header
resl20.servehttp.com: could not connect to host
resoundpro.ca: could not connect to host
@@ -11308,82 +14732,107 @@ restaurantemiperu.com: did not receive HSTS header
restaurantesimonetti.com.br: could not connect to host
restaurantmangal.ch: could not connect to host
restchart.com: did not receive HSTS header
+rester-a-domicile.ch: could not connect to host
+rester-autonome-chez-soi.ch: could not connect to host
restioson.me: could not connect to host
-restopro.nyc: did not receive HSTS header
-restoreresearchstudy.com: did not receive HSTS header
+restopro.nyc: could not connect to host
+restoreresearchstudy.com: could not connect to host
resultsdate.news: could not connect to host
retcor.net: could not connect to host
+retetop95.it: did not receive HSTS header
reth.ch: could not connect to host
-retronet.nl: did not receive HSTS header
+retireyourpassword.org: did not receive HSTS header
+retogroup.com: could not connect to host
+retronet.nl: could not connect to host
retropage.co: did not receive HSTS header
retrowave.eu: could not connect to host
rets.org.br: did not receive HSTS header
-retube.ga: could not connect to host
+retube.ga: did not receive HSTS header
returnofwar.com: could not connect to host
+reussir-ma-fete.fr: could not connect to host
revapost.ch: could not connect to host
revealdata.com: did not receive HSTS header
revelaciones.tv: could not connect to host
revello.org: did not receive HSTS header
reverie.pw: could not connect to host
-review.info: did not receive HSTS header
+reverse.design: could not connect to host
+review.info: could not connect to host
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
-revlect.com: did not receive HSTS header
revolutionhive.com: could not connect to host
revtut.net: could not connect to host
rewopit.net: could not connect to host
rex.st: could not connect to host
+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
+rfeif.org: could not connect to host
+rfxanalyst.com: 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
+rheinturm.nrw: could not connect to host
rhering.de: could not connect to host
-rhiskiapril.com: did not receive HSTS header
+rhetthenckel.com: max-age too low: 0
+rheuma-online.de: could not connect to host
+rhiskiapril.com: could not connect to host
+rhnet.at: could not connect to host
+rhodes.ml: could not connect to host
rhodesianridgeback.com.br: could not connect to host
rhodosdreef.nl: could not connect to host
-riaucybersolution.net: did not receive HSTS header
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]
+richamorindonesia.com: did not receive HSTS header
richardb.me: could not connect to host
+richardcrosby.co.uk: did not receive HSTS header
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
richiemail.net: could not connect to host
richmondsunlight.com: did not receive HSTS header
-richsiciliano.com: could not connect to host
+richmtdriver.com: could not connect to host
+richonrails.com: did not receive HSTS header
+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
+ride-up.com: did not receive HSTS header
rideaudiscount.com: did not receive HSTS header
rideforwade.com: could not connect to host
rideforwade.net: could not connect to host
rideforwade.org: could not connect to host
-rideworks.com: did not receive HSTS header
+rideworks.com: could not connect to host
ridingoklahoma.com: could not connect to host
-ridwan.co: could not connect to host
rienasemettre.fr: did not receive HSTS header
-riesenmagnete.de: did not receive HSTS header
-rievo.net: did not receive HSTS header
+riesenmagnete.de: could not connect to host
+riester.pl: did not receive HSTS header
right-to-love.name: did not receive HSTS header
right2.org: could not connect to host
+rightcapital.com: did not receive HSTS header
righteousendeavour.com: could not connect to host
righttoknow.ie: did not receive HSTS header
-rigolitch.fr: could not connect to host
-rigsalesaustralia.com: did not receive HSTS header
rijndael.xyz: could not connect to host
rijnmondeg.nl: did not receive HSTS header
rika.me: could not connect to host
+rimediogiusto.com: 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
-ripa.io: did not receive HSTS header
+ripa.io: could not connect to host
+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
riskmgt.com.au: could not connect to host
+rissato.com.br: could not connect to host
ristorantefattoamano.eu: could not connect to host
-rithm.ch: could not connect to host
+rithm.ch: did not receive HSTS header
rittis.ru: did not receive HSTS header
rivagecare.it: did not receive HSTS header
rivercruiseadvisor.com: did not receive HSTS header
@@ -11396,24 +14845,37 @@ rjnutrition.consulting: did not receive HSTS header
rk6.cz: could not connect to host
rkc-hygrotherm.de: could not connect to host
rkmantpur.org: did not receive HSTS header
+rkmedia.no: could not connect to host
rmaqequipamentos.com.br: could not connect to host
rmdlingerie.com.br: did not receive HSTS header
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
+rn29.me: could not connect to host
+rnbjunk.com: did not receive HSTS header
roadfeast.com: could not connect to host
roan24.pl: did not receive HSTS header
+roave.com: could not connect to host
+rob.uk.com: did not receive HSTS header
robertabittle.com: could not connect to host
+robertg.me: did not receive HSTS header
robertglastra.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
+robin-novotny.com: could not connect to host
+robinadr.com: did not receive HSTS header
robomonkey.org: could not connect to host
+robtatemusic.com: 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
-rochman.id: could not connect to host
+roc.net.au: could not connect to host
+rochman.id: did not receive HSTS header
+rockcellar.ch: could not connect to host
+rocketgnomes.com: could not connect to host
rocketnet.ml: could not connect to host
rockeyscrivo.com: did not receive HSTS header
rocksberg.net: could not connect to host
@@ -11423,113 +14885,186 @@ rodehutskors.net: could not connect to host
rodney.id.au: did not receive HSTS header
rodneybrooksjr.com: did not receive HSTS header
rodosto.com: did not receive HSTS header
+roelbazuin.com: did not receive HSTS header
roelf.org: did not receive HSTS header
+roeljoyas.com: 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
+roflcopter.fr: did not receive HSTS header
rofrank.space: could not connect to host
rogeiro.net: could not connect to host
+roger101.com: did not receive HSTS header
rogerdat.ovh: could not connect to host
+roguesignal.net: 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
-rolandinsh.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]
+roksolana.be: could not connect to host
rolandkolodziej.com: max-age too low: 86400
rolandslate.com: did not receive HSTS header
rolemaster.net: could not connect to host
-roleplayhome.com: 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: did not receive HSTS header
romanticschemermovie.com: could not connect to host
-romanticvillas.com.au: could not connect to host
romeoferraris.com: did not receive HSTS header
+romleg.cf: could not connect to host
+roms.fun: could not connect to host
romulusapp.com: could not connect to host
ron2k.za.net: could not connect to host
+ronanrbr.com: did not receive HSTS header
rondoniatec.com.br: did not receive HSTS header
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
+ronzertnert.xyz: 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: 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]
+roomongo.com: did not receive HSTS header
+roosterpgplus.nl: did not receive HSTS header
rootbsd.at: could not connect to host
rootforum.org: did not receive HSTS header
-rootrelativity.com: did not receive HSTS header
+rootrelativity.com: could not connect to host
rootservice.org: did not receive HSTS header
rootwpn.com: could not connect to host
-rop.io: 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
+rorymcdaniel.com: could not connect to host
+roseofyork.com: did not receive HSTS header
+rosetiger.life: could not connect to host
rosewoodranch.com: did not receive HSTS header
+roshiya.co.in: could not connect to host
rosi-royal.com: could not connect to host
rospa100.com: did not receive HSTS header
rossclark.com: did not receive HSTS header
rossen.be: did not receive HSTS header
+rossfrancis.co.uk: did not receive HSTS header
rossiworld.com: did not receive HSTS header
+rosslug.org.uk: could not connect to host
rotex1840.de: did not receive HSTS header
rotozen.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]
rotter-dam.nl: did not receive HSTS header
rotterdamjazz.info: could not connect to host
+rotzonline.com: could not connect to host
rough.nu: could not connect to host
+roundaboutweb.info: did not receive HSTS header
roundtheme.com: did not receive HSTS header
rous.se: could not connect to host
rouvray.org: could not connect to host
royal-forest.org: max-age too low: 0
royal-mangal.ch: could not connect to host
+royal806.com: did not receive HSTS header
+royal810.com: could not connect to host
+royal811.com: could not connect to host
+royal816.com: could not connect to host
+royal817.com: could not connect to host
+royal830.com: could not connect to host
+royal833.com: did not receive HSTS header
+royal851.com: could not connect to host
+royal852.com: did not receive HSTS header
+royal855.com: could not connect to host
+royal856.com: did not receive HSTS header
+royal857.com: did not receive HSTS header
+royal859.com: did not receive HSTS header
+royal86.com: did not receive HSTS header
+royal861.com: did not receive HSTS header
+royal865.com: did not receive HSTS header
+royal869.com: did not receive HSTS header
+royal872.com: could not connect to host
+royal873.com: did not receive HSTS header
+royal875.com: did not receive HSTS header
+royal876.com: could not connect to host
+royal877.com: could not connect to host
+royal879.com: could not connect to host
+royal88.tech: did not receive HSTS header
+royal881.com: could not connect to host
+royal882.com: could not connect to host
+royal883.com: could not connect to host
+royal885.com: did not receive HSTS header
+royal886.com: did not receive HSTS header
+royal887.com: did not receive HSTS header
+royal888888.com: did not receive HSTS header
+royal889.com: did not receive HSTS header
+royal890.com: could not connect to host
+royal891.com: could not connect to host
+royal892.com: could not connect to host
+royal893.com: could not connect to host
+royal894.com: could not connect to host
+royal895.com: could not connect to host
+royal896.com: did not receive HSTS header
+royal899.com: did not receive HSTS header
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
+royalyule.com: did not receive HSTS header
roychan.org: max-age too low: 0
royzez.com: could not connect to host
rozalisbengal.ro: 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
-rrke.cc: did not receive HSTS header
+rring.me: could not connect to host
+rritv.com: could not connect to host
+rrke.cc: could not connect to host
+rro.rs: could not connect to host
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
-rsblake.net: could not connect to host
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
+rsm-intern.de: could not connect to host
rsmaps.org: could not connect to host
-rstraining.co.uk: 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
rtc.fun: could not connect to host
-rte.eu: could not connect to host
+rtd.uk.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]
+rtfpessoa.xyz: did not receive HSTS header
rtho.me: did not receive HSTS header
+rttss.com: could not connect to host
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
-ruben.am: did not receive HSTS header
rubendv.be: 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
+rubyquincunx.com: could not connect to host
+rubyquincunx.org: could not connect to host
rubysecurity.org: did not receive HSTS header
-rubyshop.nl: did not receive HSTS header
+rubyshop.nl: could not connect to host
rudeotter.com: did not receive HSTS header
-rue-de-la-vieille.fr: max-age too low: 0
-rueg.eu: could not connect to host
+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
rugstorene.co.uk: did not receive HSTS header
-ruhr3.de: could not connect to host
+ruhr3.de: did not receive HSTS header
ruig.jp: could not connect to host
+ruigomes.me: did not receive HSTS header
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
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
@@ -11541,113 +15076,152 @@ ruobiyi.com: could not connect to host
ruqu.nl: could not connect to host
rusadmin.biz: did not receive HSTS header
rusl.me: could not connect to host
-rusmolotok.ru: could not connect to host
+rusl.net: did not receive HSTS header
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
ruurdboomsma.nl: could not connect to host
ruxit.com: did not receive HSTS header
+rva.gov: could not connect to host
+rvender.cz: did not receive HSTS header
rvg.zone: could not connect to host
+rvoigt.eu: 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
+rwgamernl.ml: could not connect to host
+rxgroup.io: 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
+ryancarter.co.uk: did not receive HSTS header
+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
rylin.net: did not receive HSTS header
rylore.com: could not connect to host
ryssland.guide: could not connect to host
+ryyule.com: did not receive HSTS header
+ryzex.de: could not connect to host
rzegroup.com: did not receive HSTS header
s-d-v.ch: could not connect to host
-s-ip-media.de: could not connect to host
+s-mdb.com: max-age too low: 7776000
s-on.li: could not connect to host
s-rickroll-p.pw: could not connect to host
s.how: could not connect to host
s0923.com: could not connect to host
-s0laris.co.uk: could not connect to host
-s13d.fr: could not connect to host
s1mplescripts.de: could not connect to host
+s1ris.org: did not receive HSTS header
+s3cases.com: did not receive HSTS header
+s3gfault.com: could not connect to host
s3n.se: could not connect to host
-saabwa.org: did not receive HSTS header
+saabwa.org: could not connect to host
sabatek.pl: did not receive HSTS header
-sabine-forschbach.de: could not connect to host
-sabineforschbach.de: could not connect to host
+sabrinajoiasprontaentrega.com.br: could not connect to host
sabtunes.com: did not receive HSTS header
+sac-shop.com: did not receive HSTS header
+saccounty.gov: could not connect to host
+sacharidovejednotky.eu: could not connect to host
+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]
+sackers.com: did not receive HSTS header
saco-ceso.com: could not connect to host
sadiejanehair.com: could not connect to host
+sadmansh.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.moe: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-safedevice.net: did not receive HSTS header
+safe.space: could not connect to host
+safedevice.net: could not connect to host
safelist.eu: did not receive HSTS header
safemovescheme.co.uk: could not connect to host
+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
+saferpost.com: could not connect to host
safesecret.info: did not receive HSTS header
-safetyrisk.net: did not receive HSTS header
safewings-nh.nl: could not connect to host
-safing.me: did not receive HSTS header
+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
+saigonstar.de: could not connect to host
sail-nyc.com: did not receive HSTS header
saint-astier-triathlon.com: did not receive HSTS header
+saintefoy-tarentaise.com: did not receive HSTS header
saintjohnlutheran.church: did not receive HSTS header
+saintmichelqud.com: did not receive HSTS header
sairai.bid: could not connect to host
+saiyasu-search.com: did not receive HSTS header
sakaserver.com: did not receive HSTS header
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
+sale.sh: did not receive HSTS header
+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: did not receive HSTS header
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
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
+saludsexualmasculina.org: 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
+samanacafe.com: could not connect to host
samanthahumphreysstudio.com: did not receive HSTS header
+samanthasicecream.com: could not connect to host
samaritan.tech: could not connect to host
samaritansnet.org: did not receive HSTS header
sametovymesic.cz: could not connect to host
-samkelleher.com: could not connect to host
+samin.tk: could not connect to host
+samip.fi: did not receive HSTS header
saml2.com: could not connect to host
-samlamac.com: did not receive HSTS header
+samlamac.com: could not connect to host
samm.com.au: did not receive HSTS header
-sammyjohnson.com: could not connect to host
+sammenlignakasser.dk: did not receive HSTS header
+sammyslimos.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]
samp.im: could not connect to host
sampcup.com: could not connect to host
-sampoznay.ru: did not receive HSTS header
+sampoznay.ru: could not connect to host
samraskauskas.com: could not connect to host
samsen.club: could not connect to host
samsonova.de: could not connect to host
samsungxoa.com: could not connect to host
-samvanderkris.com: did not receive HSTS header
-samwu.tw: could not connect to host
-sanael.net: could not connect to host
+samvanderkris.com: could not connect to host
+samvanderkris.xyz: did not receive HSTS header
+samyerkes.com: did not receive HSTS header
+san-mian-ka.ml: did not receive HSTS header
+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
sanatrans.com: could not connect to host
+sanchez.adv.br: could not connect to host
+sanderknape.com: did not receive HSTS header
+sandtonvipcompanions.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
-sanissimo.com.mx: max-age too low: 86400
-sannesfotklinikk.no: did not receive HSTS header
+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
-santanderideas.com: could not connect to host
santi.eu: did not receive HSTS header
+santing.net: could not connect to host
santmark.com: could not connect to host
santmark.eu: could not connect to host
santmark.fi: could not connect to host
@@ -11659,35 +15233,39 @@ santorinibbs.com: did not receive HSTS header
santouri.be: 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
sarah-beckett-harpist.com: did not receive HSTS header
+sarahdoyley.com: could not connect to host
+sarahlouisesearle.com: could not connect to host
sarahsweetlife.com: could not connect to host
sarahsweger.com: could not connect to host
-sarakas.com: could not connect to host
-saraleebread.com: max-age too low: 86400
+sarakas.com: did not receive HSTS header
sarangsemutbandung.com: could not connect to host
sarindia.com: could not connect to host
sarindia.de: could not connect to host
sarisonproductions.com: did not receive HSTS header
+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
saruwebshop.co.za: could not connect to host
-sash.pw: could not connect to host
+sasrobotics.xyz: could not connect to host
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
satoshicrypt.com: did not receive HSTS header
-satragreen.com: did not receive HSTS header
+satragreen.com: could not connect to host
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
@@ -11695,51 +15273,66 @@ 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
savekorea.net: max-age too low: 0
savemoneyonenergy.com: did not receive HSTS header
+saveora.shop: could not connect to host
savethedogfishfoundation.org: could not connect to host
saveyour.biz: could not connect to host
-savingbytes.com: could not connect to host
+savingbytes.com: did not receive HSTS header
savinggoliath.com: could not connect to host
savvysuit.com: did not receive HSTS header
saxol-group.com: could not connect to host
say-hanabi.com: could not connect to host
sayhanabi.com: could not connect to host
sazima.ru: did not receive HSTS header
-sbirecruitment.co.in: could not connect to host
sbm.cloud: could not connect to host
sbobetfun.com: did not receive HSTS header
sbox-archives.com: could not connect to host
+sbsrv.ml: 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
+scaarus.com: could not connect to host
+scaffoldhireeastrand.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
schadegarant.net: could not connect to host
schalkoortbv.nl: did not receive HSTS header
+schaper-sport.com: did not receive HSTS header
+schatmeester.be: did not receive HSTS header
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
+schil.li: could not connect to host
+schippers-it.nl: did not receive HSTS header
schlabbi.com: did not receive HSTS header
+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]
-schnell-abnehmen.tips: did not receive HSTS header
-schnell-gold.com: did not receive HSTS header
+schmitz.link: could not connect to host
+schneider-electric.tg: did not receive HSTS header
+schnell-abnehmen.tips: could not connect to host
+schnell-gold.com: could not connect to host
scholl.io: could not connect to host
+schollbox.de: 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
schreiber-netzwerk.eu: did not receive HSTS header
schreibnacht.de: did not receive HSTS header
@@ -11749,26 +15342,32 @@ schrodinger.io: could not connect to host
schroepfglas-versand.de: did not receive HSTS header
schroettle.com: did not receive HSTS header
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: did not receive HSTS header
+schwedenhaus.ag: did not receive HSTS header
schweiz.guide: could not connect to host
schweizerbolzonello.net: could not connect to host
+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
scicasts.com: max-age too low: 7776000
science-anatomie.com: did not receive HSTS header
scienceathome.org: did not receive HSTS header
-sciencebase.gov: 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
+sciototownship-oh.gov: did not receive HSTS header
scivillage.com: did not receive HSTS header
+sckc.stream: could not connect to host
sclgroup.cc: did not receive HSTS header
scm-2017.org: could not connect to host
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
+scorocode.ru: did not receive HSTS header
scotbirchfield.com: did not receive HSTS header
scottainslie.me.uk: could not connect to host
scottdial.com: did not receive HSTS header
@@ -11776,53 +15375,73 @@ scottferguson.com.au: did not receive HSTS header
scotthel.me: did not receive HSTS header
scotthelme.com: did not receive HSTS header
scottnicol.co.uk: could not connect to host
+scottstorey.co.uk: did not receive HSTS header
+scottynordstrom.org: could not connect to host
scourt.info: max-age too low: 0
scourt.org.ua: could not connect to host
scoutdb.ch: did not receive HSTS header
+scpartyentertainment.co.uk: did not receive HSTS header
scrambl.is: could not connect to host
-scramble.io: did not receive HSTS header
+scramble.io: could not connect to host
scrambler.in: could not connect to host
scrapings.net: could not connect to host
-screencaster.io: did not receive HSTS header
+screencaster.io: could not connect to host
screenresolution.space: could not connect to host
-screensaversplanet.com: could not connect to host
-scribbleserver.com: could not connect to host
+screensaversplanet.com: did not receive HSTS header
+scribbleserver.com: did not receive HSTS header
scribe.systems: could not connect to host
scrion.com: could not connect to host
script.google.com: did not receive HSTS header (error ignored - included regardless)
scriptenforcer.net: could not connect to host
scripthost.org: could not connect to host
-scriptict.nl: could not connect to host
+scriptict.nl: did not receive HSTS header
scriptjunkie.us: could not connect to host
scrollstory.com: did not receive HSTS header
scruffymen.com: could not connect to host
+scrumplex.net: did not receive HSTS header
sctm.at: could not connect to host
+scuters.club: could not connect to host
+scw.com: did not receive HSTS header
+scw.nz: could not connect to host
+scwilliams.co.uk: could not connect to host
+scwilliams.uk: could not connect to host
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
-seanationals.org: did not receive HSTS header
+sea-godzilla.com: could not connect to host
+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
seansyardservice.com: did not receive HSTS header
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
-seatshare.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]
+seatshare.co.uk: did not receive HSTS header
+seattleprivacy.org: could not connect to host
+seavancouver.com: did not receive HSTS header
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
+sec4share.me: did not receive HSTS header
secandtech.com: could not connect to host
+secanje.nl: did not receive HSTS header
+secboom.com: did not receive HSTS header
seccomp.ru: did not receive HSTS header
seceye.cn: could not connect to host
+secitem.at: could not connect to host
secitem.de: could not connect to host
+secitem.eu: could not connect to host
secnet.ga: could not connect to host
secondary-survivor.com: could not connect to host
secondary-survivor.help: could not connect to host
@@ -11832,13 +15451,15 @@ secondarysurvivorportal.com: could not connect to host
secondarysurvivorportal.help: could not connect to host
secondbike.co.uk: did not receive HSTS header
secondbyte.nl: could not connect to host
-secondpay.nl: could not connect to host
+secondpay.nl: did not receive HSTS header
secondspace.ca: could not connect to host
+secpoc.online: could not connect to host
secretnation.net: did not receive HSTS header
secretofanah.com: could not connect to host
-secretsanta.fr: could not connect to host
+secretpanties.com: could not connect to host
+secretum.tech: did not receive HSTS header
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
@@ -11850,7 +15471,6 @@ securedevelop.net: could not connect to host
securefuture.nl: did not receive HSTS header
secureideas.com: did not receive HSTS header
secureindia.co: could not connect to host
-securejabber.me: could not connect to host
secureradio.net: could not connect to host
securesuisse.ch: could not connect to host
securetronic.ch: could not connect to host
@@ -11860,33 +15480,40 @@ security-thoughts.org: could not connect to host
security.google.com: did not receive HSTS header (error ignored - included regardless)
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
+securitycamerasaustin.net: did not receive HSTS header
+securitycamerasjohnsoncity.com: could not connect to host
securityglance.com: could not connect to host
-securityheaders.io: did not receive HSTS header
securityinet.biz: did not receive HSTS header
securityinet.net: did not receive HSTS header
securityinet.org.il: could not connect to host
-securitymap.wiki: could not connect to host
securitysoapbox.com: could not connect to host
securitytalk.pl: could not connect to host
securitytestfan.gov: could not connect to host
+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
sedziapilkarski.pl: did not receive HSTS header
seedalpha.com: could not connect to host
seedboxers.net: could not connect to host
-seednode.co: could not connect to host
seefirm.com: could not connect to host
seefunk.net: did not receive HSTS header
seehimnaked.com: could not connect to host
seehimnude.com: could not connect to host
seehisnudes.com: could not connect to host
+seekthe.net: did not receive HSTS header
seele.ca: could not connect to host
-seen.life: could not connect to host
+seemeasaperson.com: did not receive HSTS header
+seen.life: did not receive HSTS header
sehenderson.com: did not receive HSTS header
seida.at: could not connect to host
seiko-dojo.com: could not connect to host
@@ -11898,38 +15525,45 @@ selecadm.name: could not connect to host
selectary.com: could not connect to host
selectcertifiedautos.com: did not receive HSTS header
selectruckscalltrackingreports.com: could not connect to host
+selent.me: could not connect to host
seleondar.ru: did not receive HSTS header
-self-injury.net: did not receive HSTS header
selfdefenserx.com: did not receive HSTS header
selfhosters.com: could not connect to host
selfie-france.fr: could not connect to host
-selfmade4u.de: did not receive HSTS header
selfserverx.com: could not connect to host
selitysvideot.fi: did not receive HSTS header
-selldorado.com: could not connect to host
-sellercritic.com: did not receive HSTS header
+sellercritic.com: could not connect to host
sellocdn.com: could not connect to host
sellservs.co.za: could not connect to host
-semantheme.fr: did not receive HSTS header
+seltendoof.de: could not connect to host
+semantheme.fr: could not connect to host
semen3325.xyz: could not connect to host
semenkovich.com: did not receive HSTS header
-semenov.su: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
sementes.gratis: could not connect to host
+semianalog.com: could not connect to host
+semirben.de: max-age too low: 172800
+semmlers.com: did not receive HSTS header
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: max-age too low: 0
+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
sensibus.com: did not receive HSTS header
sensoft-int.com: could not connect to host
-sentinel.gov: did not receive HSTS header
+sensoft-int.net: could not connect to host
+sensualism.com: could not connect to host
seo-lagniappe.com: did not receive HSTS header
+seoarchive.org: could not connect to host
seobot.com.au: could not connect to host
+seoenmexico.com.mx: did not receive HSTS header
seohochschule.de: could not connect to host
+seoium.com: did not receive HSTS header
+seokay.com: did not receive HSTS header
+seolaba.io: could not connect to host
+seolib.org: 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
@@ -11938,55 +15572,78 @@ seoscribe.net: could not connect to host
seosec.xyz: could not connect to host
seotronix.net: did not receive HSTS header
seowarp.net: did not receive HSTS header
-sep23.ru: could not connect to host
+sep23.ru: did not receive HSTS header
+sepakbola.win: could not connect to host
sephr.com: did not receive HSTS header
sepie.gob.es: did not receive HSTS header
+seproco.com: could not connect to host
+septakkordeon.de: could not connect to host
seq.tf: did not receive HSTS header
+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
+sergeemond.ca: could not connect to host
+sergivb01.me: did not receive HSTS header
serized.pw: could not connect to host
-serkaneles.com: could not connect to host
+serkaneles.com: did not receive HSTS header
+servdiscount.com: did not receive HSTS header
servecrypt.com: could not connect to host
servecrypt.net: could not connect to host
servecrypt.ru: could not connect to host
server-bg.net: could not connect to host
server.pk: did not receive HSTS header
-serverangels.co.uk: did not receive HSTS header
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
servermonkey.nl: could not connect to host
servfefe.com: could not connect to host
+service-wueste-vodafone.tk: could not connect to host
servicevie.com: did not receive HSTS header
-servious.org: could not connect to host
+servpanel.de: did not receive HSTS header
servu.de: did not receive HSTS header
+servx.ru: did not receive HSTS header
seryo.moe: could not connect to host
seryo.net: could not connect to host
seryovpn.com: could not connect to host
-sesha.co.za: did not receive HSTS header
-setkit.net: did not receive HSTS header
+sesha.co.za: could not connect to host
+sethoedjo.com: could not connect to host
+setkit.net: could not connect to host
+setterirlandes.com.br: could not connect to host
setuid.de: could not connect to host
-setuid.io: did not receive HSTS header
-setuid0.kr: could not connect to host
+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
+sexoyrelax.com: could not connect to host
+sexpay.net: could not connect to host
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
seyahatsagliksigortalari.com: could not connect to host
-seydaozcan.com: did not receive HSTS header
seyr.it: could not connect to host
sfashion.si: did not receive HSTS header
+sfaturiit.ro: could not connect to host
+sfcomercio.com.br: could not connect to host
sfhobbies.com.br: could not connect to host
sfsltd.com: did not receive HSTS header
-sgcaccounts.co.uk: did not receive HSTS header
sgovaard.nl: did not receive HSTS header
+sgroup-hitoduma.com: did not receive HSTS header
+sgroup-rec.com: 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
@@ -11994,8 +15651,8 @@ shadow-socks.org: did not receive HSTS header
shadow-socks.pro: could not connect to host
shadowguardian507-irl.tk: did not receive HSTS header
shadowguardian507.tk: did not receive HSTS header
-shadowict.net: could not connect to host
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
@@ -12014,26 +15671,35 @@ shag-shag.ru: could not connect to host
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
-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
+shanewadleigh.com: did not receive HSTS header
shang-yu.cn: could not connect to host
-shankangke.com: did not receive HSTS header
+shangzhen.site: could not connect to host
shanxiapark.com: could not connect to host
+shanyhs.com: could not connect to host
shapesedinburgh.co.uk: did not receive HSTS header
shardsoft.com: could not connect to host
+sharecc.co: 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
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
+sharkie.org.za: 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
+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
@@ -12041,22 +15707,25 @@ 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
+shellday.cc: could not connect to host
+shellot.com: could not connect to host
shellsec.pw: did not receive HSTS header
+shena.co.uk: could not connect to host
+shengrenyu.com: could not connect to host
+shens.ai: 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: 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
-shieldfe.com: could not connect to host
shieldofachilles.in: could not connect to host
shift.ooo: did not receive HSTS header
shiftins.com: could not connect to host
@@ -12064,36 +15733,40 @@ 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]
+shin-inc.jp: did not receive HSTS header
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
shipmile.com: did not receive HSTS header
-shipping24h.com: did not receive HSTS header
+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
+shishamania.de: could not connect to host
shishkin.link: did not receive HSTS header
-shitfest.info: could not connect to host
+shitfest.info: did not receive HSTS header
shitposting.life: could not connect to host
shk.im: could not connect to host
shlemenkov.by: could not connect to host
shm-forum.org.uk: could not connect to host
-sho-tanaka.jp: did not receive HSTS header
+shmibbles.me: could not connect to host
+shmunky.co.uk: did not receive HSTS header
+sho-tanaka.jp: could not connect to host
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
-shopatkei.com: could not connect to host
+shop.fr: did not receive HSTS header
shopdopastor.com.br: could not connect to host
shopherbal.co.za: could not connect to host
+shophisway.com: could not connect to host
shopods.com: did not receive HSTS header
shopontarget.com: did not receive HSTS header
shoppeno5.com: did not receive HSTS header
+shoppia.se: did not receive HSTS header
shoppingreview.org: did not receive HSTS header
shoprose.ru: could not connect to host
shoprsc.com: could not connect to host
@@ -12104,21 +15777,28 @@ 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: max-age too low: 2592000
shred.ch: could not connect to host
shredoptics.ch: could not connect to host
+shreyansh26.me: 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
+si.to: could not connect to host
siamega.com: could not connect to host
siammedia.co: could not connect to host
siamojo.com: could not connect to host
@@ -12126,46 +15806,60 @@ sianimacion.com: could not connect to host
siao-mei.com: did not receive HSTS header
sichere-kartenakzeptanz.de: could not connect to host
siciliadigitale.pro: could not connect to host
+sickfile.com: could not connect to host
+sicklepod.com: could not connect to host
+siconnect.us: did not receive HSTS header
sictame-tigf.org: did not receive HSTS header
+sideropolisnoticias.com.br: did not receive HSTS header
+sidpod.ru: could not connect to host
+siduga.com: could not connect to host
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
+signaltransmitter.de: did not receive HSTS header
+signdesk.com: did not receive HSTS header
signere.com: could not connect to host
-signere.no: 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
+signosquecombinam.com.br: did not receive HSTS header
+signsdance.uk: could not connect to host
sigsegv.run: did not receive HSTS header
-sigterm.no: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+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
+sijimi.cn: did not receive HSTS header
+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
silentlink.io: could not connect to host
silentmode.com: max-age too low: 7889238
silicagelpackets.ca: did not receive HSTS header
-sillisalaatti.fi: could not connect to host
+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.bg: could not connect to host
+silvergoldbull.kg: could not connect to host
+silvergoldbull.ky: could not connect to host
silvergoldbull.md: could not connect to host
-silvergoldbull.ru: could not connect to host
+silvergoldbull.ml: could not connect to host
+silvergoldbull.ph: could not connect to host
silverhome.ninja: could not connect to host
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
-silvobeat.blog: could not connect to host
+sim-sim.appspot.com: did not receive HSTS header
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
@@ -12177,12 +15871,16 @@ 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
+simotrescu.ro: could not connect to host
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
+simpleclassiclife.com: could not connect to host
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
@@ -12191,20 +15889,26 @@ simplesamlphp.org: did not receive HSTS header
simplexsupport.com: did not receive HSTS header
simplixos.org: could not connect to host
simplyenak.com: did not receive HSTS header
+simplyrara.com: did not receive HSTS header
sims4hub.ga: could not connect to host
simtin-net.de: could not connect to host
+simumiehet.com: could not connect to host
simyo.nl: did not receive HSTS header
sin30.net: could not connect to host
sincai666.com: could not connect to host
+sinceschool.com: could not connect to host
sinclairmoving.com: did not receive HSTS header
sincron.org: could not connect to host
-sinefili.com: did not receive HSTS header
+sinefili.com: could not connect to host
sinful.pw: could not connect to host
singee.site: could not connect to host
singerwang.com: did not receive HSTS header
+singles-berlin.de: could not connect to host
singul4rity.com: could not connect to host
sinkip.com: could not connect to host
+sinn.io: could not connect to host
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: could not connect to host
@@ -12212,16 +15916,18 @@ 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: could not connect to host
+sipsik.net: did not receive HSTS header
siqi.wang: could not connect to host
+sirburton.com: could not connect to host
siriad.com: could not connect to host
sirius-lee.net: could not connect to host
siro.gq: did not receive HSTS header
-siroop.ch: max-age too low: 86400
-sisseastumine.ee: did not receive HSTS header
+siroop.ch: did not receive HSTS header
+sisgopro.com: could not connect to host
sistemasespecializados.com: did not receive HSTS header
+sistemlash.com: did not receive HSTS header
+sistemos.net: could not connect to host
sistersurprise.de: did not receive HSTS header
-sitc.sk: could not connect to host
sitecloudify.com: could not connect to host
sitecuatui.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]
sitehome.eu: could not connect to host
@@ -12233,13 +15939,21 @@ sites.google.com: did not receive HSTS header (error ignored - included regardle
sitesforward.com: did not receive HSTS header
sitesource101.com: did not receive HSTS header
sitesten.com: did not receive HSTS header
+sitesuccessful.com: did not receive HSTS header
+sitsy.ru: did not receive HSTS header
sittinginoblivion.com: did not receive HSTS header
-sixcorners.info: could not connect to host
sizingservers.be: did not receive HSTS header
-sizzle.co.uk: did not receive HSTS header
+sizzle.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]
+sja-se-training.com: could not connect to host
+sjatsh.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
+sjv4u.ch: 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
@@ -12248,14 +15962,16 @@ 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
ski-insurance.com.au: did not receive HSTS header
skidstresser.com: could not connect to host
-skifairview.com: did not receive HSTS header
skiinstructor.services: did not receive HSTS header
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
@@ -12265,25 +15981,36 @@ skoda-clever-lead.de: could not connect to host
skoda-im-dialog.de: could not connect to host
skoda-nurdiebesten.de: did not receive HSTS header
skoda-service-team-cup.de: did not receive HSTS header
-skotty.io: did not receive HSTS header
+skolnieks.lv: could not connect to host
+skomski.org: did not receive HSTS header
+skoolergraph.azurewebsites.net: 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
+sky-universe.net: did not receive HSTS header
skyasker.cn: could not connect to host
-skyasker.com: did not receive HSTS header
-skybound.link: could not connect to host
+skyasker.com: could not connect to host
+skybloom.com: could not connect to host
+skybloom.io: could not connect to host
+skybound.link: did not receive HSTS header
skyflix.me: could not connect to host
skyline.link: could not connect to host
skyline.tw: did not receive HSTS header
skylocker.net: could not connect to host
+skylocker.nl: did not receive HSTS header
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: could not connect to host
skyvault.io: could not connect to host
skyveo.ml: did not receive HSTS header
skyway.capital: did not receive HSTS header
skyworldserver.ddns.net: could not connect to host
+sl0.us: did not receive HSTS header
sl1pkn07.wtf: could not connect to host
slaps.be: could not connect to host
slash-dev.de: did not receive HSTS header
@@ -12294,48 +16021,66 @@ slashand.co: could not connect to host
slashbits.no: did not receive HSTS header
slashdesign.it: did not receive HSTS header
slashem.me: did not receive HSTS header
-slattery.co: could not connect to host
+slatemc.fun: could not connect to host
+slatko.io: could not connect to host
+slattery.co: did not receive HSTS header
slauber.de: did not receive HSTS header
+sld08.com: did not receive HSTS header
sleeklounge.com: did not receive HSTS header
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
+slides.zone: 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
-sluplift.com: did not receive HSTS header
-slycurity.de: did not receive HSTS header
+sluplift.com: could not connect to host
+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]
-smallplanet.ch: could not connect to host
+smallcloudsolutions.co.za: could not connect to host
+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: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+smartboleta.com: did not receive HSTS header
smartbuyelectric.com: could not connect to host
smartcoin.com.br: could not connect to host
smarterskies.gov: did not receive HSTS header
+smartest-trading.com: could not connect to host
smarthomedna.com: did not receive HSTS header
+smartietop.com: could not connect to host
smartit.pro: did not receive HSTS header
smartlend.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]
+smartmompicks.com: did not receive HSTS header
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
+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
smileawei.com: could not connect to host
smimea.com: did not receive HSTS header
@@ -12345,10 +16090,10 @@ smittix.co.uk: did not receive HSTS header
smkn1lengkong.sch.id: did not receive HSTS header
smksi2.com: could not connect to host
smksultanismail2.com: could not connect to host
-smkw.com: did not receive HSTS header
sml.lc: could not connect to host
smmcab.ru: could not connect to host
-smol.cat: did not receive HSTS header
+smmcab.website: could not connect to host
+smokinghunks.com: could not connect to host
smove.sg: did not receive HSTS header
smplix.com: could not connect to host
smries.com: could not connect to host
@@ -12357,60 +16102,73 @@ 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
+smusg.com: did not receive HSTS header
+smutba.se: did not receive HSTS header
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
snapworks.net: did not receive HSTS header
snarf.in: could not connect to host
-sneaker.date: 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
snic.website: could not connect to host
+sniderman.pro: could not connect to host
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
snoozedds.com: max-age too low: 600
snoqualmiefiber.org: could not connect to host
+snoringhq.com: did not receive HSTS header
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
+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
+soc.net: could not connect to host
+socal-babes.com: could not connect to host
soccergif.com: could not connect to host
soci.ml: could not connect to host
social-journey.com: could not connect to host
socialbillboard.com: could not connect to host
socialcs.xyz: could not connect to host
socialdj.de: did not receive HSTS header
-socialfacecook.com: could not connect to host
+socialfacecook.com: did not receive HSTS header
socialgrowing.cl: did not receive HSTS header
socialhead.io: could not connect to host
socialhub.com: did not receive HSTS header
-socialnitro.com: could not connect to host
-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
+socoastal.com: 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
+sodamakerclub.com: did not receive HSTS header
+sodiao.cc: could not connect to host
softballsavings.com: did not receive HSTS header
-softclean.pt: could not connect to host
+softbebe.com: did not receive HSTS header
+softclean.pt: did not receive HSTS header
+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
+soju.fi: did not receive HSTS header
sokolka.tv: did not receive HSTS header
sol-3.de: did not receive HSTS header
solarcom.com.br: could not connect to host
@@ -12419,65 +16177,81 @@ 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: could not connect to host
solidwebnetworks.co.uk: did not receive HSTS header
solinter.com.br: did not receive HSTS header
solisrey.es: could not connect to host
soljem.com: did not receive HSTS header
soll-i.ch: did not receive HSTS header
-solos.im: did not receive HSTS header
solosmusic.xyz: could not connect to host
solsystems.ru: did not receive HSTS header
+solus-project.com: did not receive HSTS header
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
+somersetscr.nhs.uk: could not connect to host
someshit.xyz: could not connect to host
something-else.cf: could not connect to host
somethingnew.xyz: could not connect to host
somethingsimilar.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]
-sonafe.info: did not receive HSTS header
+somewherein.jp: did not receive HSTS header
+sonafe.info: could not connect to host
sonerezh.bzh: did not receive HSTS header
+songluck.com: could not connect to host
+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
+sonoecoracao.com.br: 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
+soodwatthanaphon.net: did not receive HSTS header
+soondy.com: could not connect to host
+soothemobilemassage.com.au: did not receive HSTS header
soply.com: could not connect to host
soporte.cc: could not connect to host
-sorenam.com: could not connect to host
+sorenam.com: did not receive HSTS header
sorensen-online.com: could not connect to host
-sorincocorada.ro: could not connect to host
+sorex.photo: did not receive HSTS header
sorinmuntean.ro: did not receive HSTS header
-sorn.service.gov.uk: did not receive HSTS header
sortaweird.net: could not connect to host
sortingwizard.com: could not connect to host
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
+sosesh.shop: could not connect to host
+sosiolog.com: did not receive HSTS header
sosko.in.rs: could not connect to host
-sotiran.com: could not connect to host
+sotavasara.net: did not receive HSTS header
+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
+soulema.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]
soulfulglamour.uk: could not connect to host
soulsteer.com: could not connect to host
+soundedj.com.br: could not connect to host
soundforsound.co.uk: did not receive HSTS header
-souravsaha.com: 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
+sourcely.net: could not connect to host
sourcitec.com: did not receive HSTS header
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
+southwindsor-ct.gov: could not connect to host
southworcestershiregpservices.co.uk: could not connect to host
soutien-naissance.com: could not connect to host
souvik.me: did not receive HSTS header
@@ -12487,7 +16261,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
@@ -12497,16 +16270,17 @@ spacelabs.io: could not connect to host
spacemo.com: did not receive HSTS header
spacountryexplorer.org.au: did not receive HSTS header
spaggel.nl: did not receive HSTS header
-spaldingwall.com: could not connect to host
spam.lol: could not connect to host
spamloco.net: did not receive HSTS header
+spamwc.de: did not receive HSTS header
spangehlassociates.com: did not receive HSTS header
spanien.guide: could not connect to host
-spar.co.uk: max-age too low: 0
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: did not receive HSTS header
sparkwood.org: could not connect to host
sparmedo.de: did not receive HSTS header
sparsa.army: could not connect to host
@@ -12515,79 +16289,94 @@ spartantheatre.org: could not connect to host
spauted.com: could not connect to host
spawn.cz: could not connect to host
spcx.eu: could not connect to host
+spd-pulheim-mitte.de: did not receive HSTS header
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
+spectrosoftware.de: could not connect to host
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
speeds.vip: could not connect to host
speedway.com.pl: did not receive HSTS header
+speedychat.it: could not connect to host
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
-spherenix.org: could not connect to host
sphinx.network: could not connect to host
spicydog.tk: could not connect to host
spicywombat.com: could not connect to host
-spidermail.tk: could not connect to host
-spidernet.tk: could not connect to host
-spiegels.nl: could not connect to host
+spiegels.nl: did not receive HSTS header
+spiel-teppich.de: could not connect to host
spielcasinos.com: did not receive HSTS header
-spiet.nl: could not connect to host
-spikeykc.me: did not receive HSTS header
+spikeykc.me: could not connect to host
+spillersfamily.net: could not connect to host
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
+splunk.zone: did not receive HSTS header
+spoketwist.com: did not receive HSTS header
spokonline.com: could not connect to host
spon.cz: did not receive HSTS header
+sponsorowani.pl: did not receive HSTS header
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
+sport247.bet: max-age too low: 2592000
sportchirp-internal.azurewebsites.net: did not receive HSTS header
+sportflash.info: did not receive HSTS header
sporthit.ru: could not connect to host
sportifik.com: did not receive HSTS header
sportingoods.com.br: could not connect to host
+sportressofblogitude.com: did not receive HSTS header
sportscollection.com.br: could not connect to host
-sportwette.eu: did not receive HSTS header
+sportsmanadvisor.com: could not connect to host
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
+spotteredu.com: did not receive HSTS header
+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
sprigings.com: did not receive HSTS header
+springreizen.nl: 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
-spron.in: could not connect to host
+sproing.ca: max-age too low: 0
sproutconnections.com: could not connect to host
-sprueche-zum-valentinstag.de: did not receive HSTS header
-sprueche-zur-geburt.info: did not receive HSTS header
+sprueche-zum-valentinstag.de: could not connect to host
+sprueche-zur-geburt.info: could not connect to host
sprueche-zur-hochzeit.de: did not receive HSTS header
sprueche-zur-konfirmation.de: did not receive HSTS header
sprutech.de: could not connect to host
-sputnik1net.org: 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: could not connect to host
+squadlinx.com: did not receive HSTS header
square.gs: could not connect to host
-squarelab.it: did not receive HSTS header
+squarelab.it: could not connect to host
+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
@@ -12596,6 +16385,7 @@ sr-cs.net: did not receive HSTS header
srcc.fr: could not connect to host
sreeharis.tk: could not connect to host
srevilak.net: did not receive HSTS header
+srichan.net: could not connect to host
sritest.io: could not connect to host
srmaximo.com: could not connect to host
srna.sk: did not receive HSTS header
@@ -12605,14 +16395,16 @@ 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
-ssh.nu: could not connect to host
+ssconn.com: could not connect to host
+ssh.nu: did not receive HSTS header
sshool.at: could not connect to host
ssl.panoramio.com: could not connect to host
ssl.rip: could not connect to host
sslzilla.de: did not receive HSTS header
ssn1.ru: did not receive HSTS header
-sso.to: could not connect to host
sspanda.com: could not connect to host
ssrvpn.tech: could not connect to host
sss3s.com: could not connect to host
@@ -12624,40 +16416,52 @@ stackfiles.io: could not connect to host
stackhub.cc: 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
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
+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
+stamboommuller.nl: did not receive HSTS header
+stamboomvanderwal.nl: did not receive HSTS header
stanandjerre.org: could not connect to host
standardssuck.org: did not receive HSTS header
standingmist.com: did not receive HSTS header
standoutbooks.com: max-age too low: 0
standuppaddlesports.com.au: did not receive HSTS header
+stang.moe: did not receive HSTS header
stannahtrapliften.nl: did not receive HSTS header
-star-stuff.de: did not receive HSTS header
+star-citizen.wiki: did not receive HSTS header
+star-killer.net: could not connect to host
+star-stuff.de: could not connect to host
+star.do: did not receive HSTS header
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
-starina.ru: could not connect to host
+starinvestors.in: could not connect to host
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
starsbattle.net: could not connect to host
+starteesforsale.co.za: did not receive HSTS header
+startsamenvitaal.nu: did not receive HSTS header
startup.melbourne: could not connect to host
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
state-of-body-and-mind.com: could not connect to host
state-sponsored-actors.net: could not connect to host
@@ -12670,28 +16474,31 @@ static.hosting: could not connect to host
static.or.at: did not receive HSTS header
staticanime.net: could not connect to host
staticisnoise.com: could not connect to host
-stationaryjourney.com: could not connect to host
+stationaryjourney.com: did not receive HSTS header
stationcharlie.com: could not connect to host
stationnementdenuit.ca: did not receive HSTS header
-status-sprueche.de: did not receive HSTS header
+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
stcomex.com: did not receive HSTS header
-stdrc.cc: 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
steborio.pw: could not connect to host
-stedbg.net: could not connect to host
+steckel.cc: 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
steffi-in-australien.com: could not connect to host
+stellarvale.net: could not connect to host
+stellen.ch: did not receive HSTS header
stem.is: did not receive HSTS header
stepbystep3d.com: did not receive HSTS header
steph-autoecole.ch: did not receive HSTS header
@@ -12699,23 +16506,37 @@ steph3n.me: could not connect to host
stephanierxo.com: did not receive HSTS header
stephanos.me: could not connect to host
stephenandburns.com: did not receive HSTS header
+stephenjvoiceovers.com: did not receive HSTS header
stephensolis.net: could not connect to host
stephensolisrey.es: could not connect to host
steplogictalent.com: could not connect to host
sterjoski.com: did not receive HSTS header
+stesti.cz: could not connect to host
+steuerkanzlei-und-wirtschaftsberater-manke.de: could not connect to host
+steve.kiwi: 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
+stiens.de: did not receive HSTS header
+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
+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
+stillnessproject.com: did not receive HSTS header
stillyarts.com: did not receive HSTS header
stinkytrashhound.com: could not connect to host
stirlingpoon.net: could not connect to host
@@ -12725,41 +16546,60 @@ stjohnmiami.org: did not receive HSTS header
stjohnsc.com: could not connect to host
stkbn.com: could not connect to host
stkeverneparishcouncil.org.uk: did not receive HSTS header
-stl.news: 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
stoffelen.nl: did not receive HSTS header
stoianlawfirm.com: could not connect to host
stoick.me: could not connect to host
+stoinov.com: could not connect to host
+stolbart.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
+stonefusion.org.uk: 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
storecove.com: did not receive HSTS header
storeden.com: did not receive HSTS header
storefrontify.com: could not connect to host
-storiesofhealth.org: did not receive HSTS header
+storeprijs.nl: did not receive HSTS header
+storiesofhealth.org: could not connect to host
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
+straightedgebarbers.ca: 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
-strathewerd.de: did not receive HSTS header
+stratuscloud.co.za: did not receive HSTS header
+stratuscloudconsulting.cn: did not receive HSTS header
+stratuscloudconsulting.co.uk: did not receive HSTS header
+stratuscloudconsulting.co.za: did not receive HSTS header
+stratuscloudconsulting.com: did not receive HSTS header
+stratuscloudconsulting.in: did not receive HSTS header
+stratuscloudconsulting.info: did not receive HSTS header
+stratuscloudconsulting.net: did not receive HSTS header
+stratuscloudconsulting.org: 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
@@ -12768,56 +16608,79 @@ 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
-streampleasure.xyz: did not receive HSTS header
+streams.dyndns.org: could not connect to host
streamthemeeting.com: did not receive HSTS header
streamzilla.com: did not receive HSTS header
-streetmarket.ru: could not connect to host
strehl.tk: could not connect to host
-streklhof.at: did not receive HSTS header
+strelitzia02.com: could not connect to host
stressfreehousehold.com: could not connect to host
+stretchpc.com: could not connect to host
+strictlynormal.com: could not connect to host
strictlysudo.com: could not connect to host
-strife.tk: could not connect to host
+strife.tk: did not receive HSTS header
strila.me: could not connect to host
-striptizer.tk: did not receive HSTS header
+striptizer.tk: could not connect to host
+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
studentresearcher.org: did not receive HSTS header
studentskydenik.cz: could not connect to host
-studenttravel.cz: did not receive HSTS header
+studenttravel.cz: could not connect to host
studer.su: could not connect to host
+studiemeter.nl: did not receive HSTS header
+studiereader.nl: did not receive HSTS header
studinf.xyz: could not connect to host
-studio-panic.com: did not receive HSTS header
-studiocn.cn: did not receive HSTS header
+studio-panic.com: could not connect to host
+studio-webdigi.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
+studlan.no: could not connect to host
+studport.rv.ua: max-age too low: 604800
studyabroadstation.com: could not connect to host
-studybay.com: did not receive HSTS header
+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
+stuffiwouldbuy.com: 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
+stutsmancounty.gov: could not connect to host
+stuttgart-gablenberg.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]
+stuudium.cloud: could not connect to host
stuudium.life: could not connect to host
+stylaq.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]
stylenda.com: could not connect to host
stylle.me: could not connect to host
stytt.com: could not connect to host
+suaraangin.com: could not connect to host
suareforma.com: could not connect to host
+suave.io: did not receive HSTS header
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
-subrain.com: 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
+subterfuge.io: did not receive HSTS header
subtitle.rip: could not connect to host
subwayz.de: did not receive HSTS header
subzerolosangeles.com: did not receive HSTS header
@@ -12826,35 +16689,43 @@ succubus.network: could not connect to host
succubus.xxx: 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: did not receive HSTS header
sugarcitycon.com: could not connect to host
sugarsweetorsour.com: did not receive HSTS header
sugartownfarm.com: could not connect to host
suian.or.jp: max-age too low: 86400
suite73.org: could not connect to host
+suited21.com: did not receive HSTS header
suitocracy.com: could not connect to host
+summa-prefis.com: did not receive HSTS header
summer.ga: could not connect to host
+summermc.cc: could not connect to host
summitbankofkc.com: did not receive HSTS header
summitmasters.net: did not receive HSTS header
-sumoscout.de: could not connect to host
+sumoatm.com: did not receive HSTS header
+sumoscout.de: did not receive HSTS header
+sun-leo.co.jp: did not receive HSTS header
sun-wellness-online.com.vn: did not receive HSTS header
-sun.re: could not connect to host
+sun.re: did not receive HSTS header
suncountrymarine.com: did not receive HSTS header
sundaycooks.com: max-age too low: 2592000
suneilpatel.com: could not connect to host
+sunfeathers.net: could not connect to host
sunfireshop.com.br: could not connect to host
-sunjaydhama.com: 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: could not connect to host
sunshinepress.org: could not connect to host
sunxchina.com: could not connect to host
sunyanzi.tk: could not connect to host
+sunyataherb.com: could not connect to host
suos.io: could not connect to host
supcro.com: could not connect to host
-super-demarche.com: could not connect to host
+super-demarche.com: did not receive HSTS header
+super-erotica.ru: could not connect to host
super-garciniaslim.com: could not connect to host
super-o-blog.com: could not connect to host
super-radiant-skin.com: could not connect to host
@@ -12862,50 +16733,68 @@ 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
supernovabrasil.com.br: did not receive HSTS header
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
supersecurefancydomain.com: could not connect to host
supertramp-dafonseca.com: did not receive HSTS header
superuser.fi: could not connect to host
superwally.org: could not connect to host
+superway.es: did not receive HSTS header
supes.io: did not receive HSTS header
+supperclub.es: could not connect to host
support4server.de: could not connect to host
supportfan.gov: could not connect to host
suprlink.net: could not connect to host
supweb.ovh: could not connect to host
-surasak.org: could not connect to host
+surasak.io: could not connect to host
surasak.xyz: could not connect to host
suraya.online: could not connect to host
+surdam.casa: could not connect to host
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
-survivalistplanet.com: did not receive HSTS header
+suruifu.tk: could not connect to host
+survivalistplanet.com: could not connect to host
+survivebox.fr: did not receive HSTS header
+susanvelez.com: 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
+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
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
-svenluijten.com: did not receive HSTS header
-svenskacasino.com: did not receive HSTS header
+sve-hosting.nl: could not connect to host
+svenbacia.me: could not connect to host
+svendubbeld.nl: did not receive HSTS header
+svenskacasino.com: could not connect to host
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
@@ -12915,37 +16804,51 @@ swaleacademiestrust.org.uk: max-age too low: 2592000
swallsoft.co.uk: could not connect to host
swallsoft.com: could not connect to host
swanseapartyhire.co.uk: could not connect to host
+swarlys-server.de: could not connect to host
swarmation.com: did not receive HSTS header
+sway.com: did not receive HSTS header
swdatlantico.pt: could not connect to host
sweep.cards: did not receive HSTS header
sweetlegs.jp: could not connect to host
sweetstreats.ca: could not connect to host
sweetvanilla.jp: could not connect to host
-sweharris.org: could not connect to host
+swehack.org: could not connect to host
swfloshatraining.com: could not connect to host
-swift-devedge.de: did not receive HSTS header
+swift-devedge.de: could not connect to host
swiftconf.com: did not receive HSTS header
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
+swimmingpoolaccidentattorney.net: could not connect to host
+swingular.com: could not connect to host
+swisscannabis.club: could not connect to host
swissentreprises.ch: could not connect to host
+swissfreshaircan.com: could not connect to host
+swisstechtalks.ch: did not receive HSTS header
swisstranslate.ch: did not receive HSTS header
swisstranslate.fr: did not receive HSTS header
swisswebhelp.ch: could not connect to host
+swissxperts.ch: could not connect to host
swite.com: did not receive HSTS header
swmd5c.org: could not connect to host
swordfighting.net: could not connect to host
swu.party: could not connect to host
-swuosa.org: could not connect to host
sx3.no: could not connect to host
sxbk.pw: could not connect to host
syam.cc: could not connect to host
+syamuwatching.xyz: could not connect to host
sydgrabber.tk: could not connect to host
-syha.org.uk: did not receive HSTS header
+syhost.at: did not receive HSTS header
+syhost.ch: did not receive HSTS header
+syhost.de: did not receive HSTS header
sykl.us: could not connect to host
+sylvaincombe.net: could not connect to host
+sylvan.me: could not connect to host
+sylvangarden.net: could not connect to host
sylvangarden.org: could not connect to host
-sylvanorder.com: could not connect to host
-synackr.com: did not receive HSTS header
+sylvanorder.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
@@ -12959,6 +16862,8 @@ syno.gq: could not connect to host
syntaxoff.com: could not connect to host
syntheticmotoroil.org: did not receive HSTS header
syobon.org: could not connect to host
+syoier.com: could not connect to host
+syracuseut.gov: could not connect to host
syrocon.ch: could not connect to host
sys.tf: could not connect to host
sysadmins.ro: could not connect to host
@@ -12970,21 +16875,26 @@ syspen.space: could not connect to host
sysrq.tech: could not connect to host
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
+syunpay.cn: did not receive HSTS header
syy.hk: did not receive HSTS header
+szagun.net: did not receive HSTS header
szaszm.tk: could not connect to host
szczot3k.pl: did not receive HSTS header
szerbnyelvkonyv.hu: could not connect to host
szlovaknyelv.hu: could not connect to host
szlovennyelv.hu: could not connect to host
szongott.net: did not receive HSTS header
-szunia.com: could not connect to host
-szymczak.at: could not connect to host
+szymczak.at: did not receive HSTS header
t-complex.space: could not connect to host
t-ken.xyz: could not connect to host
t-point.eu: did not receive HSTS header
t-tz.com: could not connect to host
t0dd.eu: could not connect to host
+t2000headphones.com: could not connect to host
+t2000laserpointers.com: could not connect to host
t3rror.net: could not connect to host
t4c-rebirth.com: could not connect to host
t4x.org: could not connect to host
@@ -12992,25 +16902,34 @@ 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
tacoma-games.com: did not receive HSTS header
+tacostea.net: could not connect to host
tacotown.tk: could not connect to host
+tadata.me: could not connect to host
tadcastercircuit.org.uk: did not receive HSTS header
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
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
takinet.kr: could not connect to host
takusan.ru: could not connect to host
talenthero.io: did not receive HSTS header
@@ -13018,76 +16937,91 @@ talentuar.com: could not connect to host
tales-of-interia.de: could not connect to host
talheim-records.ca: could not connect to host
talk.google.com: did not receive HSTS header (error ignored - included regardless)
+talk.xyz: could not connect to host
talkitup.mx: could not connect to host
talkitup.online: could not connect to host
talklifestyle.nl: could not connect to host
+talktwincities.com: could not connect to host
tallr.se: could not connect to host
tallshoe.com: could not connect to host
+talroo.com: could not connect to host
+talsi.eu: could not connect to host
tam7t.com: did not receive HSTS header
-tamasszabo.net: could not connect to host
-tamersunion.org: did not receive HSTS header
tamex.xyz: could not connect to host
tandarts-haarlem.nl: did not receive HSTS header
tandblekningidag.com: could not connect to host
-tandk.com.vn: did not receive HSTS header
+tandilmap.com.ar: did not receive HSTS header
tangerine.ga: could not connect to host
tangibilizing.com: could not connect to host
tangiblesecurity.com: did not receive HSTS header
+tango-cats.de: could not connect to host
tangsisi.com: could not connect to host
tangyue.date: could not connect to host
tangzhao.net: could not connect to host
+tanhit.com: could not connect to host
taniesianie.pl: did not receive HSTS header
tankfreunde.de: did not receive HSTS header
tante-bugil.net: could not connect to host
+tantetilli.de: did not receive HSTS header
tantotiempo.de: did not receive HSTS header
tanze-jetzt.de: could not connect to host
taotuba.net: did not receive HSTS header
-taozj.org: could not connect to host
+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
+taqun.club: 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
-tarhauskielto.fi: could not connect to host
+tarhauskielto.fi: did not receive HSTS header
+tarots-et-oracles.com: did not receive HSTS header
tarsashaz-biztositas.hu: did not receive HSTS header
tartaros.fi: could not connect to host
-taskstats.com: could not connect to host
+taskstats.com: did not receive HSTS header
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: could not connect to host
tastyyy.co: could not connect to host
tasyacherry-anal.com: could not connect to host
tatilbus.com: could not connect to host
tatilmix.com: could not connect to host
-tatort-fanpage.de: did not receive HSTS header
+tatort-fanpage.de: could not connect to host
tatt.io: could not connect to host
tauchkater.de: could not connect to host
+tauschen.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]
tavoittaja.fi: did not receive HSTS header
tavopica.lt: did not receive HSTS header
-taxaudit.com: did not receive HSTS header
taxbench.com: could not connect to host
+taxi-24std.de: did not receive HSTS header
+taxiindenbosch.nl: did not receive HSTS header
taxmadras.com: could not connect to host
taxsnaps.co.nz: did not receive HSTS header
-taxsquirrel.com: could not connect to host
+taxspeaker.com: did not receive HSTS header
tazemama.biz: could not connect to host
tazj.in: did not receive HSTS header
tazz.in: could not connect to host
tbarter.com: did not receive HSTS header
+tbpixel.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]
tbrss.com: did not receive HSTS header
+tbtech.cz: did not receive HSTS header
+tbys.us: could not connect to host
tc-bonito.de: did not receive HSTS header
+tcacademy.co.uk: could not connect to host
tcao.info: could not connect to host
tcby45.xyz: could not connect to host
tchaka.top: could not connect to host
tcl.ath.cx: did not receive HSTS header
tcp.expert: 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
+tdpblog.site: could not connect to host
tdsb.cf: could not connect to host
tdsb.ga: could not connect to host
tdsb.gq: could not connect to host
@@ -13097,24 +17031,28 @@ tdsbhack.ga: could not connect to host
tdsbhack.gq: could not connect to host
tdsbhack.ml: could not connect to host
tdsbhack.tk: could not connect to host
-teacherph.net: could not connect to host
+teacherph.net: did not receive HSTS header
teachforcanada.ca: did not receive HSTS header
tealdrones.com: did not receive HSTS header
-team-pancake.eu: did not receive HSTS header
+team-bbd.com: could not connect to host
+team-pancake.eu: could not connect to host
team-teasers.com: could not connect to host
team2fou.cf: did not receive HSTS header
+teamassists.com: did not receive HSTS header
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
+teamtravel.co: could not connect to host
teamx-gaming.de: could not connect to host
teamzeus.cz: could not connect to host
teaparty.id: could not connect to host
-tearoy.faith: could not connect to host
+tearoy.faith: did not receive HSTS header
+teasenetwork.com: could not connect to host
tebieer.com: could not connect to host
tech-blog.fr: did not receive HSTS header
tech-finder.fr: could not connect to host
@@ -13122,8 +17060,15 @@ tech55i.com: could not connect to host
techandtux.de: could not connect to host
techask.it: could not connect to host
techassist.io: did not receive HSTS header
-techcavern.ml: did not receive HSTS header
-techelements.co: could not connect to host
+techbelife.com: could not connect to host
+techbrawl.org: could not connect to host
+techcavern.ml: could not connect to host
+techcentric.com: did not receive HSTS header
+techday.co.nz: did not receive HSTS header
+techday.com: did not receive HSTS header
+techday.com.au: did not receive HSTS header
+techday.eu: did not receive HSTS header
+techelements.co: did not receive HSTS header
techfactslive.com: did not receive HSTS header
techhipster.net: could not connect to host
techhub.ml: could not connect to host
@@ -13134,42 +17079,54 @@ 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
-technikrom.org: did not receive HSTS header
+technifocal.com: could not connect to host
technogroup.cz: did not receive HSTS header
-technologyand.me: could not connect to host
+technologyand.me: 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.co.uk: 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
+techvalue.gr: did not receive HSTS header
+techwords.io: 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
-tecture.de: did not receive HSTS header
+tecnologino.com: could not connect to host
+tecture.de: could not connect to host
tedovo.com: did not receive HSTS header
tedxkmitl.com: could not connect to host
tee-idf.net: could not connect to host
-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: max-age too low: 2592000
tefl.io: did not receive HSTS header
tegelsensanitaironline.nl: did not receive HSTS header
+tehcrayz.com: could not connect to host
tehotuotanto.net: did not receive HSTS header
tehplace.club: could not connect to host
+tehrankey.ir: did not receive HSTS header
tekiro.com: did not receive HSTS header
teknogeek.id: could not connect to host
teknologi.or.id: max-age too low: 36000
teknotes.co.uk: could not connect to host
tekshrek.com: did not receive HSTS header
-tektoria.de: could not connect to host
+teksuperior.com: could not connect to host
+tektoria.de: did not receive HSTS header
+tektuts.com: could not connect to host
tel-dithmarschen.de: did not receive HSTS header
+tele-alarme.ch: could not connect to host
+tele-assistance.ch: could not connect to host
+telealarmevalais.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
@@ -13177,61 +17134,74 @@ 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: could not connect to host
telefoonnummerinfo.nl: could not connect to host
telekollektiv.org: could not connect to host
+telepons.com: could not connect to host
telescam.com: could not connect to host
-teletechnology.in: did not receive HSTS header
+teleshop.be: 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
-temasa.net: did not receive HSTS header
+teltonica.com: did not receive HSTS header
+telugu4u.net: could not connect to host
temehu.com: did not receive HSTS header
tempcraft.net: could not connect to host
tempflix.com: could not connect to host
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
+tennisadmin.com: 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
+tentabrowser.com: 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
+termax.me: could not connect to host
terminalvelocity.co.nz: could not connect to host
terra-x.net: could not connect to host
terra.by: did not receive HSTS header
+terrace.co.jp: did not receive HSTS header
terrax.berlin: could not connect to host
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
+testbawks.com: did not receive HSTS header
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
-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
-tetrafinancial-manufacturing-industrial-equipment-financing.com: did not receive HSTS header
-tetrafinancial-news.com: did not receive HSTS header
-tetrafinancial-technology-equipment-software-financing.com: did not receive HSTS header
+testpornsite.com: could not connect to host
+tetrafinancial-commercial-business-equipment-financing.com: could not connect to host
+tetrafinancial-energy-mining-equipment-financing.com: could not connect to host
+tetrafinancial-healthcare-medical-equipment-financing.com: could not connect to host
+tetrafinancial-manufacturing-industrial-equipment-financing.com: could not connect to host
+tetrafinancial-news.com: could not connect to host
+tetrafinancial-technology-equipment-software-financing.com: could not connect to host
tetramax.eu: did not receive HSTS header
tetsai.com: could not connect to host
teufelsystem.de: could not connect to host
@@ -13239,26 +17209,26 @@ 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
-tf2stadium.com: 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
+tf7879.com: could not connect to host
tfcoms-sp-tracker-client.azurewebsites.net: could not connect to host
tffans.com: could not connect to host
tfl.lu: did not receive HSTS header
tgbyte.com: did not receive HSTS header
tgod.co: could not connect to host
tgr.re: could not connect to host
-tgtv.tn: did not receive HSTS header
th-bl.de: did not receive HSTS header
th3nd.com: did not receive HSTS header
thackert.myfirewall.org: could not connect to host
thagki9.com: did not receive HSTS header
-thai.land: did not receive HSTS header
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: could not connect to host
+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
@@ -13270,14 +17240,15 @@ 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-sky-of-valkyries.com: could not connect to host
-the-zenti.de: did not receive HSTS header
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
+thearcheryguide.com: did not receive HSTS header
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
@@ -13287,57 +17258,72 @@ thebreakhotel.com: did not receive HSTS header
thebrotherswarde.com: could not connect to host
thebte.com: could not connect to host
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: 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
+thecloudmigrator.com: did not receive HSTS header
thecloudrevolution.net: did not receive HSTS header
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
-thecskr.in: could not connect to host
+thecozycastle.com: did not receive HSTS header
+thecrochetcottage.net: could not connect to host
+thecskr.in: did not receive HSTS header
thecsw.com: did not receive HSTS header
+thecuriouscat.net: could not connect to host
thedailyupvote.com: could not connect to host
thedarkartsandcrafts.com: could not connect to host
thedevilwearswibra.nl: did not receive HSTS header
-thedisc.nl: could not connect to host
-thedominatorsclan.com: did not receive HSTS header
+thediaryofadam.com: did not receive HSTS header
+thedominatorsclan.com: could not connect to host
thedrinks.co: did not receive HSTS header
thedrop.pw: did not receive HSTS header
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: 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
+thefilmcolor.com: max-age too low: 0
+theflyingbear.net: could not connect to host
thefootballanalyst.com: did not receive HSTS header
-thefox.co: could not connect to host
+thefox.co: did not receive HSTS header
+thefox.com.fr: could not connect to host
thefreebirds.in: could not connect to host
thefrk.xyz: could not connect to host
thefrozenfire.com: did not receive HSTS header
thefutureharrills.com: could not connect to host
+thegcccoin.com: max-age too low: 2592000
thegemriverside.com.vn: could not connect to host
thego2swatking.com: could not connect to host
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: could not connect to host
+thehiddenbay.fi: did not receive HSTS header
+thehiddenbay.info: did not receive HSTS header
thehiddenbay.me: could not connect to host
thehiddenbay.net: could not connect to host
+thehiddenbay.ws: did not receive HSTS header
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
-thehotfix.net: 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: did not receive HSTS header
thejobauction.com: did not receive HSTS header
thejserver.de: could not connect to host
thekrewserver.com: did not receive HSTS header
@@ -13351,72 +17337,94 @@ 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
themoderate.xyz: could not connect to host
+thenarcissisticlife.com: did not receive HSTS header
thenextstep.events: could not connect to host
+thenichecast.com: could not connect to host
thenorthschool.org.uk: did not receive HSTS header
thenrdhrd.nl: could not connect to host
theodorejones.info: could not connect to host
theojones.name: could not connect to host
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]
+theosblog.de: did not receive HSTS header
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
-thepeninsulaires.com: could not connect to host
+thepiabo.ovh: did not receive HSTS header
thepiratebay.al: could not connect to host
thepiratebay.poker: could not connect to host
thepiratebay.tech: could not connect to host
theposhfudgecompany.co.uk: could not connect to host
+thepostoffice.ro: did not receive HSTS header
theprincegame.com: could not connect to host
theprivacysolution.com: could not connect to host
+thepurem.com: could not connect to host
+thepythianseed.com: did not receive HSTS header
thequillmagazine.org: could not connect to host
+therewill.be: could not connect to host
therise.ca: max-age too low: 300
thermique.ch: could not connect to host
-therockawaysny.com: did not receive HSTS header
+theroamingnotary.com: did not receive HSTS header
+therockawaysny.com: could not connect to host
+thesassynut.com: did not receive HSTS header
thesearchnerds.co.uk: did not receive HSTS header
thesecurityteam.net: could not connect to host
thesehighsandlows.com: could not connect to host
theserver201.tk: could not connect to host
+theserviceyouneed.com: did not receive HSTS header
theshadestore.com: max-age too low: 10368000
-theshopally.com: did not receive HSTS header
thesled.net: could not connect to host
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
+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
thetruthhurvitz.com: could not connect to host
+theunitedstates.io: did not receive HSTS header
theurbanyoga.com: did not receive HSTS header
theuucc.org: did not receive HSTS header
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
thewebdexter.com: could not connect to host
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
-thezero.org: could not connect to host
+thewp.pro: max-age too low: 0
+theyachtteam.com: could not connect to host
thezonders.com: did not receive HSTS header
thgros.fr: could not connect to host
+thibaultwalle.com: 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
+thierryhayoz.ch: 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
thinkdo.jp: could not connect to host
+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
thisisforager.com: could not connect to host
thismumdoesntknowbest.com: could not connect to host
@@ -13426,23 +17434,22 @@ thkb.net: could not connect to host
thomas-ferney.fr: did not receive HSTS header
thomas-gibertie.fr: did not receive HSTS header
thomas-grobelny.de: could not connect to host
-thomasbreads.com: max-age too low: 86400
thomascloud.ddns.net: could not connect to host
-thomasetsophie.fr: could not connect to host
+thomasgriffin.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]
thomasharvey.me: did not receive HSTS header
thomaskliszowski.fr: did not receive HSTS header
-thomasmeester.nl: did not receive HSTS header
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
thorbis.com: could not connect to host
-thorbiswebsitedesign.com: did not receive HSTS header
+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
+thot.space: did not receive HSTS header
+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
thriveapproach.co.uk: did not receive HSTS header
thrivewellnesshub.co.za: did not receive HSTS header
@@ -13450,9 +17457,12 @@ 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.net: could not connect to host
+thynx.io: could not connect to host
thyrex.fr: could not connect to host
ti-js.com: could not connect to host
-ti.blog.br: could not connect to host
+ti.blog.br: did not receive HSTS header
+tiacollection.com: did not receive HSTS header
tianxicaipiao.com: could not connect to host
tianxicaipiao.win: could not connect to host
tianxicp.com: could not connect to host
@@ -13460,28 +17470,35 @@ tianxing.pro: did not receive HSTS header
tianxingvpn.pro: could not connect to host
tibbitshall.ca: could not connect to host
tibovanheule.site: could not connect to host
+ticketmates.com.au: did not receive HSTS header
ticketoplichting.nl: did not receive HSTS header
tickopa.co.uk: could not connect to host
tickreport.com: did not receive HSTS header
-ticktock.today: 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
+tiendavertigo.com: did not receive HSTS header
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
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
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]
-tilikum.io: did not receive HSTS header
-tilkah.com.au: did not receive HSTS header
+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: did not receive HSTS header
+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
timer.fit: could not connect to host
@@ -13494,87 +17511,112 @@ 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
+timhieuthuoc.com: 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: did not receive HSTS header
-timotrans.eu: did not receive HSTS header
-timowi.de: could not connect to host
+timotrans.de: could not connect to host
+timotrans.eu: could not connect to host
timowi.net: could not connect to host
timroes.de: did not receive HSTS header
timschubert.net: max-age too low: 172800
timvandekamp.nl: did not receive HSTS header
timwhite.io: did not receive HSTS header
timwittenberg.com: could not connect to host
-timysewyn.be: 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
+tinkerboard.org: could not connect to host
+tinkerers-trunk.co.za: could not connect to host
tipiakers.club: could not connect to host
-tipps-fuer-den-haushalt.de: did not receive HSTS header
+tipps-fuer-den-haushalt.de: could not connect to host
tippspiel.cc: could not connect to host
tipsyk.ru: could not connect to host
tiredofeating.com: could not connect to host
tiremoni.ch: did not receive HSTS header
tirex.media: did not receive HSTS header
+tism.in: could not connect to host
tiste.org: could not connect to host
titanlab.de: could not connect to host
titanleaf.com: could not connect to host
+titanpointe.org: did not receive HSTS header
tittarpuls.se: could not connect to host
titties.ml: could not connect to host
+tivido.nl: could not connect to host
+tjandpals.com: could not connect to host
tjc.wiki: could not connect to host
tjeckien.guide: could not connect to host
tjs.me: could not connect to host
tju.me: could not connect to host
tkappertjedemetamorfose.nl: could not connect to host
tkarstens.de: did not receive HSTS header
+tkeycoin.com: did not receive HSTS header
tkhw.tk: 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
tlo.hosting: could not connect to host
tlo.link: could not connect to host
tlo.network: could not connect to host
+tls.builders: could not connect to host
tls.li: could not connect to host
tlsbv.nl: did not receive HSTS header
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
-tmdc.ddns.net: could not connect to host
+tmconnects.com: could not connect to host
tmhlive.com: could not connect to host
+tmhr.moe: could not connect to host
+tmi.news: did not receive HSTS header
tmin.cf: could not connect to host
tmitchell.io: could not connect to host
tmprod.com: did not receive HSTS header
-tmtradingmorocco.ma: could not connect to host
+tmtradingmorocco.ma: did not receive HSTS header
tnb-plattform.de: could not connect to host
tncnanet.com.br: could not connect to host
tno.io: could not connect to host
-tob-rulez.de: could not connect to host
+tnwioa.gov: could not connect to host
+to2mbn.org: could not connect to host
+toabsentfamily.com: did not receive HSTS header
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
+tobi-server.goip.de: could not connect to host
+tobi-videos.goip.de: could not connect to host
tobias-bielefeld.de: did not receive HSTS header
tobiasbergius.se: could not connect to host
-tobiaskorf.de: could not connect to host
tobiasmathes.com: could not connect to host
tobiasmathes.name: could not connect to host
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
tobyx.is: could not connect to host
+toddmissiontx.gov: did not receive HSTS header
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
tofa-koeln.de: could not connect to host
+tofilmhub.com: could not connect to host
tofu.im: could not connect to host
togelonlinecommunity.com: did not receive HSTS header
-tojeto.eu: could not connect to host
+tohokufd.com: could not connect to host
+tojeto.eu: did not receive HSTS header
toka.sg: could not connect to host
tokage.me: could not connect to host
+tokbijouxs.com.br: did not receive HSTS header
tokenloan.com: could not connect to host
+tokintu.com: could not connect to host
+tokky.eu: could not connect to host
tokobungaasryflorist.com: did not receive HSTS header
tokobungadijambi.com: did not receive HSTS header
tokobungadilampung.com: could not connect to host
@@ -13583,28 +17625,41 @@ 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
+toldositajuba.com: could not connect to host
tollmanz.com: did not receive HSTS header
-tollsjekk.no: 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
+tomaspialek.cz: did not receive HSTS header
+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
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
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: could not connect to host
tomphill.co.uk: could not connect to host
+tomudding.com: did not receive HSTS header
+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
+toni-dis.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]
toniharant.de: could not connect to host
toomanypillows.com: could not connect to host
-top-solar-info.de: could not connect to host
+toomy.ddns.net: 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
topanlage.de: could not connect to host
@@ -13614,34 +17669,43 @@ 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]
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
toptenthebest.com: did not receive HSTS header
toptranslation.com: did not receive HSTS header
+topvertimai.lt: could not connect to host
+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
+torbe.es: could not connect to host
torchl.it: could not connect to host
toretfaction.net: could not connect to host
-torg-room.ru: 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: did not receive HSTS header
+torrentfunk.com: could not connect to host
torrentgamesps2.info: could not connect to host
torrenttop100.net: could not connect to host
torrentz.website: could not connect to host
torrentz2.eu: did not receive HSTS header
+tortocan.com: could not connect to host
tortugalife.de: could not connect to host
torv.rocks: did not receive HSTS header
+tosainu.com.br: could not connect to host
tosecure.link: could not connect to host
toshnix.com: could not connect to host
toshub.com: could not connect to host
+totalbeauty.co.uk: could not connect to host
+totaldragonshop.com.br: 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
@@ -13650,41 +17714,48 @@ totalworkout.fitness: did not receive HSTS header
totch.de: could not connect to host
totem-eshop.cz: could not connect to host
totoro.pub: could not connect to host
-totot.net: did not receive HSTS header
+totot.net: could not connect to host
toucedo.de: could not connect to host
touch-up-net.com: could not connect to host
touchbasemail.com: did not receive HSTS header
+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
+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
+tourispo.com: could not connect to host
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
-towandalibrary.org: did not receive HSTS header
+tovp.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]
towaway.ru: could not connect to host
-town-farm.surrey.sch.uk: could not connect to host
+townofruthnc.gov: 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
+toxme.se: could not connect to host
toymania.de: could not connect to host
toyotamotala.se: could not connect to host
-tpansino.com: did not receive HSTS header
tpbcdn.com: could not connect to host
tpblist.xyz: could not connect to host
tpbunblocked.org: could not connect to host
tpe-edu.com: could not connect to host
-tpms4u.at: did not receive HSTS header
+tpms4u.at: could not connect to host
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
-track.plus: could not connect to host
+tracewind.top: 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]
tracker-gps.ch: could not connect to host
-trackingstream.com: did not receive HSTS header
+trackfeed.tokyo: 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
@@ -13698,128 +17769,178 @@ traffictigers.com: did not receive HSTS header
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
-tranhsondau.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]
+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
+transferio.nl: 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
+translatoruk.co.uk: did not receive HSTS header
transmithe.net: could not connect to host
transportal.sk: did not receive HSTS header
transsexualpantyhose.com: could not connect to host
-trauertexte.info: 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-kuban.ru: did not receive HSTS header
-travel1x1.com: could not connect to host
+travel-to-nature.ch: did not receive HSTS header
+travel.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]
+travel1x1.com: did not receive HSTS header
+traveling-thailand.info: could not connect to host
travelinsightswriter.com: could not connect to host
-travelinsurance.co.nz: did not receive HSTS header
+travelling.expert: could not connect to host
+travellsell.com: did not receive HSTS header
+travelmyth.ie: did not receive HSTS header
+travelpricecheck.com: max-age too low: 0
+travisfranck.com: could not connect to host
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
+treebaglia.xyz: could not connect to host
treeby.net: could not connect to host
treehousebydesign.com: did not receive HSTS header
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
-tremoureux.fr: did not receive HSTS header
+tremlor.com: max-age too low: 300
+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
+tretkowski.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]
+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
trickedguys.com: could not connect to host
+tricks.clothing: did not receive HSTS header
triddi.com: could not connect to host
+tridentflood.com: could not connect to host
tridimage.com: did not receive HSTS header
trigular.de: could not connect to host
trileg.net: could not connect to host
+trimarchimanuele.it: did not receive HSTS header
trinity.fr.eu.org: could not connect to host
trinityaffirmations.com: max-age too low: 0
trinitycore.org: max-age too low: 2592000
trinitytechdev.com: did not receive HSTS header
+trink-und-partyspiele.de: could not connect to host
tripcombi.com: did not receive HSTS header
tripdelta.com: did not receive HSTS header
tripinsider.club: did not receive HSTS header
-tripp.xyz: did not receive HSTS header
+triple-mmm.de: max-age too low: 0
+tripout.tech: did not receive HSTS header
trisportas.lt: did not receive HSTS header
tristanfarkas.one: could not connect to host
+triticeaetoolbox.org: did not receive HSTS header
trixati.org.ua: did not receive HSTS header
trixies-wish.nz: could not connect to host
trixy.com.br: could not connect to host
-troi.de: did not receive HSTS header
+trizone.com.au: 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: did not receive HSTS header
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]
+troykelly.com: did not receive HSTS header
+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
trustedinnovators.com: could not connect to host
+trustednewssites.com: could not connect to host
trusteecar.com: did not receive HSTS header
trustmeimfancy.com: could not connect to host
+trustocean.com: did not receive HSTS header
trybind.com: could not connect to host
tryfabulousdiet.com: could not connect to host
tryfm.net: did not receive HSTS header
trynowrinkleseyeserum.com: could not connect to host
tryoneday.co: did not receive HSTS header
tryti.me: could not connect to host
+ts-publishers.com: could not connect to host
ts2.se: could not connect to host
+ts3-dns.com: could not connect to host
ts3-dns.me: could not connect to host
+ts3-dns.net: 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
tsgoc.com: did not receive HSTS header
tsigaradiko.com: could not connect to host
tsrstore.gq: could not connect to host
+tsu-ku-ro.com: could not connect to host
tsukeawase.com: did not receive HSTS header
tsukuba.style: could not connect to host
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
ttackmedical.com.br: could not connect to host
-ttb.gov: did not receive HSTS header
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
+tuang-tuang.com: could not connect to host
tubbutec.de: did not receive HSTS header
tubeju.com: could not connect to host
-tubetoon.com: did not receive HSTS header
-tubetooncartoons.com: did not receive HSTS header
+tubetoon.com: could not connect to host
+tubetooncartoons.com: could not connect to host
tubex.ga: could not connect to host
tucidi.net: could not connect to host
tucker.wales: could not connect to host
tucnak.eu: could not connect to host
+tudorapido.com.br: did not receive HSTS header
tueche.com.ar: did not receive HSTS header
-tuingereedschappen.net: did not receive HSTS header
-tuja.hu: could not connect to host
+tufilo.com: could not connect to host
+tugers.com: did not receive HSTS header
+tulenceria.es: could not connect to host
tulsameetingroom.com: could not connect to host
-tuminauskas.lt: did not receive HSTS header
-tunai.id: could not connect to host
+tumagiri.net: did not receive HSTS header
+tumutanzi.com: did not receive HSTS header
tunca.it: did not receive HSTS header
tunebitfm.de: could not connect to host
tungstenroyce.com: did not receive HSTS header
+tunity.be: did not receive HSTS header
+tuou.xyz: could not connect to host
tupizm.com: could not connect to host
turismo.cl: could not connect to host
turkiet.guide: could not connect to host
@@ -13827,23 +17948,32 @@ turn-sticks.com: could not connect to host
turnik-67.ru: could not connect to host
turniker.ru: could not connect to host
turnsticks.com: could not connect to host
+turtle.ai: did not receive HSTS header
turtlementors.com: could not connect to host
turtles.ga: could not connect to host
-tusb.ml: did not receive HSTS header
+tusb.ml: could not connect to host
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
tutu.ro: could not connect to host
tuturulianda.com: did not receive HSTS header
tuvalie.com: did not receive HSTS header
+tuxflow.de: could not connect to host
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: max-age too low: 2592000
+tvqc.com: did not receive HSTS header
+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
@@ -13858,25 +17988,34 @@ twee-onder-een-kap-woning-in-zwartewaterland-kopen.nl: could not connect to host
tweeondereenkapverkopen.nl: could not connect to host
tweeondereenkapwoningverkopen.nl: could not connect to host
tweetify.io: could not connect to host
+twelve.rocks: could not connect to host
twelve.today: could not connect to host
-twelverocks.com: did not receive HSTS header
+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
twinkseason.co: could not connect to host
twinkseason.co.uk: could not connect to host
-twinkseason.com: could not connect to host
twinkseason.net: could not connect to host
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
+twistapp.com: did not receive HSTS header
+twittelzie.nl: could not connect to host
twitter.ax: could not connect to host
+twocornertiming.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]
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
+twoo.com: could not connect to host
twotube.ie: could not connect to host
-twuni.org: could not connect to host
+twun.io: could not connect to host
+twuni.org: did not receive HSTS header
tx041cap.org: could not connect to host
txbi.de: could not connect to host
txclimbers.com: could not connect to host
@@ -13886,58 +18025,101 @@ txf.pw: could not connect to host
ty2u.com: did not receive HSTS header
tycjt.vip: could not connect to host
tykoon.com: could not connect to host
+tyl.io: did not receive HSTS header
tyler.coach: could not connect to host
tylercoach.com: could not connect to host
-tylerharcourt.ca: could not connect to host
-tylerharcourt.com: could not connect to host
tylerharcourt.net: could not connect to host
-tylerharcourt.org: could not connect to host
tylerharcourt.xyz: could not connect to host
tylerjharcourt.com: could not connect to host
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.net: could not connect to host
+typeonejoe.org: could not connect to host
typingrevolution.com: did not receive HSTS header
tyreis.com: could not connect to host
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
+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
+u-metals.com: did not receive HSTS header
u175.com: could not connect to host
+uaci.edu.mx: could not connect to host
uadp.pw: could not connect to host
uahs.org.uk: did not receive HSTS header
-uatgootax.ru: did not receive HSTS header
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
-ubicloud.de: could not connect to host
+ubertt.org: could not connect to host
+ubicloud.de: did not receive HSTS header
ubicv.com: could not connect to host
ublox.com: did not receive HSTS header
ubtce.com: could not connect to host
-ubuntuhot.com: could not connect to host
-udruga-point.hr: did not receive HSTS header
-ueba1085.jp: could not connect to host
-uefeng.com: did not receive HSTS header
+ubun.net: 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
+udbhav.me: could not connect to host
uega.net: did not receive HSTS header
+uel-thompson-okanagan.ca: could not connect to host
+uerdingen.info: did not receive HSTS header
uesociedadlimitada.com: could not connect to host
ueu.me: could not connect to host
-uevan.com: could not connect to host
ufgaming.com: did not receive HSTS header
uflixit.com: 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
ugisgutless.com: could not connect to host
ugo.ninja: could not connect to host
ugosadventures.com: could not connect to host
+uhappy11.com: did not receive HSTS header
+uhappy21.com: did not receive HSTS header
+uhappy23.com: did not receive HSTS header
+uhappy24.com: did not receive HSTS header
+uhappy25.com: did not receive HSTS header
+uhappy26.com: did not receive HSTS header
+uhappy27.com: did not receive HSTS header
+uhappy28.com: did not receive HSTS header
+uhappy29.com: did not receive HSTS header
+uhappy3.com: did not receive HSTS header
+uhappy31.com: did not receive HSTS header
+uhappy33.com: did not receive HSTS header
+uhappy55.com: did not receive HSTS header
+uhappy56.com: did not receive HSTS header
+uhappy58.com: did not receive HSTS header
+uhappy59.com: did not receive HSTS header
+uhappy60.com: did not receive HSTS header
+uhappy61.com: did not receive HSTS header
+uhappy62.com: did not receive HSTS header
+uhappy66.com: did not receive HSTS header
+uhappy67.com: did not receive HSTS header
+uhappy71.com: did not receive HSTS header
+uhappy73.com: could not connect to host
+uhappy74.com: could not connect to host
+uhappy75.com: could not connect to host
+uhappy76.com: could not connect to host
+uhappy77.com: did not receive HSTS header
+uhappy78.com: could not connect to host
+uhappy8.com: did not receive HSTS header
+uhappy86.com: did not receive HSTS header
+uhappy9.com: did not receive HSTS header
+uhappy99.com: did not receive HSTS header
uhasseltctf.ga: could not connect to host
+uhasseltodin.be: did not receive HSTS header
uhm.io: did not receive HSTS header
-uhuru-market.com: could not connect to host
+uhssl.com: did not receive HSTS header
+uhuru-market.com: did not receive HSTS header
uitslagensoftware.nl: did not receive HSTS header
-ukas.com: did not receive HSTS header
+ukas.com: could not connect to host
ukdropshipment.co.uk: did not receive HSTS header
ukdropshipment.com: did not receive HSTS header
ukk.dk: did not receive HSTS header
@@ -13945,155 +18127,209 @@ 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: could not connect to host
+ulti.gq: did not receive HSTS header
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
+ultrasite.tk: 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
+umassfive.coop: did not receive HSTS header
+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
-umsapi.com: could not connect to host
+umkmjogja.com: did not receive HSTS header
+ump45.moe: could not connect to host
+umsolugar.com.br: could not connect to host
+umwandeln-online.de: could not connect to host
unapolegetic.co: did not receive HSTS header
unart.info: could not connect to host
unbanthe.net: could not connect to host
-unblockat.tk: could not connect to host
+unblockat.tk: did not receive HSTS header
unblocked-networks.org: could not connect to host
-unblocked.blue: could not connect to host
+unblocked.blue: did not receive HSTS header
unblocked.date: could not connect to host
unblocked.faith: could not connect to host
unblocked.host: could not connect to host
unblocked.party: could not connect to host
-unblocked.st: did not receive HSTS header
+unblocked.sh: could not connect to host
+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
+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
+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
-underskatten.tk: could not connect to host
+undone.me: could not connect to host
unefuite.ch: could not connect to host
unfiltered.nyc: could not connect to host
+unfuddle.cn: could not connect to host
+ungeek.eu: did not receive HSTS header
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: could not connect to host
unionstationapp.com: could not connect to host
unirenter.ru: did not receive HSTS header
unison.com: did not receive HSTS header
-unisyssecurity.com: could not connect to host
-uniteasia.org: did not receive HSTS header
+unisyssecurity.com: did not receive HSTS header
unitedcyberdevelopment.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]
unitlabs.net: could not connect to host
unitrade-425.co.za: did not receive HSTS header
+univerpack.net: could not connect to host
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
+unixapp.ml: could not connect to host
+unixfox.eu: could not connect to host
unixtime.pro: could not connect to host
-unknownbreakup.com: did not receive HSTS header
+unknownbreakup.com: max-age too low: 2592000
unknownphenomena.net: could not connect to host
-unmonito.red: could not connect to host
+unleash.pw: could not connect to host
+unlogis.ch: could not connect to host
+unmanaged.space: 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
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
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
+unworthy.ml: could not connect to host
+unyq.me: could not connect to host
uonstaffhub.com: could not connect to host
uow.ninja: could not connect to host
up1.ca: could not connect to host
upaknship.com: did not receive HSTS header
-upbad.com: could not connect to host
+upandclear.org: max-age too low: 0
upboard.jp: could not connect to host
-upgauged.com: could not connect to host
+updatehub.io: did not receive HSTS header
upldr.pw: could not connect to host
uploadbro.com: could not connect to host
upmchealthsecurity.us: could not connect to host
uporoops.com: could not connect to host
+upr-info.org: did not receive HSTS header
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
+upwardtraining.co.uk: could not connect to host
ur-lauber.de: did not receive HSTS header
urban-garden.lt: could not connect to host
urban-garden.lv: could not connect to host
+urban-karuizawa.co.jp: max-age too low: 0
+urbanfi.sh: did not receive HSTS header
urbanmic.com: could not connect to host
+urbanstylestaging.com: could not connect to host
urbpic.com: could not connect to host
urcentral.org: could not connect to host
+urgences-valais.ch: could not connect to host
+url.cab: did not receive HSTS header
urlachershop.com.br: did not receive HSTS header
urlchomp.com: did not receive HSTS header
urology.wiki: did not receive HSTS header
-urphp.com: could not connect to host
-us-immigration.com: could not connect to host
-usaab.org: did not receive HSTS header
+urphp.com: did not receive HSTS header
+us-immigration.com: did not receive HSTS header
+usaab.org: could not connect to host
usafuelservice.com: did not receive HSTS header
usatomotori.com: did not receive HSTS header
usbirthcertificate.com: could not connect to host
usbtypeccompliant.com: could not connect to host
-uscitizenship.info: could not connect to host
+uscitizenship.info: did not receive HSTS header
uscntalk.com: could not connect to host
uscp8.com: could not connect to host
-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
+usedu.us: could not connect to host
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
+uskaria.com: could not connect to host
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
+utahfireinfo.gov: did not receive HSTS header
+utdscanner.com: did not receive HSTS header
+utdsgda.com: could not connect to host
+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
utopianconcept.com: did not receive HSTS header
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
-utumno.ch: did not receive HSTS header
+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
+uuid.cf: could not connect to host
+uvarov.pw: could not connect to host
+uvolejniku.cz: did not receive HSTS header
+uwekoetter.com: 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: could not connect to host
-uwsoftware.be: max-age too low: 0
+uwimonacs.org.jm: did not receive HSTS header
uwstartups.com: could not connect to host
uxux.pl: could not connect to host
uygindir.ml: could not connect to host
@@ -14105,98 +18341,121 @@ v-desk.ga: could not connect to host
v0rtex.xyz: could not connect to host
v0tti.com: did not receive HSTS header
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: could not connect to host
v4veedu.com: could not connect to host
v5wz.com: did not receive HSTS header
v5xp.com: did not receive HSTS header
v7.cl: could not connect to host
v789xl.com: did not receive HSTS header
vaaddress.co: could not connect to host
-vaalmarketplace.co.za: could not connect to host
+vaalmarketplace.co.za: did not receive HSTS header
vacationality.com: could not connect to host
vacationfund.co: could not connect to host
vacationscostarica.com: did not receive HSTS header
vackerbetong.se: could not connect to host
-vaclavambroz.cz: could not connect to host
+vaclavambroz.cz: did not receive HSTS header
vaclavambroz.eu: could not connect to host
vacuumreviewcenter.com: did not receive HSTS header
vaddder.com: could not connect to host
-vadennissanofhinesvilleparts.com: could not connect to host
+vadennissanofhinesvilleparts.com: did not receive HSTS header
vadik.me: could not connect to host
vadodesign.nl: 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
+valentin-ochs.de: could not connect to host
+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
valitron.se: did not receive HSTS header
+valkor.pro: could not connect to host
valkyrja.xyz: could not connect to host
valleyridgepta.org: could not connect to host
+valleyshop.ca: could not connect to host
vallis.net: could not connect to host
valmagus.com: could not connect to host
valopv.be: could not connect to host
-valtoaho.com: could not connect to host
+valshamar.is: could not connect to host
vamoaeturismo.com.br: could not connect to host
vamosfalardesaude.pt: could not connect to host
vampirism.eu: could not connect to host
vanacht.co.za: did not receive HSTS header
vanajahosting.com: did not receive HSTS header
vanderkley.it: could not connect to host
-vanderkroon.nl: could not connect to host
vanderstraeten.dynv6.net: could not connect to host
vanessabalibridal.com: could not connect to host
vanestack.com: could not connect to host
-vanitas.xyz: did not receive HSTS header
+vanetv.com: could not connect to host
+vangeluwedeberlaere.be: could not connect to host
+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
-vanouwerkerk.net: could not connect to host
+vanohaker.ru: could not connect to host
vansieleghem.com: could not connect to host
+vantaio.com: did not receive HSTS header
+vapecom-shop.com: could not connect to host
vapecraftinc.com: did not receive HSTS header
+vapehour.com: could not connect to host
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
-varunagw.com: could not connect to host
vasa-webstranka.sk: did not receive HSTS header
vasanth.org: could not connect to host
-vascomm.co.id: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+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
+vb-oa.co.uk: did not receive HSTS header
vbest.net: could not connect to host
-vbhelp.org: did not receive HSTS header
+vbestreviews.com: did not receive HSTS header
+vbhelp.org: could not connect to host
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
vconcept.ch: could not connect to host
vconcept.me: could not connect to host
vcr.re: 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
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
+vegalayer.com: could not connect to host
vegalengd.com: did not receive HSTS header
+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: could not connect to host
vehent.org: did not receive HSTS header
-vehicleenquiry.service.gov.uk: did not receive HSTS header
-vehicletax.service.gov.uk: did not receive HSTS header
+vehicletransportservices.co: did not receive HSTS header
vehicleuplift.co.uk: did not receive HSTS header
vekenz.com: could not connect to host
velasense.com: could not connect to host
@@ -14206,27 +18465,36 @@ vemokin.net: could not connect to host
venicecomputerrepair.com: could not connect to host
venicefloridawebsitedesign.com: could not connect to host
venicerealdeal.com: could not connect to host
+venirextra.com: did not receive HSTS header
venirideal.com: did not receive HSTS header
venixplays-stream.ml: could not connect to host
venmos.com: could not connect to host
venninvestorplatform.com: did not receive HSTS header
venoom.eu: did not receive HSTS header
vensl.org: could not connect to host
+venturedisplay.co.uk: did not receive HSTS header
venturepro.com: did not receive HSTS header
-ventzke.com: did not receive HSTS header
+venusbymariatash.com: could not connect to host
venzocrm.com: did not receive HSTS header
-ver-ooginoog.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]
-veraandsteve.date: could not connect to host
+ver-ooginoog.nl: max-age too low: 2592000
+veraandsteve.date: did not receive HSTS header
verdeandco.co.uk: could not connect to host
+vergeaccessories.com: could not connect to host
+vergessen.cn: could not connect to host
verifiedinvesting.com: could not connect to host
verifikatorindonesia.com: 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
+vernonhouseofhope.com: did not receive HSTS header
+versbeton.nl: max-age too low: 864000
versfin.net: could not connect to host
versia.ru: did not receive HSTS header
-versolslapeyre.fr: did not receive HSTS header
veryhax.de: could not connect to host
+veryimportantusers.com: could not connect to host
veryyounglesbians.com: could not connect to host
ves.vn.ua: could not connect to host
vestacp.top: could not connect to host
@@ -14235,56 +18503,82 @@ veterinaire-cazeres-foucault.fr: could not connect to host
vethouse.com.ua: did not receive HSTS header
vetmgmt.com: could not connect to host
veto.fish: could not connect to host
+vforvendetta.science: did not receive HSTS header
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
viabemestar.com.br: could not connect to host
viadeux.com: did not receive HSTS header
-viasinc.com: did not receive HSTS header
+viagraonlinebestellen.org: max-age too low: 3600
+vialibido.com.br: could not connect to host
+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
+vicianovi.cz: did not receive HSTS header
+viciousflora.com: could not connect to host
viciousviscosity.xyz: could not connect to host
+vickshomes.com: could not connect to host
victorenxovais.com.br: could not connect to host
+victoreriksson.ch: could not connect to host
+victoreriksson.co: could not connect to host
+victoreriksson.com: could not connect to host
+victoreriksson.eu: could not connect to host
+victoreriksson.info: could not connect to host
+victoreriksson.me: could not connect to host
+victoreriksson.net: could not connect to host
+victoreriksson.nu: could not connect to host
+victoreriksson.org: could not connect to host
+victoreriksson.se: could not connect to host
+victoreriksson.us: could not connect to host
victoriapemberton.com: did not receive HSTS header
+victoriaville.ca: did not receive HSTS header
+victornilsson.pw: did not receive HSTS header
vid.me: did not receive HSTS header
vidb.me: could not connect to host
vidbuchanan.co.uk: did not receive HSTS header
+vidcloud.xyz: did not receive HSTS header
viddiaz.com: did not receive HSTS header
videnskabsklubben.dk: did not receive HSTS header
+videobola.win: could not connect to host
videoload.co: could not connect to host
videomuz.com: could not connect to host
-videorullen.se: could not connect to host
+videorullen.se: did not receive HSTS header
+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
-vidiproject.com: did not receive HSTS header
+vidid.net: did not receive HSTS header
+vidiproject.com: could not connect to host
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
-viennan.net: could not connect to host
+vieaw.com: 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: could not connect to host
+vietnamphotographytours.com: did not receive HSTS header
viewsea.com: max-age too low: 0
+viga.me: could not connect to host
vigilo.cf: could not connect to host
vigilo.ga: 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
+vikodek.com: 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-romantica-zillertal.at: did not receive HSTS header
+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
+villalaskowa.pl: did not receive HSTS header
villasenor.online: could not connect to host
-villekaaria.eu: could not connect to host
vilog.me: could not connect to host
vimeosucks.nyc: could not connect to host
vinasec.se: could not connect to host
@@ -14299,33 +18593,52 @@ 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
-vinciconps4.it: could not connect to host
+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
+vinigas.com: did not receive HSTS header
+vinihk.com: did not receive HSTS header
+vinnie.gq: could not connect to host
+vinogradovka.com: did not receive HSTS header
+vintock.com: could not connect to host
vio.no: did not receive HSTS header
violenceinterrupted.org: did not receive HSTS header
violet-letter.delivery: could not connect to host
+violetraven.co.uk: did not receive HSTS header
viosey.com: could not connect to host
+vioye.com: could not connect to host
+vip-9649.com: did not receive HSTS header
+vip4553.com: could not connect to host
+vip9649.com: did not receive HSTS header
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: 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
+virial.de: 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
visa-shinsei.com: did not receive HSTS header
visanhigia.com: could not connect to host
viserproject.com: did not receive HSTS header
+visioflux-premium.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
visiontree.eu: could not connect to host
+visistruct.com: max-age too low: 2592000
visitbroadstairs.com: did not receive HSTS header
vispaleistexel.nl: did not receive HSTS header
vissanum.com: did not receive HSTS header
@@ -14333,67 +18646,98 @@ 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
+vitalamin.com: could not connect to host
+vitalamin.de: did not receive HSTS header
vitalita.cz: did not receive HSTS header
vitalorange.com: did not receive HSTS header
vitalthings.de: could not connect to host
-vitapingu.de: could not connect to host
+vitamaxxi.com.br: could not connect to host
+vitamineproteine.com: did not receive HSTS header
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
+vivamusic.es: 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
-vivremoinscher.fr: did not receive HSTS header
+vivoseg.com: could not connect to host
+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: could not connect to host
+vlogge.com: did not receive HSTS header
+vlsk.eu: did not receive HSTS header
vlzbazar.ru: could not connect to host
+vmem.jp: did not receive HSTS header
vmrdev.com: could not connect to host
vmstan.com: did not receive HSTS header
+vndb.org: could not connect to host
vocab.guru: could not connect to host
+vocalik.com: 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
-voice-of-design.com: could not connect to host
voicesuk.co.uk: did not receive HSTS header
-voidark.com: did not receive HSTS header
+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
-voilo.club: did not receive HSTS header
-voilodaisuki.club: did not receive HSTS header
+voidshift.com: could not connect to host
+voilo.club: could not connect to host
+voilodaisuki.club: could not connect to host
voipkb.com: did not receive HSTS header
-voiro.club: did not receive HSTS header
-voirodaisuki.club: 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
+vokurka.net: 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: did not receive HSTS header
+volcrado.com: could not connect to host
volkden.com: could not connect to host
-voltimax.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
vongerlach.at: did not receive HSTS header
-vonterra.us: did not receive HSTS header
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
+vorkbaard.nl: did not receive HSTS header
+vorte.ga: could not connect to host
vortexhobbies.com: did not receive HSTS header
vosjesweb.nl: could not connect to host
-voterstartingpoint.uk: 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
+votre-site-internet.ch: 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
vox.vg: did not receive HSTS header
+vozami.com: could not connect to host
vpip.net: could not connect to host
vpl.me: did not receive HSTS header
vpn-byen.dk: did not receive HSTS header
@@ -14402,6 +18746,9 @@ 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
+vpsvz.cloud: 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
@@ -14416,46 +18763,77 @@ vrijstaandhuis-in-zuid-holland-kopen.nl: could not connect to host
vrijstaandhuis-in-zuidplas-kopen.nl: could not connect to host
vrijstaandhuis-in-zwartewaterland-kopen.nl: could not connect to host
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
+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
+vtuber-schedule.info: could not connect to host
vucdn.com: could not connect to host
+vulndetect.org: 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
+vw-touranclub.cz: could not connect to host
vwoforangeparts.com: could not connect to host
+vwt-event.nl: could not connect to host
+vww-8522.com: could not connect to host
vxapps.com: could not connect to host
vxml.club: could not connect to host
+vxst.org: max-age too low: 2592000
+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
+w1221.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
+w84.it: 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
-wahhoi.net: did not receive HSTS header
+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]
+waidu.de: did not receive HSTS header
+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
+waligorska.pl: could not connect to host
walkeryoung.ca: could not connect to host
walkingforhealth.org.uk: did not receive HSTS header
wallabag.it: did not receive HSTS header
wallabag.org: did not receive HSTS header
wallacequinn.co.uk: did not receive HSTS header
wallet.google.com: did not receive HSTS header (error ignored - included regardless)
+wallingford.cc: could not connect to host
wallsblog.dk: could not connect to host
walnutgaming.co.uk: could not connect to host
walterlynnmosley.com: did not receive HSTS header
-wan.pp.ua: could not connect to host
wanashi.com: could not connect to host
wanban.io: could not connect to host
wanda76.com: could not connect to host
@@ -14464,14 +18842,20 @@ 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: could not connect to host
wangjiatun.com.tw: could not connect to host
+wangjun.me: did not receive HSTS header
wangkezun.com: could not connect to host
+wangler-internet.de: did not receive HSTS header
+wangqiliang.org: could not connect to host
wangqiliang.xn--fiqs8s: could not connect to host
wangql.cn: could not connect to host
-wangyubao.cn: could not connect to host
+wanquanojbk.com: did not receive HSTS header
wantshow.com.br: did not receive HSTS header
+wanybug.cn: did not receive HSTS header
+wapgu.cc: could not connect to host
wapjt.cn: could not connect to host
-wapking.live: did not receive HSTS header
+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
@@ -14482,44 +18866,61 @@ warekon.dk: 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
+warp-radio.com: could not connect to host
+warp-radio.net: could not connect to host
+warp-radio.tv: could not connect to host
warped.com: did not receive HSTS header
+warren.sh: could not connect to host
warrencreative.com: did not receive HSTS header
-warsentech.com: could not connect to host
+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]
-wassim.is: could not connect to host
+washandfun.com: did not receive HSTS header
+wassim.is: did not receive HSTS header
watashi.bid: could not connect to host
watchium.com: did not receive HSTS header
watchtv-online.pw: could not connect to host
watchweasel.com: could not connect to host
+waterfedpole.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]
waterforlife.net.au: did not receive HSTS header
waterpoint.com.br: could not connect to host
watersportmarkt.net: did not receive HSTS header
+watertrails.io: could not connect to host
watsonhall.uk: could not connect to host
wattechweb.com: did not receive HSTS header
+wave-ola.es: 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
+wayfairertravel.com: did not receive HSTS header
waylaydesign.com: did not receive HSTS header
waylee.net: did not receive HSTS header
wbit.co.il: did not receive HSTS header
wbut.ml: could not connect to host
+wd627.com: could not connect to host
+wd976.com: could not connect to host
wdesk.com: did not receive HSTS header
-wdt.io: did not receive HSTS header
-we-bb.com: could not connect to host
+wdrl.info: did not receive HSTS header
+wdt.io: could not connect to host
we.serveftp.net: could not connect to host
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-dl.cc: did not receive HSTS header
web-industry.fr: could not connect to host
web-insider.net: did not receive HSTS header
-web-mail.info: could not connect to host
+web-thinker.ru: could not connect to host
web-vision.de: did not receive HSTS header
web4all.fr: did not receive HSTS header
web4pro.fr: could not connect to host
@@ -14529,98 +18930,135 @@ 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
-webcreation.rocks: did not receive HSTS header
+webcreation.rocks: could not connect to host
+webdeflect.com: did not receive HSTS header
webdesign-kronberg.de: did not receive HSTS header
-webdesignssussex.co.uk: 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
+webdollarvpn.io: 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
+webfox.com.br: did not receive HSTS header
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]
-webgreat.de: max-age too low: 3600
+webgaff.com: could not connect to host
+webgap.me: did not receive HSTS header
+webgreat.de: did not receive HSTS header
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
+webhostingshop.ca: could not connect to host
+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
webmarketingfestival.it: did not receive HSTS header
+webmel.com: did not receive HSTS header
webmixseo.com: did not receive HSTS header
webnetmail4u.com: could not connect to host
-webneuch.ch: did not receive HSTS header
+webneuch.ch: could not connect to host
webneuch.com: did not receive HSTS header
webneuch.eu: did not receive HSTS header
webneuch.fr: did not receive HSTS header
webneuch.info: did not receive HSTS header
webneuch.swiss: did not receive HSTS header
webninja.work: could not connect to host
+webnoob.net: could not connect to host
webnosql.com: could not connect to host
-webperformance.ru: could not connect to host
+webogram.org: could not connect to host
+webperformance.ru: did not receive HSTS header
webproshosting.tk: could not connect to host
+webproxy.pw: could not connect to host
webpublica.pt: 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
websitedesign.bg: did not receive HSTS header
+websiterent.ca: could not connect to host
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
-webstory.xyz: did not receive HSTS header
-webswitch.io: could not connect to host
+webstory.xyz: 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
-webukhost.com: could not connect to host
webuni.hu: did not receive HSTS header
-webveloper.com: max-age too low: 0
-webwork.pw: could not connect to host
+webveloper.com: did not receive HSTS header
+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: max-age too low: 2592000
weddingenvelopes.co.uk: did not receive HSTS header
+weddingfantasy.ru: could not connect to host
weddingibiza.nl: could not connect to host
wedotrains.club: could not connect to host
weebsr.us: could not connect to host
weed.ren: could not connect to host
+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
+wegethitched.co.uk: could not connect to host
+weggeweest.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
-weiyuz.com: max-age too low: 6585555
+weimaraner.com.br: could not connect to host
+weinhandel-preissler.de: could not connect to host
+weirdserver.com: could not connect to host
+weixiaojun.org: did not receive HSTS header
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
-welches-kinderfahrrad.de: did not receive HSTS header
+welches-kinderfahrrad.de: could not connect to host
+welcomehelp.de: could not connect to host
welkers.org: could not connect to host
wellastore.ru: could not connect to host
wellcomp.com.br: did not receive HSTS header
+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
-wellsolveit.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]
+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
+welovemail.com: could not connect to host
+welpo.me: could not connect to host
welpy.com: could not connect to host
+welsh.com.br: 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
+weme.eu: did not receive HSTS header
+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
+wendu.me: could not connect to host
wengebowuguan.com: could not connect to host
-wenode.net: could not connect to host
+wenode.net: did not receive HSTS header
+wenta-computerservice.net: could not connect to host
wentu.ml: could not connect to host
wenz.io: did not receive HSTS header
wer.sh: could not connect to host
@@ -14631,15 +19069,16 @@ 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
-werner-schaeffer.de: did not receive HSTS header
-wernerschaeffer.de: did not receive HSTS header
+werkz.io: could not connect to host
+wes-dev.com: did not receive HSTS header
wesayyesprogram.com: could not connect to host
wesleyharris.ca: did not receive HSTS header
wespeakgeek.co.za: could not connect to host
-west-wind.net: did not receive HSTS header
westcoastaggregate.com: could not connect to host
-westendzone.com: max-age too low: 0
+westendzone.com: could not connect to host
westerhoud.nl: did not receive HSTS header
+westhighlandwhiteterrier.com.br: could not connect to host
+westlaketire.pt: did not receive HSTS header
westlinwinds.com: could not connect to host
westsussexconnecttosupport.org: could not connect to host
westtulsa.com: could not connect to host
@@ -14648,7 +19087,6 @@ 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
@@ -14658,33 +19096,46 @@ wevolver.com: did not receive HSTS header
wewillgo.com: could not connect to host
wewillgo.org: did not receive HSTS header
wewlad.me: could not connect to host
+weyland.tech: did not receive HSTS header
+weynaphotography.com: did not receive HSTS header
wf-training-master.appspot.com: did not receive HSTS header (error ignored - included regardless)
+wfl.ro: did not receive HSTS header
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
-whatsyouroffer.co.uk: 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]
when-release.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]
whereisjason.com: could not connect to host
whereismyorigin.cf: could not connect to host
-wherephoto.com: could not connect to host
+wherephoto.com: did not receive HSTS header
wheresben.today: could not connect to host
whilsttraveling.com: could not connect to host
+whimtrip.fr: 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]
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: could not connect to host
+whiterose.goip.de: could not connect to host
+whitestagforge.com: did not receive HSTS header
+whoasome.com: could not connect to host
whoclicks.net: could not connect to host
+whoisamitsingh.com: could not connect to host
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
-wholesomeharvestbread.com: max-age too low: 86400
-wholikes.us: could not connect to host
+wholelotofbounce.co.uk: did not receive HSTS header
+wholikes.us: did not receive HSTS header
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]
whoshotya.de: did not receive HSTS header
@@ -14695,7 +19146,7 @@ wibuw.com: could not connect to host
widdleguy.com: did not receive HSTS header
wideinfo.org: did not receive HSTS header
widenews.org: did not receive HSTS header
-wienerwichtelchallenge.at: could not connect to host
+wienerwichtelchallenge.at: did not receive HSTS header
wieninternational.at: did not receive HSTS header
wificafehosting.com: did not receive HSTS header
wifimapa.cz: could not connect to host
@@ -14704,7 +19155,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
@@ -14716,90 +19167,112 @@ 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.si: did not receive HSTS header
+william.gg: did not receive HSTS header
+william.si: could not connect to host
williamboundsltd.com: could not connect to host
-williamle.com: did not receive HSTS header
williamsapiens.com: could not connect to host
+williamsflintlocks.com: did not receive HSTS header
williamtm.design: could not connect to host
-willkommen-fuerstenberg.de: could not connect to host
+willkommen-fuerstenberg.de: did not receive HSTS header
willosagiede.com: did not receive HSTS header
wilsonovi.com: could not connect to host
+wilsonvilleoregon.gov: could not connect to host
winaes.com: did not receive HSTS header
winclient.cn: could not connect to host
+wind.moe: 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: could not connect to host
+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
winged.io: did not receive HSTS header
wingos.net: could not connect to host
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: could not connect to host
winsec.nl: could not connect to host
winshiplending.com: could not connect to host
winsufi.biz: could not connect to host
wintercircle.co: max-age too low: 60
-wipc.net: could not connect to host
+wipc.net: did not receive HSTS header
wipply.com: could not connect to host
wirbatz.org: did not receive HSTS header
wirc.gr: could not connect to host
+wiredcut.com: could not connect to host
wireless-emergency-stop.com: did not receive HSTS header
-wirkaufendeinau.to: did not receive HSTS header
+wirelesswatch.com.au: could not connect to host
+wiretrip.io: could not connect to host
+wirkaufendeinau.to: could not connect to host
wisak.eu: could not connect to host
+wisal.org: did not receive HSTS header
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: could not connect to host
+withoutacrystalball.com: could not connect to host
+withustrading.com: did not receive HSTS header
withyoutube.com: did not receive HSTS header (error ignored - included regardless)
wittcher.com: could not connect to host
wittepapaver.nl: did not receive HSTS header
witting.co: could not connect to host
wittydonut.com: could not connect to host
witzemaschine.com: max-age too low: 0
+wixguide.co: did not receive HSTS header
wizardmeow.xin: could not connect to host
wizardspire.com: did not receive HSTS header
wizznab.tk: could not connect to host
-wjglerum.nl: could not connect to host
wk-cpm.com: could not connect to host
-wk.is: could not connect to host
wk577.com: could not connect to host
wlzhiyin.cn: could not connect to host
wmawri.com: did not receive HSTS header
wmcuk.net: did not receive HSTS header
wmfinanz.com: could not connect to host
+wmnrj.com: did not receive HSTS header
wmoda.com.br: could not connect to host
+wmustore.com: did not receive HSTS header
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
+wodboss.com: 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: did not receive HSTS header
+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
wolfram.io: could not connect to host
+wolkenspeicher.org: could not connect to host
wollekorb.de: could not connect to host
+womb.city: could not connect to host
womf.org: did not receive HSTS header
womosale.de: could not connect to host
-wonder.com.mx: max-age too low: 86400
+wonabo.com: could not connect to host
wonderbooks.club: could not connect to host
wonderfall.xyz: could not connect to host
wonderhost.info: could not connect to host
@@ -14807,44 +19280,61 @@ wondershift.biz: did not receive HSTS header
wondy.com: could not connect to host
woodlandschurch.net: max-age too low: 43200
woodmafia.com.au: could not connect to host
-woodworkertip.com: did not receive HSTS header
+woodworkertip.com: could not connect to host
+woomai.net: could not connect to host
woomu.me: could not connect to host
+wooplagaming.com: could not connect to host
woording.com: could not connect to host
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: did not receive HSTS header
wordplay.one: could not connect to host
-wordpresspro.cl: did not receive HSTS header
+wordpress-test.site: could not connect to host
+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: did not receive HSTS header
+workemy.com: could not connect to host
workfone.io: could not connect to host
+workingmachine.info: could not connect to host
+workissime.com: did not receive HSTS header
workpermit.com.vn: could not connect to host
-workray.com: did not receive HSTS header
+workplaces.online: did not receive HSTS header
worksofwyoming.org: did not receive HSTS header
workwithgo.com: could not connect to host
world-education-association.org: could not connect to host
-worldfree4.org: could not connect to host
+worldchess.london: could not connect to host
+worldcrafts.org: did not receive HSTS header
+worldfree4.org: did not receive HSTS header
worldlist.org: could not connect to host
+worldofterra.net: could not connect to host
worldpovertysolutions.org: did not receive HSTS header
worldsbeststory.com: did not receive HSTS header
worldwhisperer.net: could not connect to host
+wormdisk.net: could not connect to host
wormholevpn.net: could not connect to host
-worshapp.com: could not connect to host
+worshapp.com: did not receive HSTS header
+woti.dedyn.io: could not connect to host
+wow-foederation.de: 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-bullet.com: did not receive HSTS header
wp-fastsearch.de: could not connect to host
-wp-rescue.com.au: did not receive HSTS header
+wp-rescue.com.au: could not connect to host
wp-stack.pro: could not connect to host
wp6.pw: could not connect to host
wpblog.com.tw: could not connect to host
wpcarer.pro: could not connect to host
-wpcdn.bid: did not receive HSTS header
wpcheck.io: could not connect to host
wpcontrol.se: could not connect to host
wpdesigner.ir: did not receive HSTS header
+wpdublin.com: could not connect to host
+wpexplainer.com: did not receive HSTS header
+wpfast.net: could not connect to host
wpfortify.com: could not connect to host
wpg-inc.com: did not receive HSTS header
wphelpwithhomework.tk: could not connect to host
@@ -14867,71 +19357,76 @@ 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: could not connect to host
wsb-immo.at: could not connect to host
wsdcap.com: could not connect to host
-wsor.group: 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
-wubify.com: could not connect to host
-wubocong.com: could not connect to host
+wtwk.com: did not receive HSTS header
+wubify.com: did not receive HSTS header
+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]
+wufu.org: did not receive HSTS header
+wufupay.com: could not connect to host
wuhengmin.com: could not connect to host
wulpi.it: did not receive HSTS header
-wumai-p.cn: could not connect to host
+wumai.cloud: could not connect to host
+wumbo.cf: could not connect to host
+wumbo.ga: could not connect to host
+wumbo.gq: could not connect to host
wumbo.kiwi: could not connect to host
+wumbo.ml: could not connect to host
+wumbo.tk: 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
+wvv-8522.com: could not connect to host
+wvw-8522.com: could not connect to host
wvw698.com: max-age too low: 2592000
-wwjd.dynu.net: could not connect to host
+wwbsb.xyz: 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: did not receive HSTS header
+www-1116.com: could not connect to host
www-1117.com: could not connect to host
www-38978.com: could not connect to host
www-39988.com: did not receive HSTS header
www-507.net: could not connect to host
www-62755.com: could not connect to host
-www-68277.com: could not connect to host
+www-66136.com: did not receive HSTS header
www-746.com: could not connect to host
+www-7570.com: did not receive HSTS header
www-771122.com: did not receive HSTS header
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-9995.com: did not receive HSTS header
-www-djbet.com: did not receive HSTS header
-www-jinshavip.com: did not receive HSTS header
-www.amazon.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]
-www.amazon.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]
-www.amazon.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]
-www.amazon.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]
-www.amazon.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]
-www.amazon.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]
-www.amazon.com.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]
-www.amazon.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]
-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-9649.com: did not receive HSTS header
+www-9995.com: could not connect to host
+www-djbet.com: could not connect to host
+www-jinshavip.com: could not connect to host
+www-pj009.com: could not connect to host
+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
www.greplin.com: could not connect to host
-www.icann.org: did not receive HSTS header
+www.intercom.io: did not receive HSTS header
www.jitsi.org: did not receive HSTS header
www.ledgerscope.net: could not connect to host
www.logentries.com: did not receive HSTS header
@@ -14943,43 +19438,50 @@ 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: did not receive HSTS header
+wxukang.cn: could not connect to host
+wxyz.buzz: 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
wyu.cc: could not connect to host
wyzphoto.nl: did not receive HSTS header
wyzwaniemilosci.com: could not connect to host
+wzfetish.com.br: could not connect to host
+wzrd.in: 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
+x1be.win: did not receive HSTS header
x23.eu: did not receive HSTS header
x2c0.net: did not receive HSTS header
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
-xa1.uk: could not connect to host
-xanax.pro: 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
-xavierbarroso.com: could not connect to host
+xavier.is: could not connect to host
+xavierbarroso.com: did not receive HSTS header
xbc.nz: could not connect to host
+xbertschy.com: did not receive HSTS header
xbind.io: could not connect to host
xchangeinfo.com: could not connect to host
xchating.com: could not connect to host
xcler8.com: could not connect to host
xcompany.one: could not connect to host
xcoop.me: did not receive HSTS header
+xd.fi: did not receive HSTS header
xd.gov: did not receive HSTS header
xdd.io: could not connect to host
-xdty.org: could not connect to host
xehoivn.vn: could not connect to host
xellos.ga: could not connect to host
xellos.ml: could not connect to host
@@ -14987,44 +19489,59 @@ xenesisziarovky.sk: could not connect to host
xenosphere.tk: could not connect to host
xeonlab.com: could not connect to host
xeonlab.de: could not connect to host
-xerownia.eu: could not connect to host
-xett.com: could not connect to host
+xett.com: did not receive HSTS header
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
+xiaobude.cn: did not receive HSTS header
xiaody.me: could not connect to host
+xiaofengsky.com: did not receive HSTS header
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: did not receive HSTS header
-xiliant.com: did not receive HSTS header
+xiaxuejin.cn: could not connect to host
+xiazhanjian.com: did not receive HSTS header
+xice.cf: could not connect to host
+xilegames.com: could not connect to host
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
+xinbo270.com: 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
+xinplay.net: max-age too low: 0
+xinsane.com: 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
-xlaff.com: could not connect to host
+xj8876.com: max-age too low: 2592000
+xlaff.com: did not receive HSTS header
xlboo.com: did not receive HSTS header
xlfblog.com: did not receive HSTS header
xlinar.com: could not connect to host
+xlui.me: did not receive HSTS header
+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
+xn-----8kcgbo2bmdgkdacthvjf.xn--p1ai: could not connect to host
xn----7sbmucgqdbgwwc5e9b.xn--p1ai: could not connect to host
+xn--3lqp21gwna.cn: could not connect to host
xn--3lqp21gwna.xn--fiqs8s: could not connect to host
xn--3lqp21gwna.xn--fiqz9s: could not connect to host
xn--3lqt7ir4md4tzwa.cn: did not receive HSTS header
@@ -15035,14 +19552,17 @@ xn--4dbjwf8c.ga: could not connect to host
xn--4dbjwf8c.gq: could not connect to host
xn--4dbjwf8c.ml: could not connect to host
xn--4dbjwf8c.tk: could not connect to host
+xn--68jub.pw: could not connect to host
xn--6cv66l79sp0n0ibo7s9ne.xyz: did not receive HSTS header
xn--7rvz7ku3ppnr.jp: could not connect to host
xn--7v8h.cf: could not connect to host
-xn--80aaihqncaejjobbu6v.xn--p1ai: did not receive HSTS header
+xn--80aaagmgvmvmcuoq7r.xn--p1ai: did not receive HSTS header
+xn--80aaihqncaejjobbu6v.xn--p1ai: max-age too low: 0
xn--80ablh1c.online: could not connect to host
xn--80ac0aqlt.xn--p1ai: could not connect to host
xn--80aocgsfei.xn--p1ai: could not connect to host
xn--88j2fy28hbxmnnf9zlw5buzd.com: did not receive HSTS header
+xn--8dry00a7se89ay98epsgxxq.com: did not receive HSTS header
xn--8mr166hf6s.xn--fiqs8s: could not connect to host
xn--98jm6m.jp: could not connect to host
xn--9pr52k0p5a.com: did not receive HSTS header
@@ -15052,17 +19572,24 @@ 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--die-zahnrzte-ncb.de: did not receive HSTS header
+xn--dk8haaa.ws: could not connect to host
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--eckle6c0exa0b0modc7054g7h8ajw6f.com: did not receive HSTS header
+xn--ehq13kgw4e.ml: could not connect to host
xn--ekr87w7se89ay98ezcs.biz: did not receive HSTS header
+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
xn--hwt895j.xn--kpry57d: could not connect to host
xn--internetlnen-1cb.com: could not connect to host
xn--jp-6l5cs1yf3ivjsglphyv.net: could not connect to host
xn--jywq5uqwqxhd2onsij.jp: did not receive HSTS header
+xn--keditr-0xa.biz: could not connect to host
xn--l8j9d2b.jp: could not connect to host
xn--lgb3a8bcpn.cf: could not connect to host
xn--lgb3a8bcpn.ga: could not connect to host
@@ -15070,26 +19597,31 @@ 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
xn--mhringen-65a.de: did not receive HSTS header
+xn--mhsv04avtt1xi.com: could not connect to host
xn--milchaufschumer-test-lzb.de: could not connect to host
xn--n8jubz39q0g0afpa985c.com: could not connect to host
xn--neb-tma3u8u.xyz: could not connect to host
xn--o77hka.ga: could not connect to host
+xn--oiqt18e8e2a.eu.org: could not connect to host
xn--p8jskj.jp: could not connect to host
xn--pck4e3a2ex597b4ml.xyz: did not receive HSTS header
xn--pckqk6xk43lunk.net: could not connect to host
xn--qckqc0nxbyc4cdb4527err7c.biz: did not receive HSTS header
xn--qckyd1cu698a35zarib.xyz: could not connect to host
+xn--qfun83b.ga: 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--t8j2a3042d.xyz: could not connect to host
xn--tda.ml: could not connect to host
xn--thorme-6uaf.ca: could not connect to host
+xn--trdler-xxa.xyz: could not connect to host
xn--u9jy16ncfao19mo8i.nagoya: could not connect to host
xn--uist1idrju3i.jp: did not receive HSTS header
xn--uort9oqoaj00bv04d.biz: did not receive HSTS header
@@ -15098,8 +19630,8 @@ xn--vck8crc010pu14e.biz: could not connect to host
xn--vck8crc655y34ioha.net: could not connect to host
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--werner-schffer-fib.de: could not connect to host
+xn--wmq.jp: did not receive HSTS header
xn--xdtx3pfzbiw3ar8e7yedqrhui.com: could not connect to host
xn--xz1a.jp: could not connect to host
xn--y8j2eb5631a4qf5n0h.com: could not connect to host
@@ -15109,81 +19641,108 @@ 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
+xnode.org: 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
xom.party: could not connect to host
xombra.com: could not connect to host
+xoonth.net: 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
+xpj.bet: did not receive HSTS header
xpj.sx: could not connect to host
+xpjcunkuan.com: could not connect to host
+xplore-dna.net: could not connect to host
xpressprint.com.br: max-age too low: 90
-xpwn.cz: could not connect to host
+xps2pdf.co.uk: could not connect to host
+xps2pdf.info: could not connect to host
+xpwn.cz: did not receive HSTS header
+xq55.com: did not receive HSTS header
xqin.net: 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
-xserownia.com.pl: could not connect to host
-xserownia.eu: could not connect to host
-xserownia.pl: could not connect to host
xsstime.nl: could not connect to host
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: did not receive HSTS header
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: could not connect to host
-xuyh0120.win: did not receive HSTS header
-xwalck.se: could not connect to host
-xx0r.eu: could not connect to host
-xxbase.com: did not receive HSTS header
+xupeng.me: 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
-xy6363.com: could not connect to host
-xy7171.com: could not connect to host
-xy7272.com: could not connect to host
-xy7373.com: could not connect to host
xyndrac.net: max-age too low: 2592000
xynex.us: could not connect to host
+xyngular-health.com: did not receive HSTS header
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
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
+yannikhenke.de: could not connect to host
yanwh.xyz: did not receive HSTS header
-yaoidreams.com: did not receive HSTS header
-yaporn.tv: 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
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
yawen.tw: did not receive HSTS header
+yawnbox.com: did not receive HSTS header
+yayart.club: could not connect to host
+yazaral.com: did not receive HSTS header
ybscareers.co.uk: did not receive HSTS header
+ybt520.com: did not receive HSTS header
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: did not receive HSTS header
+yellowfly.co.uk: did not receive HSTS header
+yemalu.com: could not connect to host
yemekbaz.az: could not connect to host
+yennhi.co: could not connect to host
yenniferallulli.com: could not connect to host
yenniferallulli.de: could not connect to host
yenniferallulli.es: did not receive HSTS header
@@ -15192,44 +19751,56 @@ yenniferallulli.nl: could not connect to host
yepbitcoin.com: could not connect to host
yesdevnull.net: did not receive HSTS header
yesfone.com.br: could not connect to host
+yeshu.org: could not connect to host
+yesiammaisey.me: could not connect to host
yestees.com: did not receive HSTS header
-yeswecan.co.bw: did not receive HSTS header
yetcore.io: could not connect to host
yetishirt.com: could not connect to host
yffengshi.ml: could not connect to host
ygcdyf.com: did not receive HSTS header
yggdar.ga: could not connect to host
+yh35.net: could not connect to host
yhori.xyz: could not connect to host
+yhwj.top: could not connect to host
yibaoweilong.top: could not connect to host
yibin0831.com: could not connect to host
+yicknam.my: could not connect to host
+yiffy.tips: did not receive HSTS header
+yiffy.zone: did not receive HSTS header
yikzu.cn: could not connect to host
yin.roma.it: did not receive HSTS header
+yin8888.tv: did not receive HSTS header
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
yinhe12.net: 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
+yjsw.sh.cn: could not connect to host
+ylilauta.org: could not connect to host
ylk.io: could not connect to host
+ylwz.cc: did not receive HSTS header
ynode.co: did not receive HSTS header
ynsn.nl: could not connect to host
yntongji.com: could not connect to host
+ynxfh.cn: did not receive HSTS header
yob.vn: could not connect to host
+yobai28.com: did not receive HSTS header
yobst.tk: could not connect to host
+yocchan1513.net: did not receive HSTS header
yoga-prive.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]
yoga.is-an-engineer.com: could not connect to host
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
-yolocelebs.com: did not receive HSTS header
+yolocelebs.com: could not connect to host
yoloprod.fr: could not connect to host
yoloseo.com: could not connect to host
yomena.in: could not connect to host
@@ -15237,54 +19808,83 @@ yomepre.com: could not connect to host
yopers.com: did not receive HSTS header
yorkshireterrier.com.br: could not connect to host
yoru.me: could not connect to host
-yoticonnections.com: could not connect to host
+yosheenetwork.fr: could not connect to host
+yotilab.com: could not connect to host
yotilabs.com: could not connect to host
-youcaitian.com: did not receive HSTS header
+youcaitian.com: could not connect to host
youcancraft.de: could not connect to host
-youcanfuckoff.xyz: could not connect to host
youcontrol.ru: could not connect to host
+youdowell.com: did not receive HSTS header
youfencun.com: did not receive HSTS header
+youftp.tk: could not connect to host
+yougot.pw: could not connect to host
+youjizz.bz: could not connect to host
+youlend.com: did not receive HSTS header
youlog.net: could not connect to host
+youmiracle.com: could not connect to host
+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
yourbapp.ch: could not connect to host
-yourcomputer.expert: did not receive HSTS header
+yourfriendlytech.com: could not connect to host
+yourgadget.ro: could not connect to host
yourgame.co.il: did not receive HSTS header
+yourhair.net: max-age too low: 0
youri.me: could not connect to host
yourlovesong.com.mx: could not connect to host
+yourname.xyz: could not connect to host
yoursbookstore.jp: max-age too low: 0
yoursecondphone.co: could not connect to host
yourself.today: could not connect to host
yourstrongbox.com: could not connect to host
+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]
+yspeo.biz: 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
+yuanjiazhao.tk: could not connect to host
yudan.com.br: could not connect to host
yude.ml: could not connect to host
-yue2.net: did not receive HSTS header
+yue2.net: could not connect to host
+yuema.net.cn: could not connect to host
yufan.me: did not receive HSTS header
yugege.cf: could not connect to host
yuhen.ru: did not receive HSTS header
-yuhuo.org: could not connect to host
yui.cat: did not receive HSTS header
-yukijinji.moe: could not connect to host
+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
+yukimochi.io: could not connect to host
+yukimochi.jp: could not connect to host
yuko.moe: could not connect to host
yukonrefugees.com: could not connect to host
yum.beer: could not connect to host
yum0.cn: could not connect to host
+yumli.net: could not connect to host
yummyfamilyrecipes.com: could not connect to host
+yummylooks.com: did not receive HSTS header
yuna.love: could not connect to host
yuna.tg: could not connect to host
yunpan.blue: could not connect to host
@@ -15292,34 +19892,46 @@ yuntama.xyz: could not connect to host
yunzhan.io: could not connect to host
yunzhu.org: could not connect to host
yuppi.tv: max-age too low: 43200
+yuqi.me: could not connect to host
yurinet.org: could not connect to host
yuriykuzmin.com: did not receive HSTS header
-yusu.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]
yutabon.com: could not connect to host
-yutang.vn: 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
+yuxingxin.com: did not receive HSTS header
yuzu.tk: did not receive HSTS header
+yvetteerasmus.com: max-age too low: 0
ywei.org: could not connect to host
ywyz.tech: could not connect to host
-yzcloud.me: could not connect to host
+yxs.me: could not connect to host
+yxt521.com: did not receive HSTS header
+yya.bid: did not receive HSTS header
+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
+zabavno.mk: 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
@@ -15329,48 +19941,61 @@ zaneweb.org: could not connect to host
zao.fi: could not connect to host
zaoext.com: could not connect to host
zaoshanghao-dajia.rhcloud.com: could not connect to host
-zap.yt: did not receive HSTS header
+zap.yt: could not connect to host
+zapatoshechoamano.pe: did not receive HSTS header
+zappos.com: did not receive HSTS header
+zaptan.net: could not connect to host
+zaptan.org: could not connect to host
+zaptan.us: could not connect to host
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
+zbetcheck.in: 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
+zdravesteny.cz: could not connect to host
zdravotnickasluzba.eu: could not connect to host
-zdrowiepaleo.pl: did not receive HSTS header
+zdrowiepaleo.pl: could not connect to host
zdx.ch: max-age too low: 0
+zeal-and.jp: could not connect to host
zeb.fun: could not connect to host
+zebibyte.cn: did not receive HSTS header
zebrababy.cn: could not connect to host
zebry.nl: did not receive HSTS header
zecrypto.com: could not connect to host
zeedroom.be: did not receive HSTS header
+zeelynk.com: could not connect to host
zefiris.org: did not receive HSTS header
zefu.ca: could not connect to host
zehdenick-bleibt-bunt.de: could not connect to host
zehntner.ch: max-age too low: 3600
+zeitoununiversity.org: could not connect to host
zeitzer-turngala.de: could not connect to host
zelfmoord.ga: could not connect to host
zelfstandigemakelaars.net: 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
-zenhaiku.com: did not receive HSTS header
+zenfusion.fr: could not connect to host
+zenhaiku.com: could not connect to host
+zenics.co.uk: did not receive HSTS header
+zenmate.com.tr: could not connect to host
zeno-system.com: did not receive HSTS header
zenpayroll.com: did not receive HSTS header
-zenti.cloud: did not receive HSTS header
+zenram.com: did not receive HSTS header
zentience.dk: did not receive HSTS header
zentience.net: did not receive HSTS header
zentience.org: did not receive HSTS header
+zentiweb.nl: did not receive HSTS header
zentraler-kreditausschuss.de: did not receive HSTS header
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: max-age too low: 0
-zerekin.net: did not receive HSTS header
+zera.com.au: could not connect to host
+zerekin.net: max-age too low: 86400
zero-sum.xyz: could not connect to host
zero-x-baadf00d.com: could not connect to host
zerocool.io: could not connect to host
@@ -15379,16 +20004,21 @@ zerofox.gq: 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
+zertif.info: 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
+zetrov.pl: did not receive HSTS header
zett4.me: max-age too low: 172800
zeug.co: could not connect to host
-zewtie.com: did not receive HSTS header
+zewtie.com: could not connect to host
zeytin.pro: could not connect to host
+zfo.gg: could not connect to host
zgan.ga: could not connect to host
zh1.li: could not connect to host
zhang.wtf: could not connect to host
+zhangcheng.org: did not receive HSTS header
zhangruilin.com: did not receive HSTS header
zhangsir.net: could not connect to host
zhaochen.xyz: could not connect to host
@@ -15396,34 +20026,49 @@ zhaojin97.cn: could not connect to host
zhendingresources.com: did not receive HSTS header
zhengouwu.com: could not connect to host
zhenmeish.com: could not connect to host
+zhenyan.org: could not connect to host
zhh.in: could not connect to host
+zhih.me: could not connect to host
zhihua-lai.com: did not receive HSTS header
-zhiin.net: 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
+zhiwei.me: did not receive HSTS header
zhoujiashu.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
zi0r.com: did not receive HSTS header
zian.online: could not connect to host
zicklam.com: could not connect to host
+ziegler-family.com: could not connect to host
zigcore.com.br: could not connect to host
zikirakhirzaman.com: could not connect to host
zinc-x.com: did not receive HSTS header
zinenapse.info: could not connect to host
zippy-download.com: could not connect to host
zippy-download.de: could not connect to host
+ziptie.com: max-age too low: 0
zirtue.io: could not connect to host
-zivagold.com: did not receive HSTS header
-zivver.com: could not connect to host
+zitrone44.de: did not receive HSTS header
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]
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
+zjuqsc.com: could not connect to host
zjutv.com: could not connect to host
+zjyifa.cn: could not connect to host
zkillboard.com: did not receive HSTS header
zking.ga: could not connect to host
+zl0iu.com: could not connect to host
+zl8862.com: could not connect to host
+zlc1994.com: did not receive HSTS header
zlcp.com: could not connect to host
+zmala.com: did not receive HSTS header
zmsastro.co.za: could not connect to host
zmscable.com: did not receive HSTS header
zmy.im: could not connect to host
@@ -15434,55 +20079,71 @@ zocken.com: did not receive HSTS header
zoe.vc: could not connect to host
zohar.link: could not connect to host
zohar.shop: could not connect to host
+zoi.jp: could not connect to host
zokster.net: could not connect to host
-zollihood.ch: did not receive HSTS header
+zolokar.xyz: could not connect to host
zolotoy-standart.com.ua: did not receive HSTS header
-zomiac.pp.ua: could not connect to host
+zombiesecured.com: could not connect to host
zonadebolsa.es: did not receive HSTS header
+zone403.net: could not connect to host
zoneminder.com: did not receive HSTS header
zoners.si: did not receive HSTS header
-zonesec.org: could not connect to host
zonky.io: could not connect to host
+zoo.city: could not connect to host
zoo24.de: did not receive HSTS header
zoofaeth.de: did not receive HSTS header
-zoological-gardens.eu: could not connect to host
+zoofit.com.au: did not receive HSTS header
zoomingin.net: max-age too low: 5184000
zoommailing.com: did not receive HSTS header
+zoomseoservices.com: max-age too low: 2592000
zoorigin.com: did not receive HSTS header
+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
-zotero.org: 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
+zqstudio.top: 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
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
-zumazar.ru: could not connect to host
+zunda.cafe: could not connect to host
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
zvncloud.com: did not receive HSTS header
zvz.im: could not connect to host
-zwembadheeten.nl: could not connect to host
-zxity.co.uk: did not receive HSTS header
+zwalcz-cellulit.com: did not receive HSTS header
+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
+zxity.co.uk: could not connect to host
zxity.ltd: could not connect to host
zxity.uk: could not connect to host
zyf.pw: could not connect to host
+zyger.co.za: did not receive HSTS header
zymbit.com: did not receive HSTS header
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
-zzpd.nl: did not receive HSTS header
zzw.ca: could not connect to host
diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc
index 85f33eb03..75d35a777 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(1542710641724000);
+const PRTime gPreloadListExpirationTime = INT64_C(1555803903526000);
class nsSTSPreload
{
@@ -18,39 +18,16 @@ class nsSTSPreload
};
static const nsSTSPreload kSTSPreloadList[] = {
- { "0.me.uk", true },
- { "0005pay.com", true },
- { "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 },
- { "00778899.com", true },
- { "00880088.net", true },
- { "00990099.net", true },
+ { "0086286.com", true },
{ "00dani.me", true },
{ "00f.net", true },
{ "0100dev.com", false },
{ "0100dev.nl", false },
- { "013028.com", true },
- { "016028.com", true },
- { "016098.com", true },
- { "016328.com", true },
- { "019328.com", true },
- { "019398.com", true },
+ { "01011970.xyz", true },
+ { "01110000011100110111001001100111.com", true },
{ "01electronica.com.ar", true },
{ "01seguridad.com.ar", true },
- { "01smh.com", true },
- { "0222.mg", true },
{ "022367.com", true },
{ "022379.com", true },
{ "022391.com", true },
@@ -64,34 +41,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "022610.com", true },
{ "02327.net", true },
{ "02375.net", true },
- { "023sec.com", true },
+ { "02607.com", true },
{ "026122.com", true },
{ "02638.net", true },
- { "028718.com", true },
- { "029978.com", true },
- { "02smh.com", true },
{ "03170317.com", true },
{ "0391315.com", true },
{ "046569.com", true },
- { "04sun.com", true },
+ { "04911701.cn", true },
{ "050.ca", true },
{ "050media.nl", true },
{ "0511315.net", true },
{ "0513c.com", true },
- { "055268.com", true },
{ "0573wk.com", true },
- { "066538.com", true },
+ { "06091994.xyz", true },
{ "06se.com", true },
- { "07733.win", true },
- { "078805.com", true },
- { "078810.com", true },
- { "078820.com", true },
- { "078860.com", true },
- { "078890.com", true },
{ "0788yh.com", true },
{ "0792112.com", true },
{ "0809yh.com", true },
- { "081638.com", true },
{ "081752.com", true },
{ "081763.com", true },
{ "081769.com", true },
@@ -120,14 +86,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "083962.com", true },
{ "083965.com", true },
{ "083967.com", true },
- { "086628.com", true },
+ { "08detaxe.fr", true },
+ { "09115.com", true },
{ "0916app.com", true },
{ "09892.net", true },
{ "0au.de", true },
{ "0c3.de", true },
{ "0day.agency", true },
{ "0des.com", true },
+ { "0ii0.cf", true },
{ "0ik.de", true },
+ { "0iz.net", true },
{ "0knowledge.de", false },
{ "0o0.edu.pl", true },
{ "0paste.com", true },
@@ -137,11 +106,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "0wx.org", true },
{ "0x.cx", true },
{ "0x.sk", true },
+ { "0x0.cloud", true },
{ "0x0.li", true },
{ "0x00ff00ff.com", true },
{ "0x17.de", true },
+ { "0x378.net", true },
+ { "0x48.pw", true },
{ "0x52.net", true },
- { "0x5f3759df.cf", true },
{ "0x7d.com", true },
{ "0x7fffffff.net", true },
{ "0x90.io", true },
@@ -151,7 +122,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "0xdc.io", false },
{ "0xdefaced.de", true },
{ "0xee.eu", true },
- { "0xf00.ch", true },
{ "0xfc.de", true },
{ "0xn.de", true },
{ "0yen.org", true },
@@ -159,8 +129,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "100-downloads.com", true },
{ "10000v.ru", true },
{ "1000minds.com", true },
- { "1000serien.com", false },
{ "1001firms.com", true },
+ { "1001kartini.com", true },
{ "1001kerstpakketten.com", false },
{ "1001mv.com", true },
{ "10086.nl", true },
@@ -170,7 +140,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "100lat.pl", true },
{ "100mani.it", true },
{ "100pounds.co.uk", true },
- { "100rembourse.be", true },
{ "101.qa", true },
{ "1011100.com", true },
{ "101sauna.kz", true },
@@ -183,28 +152,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "10439.net", true },
{ "10453.net", true },
{ "10495.net", true },
- { "1066.io", true },
{ "10774.net", true },
{ "10840.net", true },
{ "10gb.io", true },
{ "10hz.de", true },
{ "10og.de", true },
{ "10ppm.com", true },
- { "10seos.com", true },
- { "10v2.com", true },
- { "1100.so", true },
- { "110110110.net", true },
- { "1116pay.com", true },
- { "112112112.net", true },
{ "112app.nl", true },
{ "112hz.com", true },
- { "113113113.net", true },
{ "114514ss.com", true },
- { "118118118.net", true },
- { "11bt.cc", true },
+ { "1177107.com", true },
{ "11dzon.com", true },
{ "11loc.de", true },
- { "11scc.com", true },
{ "11thstreetcoffee.com", true },
{ "11urss.com", true },
{ "1212873467.rsc.cdn77.org", true },
@@ -217,16 +176,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "123bearing.co.uk", true },
{ "123bearing.com", true },
{ "123bearing.eu", true },
- { "123comparer.fr", false },
- { "123djdrop.com", true },
+ { "123comparer.fr", true },
{ "123midterm.com", true },
- { "123pay.ir", false },
+ { "123nutricion.es", true },
+ { "123opstalverzekeringen.nl", true },
{ "123plons.nl", true },
{ "123roulement.be", true },
{ "123roulement.com", true },
- { "123termpapers.com", true },
- { "123test.com", true },
- { "123test.nl", true },
{ "123writings.com", true },
{ "124133.com", true },
{ "124633.com", true },
@@ -234,14 +190,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1288fc.com", true },
{ "12photos.eu", true },
{ "12thmanrising.com", true },
+ { "12train.com", true },
{ "12vpn.net", true },
{ "130.ua", true },
- { "130978.com", true },
{ "132kv.ch", true },
- { "13318522.com", true },
- { "1391kj.com", true },
- { "1395kj.com", true },
- { "1396.net", true },
+ { "1359826938.rsc.cdn77.org", true },
{ "13th-dover.uk", true },
{ "143533.com", true },
{ "143633.com", true },
@@ -255,16 +208,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 },
@@ -272,73 +215,74 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "15-10.com", true },
{ "1511774230.rsc.cdn77.org", true },
{ "152433.com", true },
+ { "1527web.com", true },
{ "154233.com", true },
{ "154633.com", true },
{ "154933.com", true },
{ "156433.com", true },
{ "1590284872.rsc.cdn77.org", true },
+ { "159cp.com", true },
{ "1600esplanade.com", true },
{ "160887.com", true },
+ { "162jonesrd.ca", true },
{ "1644091933.rsc.cdn77.org", true },
{ "1661237.com", true },
- { "166166.com", true },
- { "1689886.com", true },
- { "168bo9.com", true },
- { "168bo9.net", true },
- { "168esb.com", true },
{ "1750studios.com", false },
- { "17hats.com", true },
+ { "1768calc.com.au", true },
{ "1811559.com", true },
{ "1844329061.rsc.cdn77.org", true },
{ "1876996.com", true },
- { "18888msc.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 },
- { "19216811.online", true },
+ { "1911trust.com", true },
+ { "192.io", 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 },
+ { "1cswd.com", true },
{ "1e9.nl", true },
{ "1f123.net", true },
+ { "1fach-digital.de", true },
{ "1hourproofreading.com", true },
{ "1it.click", true },
- { "1item.co.il", true },
{ "1js.de", true },
{ "1kando.com", false },
{ "1km.ro", true },
{ "1kmi.co", true },
{ "1ll.uk", true },
- { "1m.duckdns.org", true },
+ { "1lord1faith.com", true },
{ "1montre.fr", true },
{ "1morebounce.co.uk", true },
{ "1nfr.com", false },
+ { "1oaklasvegas.com", true },
{ "1of16.de", true },
{ "1on1on1.de", true },
{ "1on1on1.tv", true },
{ "1panorama.ru", true },
{ "1para.net", true },
+ { "1password.ca", true },
{ "1password.com", true },
+ { "1password.eu", true },
+ { "1pw.ca", true },
{ "1px.tv", 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 },
@@ -346,70 +290,79 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1stclassbouncycastles.co.uk", true },
{ "1stforfun.co.uk", true },
{ "1stpeninsulabouncers.co.uk", true },
- { "1ststop.co.uk", true },
- { "1upinternet.com", true },
{ "1volcano.ru", true },
+ { "1way.faith", true },
{ "1whw.co.uk", true },
{ "1wirelog.de", true },
{ "1wl.uk", true },
{ "2.wtf", true },
- { "200fcw.com", true },
- { "2018.wales", true },
- { "2048-spiel.de", true },
+ { "200.network", true },
+ { "2001y.me", true },
+ { "2012.ovh", true },
+ { "20188088.com", true },
{ "20at.com", true },
- { "20denier.com", true },
- { "21.co.uk", true },
{ "215dy.net", true },
{ "21sthammersmith.org.uk", true },
+ { "21stnc.us", true },
{ "21x9.org", true },
+ { "222001.com", true },
{ "2222yh.com", true },
- { "22bt.cc", true },
- { "22digital.agency", true },
- { "22scc.com", true },
+ { "22vetter.st", true },
{ "230beats.com", true },
+ { "23333.link", true },
{ "2333666.xyz", true },
{ "2333blog.com", true },
- { "233abc.com", true },
+ { "233abc.com", false },
{ "233blog.com", true },
+ { "233boy.com", true },
+ { "233bwg.com", true },
+ { "233hugo.com", true },
+ { "233now.com", true },
{ "233ss.net", true },
{ "233vps.com", true },
+ { "233yes.com", true },
{ "24-7.jp", true },
{ "245meadowvistaway.com", true },
{ "246060.ru", true },
- { "247a.co.uk", 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 },
+ { "24hourlocksmithshouston.com", true },
{ "24hoursanantoniolocksmiths.com", true },
{ "24hourscienceprojects.com", true },
{ "24ip.com", true },
{ "24ip.de", true },
{ "24ip.fr", true },
{ "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 },
- { "27728522.com", true },
+ { "2718282.net", true },
{ "28-industries.com", true },
{ "281180.de", true },
{ "2858958.com", true },
- { "288da.com", true },
{ "28peaks.com", true },
{ "28spots.net", true },
+ { "291167.xyz", true },
{ "2912.nl", true },
{ "2948.ca", true },
- { "298da.com", true },
+ { "297computers.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 },
@@ -417,10 +370,15 @@ 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 },
+ { "2fm.radio", true },
{ "2fraud.pro", true },
+ { "2g1s.net", true },
{ "2gen.com", true },
+ { "2h-nagoya.org", true },
{ "2heartsbookings.co.uk", true },
{ "2hypeenterprises.com", true },
{ "2kgwf.fi", true },
@@ -428,16 +386,18 @@ 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 },
{ "2pay.fr", true },
{ "2programmers.net", true },
{ "2rsc.com", true },
{ "2rsc.net", true },
{ "2stv.net", true },
+ { "2tuu.com", true },
{ "2ulcceria.nl", true },
{ "2wheel.com", true },
+ { "2y.fi", true },
{ "3-dot-careapp1-146314.appspot.com", true },
{ "300m.com", false },
{ "302422.com", true },
@@ -449,13 +409,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3056999.com", true },
{ "309422.com", true },
{ "30hzcollective.com", true },
- { "30yearmortgagerates.net", true },
{ "310422.com", true },
{ "313422.com", true },
{ "314022.com", true },
{ "314122.com", true },
{ "314322.com", true },
{ "314522.com", true },
+ { "314553.com", true },
{ "314622.com", true },
{ "314633.com", true },
{ "314922.com", true },
@@ -464,7 +424,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "319422.com", true },
{ "319k3.com", true },
{ "31klabs.com", true },
- { "31tv.ru", true },
{ "320281.net", true },
{ "321live.nl", true },
{ "324022.com", true },
@@ -485,8 +444,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "33445222.com", true },
{ "33445333.com", true },
{ "33445444.com", true },
- { "33836.com", true },
- { "33scc.com", true },
+ { "33jiasu.com", true },
{ "340422.com", true },
{ "340622.com", true },
{ "340922.com", true },
@@ -526,7 +484,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "349233.com", true },
{ "349433.com", true },
{ "349533.com", true },
- { "34oztonic.eu", true },
{ "350422.com", true },
{ "354022.com", true },
{ "354133.com", true },
@@ -536,23 +493,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "354922.com", true },
{ "354933.com", true },
{ "356433.com", true },
+ { "357maelai.co", true },
{ "360live.fr", true },
- { "360woodworking.com", true },
+ { "360rail.nl", 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 },
- { "3778vip.com", true },
{ "379700.com", true },
{ "380422.com", true },
- { "38888msc.com", true },
- { "38blog.com", true },
+ { "388da.com", true },
{ "390422.com", true },
{ "392422.com", true },
{ "393335.ml", true },
@@ -561,11 +521,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "394122.com", true },
{ "394322.com", true },
{ "394522.com", true },
+ { "394553.com", true },
{ "394622.com", true },
{ "394922.com", true },
{ "396422.com", true },
- { "398.info", true },
{ "39sihu.com", false },
+ { "3aandl.com", true },
{ "3ags.de", true },
{ "3amtoolbox.se", true },
{ "3ank.in", true },
@@ -576,6 +537,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3circlefunding.ch", true },
{ "3countiescastlehire.co.uk", true },
{ "3cs.ch", true },
+ { "3d-fotoservice.de", true },
+ { "3dcollective.es", true },
+ { "3de5.nl", true },
+ { "3deeplearner.com", true },
+ { "3dgep.com", true },
{ "3djuegos.com", true },
{ "3dmedium.de", true },
{ "3dmusiclab.nl", true },
@@ -586,7 +552,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3haueserprojekt.org", true },
{ "3james.com", true },
{ "3logic.ru", true },
+ { "3lot.ru", true },
{ "3n5b.com", true },
+ { "3niu168.com", true },
+ { "3niu178.com", true },
+ { "3niu6.com", true },
+ { "3niu66.com", true },
+ { "3niu666.com", true },
+ { "3niu8.com", true },
+ { "3niu88.com", true },
+ { "3niu8888.com", true },
+ { "3niuurl.com", true },
{ "3os.ooo", true },
{ "3phase.pw", true },
{ "3plusdesign.gr", true },
@@ -611,27 +587,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3tribes.co.uk", true },
{ "3typen.tv", true },
{ "3v4l.org", true },
- { "3weekdietworks.com", true },
- { "3xx.link", true },
{ "4-1-where.com", true },
{ "4-it.de", true },
- { "40-grad.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 },
{ "414553.com", true },
+ { "41studio.com", true },
{ "41where.com", true },
{ "420java.com", true },
- { "4237.com", true },
+ { "42ch.com", true },
{ "42day.info", true },
- { "42entrepreneurs.fr", true },
{ "439050.com", true },
{ "440887.com", true },
{ "441jj.com", false },
@@ -640,39 +614,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "4444yh.com", true },
{ "444887.com", true },
{ "445887.com", true },
- { "448da.com", true },
- { "44scc.com", true },
{ "44sec.com", true },
- { "4500.co.il", 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 },
- { "478933.com", true },
- { "47essays.com", true },
{ "491mhz.net", true },
{ "49889.com", true },
- { "4997777.com", true },
{ "49dollaridahoregisteredagent.com", true },
- { "4decor.org", true },
+ { "4c-haircare.com", true },
{ "4everproxy.com", true },
{ "4eyes.ch", true },
{ "4fit.ro", true },
+ { "4flex.info", true },
{ "4freepress.com", true },
{ "4g-server.eu", false },
{ "4garage.com.br", true },
{ "4host.ch", true },
{ "4kprojektory.cz", true },
+ { "4lock.com.br", true },
{ "4mm.org", true },
{ "4plebs.moe", true },
{ "4project.co.il", true },
{ "4share.tv", true },
- { "4sics.se", true },
{ "4th-ave-studio.com", true },
{ "4thdc.com", true },
{ "4u.services", true },
@@ -681,14 +648,16 @@ 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 },
{ "500c500.com", true },
{ "500d500.com", true },
{ "500e500.com", true },
{ "500f500.com", true },
- { "500fcw.com", true },
{ "500g500.com", true },
{ "500h500.com", true },
{ "500i500.com", true },
@@ -715,10 +684,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "504922.com", true },
{ "506422.com", true },
{ "506pay.com", true },
+ { "508088.com", true },
{ "50lakeshore.com", true },
- { "50ma.xyz", true },
{ "50north.de", true },
- { "50plusnet.nl", true },
{ "514122.com", true },
{ "514522.com", true },
{ "514622.com", true },
@@ -728,19 +696,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "51877.net", true },
{ "519422.com", true },
{ "51acg.eu.org", true },
- { "5214889.com", true },
- { "5214889.net", true },
+ { "51tiaojiu.com", true },
+ { "5219.ml", true },
{ "524022.com", true },
{ "524622.com", true },
{ "524922.com", true },
{ "525.info", true },
- { "52b9.com", true },
- { "52b9.net", true },
+ { "52hentai.us", true },
{ "52kb365.com", true },
{ "52ncp.net", true },
{ "52sykb.com", true },
- { "5310899.com", true },
- { "5310899.net", true },
{ "531422.com", true },
{ "534122.com", true },
{ "534622.com", true },
@@ -750,52 +715,53 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "5364b.com", true },
{ "5364c.com", true },
{ "5364d.com", true },
+ { "5364jc.com", true },
{ "53ningen.com", true },
{ "540922.com", true },
{ "541022.com", true },
{ "541622.com", true },
{ "541722.com", true },
{ "541922.com", true },
- { "5432.cc", true },
{ "545922.com", true },
{ "546802.com", true },
{ "54below.com", true },
{ "5518k3.com", true },
{ "5533445.com", true },
{ "5555yh.com", true },
- { "558da.com", true },
- { "55bt.cc", true },
- { "55scc.com", true },
+ { "55639.com", true },
+ { "55797.com", true },
+ { "566380.com", true },
+ { "575380.com", true },
{ "576422.com", true },
+ { "578380.com", true },
{ "579422.com", true },
- { "57he.com", true },
{ "57wilkie.net", true },
{ "583422.com", true },
+ { "585380.com", true },
{ "585422.com", true },
{ "586422.com", true },
{ "588da.com", true },
+ { "591380.com", true },
{ "591422.com", true },
+ { "592380.com", true },
{ "592422.com", true },
{ "5930593.com", true },
{ "594022.com", true },
{ "594622.com", true },
{ "595422.com", true },
{ "596422.com", true },
- { "598598598.net", true },
- { "5986fc.com", true },
{ "5997891.com", true },
{ "5apps.com", true },
{ "5c1fd0f31022cbc40af9f785847baaf9.space", true },
- { "5chat.it", true },
{ "5crowd.com", true },
{ "5dm.tv", true },
- { "5ece.de", true },
+ { "5dwin.com", true },
+ { "5dwin.net", true },
{ "5francs.com", true },
{ "5gb.space", true },
{ "5kraceforals.com", true },
- { "5starbouncycastlehire.co.uk", true },
+ { "5percentperweek.com", true },
{ "5thchichesterscouts.org.uk", true },
- { "5w5.la", true },
{ "5y.fi", true },
{ "602422.com", true },
{ "604122.com", true },
@@ -810,6 +776,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "614322.com", true },
{ "614922.com", true },
{ "61730123.com", true },
+ { "618media.com", true },
{ "621422.com", true },
{ "624022.com", true },
{ "624122.com", true },
@@ -853,17 +820,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "645722.com", true },
{ "645822.com", true },
{ "645922.com", true },
- { "645ds.cn", true },
- { "645ds.com", true },
{ "646022.com", true },
{ "646322.com", true },
{ "646722.com", true },
{ "649022.com", true },
{ "649622.com", true },
- { "64970.com", true },
{ "649722.com", true },
{ "649822.com", true },
- { "64bitgaming.de", true },
{ "651422.com", true },
{ "652422.com", true },
{ "6541166.com", true },
@@ -879,27 +842,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "6547766.com", true },
{ "6548855.com", true },
{ "6548877.com", true },
+ { "656088.com", true },
{ "659422.com", true },
- { "6616fc.com", true },
- { "66205.net", true },
+ { "66136.com", true },
{ "6633445.com", true },
{ "6652566.com", true },
{ "6660111.ru", true },
{ "6664553.com", true },
{ "666668722.com", true },
{ "6666yh.com", true },
- { "6677.us", true },
- { "668da.com", true },
+ { "666omg.com", true },
+ { "66b.com", true },
{ "670422.com", true },
{ "671422.com", true },
{ "672422.com", true },
{ "673422.com", true },
{ "676422.com", true },
- { "67899876.com", true },
{ "679422.com", true },
+ { "680226.com", true },
{ "680422.com", true },
+ { "68277.me", true },
{ "686848.com", true },
- { "688da.com", true },
{ "690422.com", true },
{ "691422.com", true },
{ "692422.com", true },
@@ -909,15 +872,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "694922.com", true },
{ "6969.us", true },
{ "698da.com", true },
+ { "69928.com", true },
{ "6997896.com", true },
{ "69butterfly.com", true },
{ "69fps.gg", true },
+ { "69wasted.net", true },
{ "6ird.com", true },
{ "6lo.zgora.pl", true },
{ "6pm.com", true },
{ "6t-montjoye.org", true },
- { "6w6.la", true },
- { "6z3.net", true },
{ "700.az", true },
{ "704233.com", true },
{ "704533.com", true },
@@ -948,97 +911,169 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "742833.com", true },
{ "743833.com", true },
{ "74th.jp", true },
+ { "755k3.com", true },
+ { "758global.com", true },
{ "762.ch", true },
- { "771122.tv", true },
- { "7717a.com", 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 },
- { "789zr.com", true },
+ { "79ch.com", true },
{ "7careconnect.com", true },
{ "7delights.com", true },
{ "7delights.in", true },
{ "7geese.com", true },
{ "7graus.pt", true },
{ "7kicks.com", true },
- { "7kovrikov.ru", true },
- { "7nw.eu", true },
{ "7proxies.com", true },
+ { "7qly.com", true },
{ "7sons.de", true },
{ "7thcircledesigns.com", true },
{ "7trade8.com", true },
{ "7x24servis.com", true },
{ "804322.com", true },
+ { "8086.cf", true },
{ "809422.com", true },
{ "80993.net", true },
{ "814022.com", true },
+ { "81818app.com", true },
{ "8189196.com", true },
{ "818da.com", true },
- { "8206688.com", true },
+ { "8349822.com", true },
+ { "850226.com", true },
{ "8522.com", true },
{ "8522club.com", true },
{ "8522hk.com", true },
{ "8522ph.com", true },
- { "8522top.com", true },
{ "8522tw.com", true },
{ "8522usa.com", true },
+ { "86286286.com", true },
{ "86499.com", true },
- { "8649955.com", true },
- { "8649966.com", true },
- { "8649977.com", true },
- { "8688fc.com", true },
{ "86metro.ru", true },
- { "8722.com", true },
+ { "8722.am", true },
{ "8722am.com", true },
{ "8722cn.com", true },
{ "8722hk.com", true },
{ "8722ph.com", true },
{ "8722tw.com", true },
{ "8722usa.com", true },
+ { "88-line.com", true },
+ { "88-line.net", true },
+ { "881-line.com", true },
+ { "881-line.net", true },
{ "8818k3.com", true },
{ "8833445.com", true },
{ "88522am.com", true },
{ "887.ag", true },
+ { "8876007.com", true },
+ { "8876008.com", true },
+ { "8876009.com", true },
+ { "8876138.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 },
- { "888msc.vip", 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 },
- { "8989k3.com", true },
- { "8992088.com", true },
- { "8992088.net", 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 },
+ { "888funcity.com", true },
+ { "888funcity.net", true },
+ { "88yule11.com", true },
+ { "88yule112.com", true },
+ { "88yule113.com", true },
+ { "88yule12.com", true },
+ { "88yule13.com", true },
+ { "88yule15.com", true },
+ { "88yule16.com", true },
+ { "88yule6.com", true },
+ { "88yule7.com", true },
+ { "88yule9.com", true },
{ "8ack.de", true },
{ "8ackprotect.com", true },
{ "8da188.com", true },
- { "8da2017.com", true },
- { "8da2018.com", true },
+ { "8da222.com", true },
{ "8da88.com", true },
{ "8da999.com", true },
+ { "8dabet.com", true },
{ "8hrs.net", true },
{ "8maerz.at", true },
- { "8pecxstudios.com", true },
- { "8shequapp.com", true },
{ "8t8.eu", true },
{ "8tech.com.hk", true },
{ "8thportsmouth.org.uk", true },
{ "8tuffbeers.com", true },
{ "8ung.online", true },
+ { "8xxbet.net", true },
+ { "8y.network", true },
{ "9-11commission.gov", true },
{ "903422.com", true },
{ "905422.com", true },
@@ -1051,10 +1086,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "914122.com", true },
{ "918116.com", true },
{ "918gd.com", true },
- { "918yy.com", true },
{ "919422.com", true },
{ "91966.com", true },
- { "919945.com", true },
{ "91tianmi.com", false },
{ "91travel.info", true },
{ "924122.com", true },
@@ -1067,100 +1100,97 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "934122.com", true },
{ "943022.com", true },
{ "9449-27a1-22a1-e0d9-4237-dd99-e75e-ac85-2f47-9d34.de", true },
- { "9454.com", true },
{ "946022.com", true },
{ "946422.com", true },
{ "949022.com", true },
{ "949122.com", true },
{ "949622.com", true },
{ "949722.com", true },
- { "9500years.com", true },
- { "9617818.com", true },
- { "9617818.net", true },
+ { "94cs.cn", false },
{ "9679693.com", true },
{ "9681909.com", true },
- { "9696178.com", true },
- { "9696178.net", true },
{ "972422.com", true },
{ "9788876.com", true },
{ "97bros.com", true },
- { "9822.com", true },
- { "9822.info", true },
+ { "9822.am", true },
+ { "9822.bz", true },
{ "9822am.com", true },
{ "9822cn.com", true },
{ "9822hk.com", true },
{ "9822ph.com", true },
{ "9822tw.com", true },
{ "9822usa.com", true },
- { "987987.com", true },
{ "98laba.com", true },
{ "98laba.net", true },
- { "9906753.net", true },
{ "9918883.com", true },
{ "9933445.com", true },
{ "99599.fi", true },
- { "99599.net", true },
{ "9994553.com", true },
+ { "9998722.com", true },
{ "99998522.com", true },
{ "99999822.com", true },
{ "999998722.com", true },
{ "99rst.org", true },
- { "9bingo.net", true },
+ { "99wxt.com", true },
{ "9farm.com", true },
- { "9iwan.net", true },
+ { "9fvip.net", true },
{ "9jajuice.com", true },
{ "9pkfz.com", true },
- { "9ss6.com", true },
- { "9tolife.be", true },
+ { "9riddles.com", true },
{ "9uelle.jp", true },
- { "9vies.ca", 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-shafaat.ir", true },
- { "a-starbouncycastles.co.uk", true },
+ { "a-players.team", 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.me", true },
{ "a2a.net", true },
{ "a2nutrition.com.au", true },
- { "a3.pm", true },
+ { "a2os.club", true },
{ "a4sound.com", true },
{ "a632079.me", true },
- { "a7m2.me", true },
- { "aa-tour.ru", true },
+ { "a7la-chat.com", true },
{ "aa1718.net", true },
- { "aa6688.net", true },
{ "aaapl.com", true },
{ "aabanet.com.br", true },
{ "aaben-bank.dk", true },
{ "aabenbank.dk", true },
{ "aacfree.com", true },
+ { "aacs-design.com", true },
+ { "aadw.de", true },
+ { "aaex.cloud", true },
{ "aagetransport.no", true },
{ "aalalbayt.com", true },
{ "aalalbayt.net", true },
{ "aalstmotors-usedcars.be", true },
{ "aaltocapital.com", true },
{ "aamwa.com", true },
- { "aanbieders.ga", true },
{ "aandeautobody.com", true },
{ "aandkevents.co.uk", true },
{ "aanmpc.com", true },
{ "aaomidi.com", true },
+ { "aapar.nl", true },
{ "aapas.org.ar", true },
- { "aardvarksolutions.co.za", true },
+ { "aarklendoia.com", true },
+ { "aarkue.eu", true },
+ { "aaron.cm", true },
{ "aaron.xin", true },
+ { "aaronburt.co.uk", false },
{ "aaronhorler.com", true },
{ "aaronhorler.com.au", true },
{ "aaronkimmig.de", true },
@@ -1168,14 +1198,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aaronsilber.me", true },
{ "aatf.us", true },
{ "aati.be", true },
+ { "aati.info", true },
{ "aavienna.com", true },
{ "abaapplianceservice.com", true },
- { "abacus-events.co.uk", true },
+ { "abaaustin.com", true },
+ { "ababyco.com.hr", 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 },
@@ -1185,6 +1216,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abbruch-star.de", true },
{ "abc-rz.de", true },
{ "abc.li", true },
+ { "abc8081.net", true },
{ "abcbouncycastlessurrey.co.uk", true },
{ "abcbouncyfactory.co.uk", true },
{ "abcdef.be", true },
@@ -1192,14 +1224,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abckam.com", true },
{ "abcpartyhire.com", true },
{ "abcstudio.com.au", true },
- { "abdullah.pw", true },
+ { "abdel.me", true },
+ { "abdelsater.net", true },
+ { "abdulwahaab.ca", true },
{ "abe-elektro.de", true },
{ "abe-medical.jp", true },
{ "abeestrada.com", false },
{ "abeilles-idapi.fr", true },
{ "abenteuer-ahnenforschung.de", true },
{ "abeontech.com", true },
- { "aberdeenalmeras.com", true },
{ "aberdeencastles.co.uk", true },
{ "aberdeenjudo.co.uk", true },
{ "abeus.com", true },
@@ -1215,7 +1248,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abilma.com", true },
{ "abilymp06.net", true },
{ "abimelec.com", true },
+ { "abinferis.com", true },
{ "abinyah.com", true },
+ { "abitidalavoro.roma.it", true },
{ "abitur97ag.de", true },
{ "abiturma.de", true },
{ "ablak-nyilaszaro.info", true },
@@ -1249,37 +1284,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abolitionistsociety.com", true },
{ "abolitionniste.com", true },
{ "abolizionista.com", true },
+ { "abonilla.com", true },
{ "abos.eu", true },
{ "abouncycastleman.co.uk", true },
{ "abouthrm.nl", true },
{ "aboutict.nl", true },
{ "aboutlegal.nl", true },
{ "aboutmedia.nl", true },
+ { "aboutmyproperty.ca", true },
{ "aboutspice.com", true },
{ "aboutyou.at", true },
{ "aboutyou.be", true },
{ "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 },
+ { "absolutcruceros.com", true },
+ { "absoluteautobody.com", true },
+ { "absolutedouble.co.uk", true },
{ "absolutehaitian.com", true },
{ "absolutehosting.co.za", true },
{ "absolutelyinflatables.co.uk", true },
{ "absoluterush.net", true },
- { "absolutewaterproofingsolutions.com", true },
{ "absolutewebdesigns.com", true },
+ { "absolutviajes.com", true },
+ { "abstractbarista.net", true },
{ "abstraction21.com", true },
+ { "absturztau.be", true },
+ { "absturztaube.ch", true },
{ "absynthe-inquisition.fr", true },
{ "abthorpe.org", true },
+ { "abublog.com", true },
{ "abulanov.com", true },
+ { "abundanteconomy.com", true },
{ "abundent.com", true },
{ "abuse.fi", true },
{ "abuse.io", true },
@@ -1291,17 +1336,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ac-town.com", true },
{ "ac0g.dyndns.org", true },
{ "aca-creative.co.uk", true },
+ { "academiadebomberosonline.com", 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 },
+ { "acaptureservices.com", true },
{ "acara-yoga.de", true },
+ { "acareer.in", true },
{ "acat.io", true },
{ "acbrussels-used.be", true },
- { "accadoro.it", true },
- { "accbay.com", true },
{ "accelaway.com", true },
{ "acceleratenetworks.com", true },
{ "accelerateyourworld.org", true },
@@ -1317,33 +1364,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "accessoirescheveuxchic.com", true },
{ "accessoripersmartphone.it", true },
{ "accme.co", true },
+ { "accoladescreens.com.au", true },
{ "accord-application.com", true },
{ "accordiondoor.com", true },
+ { "account.bbc.com", true },
{ "accounts.firefox.com", true },
{ "accounts.google.com", true },
+ { "accpl.co", true },
{ "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 },
{ "aceanswering.com", true },
{ "acecerts.co.uk", true },
{ "acecolleges.edu.au", true },
+ { "acedog.co", true },
{ "aceinflatables.com", true },
{ "aceinstituteonline.com", true },
- { "acelpb.com", true },
{ "acem.org.au", true },
{ "acemobileforce.com", true },
- { "acemypaper.com", true },
+ { "acen.eu", true },
{ "acendealuz.com.br", true },
{ "acerentalandsales.com", true },
{ "acerislaw.com", true },
{ "acessoeducacao.com", true },
- { "acevik.de", true },
- { "acg18.us", false },
+ { "acfo.org", true },
+ { "acg.social", true },
+ { "acgmoon.com", true },
+ { "acgmoon.org", true },
{ "acgtalktw.com", true },
{ "achalay.org", true },
{ "acheconcursos.com.br", true },
@@ -1354,16 +1408,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "achterstieg.dedyn.io", true },
{ "achtzehn.eu", true },
{ "achtzehnterachter.de", true },
+ { "achtzig20.de", true },
{ "achwo.de", true },
- { "acidbin.co", true },
+ { "acid.ninja", true },
{ "aciety.com", true },
{ "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 },
{ "acmexyz123.info", true },
{ "acnpacific.com", true },
+ { "acodess.com", true },
{ "aconnor.xyz", true },
{ "acordes.online", true },
{ "acorncastles.co.uk", true },
@@ -1372,21 +1431,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acoshift.me", true },
{ "acourse.io", true },
{ "acousti-tech.com", true },
+ { "acousticalsolutions.com", true },
{ "acoustics.network", true },
{ "acoustics.tech", true },
+ { "acousticsoundrecords.com", 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 },
{ "acrepairroundrocktx.com", true },
{ "acrevalue.com", true },
+ { "acriticismlab.org", true },
{ "acrolife.cz", true },
{ "acroso.me", true },
- { "across.ml", true },
{ "acrosstheblvd.com", true },
{ "acroyoga-nuernberg.de", true },
{ "acrylbilder-acrylmalerei.de", true },
@@ -1394,13 +1455,15 @@ 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 },
+ { "actheater.com", true },
{ "actiefgeld.nl", true },
+ { "actioncleaningnd.com", true },
+ { "actionfinancialservices.net", true },
{ "actionlabs.net", true },
{ "actionmadagascar.ch", true },
{ "actionsack.com", true },
@@ -1410,26 +1473,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "active-tluszcz.pl", true },
{ "active.hu", false },
{ "activecare-monitor.com", true },
- { "activeclearweb.com", true },
+ { "activeexcavator.com", true },
{ "activehire.co.uk", true },
{ "activeleisure.ie", true },
- { "activeworld.net", false },
- { "activistasconstructivos.org", true },
+ { "activiteithardenberg.nl", true },
{ "activitesaintnicaise.org", true },
{ "activityeventhire.co.uk", true },
{ "actom.cc", true },
+ { "actonwoodworks.com", true },
{ "actors-cafe.net", true },
{ "actorsroom.com", true },
{ "actserv.co.ke", true },
- { "actu-film.com", true },
+ { "actualadmins.com", true },
+ { "actualidadblog.com", true },
+ { "actualidadecommerce.com", true },
+ { "actualidadgadget.com", true },
+ { "actualidadiphone.com", true },
+ { "actualidadkd.com", true },
+ { "actualidadliteratura.com", true },
+ { "actualidadmotor.com", true },
+ { "actualidadviajes.com", true },
+ { "actuatemedia.com", true },
{ "acuica.co.uk", false },
{ "acul.me", true },
- { "acupofsalt.tv", true },
{ "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 },
@@ -1440,32 +1512,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ad-notam.pt", true },
{ "ad-notam.us", true },
{ "ada.gov", true },
+ { "adaera.com", true },
{ "adalis.org", true },
{ "adam-ant.co.uk", true },
{ "adam-kostecki.de", true },
{ "adam-wilson.me", true },
+ { "adam.lgbt", true },
{ "adamas-magicus.ru", true },
{ "adambalogh.net", true },
+ { "adambryant.ca", false },
{ "adambyers.com", true },
{ "adamek.online", true },
{ "adamfontenot.com", true },
{ "adamh.us", true },
- { "adamjoycegames.co.uk", true },
{ "adamkaminski.com", true },
{ "adamkostecki.de", true },
{ "adamoutler.com", true },
{ "adamradocz.com", true },
{ "adams.dk", true },
{ "adamsbouncycastles.co.uk", true },
- { "adamsfoundationrepair.com", true },
{ "adamstas.com", true },
{ "adamwallington.co.uk", true },
- { "adamwilcox.org", true },
+ { "adamyuan.xyz", true },
+ { "adappt.co.uk", true },
+ { "adapptlabs.com", true },
{ "adapt-elektronik.com", true },
{ "adapt.de", true },
{ "adaptablesecurity.org", true },
{ "adapti.de", true },
{ "adaptivemechanics.edu.au", true },
+ { "adarshthapa.in", true },
+ { "adativos.com.br", true },
{ "adawolfa.cz", true },
{ "adayinthelifeof.nl", true },
{ "adblockextreme.com", true },
@@ -1474,27 +1551,34 @@ 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 },
{ "addones.net", true },
{ "addtoany.com", true },
{ "adduono.com", true },
+ { "addvalue-renovations.co.uk", true },
+ { "addydari.us", true },
{ "adelebeals.com", true },
+ { "adelianz.com", true },
{ "adelightfulglow.com", true },
+ { "adeline.mobi", true },
{ "adentalsolution.com", true },
{ "adept.org.pl", true },
+ { "adesa.co.uk", true },
{ "adevel.eu", true },
+ { "adex.network", true },
{ "adf-safetytools.com", true },
{ "adftrasporti.it", true },
{ "adhd-inattentive.com", true },
{ "adhesivelaundry.co.uk", true },
{ "adhoc.is", true },
+ { "adiehard.party", true },
{ "adimaja.com", true },
{ "adinariversloveschool.com", true },
{ "adingenierie.fr", true },
- { "adint.net", true },
{ "adiponectinsupplement.info", true },
{ "adiponectinsupplement.net", true },
{ "adjagu.org", true },
@@ -1503,75 +1587,87 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adlerosn.com", true },
{ "adlerosn.com.br", true },
{ "adlershop.ch", true },
+ { "adlignum.se", true },
{ "adm-sarov.ru", true },
{ "adme.co.il", true },
- { "admin-numerique.com", true },
{ "admin-serv.net", true },
+ { "admin.casa", true },
{ "admin.fedoraproject.org", true },
{ "admin.google.com", true },
{ "admin.stg.fedoraproject.org", true },
{ "adminforge.de", true },
+ { "administrator.de", true },
{ "administratorserwera.pl", true },
{ "adminlinux.pl", true },
{ "admino.cz", true },
- { "adminwerk.com", true },
+ { "admins.tech", true },
+ { "adminwerk.net", true },
{ "adminwiki.fr", true },
{ "admirable.one", true },
+ { "admirable.pro", true },
{ "admody.com", true },
{ "admongo.gov", true },
+ { "adnanoktar.com", true },
{ "adnanotoyedekparca.com", true },
+ { "adnolesh.com", true },
{ "adnot.am", true },
{ "adnseguros.es", true },
- { "adoniscabaret.co.uk", true },
+ { "adonizer.science", true },
{ "adonnante.com", true },
{ "adoptionlink.co.uk", true },
- { "adora-illustrations.fr", true },
- { "adorade.ro", true },
{ "adorai.tk", true },
{ "adorecricket.com", true },
{ "adorewe.com", true },
{ "adoriasoft.com", false },
+ { "adorno-gymnasium.de", true },
{ "adoucisseur.shop", true },
{ "adquisitio.co.uk", true },
{ "adquisitio.es", true },
{ "adquisitio.fr", true },
{ "adquisitio.it", true },
{ "adr.gov", true },
+ { "adra.com", true },
{ "adrafinil.wiki", true },
+ { "adresults.com", true },
+ { "adresults.nl", true },
{ "adrianbechtold.de", true },
{ "adriancitu.com", true },
{ "adriancostin.ro", true },
{ "adrianjensen.com", true },
{ "adrianmejias.com", true },
- { "adrien.vin", true },
{ "adrienkohlbecker.com", true },
{ "adriennesmiles.com", true },
- { "adrinet.tk", true },
{ "adrup.com", true },
+ { "adsamcik.com", true },
{ "adsbouncycastles.co.uk", true },
+ { "adsbtc.org", true },
{ "adsl2meg.fr", true },
{ "adtgroup.com", true },
{ "adurra.com", true },
{ "aduvi.de", true },
{ "advance.hr", true },
+ { "advanced-fleet-services.com", true },
{ "advanced-scribes.com", true },
{ "advanced.info", true },
+ { "advanceddieselspokane.com", true },
+ { "advanceddisposables.co.uk", true },
{ "advancedoneroofing.com", true },
{ "advancedprotectionkey.com", true },
{ "advancedprotectionsecuritykey.com", true },
+ { "advancedsurgicalconsultantsllc.com", true },
{ "advancedweb.hu", true },
- { "advancedwriters.com", true },
{ "advanceworx.com", true },
{ "advancis.net", true },
{ "advancyte.com", true },
{ "advantagehomeexteriors.com", true },
{ "advara.com", true },
- { "advelty.cz", true },
{ "advenacs.com.au", true },
{ "advenapay.com", true },
+ { "adventaholdings.com", true },
{ "advento.bg", true },
{ "adventure-inn.com", true },
{ "adventureally.com", true },
+ { "adventuredrives.com", true },
{ "adventureforest.co.nz", true },
{ "adventureforest.de", false },
{ "adventureforest.nz", true },
@@ -1579,14 +1675,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adventurenow.nl", true },
{ "adventures.de", true },
{ "adventureswithlillie.ca", true },
- { "advicepro.org.uk", true },
+ { "adventurousway.com", true },
+ { "advertis.biz", 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 },
+ { "adwokatkosterka.pl", true },
+ { "adwokatzdunek.pl", true },
{ "adws.io", true },
{ "adxperience.com", true },
{ "adzuna.at", true },
@@ -1604,13 +1705,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adzuna.pl", true },
{ "adzuna.ru", true },
{ "adzuna.sg", true },
+ { "ae-construction.co.uk", true },
+ { "ae-dir.com", true },
+ { "ae-dir.org", true },
{ "aebian.org", true },
{ "aecexpert.fr", true },
+ { "aedollon.com", 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 },
@@ -1618,55 +1725,65 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aep-digital.com", true },
{ "aeradesign.com", true },
{ "aerandir.fr", true },
+ { "aerapass.io", true },
{ "aereco.com", true },
{ "aergia.eu", true },
{ "aerisnetwork.com", true },
{ "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 },
- { "aesthetics-blog.com", true },
{ "aesthetx.com", true },
{ "aestore.by", true },
{ "aeternus.tech", true },
{ "aetherc0r3.eu", true },
- { "aethonan.pro", true },
{ "aetoscg.com", true },
{ "aetoscg.com.au", true },
{ "aextron.com", true },
{ "aextron.de", true },
{ "aextron.org", true },
- { "af-internet.nl", true },
{ "afavre.io", true },
{ "afb24.de", true },
{ "afbeelding.im", true },
{ "afbeeldinguploaden.nl", true },
- { "afeefzarapackages.com", true },
+ { "afcmrs.org", true },
+ { "afcompany.it", true },
+ { "afcurgentcarelyndhurst.com", true },
+ { "affarsnatverk.nu", true },
{ "affichagepub3.com", true },
{ "affiliatefeatures.com", true },
{ "affiliateroyale.com", true },
{ "affiliatetest.azurewebsites.net", true },
{ "affilie.de", true },
- { "affinity.vc", true },
{ "affinitysync.com", true },
{ "affissioni.roma.it", true },
{ "affittacamere.roma.it", true },
+ { "affittialmare.it", true },
+ { "affittisalento.it", true },
{ "affordableazdivorce.com", true },
+ { "affordableblindsexpress.com", true },
+ { "affordableenergyadvocates.com", true },
+ { "affordableenvironmental.net", true },
{ "affordablehealthquotesforyou.com", true },
{ "affordablekilimanjaro.com", true },
{ "affordablemudjacking.com", true },
- { "affordablepapers.com", true },
{ "affordableracingparts.com.au", true },
{ "affping.com", true },
{ "affvps.net", true },
{ "afghan.dating", true },
+ { "afgn.com.ua", true },
{ "afi-business-consulting.com", true },
{ "aficionados.com.br", true },
{ "afinadoronline.com.br", true },
{ "afinaudio.com", true },
- { "aflamtorrent.com", true },
{ "aflfreebets.com", true },
{ "aflowershop.ca", true },
{ "afmt.fr", true },
@@ -1678,29 +1795,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "africanexponent.com", true },
{ "africanimpact.com", true },
{ "africantourer.com", true },
- { "africatravel.de", true },
{ "afrikarl.de", true },
{ "afrodigital.uk", true },
{ "afs-asso.org", true },
+ { "afscheidsportret.nl", true },
{ "aftab-alam.de", true },
{ "after.digital", true },
+ { "afterdwi.info", true },
{ "afterhate.fr", true },
- { "afterskool.eu", true },
{ "afuh.de", true },
{ "afva.net", true },
- { "afzco.asia", true },
+ { "afwd.international", true },
{ "ag-websolutions.de", true },
+ { "ag8-game.com", true },
{ "agalliasis.ch", true },
{ "agamsecurity.ch", true },
{ "agatajanik.de", true },
{ "agate.pw", true },
+ { "age.hk", true },
{ "agechecker.net", true },
{ "ageg.ca", true },
- { "agenceklic.com", true },
+ { "agemfis.com", true },
+ { "agencewebstreet.com", true },
{ "agenciadeempregosdourados.com.br", true },
{ "agenciafiscal.pe", true },
+ { "agencyinmotion.com", true },
{ "agenda-loto.net", false },
{ "agenda21senden.de", true },
+ { "agendatelefonica.com.br", true },
+ { "agendazilei.com", true },
{ "agent-grow.com", true },
{ "agent6.com.au", true },
{ "agentprocessing.com", true },
@@ -1709,11 +1832,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 },
{ "agileecommerce.com.br", true },
{ "agileui.com", true },
@@ -1726,11 +1848,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agiserv.fr", true },
{ "agliamici.it", true },
{ "agnesk.blog", true },
- { "agonswim.com", false },
{ "agoodmind.com", true },
{ "agoravox.fr", true },
{ "agoravox.it", true },
{ "agoravox.tv", true },
+ { "agostinhoenascimento.com.br", true },
{ "agotnes.com", true },
{ "agouraelectrical.com", true },
{ "agouraelectrician.com", true },
@@ -1747,30 +1869,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agouraoutdoorlighting.com", true },
{ "agr.asia", true },
{ "agracan.com", true },
+ { "agrajag.nl", true },
+ { "agrarking.com", true },
{ "agrarking.de", true },
{ "agrarshop4u.de", true },
{ "agrekov.ru", true },
{ "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 },
- { "agro.rip", true },
+ { "agroline.by", true },
+ { "agroxxi.ru", false },
{ "agroyard.com.ua", true },
{ "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 },
+ { "ahegao.ca", true },
{ "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 },
+ { "ahmedcharles.com", true },
{ "ahmerjamilkhan.org", true },
{ "ahmetozer.org", true },
{ "ahosi.com", true },
@@ -1781,51 +1913,139 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ahxxm.com", true },
{ "ai-english.jp", true },
{ "ai-soft.co.jp", true },
+ { "ai.gov", true },
+ { "ai.je", true },
{ "aia.de", true },
- { "aibaoyou.com", true },
+ { "aiasesoriainmobiliaria.com", true },
{ "aibenzi.com", true },
+ { "aibiying.com", true },
+ { "aicial.co.uk", true },
+ { "aid-web.ch", true },
{ "aidanapple.com", true },
+ { "aidanmitchell.co.uk", true },
+ { "aidanmitchell.uk", true },
{ "aidanmontare.net", true },
- { "aide-valais.ch", true },
+ { "aidanpr.com", true },
+ { "aidanpr.net", true },
{ "aiden.link", true },
{ "aidhan.net", true },
+ { "aidi-ahmi.com", true },
{ "aids.gov", true },
{ "aie.de", true },
{ "aiforsocialmedia.com", true },
{ "aifriccampbell.com", true },
{ "aigcev.org", true },
{ "aigenpul.se", true },
+ { "aignermunich.com", true },
+ { "aignermunich.de", true },
+ { "aignermunich.jp", true },
+ { "aiho.stream", true },
{ "aiicy.org", true },
{ "aiida.se", true },
{ "aijsk.com", true },
{ "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 },
- { "aimerworld.com", true },
+ { "aimerworld.com", false },
{ "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-techniques.fr", 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 },
+ { "airbnb.co.in", true },
+ { "airbnb.co.kr", true },
+ { "airbnb.co.nz", true },
+ { "airbnb.co.uk", true },
+ { "airbnb.co.ve", true },
{ "airbnb.com", true },
+ { "airbnb.com.ar", true },
+ { "airbnb.com.au", true },
+ { "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 },
+ { "airbnb.com.hk", true },
+ { "airbnb.com.hn", true },
+ { "airbnb.com.hr", true },
+ { "airbnb.com.kh", true },
+ { "airbnb.com.mt", true },
+ { "airbnb.com.my", true },
+ { "airbnb.com.ni", true },
+ { "airbnb.com.pa", true },
+ { "airbnb.com.pe", true },
+ { "airbnb.com.ph", true },
+ { "airbnb.com.py", true },
+ { "airbnb.com.sg", true },
+ { "airbnb.com.sv", true },
+ { "airbnb.com.tr", true },
+ { "airbnb.com.tw", true },
+ { "airbnb.com.ua", true },
+ { "airbnb.com.vn", true },
+ { "airbnb.cz", true },
+ { "airbnb.de", true },
+ { "airbnb.dk", true },
+ { "airbnb.es", true },
+ { "airbnb.fi", true },
+ { "airbnb.fr", true },
+ { "airbnb.gr", true },
+ { "airbnb.gy", true },
+ { "airbnb.hu", true },
+ { "airbnb.ie", true },
+ { "airbnb.is", true },
+ { "airbnb.it", true },
+ { "airbnb.jp", true },
+ { "airbnb.la", true },
+ { "airbnb.lu", true },
+ { "airbnb.mx", true },
+ { "airbnb.nl", true },
+ { "airbnb.no", true },
+ { "airbnb.pl", true },
+ { "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 },
- { "airconsboksburg.co.za", true },
- { "airconsfourways.co.za", true },
- { "airconsmidrand.co.za", true },
- { "airconssandton.co.za", true },
{ "airductclean.com", false },
{ "airductcleaning-fresno.com", true },
+ { "airductcleaninggrandprairie.com", true },
+ { "airductcleaningirving.com", true },
{ "airdur.eu", true },
{ "aireaseleaks.org", true },
{ "airetvie.com", true },
@@ -1835,38 +2055,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
- { "airsick.guide", true },
+ { "airsnore.com", true },
{ "airsoft.ch", true },
+ { "airswap.io", true },
+ { "airtimerewards.co.uk", true },
+ { "airtoolaccessoryo.com", true },
{ "airvpn.org", true },
{ "airvuz.com", true },
+ { "airware.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 },
- { "aisr.nl", true },
{ "aistockcharts.com", true },
+ { "aistrope.com", true },
{ "ait.com.ar", true },
{ "aiticon.com", true },
{ "aitosoftware.com", true },
{ "aiutodomestico.ch", true },
{ "aivd.lol", true },
- { "aivene.com", true },
{ "aiwdirect.com", true },
- { "aixvox.com", true },
- { "aixxe.net", true },
- { "aizxxs.com", true },
- { "aizxxs.net", true },
+ { "aixvox.com", false },
{ "ajapaik.ee", true },
{ "ajarope.com", true },
{ "ajaxed.net", true },
@@ -1882,9 +2104,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ajnasz.hu", true },
{ "ajsb85.com", true },
{ "ak-varazdin.hr", true },
- { "ak-webit.de", true },
+ { "aka.ms", true },
{ "akachanikuji.com", true },
{ "akademeia.moe", true },
+ { "akademie-frankfurt.de", true },
{ "akalashnikov.ru", true },
{ "akamon.ac.jp", true },
{ "akaoma.com", true },
@@ -1894,61 +2117,67 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "akelius.de", false },
{ "akfoundationindia.com", true },
{ "akhealthconnection.com", true },
- { "akihiro.xyz", false },
+ { "akhomesforyou.com", true },
{ "akihito.com", true },
{ "akijo.de", true },
- { "akita-boutique.com", true },
+ { "akilli-devre.com", true },
{ "akiym.com", true },
{ "akj.io", true },
{ "akkbouncycastles.co.uk", true },
{ "akkeylab.com", true },
- { "akoch.net", true },
{ "akostecki.de", true },
{ "akovana.com", true },
+ { "akoww.de", false },
{ "akoya.fi", true },
{ "akplates.org", true },
{ "akpwebdesign.com", true },
{ "akr.io", true },
- { "akracing.se", true },
- { "akritikos.info", true },
- { "akronet.cz", true },
- { "akropol.cz", true },
+ { "akr.services", true },
+ { "akronet.cz", false },
+ { "akropol.cz", false },
{ "akropolis-ravensburg.de", true },
{ "aksehir.bel.tr", true },
- { "akselinurmio.fi", false },
+ { "akselinurmio.fi", true },
+ { "akshay.in.eu.org", true },
{ "akshi.in", true },
- { "aktan.com.br", true },
+ { "aktin.cz", true },
+ { "aktin.sk", true },
{ "aktiv-naturheilmittel.at", true },
{ "aktiv-naturheilmittel.ch", true },
{ "aktiv-naturheilmittel.de", true },
{ "aktivace.eu", true },
{ "aktivierungscenter.de", true },
- { "aktuelle-uhrzeit.at", true },
{ "akuislam.com", true },
{ "akukas.com", true },
- { "akul.co.in", true },
{ "akustik.tech", true },
{ "akutun.cl", true },
{ "akvorrat.at", true },
+ { "akyildiz.net", true },
{ "al3xpro.com", true },
{ "alab.space", true },
+ { "alabamadebtrelief.org", true },
{ "alaboard.com", true },
{ "aladdin.ie", true },
{ "aladdinschools.appspot.com", true },
{ "alainbaechlerphotography.ch", true },
+ { "alainfrancois.eu", true },
+ { "alainfrancois.nl", true },
{ "alainmargot.ch", true },
{ "alainodea.com", true },
{ "alainwolf.ch", true },
{ "alainwolf.net", true },
{ "alair.cn", false },
+ { "alamancetv.com", true },
+ { "alamgir.works", true },
{ "alanberger.me.uk", true },
{ "alanhua.ng", true },
+ { "alanhuang.name", true },
{ "alaninkenya.org", true },
- { "alanya.law", true },
{ "alaricfavier.eu", false },
{ "alarmcomplete.co.uk", true },
{ "alarna.de", true },
{ "alasdelalma.com.co", true },
+ { "alaskafishinglodges.net", true },
{ "alaskajewelry.com", true },
{ "alastairs-place.net", true },
{ "alaxyjewellers.co.za", true },
@@ -1958,26 +2187,31 @@ 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 },
- { "albertonplumber24-7.co.za", true },
+ { "albinma.com", true },
{ "albion2.org", true },
{ "alboweb.nl", true },
- { "albuic.tk", true },
+ { "albrocar.com", true },
{ "alca31.com", true },
- { "alcatelonetouch.us", true },
{ "alchimic.ch", true },
{ "alcnutrition.com", true },
{ "alco-united.com", true },
{ "alcoholapi.com", true },
- { "aldes.co.za", true },
+ { "alcolecapital.com", true },
+ { "aldiabcs.com", true },
{ "aldien.com.br", true },
{ "aldo-vandini.de", true },
- { "aldorr.net", true },
+ { "aldomedia.com", true },
+ { "aldorr.net", false },
{ "aldous-huxley.com", true },
- { "aldred.cloud", true },
+ { "alecel.de", true },
{ "alecpap.com", true },
{ "alecpapierniak.com", true },
{ "alecrust.com", true },
+ { "alek.in", true },
+ { "aleksejjocic.tk", true },
{ "aleksib.fi", true },
{ "alela.fr", true },
{ "alerbon.net", true },
@@ -1997,25 +2231,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alexanderschimpf.de", true },
{ "alexanderzinn.com", true },
{ "alexandra-schulze.de", true },
- { "alexandrastylist.com", true },
+ { "alexandrastorm.com", true },
+ { "alexandrastylist.com", false },
{ "alexandre-blond.fr", true },
{ "alexandros.io", true },
+ { "alexbaker.org", true },
{ "alexberts.ch", true },
+ { "alexbogovich.com", true },
{ "alexbresnahan.com", true },
{ "alexcoman.com", true },
{ "alexdaniel.org", true },
- { "alexdaulby.com", true },
+ { "alexei.su", false },
{ "alexey-shamara.ru", true },
{ "alexeykopytko.com", true },
+ { "alexfabian.myftp.org", true },
{ "alexgaynor.net", true },
+ { "alexgebhard.com", true },
{ "alexhd.de", true },
{ "alexio.ml", true },
{ "alexisabarca.com", true },
- { "alexischaussy.xyz", true },
- { "alexismeza.com", true },
- { "alexismeza.com.mx", true },
- { "alexismeza.es", true },
- { "alexismeza.nl", true },
+ { "alexiskoustoulidis.com", true },
{ "alexkott.com", true },
{ "alexlouden.com", true },
{ "alexmerkel.com", true },
@@ -2024,12 +2259,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alexmroberts.net", true },
{ "alexn.org", true },
{ "alexpavel.com", true },
- { "alexpotter.net", false },
+ { "alexpotter.net", true },
{ "alexs.de", true },
{ "alexschroeder.ch", true },
{ "alexsergeyev.com", true },
{ "alexsexton.com", true },
- { "alexsinnott.me", true },
{ "alextaffe.com", true },
{ "alexthayne.co.uk", true },
{ "alextjam.es", true },
@@ -2037,8 +2271,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alexvdveen.nl", true },
{ "alexvetter.de", true },
{ "alexwardweb.com", true },
+ { "alexwilliams.tech", true },
{ "alexyang.me", true },
{ "alfa-tech.su", true },
+ { "alfred-figge.de", true },
+ { "alftrain.com", true },
+ { "algbee.com", true },
+ { "algeriepart.com", true },
+ { "alghanimcatering.com", true },
+ { "algoaware.eu", true },
{ "algoentremanos.com", true },
{ "algofactory.de", true },
{ "algolia.com", true },
@@ -2048,52 +2289,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aliantsoft.pl", true },
{ "aliaswp.com", true },
{ "alibangash.com", true },
- { "alibip.de", true },
+ { "alibiloungelv.com", true },
{ "alice-noutore.com", true },
{ "alice.tw", true },
{ "alicemaywebdesign.com.au", true },
{ "alicestudio.it", true },
{ "alicetone.net", true },
- { "alicialab.org", true },
- { "alien.bz", true },
+ { "alieke.design", true },
{ "alienation.biz", true },
{ "alienflight.com", true },
{ "alienslab.net", true },
{ "alienstat.com", true },
+ { "alienvision.com.br", 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 },
{ "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 },
{ "aljaspod.hu", true },
{ "aljaspod.net", true },
{ "aljweb.com", true },
- { "alkel.info", true },
+ { "alkacoin.net", true },
{ "all-connect.net", false },
+ { "all-fashion-schools.com", true },
{ "all-markup-news.com", true },
{ "all4hardware4u.de", true },
- { "allaboutbelgaum.com", false },
{ "allaboutfunuk.com", true },
{ "allaboutswing.co.uk", true },
{ "allaboutswing.com", true },
{ "allaboutthekink.org", true },
{ "allactioneventhire.co.uk", true },
{ "allamericanmuslim.com", true },
+ { "allamericanprotection.net", true },
{ "allamericatrans.com", true },
+ { "allangirvan.net", true },
{ "allarmi.roma.it", true },
{ "allbenjoy.de", true },
{ "allbounceandplay.co.uk", true },
{ "allbouncesurrey.co.uk", true },
{ "allbrandbrand.com", true },
+ { "allbursaries.co.za", true },
{ "allbusiness.com", true },
{ "allcapa.org", true },
{ "allcarecorrectionalpharmacy.com", true },
@@ -2104,13 +2347,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alldewall.de", true },
{ "alldigitalsolutions.com", true },
{ "alle.bg", true },
- { "allemobieleproviders.nl", true },
+ { "allemoz.com", true },
+ { "allemoz.fr", true },
{ "allenscaravans.co.uk", true },
{ "allensun.org", true },
{ "allesisonline.nl", true },
{ "alleskomtgoed.org", true },
{ "allesrocknroll.de", true },
{ "allforyou.at", true },
+ { "allfundsconnect.com", true },
+ { "allgaragefloors.com", true },
{ "allgreenturf.com.au", true },
{ "alliance-psychiatry.com", true },
{ "alliances-faq.de", true },
@@ -2119,50 +2365,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alligatorge.de", true },
{ "allinagency.com", true },
{ "allincoin.shop", true },
- { "allinone-ranking150.com", true },
{ "allis.studio", true },
+ { "allius.de", true },
{ "alljamin.com", true },
- { "allladyboys.com", true },
{ "allmebel.ru", true },
{ "allmend-ru.de", true },
{ "allns.fr", true },
{ "allo-credit.ch", true },
- { "allo-symo.fr", true },
+ { "allofthestops.com", true },
{ "allontanamentovolatili.it", true },
{ "allontanamentovolatili.milano.it", true },
{ "alloverthehill.com", true },
{ "alloydevil.nl", true },
{ "allplayer.tk", true },
{ "allpointsblog.com", true },
+ { "allpointsheating.com", true },
{ "allproptonline.com", true },
{ "allroundpvp.net", true },
+ { "allsaints.church", true },
{ "allsearch.io", true },
- { "allseasons-cleaning.co.uk", true },
{ "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 },
- { "allthingsblogging.com", true },
{ "allthingssquared.com", true },
{ "allthingswild.co.uk", true },
{ "alltubedownload.net", true },
+ { "allurebikerental.com", true },
{ "allurescarves.com", true },
{ "alluvion.studio", true },
+ { "allvips.ru", true },
+ { "allweatherlandscaping.net", true },
{ "almaatlantica.com", true },
- { "almavios.com", true },
+ { "almavios.com", false },
+ { "almayadeen.education", true },
+ { "almorafestival.com", true },
+ { "almut-zielonka.de", true },
{ "aloesoluciones.com.ar", true },
{ "alohapartyevents.co.uk", true },
{ "alonetone.com", 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 },
{ "alpenjuice.com", true },
@@ -2175,15 +2426,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alphaantileak.net", true },
{ "alphabetsigns.com", true },
{ "alphabouncycastles.co.uk", true },
- { "alphabrock.cn", true },
{ "alphachat.net", true },
+ { "alphadote.com", true },
{ "alphaetomega3d.fr", true },
{ "alphafiduciaryservices.ch", true },
{ "alphafitnesslibya.com", true },
+ { "alphagateanddoor.com", true },
{ "alphainflatablehire.com", true },
+ { "alphaman.ooo", true },
+ { "alphanodes.com", true },
{ "alphapengu.in", true },
{ "alpharotary.com", true },
- { "alphasall.com", true },
+ { "alphasall.com", false },
{ "alphassl.de", true },
{ "alphatrash.de", true },
{ "alphavote-avex.com", true },
@@ -2192,6 +2446,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 },
@@ -2199,54 +2454,59 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alpiniste.fr", true },
{ "alqassam.net", true },
{ "alquiaga.com", true },
+ { "alquiladoramexico.com", true },
{ "alrait.com", true },
+ { "alre-outillage.fr", true },
{ "alroniks.com", true },
{ "als-japan.com", true },
+ { "alstertouch.com", true },
+ { "alstertouch.de", true },
{ "alstroemeria.org", true },
{ "alt-three.com", true },
{ "alt.org", true },
+ { "altair.fi", true },
+ { "altapina.com", false },
{ "altaplana.be", true },
- { "altbinaries.com", true },
{ "altedirect.com", true },
{ "alter-news.fr", true },
{ "alterbaum.net", true },
- { "altered.network", true },
{ "alternador.com.br", true },
{ "alternative.bike", true },
+ { "alternative.hosting", true },
{ "alternativebit.fr", true },
{ "alternativedev.ca", true },
+ { "alternativeinternet.ca", true },
{ "alternativet.party", true },
+ { "alternativetomeds.com", true },
{ "alterspalter.de", true },
{ "altes-sportamt.de", true },
{ "altesses.eu", true },
{ "altestore.com", true },
+ { "altisdev.com", true },
{ "altkremsmuensterer.at", true },
{ "altmaestrat.es", true },
+ { "altmann-systems.de", true },
{ "altoa.cz", true },
{ "altonblom.com", true },
- { "altoneum.com", true },
{ "altopartners.com", true },
{ "altopia.com", true },
{ "altphotos.com", true },
- { "altruistgroup.net", true },
{ "alts.li", true },
{ "altstipendiaten.de", true },
- { "alttrackr.com", true },
{ "altunbas.info", true },
{ "alumni-kusa.jp", true },
- { "aluoblog.pw", true },
{ "alupferd.de", true },
+ { "aluro.info", true },
{ "aluroof.eu", true },
{ "alvcs.com", true },
{ "alviano.com", true },
{ "alvicom.hu", true },
- { "alvis-audio.com", true },
- { "alvn.ga", 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 },
@@ -2257,33 +2517,39 @@ 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 },
- { "amadilo.de", false },
- { "amadoraslindas.com", true },
{ "amadvice.com", true },
- { "amaforro.com", true },
{ "amagdic.com", true },
+ { "amagical.net", false },
{ "amaiz.com", true },
{ "amalfi5stars.com", true },
- { "amalficoastchauffeur.com", true },
{ "amalfilapiazzetta.it", true },
{ "amalfipositanoboatrental.com", true },
- { "amalfirock.it", true },
{ "amalfitabula.it", true },
+ { "amaliagamis.com", true },
+ { "amanatrustbooks.org.uk", true },
+ { "amandadamsphotography.com", true },
{ "amandasage.ca", true },
{ "amani-kinderdorf.de", true },
+ { "amardham.org", true },
{ "amaresq.com", true },
{ "amartinz.at", true },
- { "amateri.com", 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 },
+ { "amazingraymond.com", true },
+ { "amazingraymond.com.au", true },
{ "amb.tf", true },
{ "amberalert.gov", true },
{ "amberglowleisure.co.uk", true },
@@ -2308,10 +2574,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amees.me", false },
{ "amelandadventure.nl", true },
{ "amello.de", true },
+ { "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 },
@@ -2323,33 +2593,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amesgen.de", true },
{ "amesvacuumrepair.com", true },
{ "amethystdevelopment.co.uk", true },
- { "ameza.co.uk", true },
- { "ameza.com.mx", true },
- { "ameza.io", true },
- { "ameza.me", true },
- { "ameza.net", true },
{ "amf.to", true },
{ "amg-exterieur.fr", true },
{ "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 },
- { "amin.ga", true },
- { "amin.one", true },
{ "aminafrance.com", true },
{ "amineptine.com", true },
- { "amirautos.com", true },
+ { "aminorth.com", true },
+ { "aminullrouted.com", true },
+ { "amionvpn.com", true },
+ { "amirautos.com", false },
{ "amirmahdy.com", true },
{ "amisderodin.fr", true },
- { "amisharingstuff.com", true },
+ { "amitabhsirkiclasses.org.in", true },
{ "amitpatra.com", true },
+ { "amiu.org", true },
{ "ammanagingdirectors.com", true },
{ "amministratore.biz", true },
{ "amministratore.roma.it", true },
{ "amministratorecondominio.roma.it", true },
+ { "amnesty-bf.org", true },
{ "amnesty.org.au", true },
{ "amnesy.fr", true },
{ "amoozesh98.com", true },
@@ -2360,6 +2631,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ampersandnbspsemicolon.com", true },
{ "amphetamines.org", true },
{ "amphibo.ly", true },
+ { "ampleroads.com", true },
+ { "ampol-agd.pl", true },
{ "ampproject.com", true },
{ "ampproject.org", true },
{ "amrcaustin.com", true },
@@ -2374,18 +2647,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amyrussellhair.com", true },
{ "amyyeung.com", true },
{ "amzn.rocks", true },
+ { "an-alles-gedacht.de", true },
+ { "anabolic.co", true },
{ "anacreon.de", true },
{ "anadiyogacentre.com", true },
- { "anadoluefessk.org", true },
{ "anaethelion.fr", true },
{ "anaiscoachpersonal.es", true },
- { "anajianu.ro", true },
- { "analangelsteen.com", true },
{ "analbleachingguide.com", true },
{ "analgesia.net", true },
{ "analisilaica.it", true },
{ "analogist.net", true },
- { "analteengirls.net", true },
+ { "analytics-shop.com", true },
{ "analyticsinmotion.com", true },
{ "analyticum.at", true },
{ "analyticum.com", true },
@@ -2398,12 +2670,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anantshri.info", true },
{ "ananyoo.com", true },
{ "anarchistischegroepnijmegen.nl", false },
+ { "anarchyrp.life", true },
{ "anassiriphotography.com", false },
{ "anastasia-shamara.ru", true },
- { "anastasiafond.com", true },
+ { "anaveragehuman.eu.org", true },
+ { "ance.lv", true },
{ "ancestramil.fr", true },
{ "anchev.net", true },
+ { "anchorit.gov", true },
{ "anchovy.nz", false },
+ { "anciens.org", true },
+ { "ancientcraft.eu", true },
{ "ancientnorth.com", true },
{ "ancientnorth.nl", true },
{ "ancolies-andre.com", true },
@@ -2415,38 +2692,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "andarpersassi.it", true },
{ "andel.info", false },
{ "anders.hamburg", true },
- { "anderskp.dk", true },
+ { "anderskp.dk", false },
{ "andersonshatch.com", true },
{ "andiplusben.com", true },
{ "andisadhdspot.com", true },
- { "andiscyber.space", true },
{ "anditi.com", true },
{ "andoms.fi", true },
+ { "andre-ballensiefen.de", true },
{ "andre-lategan.com", true },
{ "andre-otto.com", true },
{ "andrea-kiaora.de", true },
{ "andrea-m.me", true },
{ "andrea-wirthensohn.at", true },
{ "andreaboero.it", true },
+ { "andreadraghetti.it", true },
{ "andreagourmet.it", true },
{ "andreahruby.it", true },
{ "andreamcnett.com", true },
- { "andreasbasurto.com", true },
+ { "andreas-hecht.com", true },
{ "andreaseracleous.com", true },
{ "andreasfeusi.ch", true },
+ { "andreashecht-blog.de", true },
{ "andreaskrasa.com", true },
{ "andreaslicht.nl", true },
+ { "andreasmuelhaupt.de", true },
{ "andreasolsson.se", true },
- { "andreasr.com", true },
- { "andrefaber.nl", true },
+ { "andree.cloud", true },
{ "andrehansen.de", true },
+ { "andrei-nakov.org", true },
{ "andrejbenz.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 },
- { "andrewdavidwong.com", true },
{ "andrewdaws.io", true },
{ "andrewensley.com", true },
{ "andrewhowden.com", true },
@@ -2469,6 +2750,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "androidkatalog.cz", true },
{ "androidnovinky.cz", true },
{ "androidservicetool.com", true },
+ { "androidsis.com", true },
{ "androidtamer.com", true },
{ "androidtelefony.cz", true },
{ "androidzone.me", true },
@@ -2476,35 +2758,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "androticsdirect.com", true },
{ "andruvision.cz", true },
{ "andsat.org", true },
- { "andschwa.com", true },
+ { "andschwa.com", false },
{ "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 },
+ { "andysroom.dynu.net", true },
{ "andyt.eu", true },
{ "andzia.art.pl", true },
{ "anedot-sandbox.com", true },
{ "anedot.com", true },
{ "anedot.space", true },
{ "anedot.xyz", true },
+ { "aneebahmed.com", true },
{ "anegabawa.com", true },
+ { "aneslix.com", false },
{ "anetaben.nl", true },
{ "anextraordinaryday.net", true },
- { "ange-de-bonheur444.com", true },
{ "angehardy.com", true },
{ "angel-body.com", true },
+ { "angelcojuelo.com", true },
{ "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 },
@@ -2518,17 +2802,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "angry.im", true },
{ "angrysnarl.com", true },
{ "angryteeth.net", true },
- { "anguiao.com", true },
{ "angularjs.org", false },
{ "angusmak.com", true },
{ "anhaffen.lu", true },
{ "ani-man.de", true },
- { "aniaimichal.eu", true },
+ { "anicam.fr", 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 },
@@ -2541,34 +2824,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anime1.me", true },
{ "anime1.moe", true },
{ "anime1.pw", true },
- { "anime1.top", true },
{ "animeai.com", true },
{ "animefluxxx.com", true },
+ { "animeinsights.net", true },
{ "animesharp.com", true },
{ "animetriad.com", true },
{ "animojis.es", true },
{ "animorphsfanforum.com", true },
- { "anipassion.com", true },
+ { "anipassion.com", false },
{ "anitaalbersen.nl", true },
{ "anitube.ch", true },
{ "aniwhen.com", true },
+ { "anjoola.com", true },
+ { "ankane.org", true },
{ "ankarakart.com.tr", true },
{ "ankaraprofesyonelwebtasarim.com", true },
+ { "ankaraseo.name.tr", true },
{ "ankarauzmanlarnakliyat.com", true },
{ "ankarayilmaznakliyat.com", true },
{ "ankarayucelnakliyat.com", true },
- { "ankenbrand.me", true },
+ { "ankitpati.in", true },
{ "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 },
+ { "anlovegeek.net", true },
{ "anna.info", true },
{ "annaenemma.nl", true },
{ "annafiore.com.br", true },
@@ -2577,36 +2862,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "annasvapor.se", true },
{ "annawagner.pl", true },
{ "annedaniels.co.uk", true },
+ { "anneeden.de", 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 },
- { "anohana.org", true },
+ { "annunciationbvmchurch.org", true },
{ "anojan.com", true },
{ "anon-next.de", true },
{ "anoncom.net", true },
+ { "anoncrypto.org", true },
{ "anoneko.com", true },
{ "anongoth.pl", true },
- { "anonrea.ch", true },
{ "anons.fr", true },
- { "anonukradio.org", true },
{ "anonym-surfen.de", true },
{ "anonyme-spieler.at", true },
+ { "anopan.tk", 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 },
{ "ans-ge.ch", true },
{ "ansas.eu", true },
@@ -2615,6 +2902,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ansermet.net", true },
{ "ansgar-sonntag.de", true },
{ "ansgarsonntag.de", true },
+ { "anshar.eu", true },
{ "ansichtssache.at", true },
{ "ansogning-sg.dk", true },
{ "anstaskforce.gov", true },
@@ -2623,38 +2911,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antani.cloud", true },
{ "antarcti.co", true },
{ "antarees.net", true },
+ { "antaresmedia.com.py", true },
{ "antarespc.com", true },
{ "antcas.com", true },
- { "antecim.fr", true },
+ { "antennista.bari.it", true },
{ "antennista.catania.it", true },
{ "antennista.milano.it", true },
{ "antennista.pavia.it", true },
{ "antennista.roma.it", true },
+ { "antennista.tv", true },
+ { "antennistaroma.it", true },
{ "antennisti.milano.it", true },
{ "antennisti.roma.it", true },
{ "anteprima.info", true },
+ { "antfie.com", true },
{ "anthedesign.fr", true },
{ "anthisis.tv", true },
- { "anthony-rouanet.com", true },
{ "anthony.codes", true },
- { "anthonyaires.com", true },
{ "anthonycarbonaro.com", true },
+ { "anthonyfontanez.com", true },
{ "anthonygaidot.fr", true },
+ { "anthonyvadala.me", true },
{ "anthropoid.ca", true },
{ "anti-bible.com", true },
{ "anti-radar.org", true },
+ { "antiaz.com", true },
{ "antibioticshome.com", true },
{ "anticopyright.com", true },
- { "antifraud.net.ru", true },
+ { "antiekboerderijgraafland.nl", true },
{ "antihype.space", true },
{ "antik-trodelmarkt.de", true },
{ "antikvariat.ru", true },
{ "antikvarius.ro", true },
+ { "antilaserpriority.com", true },
{ "antiled.by", true },
{ "antimine.me", true },
{ "antipolygraph.org", true },
{ "antique-pedalcars.ch", true },
- { "antirayapmalang.com", true },
{ "antirepressionbayarea.com", true },
{ "antispeciesism.com", true },
{ "antispeciesist.com", true },
@@ -2668,12 +2961,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antonin.one", true },
{ "antonio-gartenbau.de", true },
{ "antonjuulnaber.dk", true },
- { "antons.io", true },
+ { "antonuotila.fi", true },
{ "antota.lt", true },
{ "antragsgruen.de", true },
+ { "antroposboutique.it", true },
{ "antroposofica.com.br", true },
+ { "anttitenhunen.com", true },
+ { "antvklik.com", true },
{ "antyblokada.pl", true },
- { "anvartay.com", true },
+ { "anulowano.pl", true },
+ { "anvartay.com", false },
+ { "anwalt.us", true },
{ "anwaltsindex.com", true },
{ "anxietyspace.com", true },
{ "anxiolytics.com", true },
@@ -2681,27 +2979,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anynode.net", true },
{ "anyon.com", true },
{ "anypeer.net", true },
- { "anypool.fr", true },
- { "anypool.net", true },
- { "anyprime.net", true },
{ "anyquestions.govt.nz", true },
{ "anystack.xyz", true },
- { "anyways.at", true },
{ "anzeiger.ag", true },
{ "ao-dev.com", true },
{ "ao2.it", true },
+ { "aoa.gov", true },
+ { "aoadatacommunity.us", true },
{ "aoaprograms.net", true },
+ { "aoeuaoeu.com", true },
+ { "aofusa.net", true },
+ { "aoil.gr", true },
{ "aoku3d.com", true },
- { "aomonk.com", true },
{ "aopedeure.nl", true },
{ "aopsy.de", true },
+ { "aos-llc.com", true },
{ "aosc.io", false },
{ "aosus.org", true },
{ "aotearoa.maori.nz", true },
{ "aotearoaleaks.org", true },
{ "ap-swiss.ch", true },
+ { "apac-tech.com", false },
{ "apache-portal.com", true },
{ "apachehaus.de", false },
+ { "apachelounge.com", true },
{ "apadvantage.com", true },
{ "aparaatti.org", true },
{ "apartmanicg.me", true },
@@ -2709,17 +3010,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apartment-natik.fr", true },
{ "apartmentkroatien.at", true },
{ "apartmentregister.com.au", true },
+ { "apasaja.tech", true },
+ { "apbank.ch", true },
{ "apbox.de", true },
{ "apcemporium.co.uk", true },
{ "apcube.com", true },
{ "apdx.com", true },
{ "apef.ch", true },
{ "apercloud.es", true },
- { "aperim.com", true },
{ "apertis.org", true },
{ "aperturesciencelabs.de", true },
{ "apervita.net", true },
- { "apexitsolutions.ca", true },
{ "apfelcholest.de", true },
{ "apgw.jp", true },
{ "aphelionentertainment.com", true },
@@ -2739,35 +3040,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apiary.store", true },
{ "apiary.supplies", true },
{ "apiary.supply", true },
- { "apila.care", true },
- { "apila.us", true },
- { "apiled.io", true },
+ { "apimon.de", true },
{ "apination.com", true },
{ "apio.systems", true },
- { "apis.blue", true },
{ "apis.google.com", true },
{ "apis.moe", true },
{ "apisyouwonthate.com", true },
- { "apivia.fr", true },
{ "apk.li", true },
{ "apk4fun.com", true },
{ "aplikaceproandroid.cz", true },
{ "aplpackaging.co.uk", true },
{ "aplu.fr", true },
{ "aplus-usa.net", true },
- { "apmpproject.org", true },
+ { "aplusdownload.com", true },
+ { "apluswaterservices.com", true },
+ { "apm.com.tw", true },
{ "apn-dz.org", true },
{ "apn-einstellungen.de", true },
{ "apobot.de", true },
+ { "apogeephoto.com", true },
{ "apoil.org", true },
- { "apollyon.work", true },
{ "apoly.de", true },
{ "aponkral.net", true },
{ "aporia.io", true },
{ "aposke.com", true },
{ "aposke.net", true },
{ "aposke.org", true },
- { "apotheek-nl.org", true },
{ "apotheke-ch.org", true },
{ "apothes.is", true },
{ "app-at.work", true },
@@ -2783,28 +3081,24 @@ 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 },
- { "appformacpc.com", true },
{ "appgeek.com.br", true },
{ "appharbor.com", true },
{ "appify.org", true },
+ { "appinn.com", true },
{ "applelife.ru", true },
{ "applemon.com", true },
{ "appleoosa.com", true },
{ "appleranch.com", true },
{ "applesana.es", true },
{ "applesencia.com", true },
- { "applewatch.co.nz", true },
{ "applian.jp", true },
- { "appliancerepairlosangeles.com", true },
{ "applicationmanager.gov", true },
{ "apply.eu", true },
- { "apply55gx.com", true },
{ "appmeas.co.uk", true },
{ "appmobile.io", true },
{ "appninjas.com", true },
@@ -2815,6 +3109,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apprenticeships.gov", true },
{ "approbo.com", true },
{ "approvedtreecare.com", true },
+ { "apps-perso.com", true },
{ "apps.co", true },
{ "apps.facebook.com", false },
{ "apps.fedoraproject.org", true },
@@ -2822,17 +3117,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apps4inter.net", true },
{ "appscloudplus.com", true },
{ "appseccalifornia.org", false },
+ { "appsforlondon.com", true },
{ "appshuttle.com", true },
- { "appson.co.uk", false },
{ "appt.ch", true },
{ "apptomics.com", true },
{ "appuals.com", true },
{ "appui-de-fenetre.fr", true },
{ "appveyor.com", true },
- { "appxcrypto.com", true },
{ "appzoojoo.be", true },
{ "apratimsaha.com", true },
- { "aprefix.com", true },
{ "apretatuercas.es", true },
{ "aprikaner.de", true },
{ "aprogend.com.br", true },
@@ -2841,63 +3134,77 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aprr.org", true },
{ "aprsdroid.org", true },
{ "aprz.de", true },
+ { "apsa.paris", true },
{ "apstudynotes.org", true },
+ { "aptitudetests.org", true },
{ "apu-board.de", true },
{ "apv-ollon.ch", true },
+ { "aqdun.com", true },
{ "aqsiq.net", true },
{ "aqua-fitness-nacht.de", true },
{ "aqua-fotowelt.de", true },
{ "aquabar.co.il", true },
{ "aquabio.ch", true },
{ "aquadonis.ch", true },
+ { "aquagarden.com.pl", true },
{ "aquahomo.com", true },
+ { "aquainfo.net", true },
{ "aqualife.com.gr", true },
{ "aqualifeprojects.com", true },
{ "aqualysis.nl", true },
{ "aquapoint.kiev.ua", true },
{ "aquarium-supplement.net", true },
- { "aquaron.com", true },
{ "aquaselect.eu", true },
{ "aquatechnologygroup.com", true },
{ "aquaundine.net", true },
{ "aquavitaedayspa.com.au", true },
+ { "aquelarreweb.com", true },
{ "aquila.co.uk", true },
{ "aquitainebrasserie.com.au", true },
{ "aquitroc.com", true },
{ "ar-informatique.ch", true },
{ "arab.dating", true },
- { "arabsexi.info", 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 },
- { "aranel.me", true },
+ { "aranchhomes.com", true },
{ "aranycsillag.net", true },
+ { "araraexpress.com.br", true },
{ "araratour.com", true },
{ "araro.ch", true },
{ "araseifudousan.com", true },
{ "arawaza.biz", true },
{ "arawaza.com", false },
{ "araxis.com", true },
+ { "arbeitsch.eu", true },
{ "arbeitskreis-asyl-eningen.de", true },
{ "arbeitslosenverwaltung.de", true },
{ "arbejdsdag.dk", true },
{ "arbitrarion.com", true },
{ "arbitrary.ch", true },
- { "arboleda-hurtado.com", true },
{ "arboworks.com", true },
+ { "arbu.eu", false },
+ { "arcaea.net", true },
{ "arcaik.net", true },
{ "arcbouncycastles.co.uk", true },
{ "arcenergy.co.uk", true },
+ { "archaeoadventures.com", true },
{ "archimedicx.com", true },
{ "archined.nl", true },
- { "architectdirect.nl", false },
+ { "architectryan.com", true },
+ { "architecture-colleges.com", true },
+ { "architectureandgovernance.com", true },
{ "archivero.es", true },
{ "archivesdelavieordinaire.ch", true },
+ { "archivosstl.com", true },
{ "archlinux.de", true },
{ "archlinux.org", true },
+ { "arclandholdings.com.au", true },
{ "arcobalabs.ca", true },
{ "arcridge.ca", true },
{ "arctic.gov", true },
@@ -2907,14 +3214,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ardor.noip.me", true },
{ "ardtrade.ru", true },
{ "area4pro.com", true },
- { "area536.com", true },
{ "areaclienti.net", true },
{ "areafiftylan.nl", true },
{ "areatrend.com", true },
+ { "arefidgetspinnersgay.com", true },
{ "arekatieandchrisgettingmarried.com", true },
{ "arekatieandchrisgettingmarried.today", true },
{ "arekatieandchrismarriedyet.com", true },
{ "arendburgers.nl", true },
+ { "arenlor.com", true },
+ { "arenlor.info", true },
+ { "arenns.com", true },
{ "areqgaming.com", true },
{ "ares-trading.de", true },
{ "arethsu.se", true },
@@ -2923,10 +3233,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arganaderm.ch", true },
{ "argb.de", true },
{ "argekultur.at", true },
+ { "argonium.com.au", true },
{ "argot.com", true },
- { "ariaartgallery.com", true },
+ { "argovpay.com", true },
{ "ariadermspa.com", true },
{ "arian.io", true },
+ { "ariana.wtf", true },
+ { "arias.re", true },
{ "ariba.info", true },
{ "ariege-pyrenees.net", true },
{ "arieswdd.com", true },
@@ -2934,16 +3247,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arijitdg.net", true },
{ "arikar.eu", true },
{ "arima.co.ke", true },
- { "arimarie.com", true },
{ "arinde.ee", true },
{ "arise19.com", true },
{ "arisevendor.net", true },
- { "aristilabs.com", true },
{ "aristocrates.co", true },
- { "aristocratps.com", true },
{ "aritec-la.com", true },
{ "arivo.com.br", true },
{ "arizonaautomobileclub.com", true },
+ { "arizonabondedtitle.com", true },
+ { "arizonahomeownerinsurance.com", true },
{ "arjandejong.eu", true },
{ "arjanvaartjes.net", true },
{ "arjunasdaughter.pub", true },
@@ -2951,22 +3263,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arkacrao.org", true },
{ "arkadiyt.com", true },
{ "arkaic.dyndns.org", true },
- { "arkbyte.com", true },
{ "arkulagunak.com", false },
{ "arlatools.com", true },
{ "arlen.tv", true },
{ "arlenarmageddon.com", true },
- { "arlet.click", true },
- { "arlingtonwine.net", true },
+ { "arletalibrary.com", true },
+ { "arlingtonelectric.com", true },
{ "arm-host.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 },
@@ -2974,9 +3290,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "armstrongsengineering.com", true },
{ "army24.cz", true },
{ "armyprodej.cz", true },
+ { "arnakdanielian.com", true },
{ "arnaudb.net", true },
{ "arnaudfeld.de", true },
- { "arnaudminable.net", true },
+ { "arne.codes", true },
+ { "arnevankauter.com", true },
{ "arniescastles.co.uk", true },
{ "arno-klein.de", true },
{ "arno-klein.eu", true },
@@ -2990,28 +3308,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arnsmedia.nl", true },
{ "arod.tk", true },
{ "arogov.com", true },
+ { "arogyadhamhealth.com", true },
{ "arokha.com", true },
{ "aromacos.ch", true },
+ { "aromatlas.com", true },
{ "aron.host", true },
{ "aroonchande.com", true },
+ { "aros.pl", true },
+ { "arose.io", true },
+ { "around-cms.de", true },
{ "arox.eu", true },
+ { "arpamip.org", true },
+ { "arpnet.co.jp", true },
{ "arqueo-ecuatoriana.ec", true },
{ "arquitetura.pt", true },
{ "arrakis.se", true },
+ { "arraudi.be", true },
+ { "arrazane.com.br", true },
+ { "arresttracker.com", true },
{ "arrive.by", true },
{ "arrmaforum.com", true },
+ { "arroba.digital", true },
{ "arrow-analytics.nl", true },
{ "arrow-api.nl", true },
{ "arrowfastener.com", true },
{ "arrowheadaddict.com", true },
+ { "arrowheadflats.com", true },
{ "arrowwebprojects.nl", true },
{ "arschkrebs.org", true },
+ { "arsplus.ru", false },
{ "arswb.men", true },
{ "art-auction.jp", true },
{ "art-et-culture.ch", true },
- { "artansoft.com", true },
+ { "art-pix.com", true },
+ { "art-pix.de", true },
+ { "art-pix.net", true },
+ { "art2web.net", true },
{ "artboja.com", true },
{ "artdeco-photo.com", true },
+ { "arte-soft.co", true },
{ "artea.ga", true },
{ "arteaga.co.uk", true },
{ "arteaga.eu", true },
@@ -3019,6 +3354,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arteaga.tech", true },
{ "arteaga.uk", true },
{ "arteaga.xyz", true },
+ { "artebel.com.br", true },
{ "artecat.ch", true },
{ "artedellavetrina.it", true },
{ "artedona.com", true },
@@ -3030,16 +3366,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arterienundvenen.ch", true },
{ "arteshow.ch", true },
{ "artetrama.com", false },
+ { "artfabrics.com", true },
{ "artforum.sk", true },
{ "artfullyelegant.com", true },
+ { "arthan.me", true },
{ "arthermitage.org", true },
{ "arthur.cn", true },
{ "arthurlaw.ca", true },
+ { "articu.no", true },
{ "artificial.army", true },
+ { "artificialgrassandlandscaping.com", true },
{ "artik.cloud", true },
{ "artimpact.ch", true },
{ "artioml.net", true },
{ "artionet.ch", true },
+ { "artis-game.net", true },
+ { "artisan-cheminees-poeles-design.fr", true },
{ "artisans-libres.com", true },
{ "artisansoftaste.com", true },
{ "artistagenda.com", true },
@@ -3052,9 +3394,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "artlogo.sk", true },
{ "artmanager.dk", true },
{ "artmarketingnews.com", true },
- { "artmaxi.eu", true },
{ "artmoney.com", true },
- { "artnims.com", true },
+ { "artofcode.co.uk", true },
{ "artofmonitoring.com", false },
{ "artofwhere.com", true },
{ "artratio.net", true },
@@ -3063,7 +3404,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arts.gov", true },
{ "artschmidtoptical.com", true },
{ "artspac.es", true },
- { "artstopinc.com", true },
+ { "arturopinto.com.mx", true },
{ "arturrossa.de", true },
{ "arturszalak.com", true },
{ "artweby.cz", true },
@@ -3072,11 +3413,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arubasunsetbeach.com", true },
{ "arveron.ch", true },
{ "arvid.io", true },
+ { "arviksa.co.uk", true },
{ "arvindhariharan.com", true },
{ "arvindhariharan.me", true },
{ "arvutiladu.ee", true },
- { "arw.me", true },
{ "arxell.com", true },
+ { "aryalaroca.de", true },
{ "aryan-nation.com", true },
{ "aryasenna.net", true },
{ "arzid.com", true },
@@ -3086,30 +3428,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "as44222.net", true },
{ "asadatec.de", true },
{ "asadzulfahri.com", true },
+ { "asafaweb.com", true },
{ "asafilm.co", true },
{ "asandu.eu", true },
{ "asanger.biz", true },
{ "asato-jewelry.com", true },
+ { "asbestosthedarkarts.com", true },
{ "asbito.de", true },
+ { "ascamso.com", true },
{ "ascendprime.com", true },
{ "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 },
- { "aseith.com", true },
+ { "asegem.es", 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 },
+ { "ashastalent.com", true },
+ { "ashkan-rechtsanwalt-arbeitsrecht-paderborn.de", true },
+ { "ashleyedisonuk.com", true },
+ { "ashleythouret.com", true },
{ "ashlocklawgroup.com", true },
{ "ashmportfolio.com", true },
+ { "ashutoshmishra.org", true },
{ "asia-gazette.com", true },
{ "asia-global-risk.com", true },
{ "asia.dating", true },
@@ -3121,12 +3470,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "asianspa.co.uk", true },
{ "asiba.com.au", true },
{ "asiesvenezuela.com", true },
+ { "asiinc-tex.com", true },
{ "asile-colis.fr", true },
{ "asinetasima.com", true },
+ { "asirviablog.com", true },
{ "asisee.photography", true },
+ { "ask.fi", true },
{ "ask.pe", true },
{ "ask1.org", true },
{ "askcaisse.com", true },
+ { "askcascade.com", true },
{ "askizzy.org.au", true },
{ "askkaren.gov", true },
{ "askme24.de", true },
@@ -3134,10 +3487,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "askvg.com", true },
{ "askwhy.cz", true },
{ "askwhy.eu", true },
- { "aslinfinity.com", true },
{ "asmbsurvey.com", true },
{ "asmdz.com", true },
- { "asmik-armenie.com", true },
{ "asmood.net", true },
{ "asoul.tw", true },
{ "aspargesgaarden.no", true },
@@ -3145,10 +3496,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "asprion.org", true },
+ { "asproni.it", true },
{ "asr.cloud", true },
{ "asr.li", true },
{ "asr.rocks", true },
@@ -3159,12 +3514,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "assempsaibiza.com", true },
{ "assertion.de", true },
{ "assessoriati.com.br", true },
- { "assetict.com", true },
{ "assetvault.co.za", true },
{ "assguidesporrentruy.ch", true },
{ "assign-it.co.uk", true },
- { "assistance-personnes-agees.ch", true },
- { "assistcart.com", true },
+ { "assistel.com", true },
{ "assistenzaferrodastiro.org", true },
{ "assistenzafrigorifero.org", true },
{ "assistenzalavatrice.org", true },
@@ -3179,28 +3532,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "astec-informatica.com", true },
{ "astengox.com", true },
{ "astenotarili.online", true },
- { "astenretail.com", true },
+ { "astral-imperium.uk", true },
{ "astral.org.pl", true },
{ "astrology42.com", true },
{ "astroscopy.ch", true },
{ "astrosnail.pt.eu.org", true },
{ "astrovandalistas.cc", true },
+ { "astural.org", true },
{ "astutikhonda.com", true },
{ "asuclassfinder.com", true },
{ "asucrews.com", true },
{ "asuka.io", true },
{ "asun.co", true },
+ { "asurbernardo.com", true },
{ "asurepay.cc", false },
{ "asustreiber.de", true },
{ "asvsa.ch", true },
{ "asws.nl", true },
{ "asystent-dzierzawy.pl", true },
- { "at-one.ca", true },
{ "at.search.yahoo.com", false },
+ { "at7s.me", true },
{ "atac.no", true },
{ "atacadocervejeiro.com.br", true },
{ "atacadodesandalias.com.br", true },
+ { "atallo.com", true },
+ { "atallo.es", true },
{ "ataton.ch", true },
+ { "atc.cuneo.it", true },
{ "atc.io", true },
{ "atchleyjazz.com", true },
{ "atchleyjazz.org", true },
@@ -3218,24 +3576,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atelierdefrancais.ch", true },
{ "atelierdeloulou.fr", true },
{ "atelierdesflammesnoires.fr", true },
- { "atelierhupsakee.nl", true },
+ { "atelierfantazie.sk", true },
+ { "atelierhsn.com", true },
{ "ateliernaruby.cz", true },
{ "ateliers-veronese-nantes.fr", true },
{ "atelierssud.ch", true },
{ "atelierssud.swiss", true },
+ { "atencionbimbo.com", false },
{ "atendimentodelta.com.br", true },
- { "atg.soy", true },
+ { "aterskapa-data.se", true },
{ "atgoetschel.ch", true },
{ "atgroup.gr", true },
{ "atgseed.co.uk", true },
{ "atgseed.uk", true },
- { "ath0.org", true },
+ { "ath0.org", false },
{ "atheist-refugees.com", true },
+ { "atheistfrontier.com", true },
{ "athena-bartholdi.com", true },
{ "athena-garage.co.uk", true },
{ "athenadynamics.com", true },
- { "atheoryofchange.com", true },
- { "atherosense.ga", true },
+ { "athenaneuro.com", true },
{ "athlin.de", true },
{ "atigerseye.com", true },
{ "atimbertownservices.com", true },
@@ -3245,27 +3605,28 @@ 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 },
- { "atk.me", 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 },
- { "atlas.co", true },
+ { "atlas-heritage.com", true },
+ { "atlasbrown.com", true },
{ "atlaschiropractic.org", true },
{ "atlascultural.com", true },
{ "atlasdev.nl", true },
{ "atlasone.us", true },
{ "atlassian.io", true },
{ "atlassignsandplaques.com", true },
+ { "atlayo.com", false },
{ "atletika.hu", true },
- { "atmocdn.com", true },
{ "atmschambly.com", true },
{ "atnis.com", true },
{ "ato4sound.com", true },
@@ -3282,14 +3643,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atpnutrition.com", true },
{ "atraining.ru", true },
{ "atraverscugy.ch", true },
- { "atrevillot.com", true },
{ "atrinik.org", true },
{ "atsoftware.de", true },
+ { "atspeeds.com", true },
{ "attac.us", true },
{ "atte.fi", true },
{ "attendantdesign.com", true },
{ "attendu.cz", true },
{ "attention.horse", true },
+ { "attilagyorffy.com", true },
{ "attilavandervelde.nl", true },
{ "attinderdhillon.com", true },
{ "attitudes-bureaux.fr", true },
@@ -3298,14 +3660,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "attwood.org", true },
{ "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 },
{ "atypicom.es", true },
{ "atypicom.fr", true },
{ "atypicom.it", true },
{ "atypicom.pt", true },
{ "atzenchefin.de", true },
{ "au-be.net", true },
- { "au2pb.net", true },
{ "au2pb.org", true },
{ "aubergegilly.ch", true },
{ "aubg.org", true },
@@ -3316,12 +3682,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aucubin.de", true },
{ "audialbuquerqueparts.com", true },
{ "audiblox.co.za", true },
+ { "audiense.com", false },
{ "audio-detector.com", true },
- { "audiobookstudio.com", true },
+ { "audiobookboo.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 },
@@ -3332,14 +3699,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "audisto.com", true },
{ "auditmatrix.com", true },
{ "auditos.com", true },
+ { "audits.io", true },
{ "auditsquare.com", true },
+ { "audreyhossepian.fr", true },
+ { "audreyjudson.com", true },
+ { "auenhof-agrar.de", true },
{ "auerbach-verlag.de", true },
{ "auf-feindgebiet.de", true },
- { "aufprise.de", true },
- { "augaware.org", true },
{ "augen-seite.de", true },
{ "augiero.it", true },
- { "augmentable.de", true },
+ { "augix.net", true },
+ { "augmentable.de", false },
{ "augmented-portal.com", true },
{ "august-don.site", true },
{ "august.black", true },
@@ -3347,56 +3717,72 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "augustiner-kantorei-erfurt.de", true },
{ "augustiner-kantorei.de", true },
{ "aukaraoke.su", true },
- { "aulaschrank.gq", true },
{ "aulo.in", false },
{ "aumilieudumonde.gf", true },
{ "aunali1.com", true },
{ "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 },
{ "auricblue.com", true },
{ "auriko-games.de", true },
+ { "aurnik.com", true },
{ "aurora-multimedia.co.uk", true },
{ "auroraassociationofrealtors.com", true },
{ "aurosa.cz", true },
{ "auroware.com", true },
+ { "auroz.tech", true },
+ { "auroz.video", true },
{ "aus-ryugaku.info", true },
{ "ausmwoid.de", true },
+ { "auspicacious.org", true },
+ { "ausrecord.com", true },
{ "aussiefunadvisor.com", true },
+ { "aussiegreenmarks.com.au", true },
{ "aussieservicedown.com", true },
{ "aussiestoresonline.com", true },
+ { "austenplumbing.com", true },
{ "austin-pearce.com", true },
{ "austin-security-cameras.com", true },
{ "austincardiac.com", true },
- { "austinheap.com", true },
+ { "austinheap.com", false },
+ { "austinlockout.com", true },
+ { "austintxacrepairtoday.com", true },
+ { "austintxlocksmiths.com", true },
{ "austinuniversityhouse.com", true },
{ "australian.dating", true },
+ { "australianairbrushedtattoos.com.au", true },
{ "australianarmedforces.org", true },
+ { "australianattractions.com.au", true },
{ "australianimmigrationadvisors.com.au", true },
+ { "australiantemporarytattoos.com", true },
+ { "australiantemporarytattoos.com.au", true },
{ "australien-tipps.info", true },
{ "austromorph.space", true },
{ "auszeit-lanzarote.com", true },
{ "auszeit-walsrode.de", true },
{ "auszeit.bio", true },
{ "auth.adult", true },
- { "authinfo-bestellen.de", true },
+ { "authenticwoodcraft.com", true },
{ "authinity.com", true },
+ { "authland.com", false },
{ "author24.biz", true },
+ { "author24.info", true },
{ "authoritysolutions.com", true },
- { "authorsguild.in", true },
{ "autimatisering.nl", true },
- { "autism-osaka.org", true },
{ "auto-anleitung.de", true },
+ { "auto-dealership-news.com", true },
{ "auto-motor-i-sport.pl", true },
{ "auto-plus.tn", true },
{ "auto-spurgo.com", true },
{ "auto.nl", true },
{ "autoauctionsohio.com", true },
{ "autoauctionsvirginia.com", true },
+ { "autobahnco.com", true },
+ { "autobarn.co.nz", true },
{ "autobedrijfgarant.nl", true },
{ "autobelle.it", true },
{ "autobourcier.com", true },
@@ -3407,10 +3793,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autocrypt.org", true },
{ "autod.hu", true },
{ "autodalmacija.com", true },
+ { "autodidactic.ai", true },
+ { "autodidacticstudios.com", true },
+ { "autodidacticstudios.net", true },
+ { "autodidacticstudios.org", true },
{ "autoentrepreneurinfo.com", true },
{ "autoepc.ro", true },
+ { "autoeshop.eu", true },
{ "autoinsurancehavasu.com", true },
- { "autokovrik-diskont.ru", true },
+ { "autokeyreplacementsanantonio.com", true },
{ "autoledky.sk", true },
{ "automaan.nl", true },
{ "automacity.com", true },
@@ -3419,15 +3810,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "automationpro.me", true },
{ "automotivegroup-usedcars.be", true },
{ "automotivemechanic.org", true },
+ { "automoto-tom.net", true },
+ { "automy.de", 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 },
+ { "autorijschoolrichardschut.nl", true },
+ { "autos-mertens.com", true },
{ "autoschadeschreuder.nl", true },
{ "autoscuola.roma.it", true },
+ { "autosecurityfinance.com", true },
{ "autoshinka72.ru", true },
{ "autoshopsolutions.com", true },
{ "autoshun.org", true },
@@ -3437,27 +3836,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autospurgo.milano.it", true },
{ "autostodulky.cz", true },
{ "autotechschool.com", true },
+ { "autoteplo.org", true },
{ "autoterminus-used.be", true },
+ { "autoto.hr", true },
+ { "autotransportquoteservices.com", 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 },
- { "av01.tv", true },
{ "av0ndale.de", true },
{ "ava-creative.de", false },
{ "ava-software.at", true },
{ "avaaz.org", true },
{ "avabouncehire.co.uk", true },
{ "avacariu.me", true },
+ { "avaemr-development-environment.ca", true },
+ { "avaeon.com", true },
{ "availablecastles.com", true },
+ { "avalon-island.ru", true },
{ "avalon-rpg.com", true },
- { "avalon-studios.de", true },
{ "avanet.ch", true },
{ "avanet.com", true },
{ "avanovum.de", true },
+ { "avantitualatin.com", true },
{ "avarty.com", true },
{ "avarty.net", true },
{ "avatardiffusion.com", true },
@@ -3479,42 +3888,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avia-krasnoyarsk.ru", true },
{ "avia-ufa.ru", true },
{ "aviapoisk.kz", true },
+ { "aviationstrategies.aero", true },
{ "aviationstrategy.aero", true },
{ "avid.blue", true },
+ { "avidmode-dev.com", true },
+ { "avidmode-staging.com", true },
+ { "avidmode.com", true },
+ { "avidthink.com", true },
{ "avietech.com", true },
- { "avitres.com", true },
{ "aviv.nyc", true },
{ "avlhostel.com", true },
- { "avmemo.com", true },
- { "avmoo.com", true },
+ { "avmrc.nl", true },
{ "avnet.ws", true },
{ "avocadooo.stream", true },
{ "avocatbeziau.com", true },
{ "avocode.com", true },
- { "avotoma.com", true },
+ { "avonture.be", true },
{ "avova.de", true },
{ "avpres.net", true },
{ "avptp.org", true },
{ "avqueen.cn", true },
+ { "avs-building-services.co.uk", true },
{ "avsox.com", true },
{ "avticket.ru", false },
+ { "avtobania.pro", true },
{ "avtoforex.ru", true },
{ "avtogara-isperih.com", true },
+ { "avtomarket.ru", true },
+ { "avtoveles.by", 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 },
+ { "awarify.io", true },
+ { "awarify.me", true },
{ "awaro.net", true },
{ "awbouncycastlehire.com", true },
- { "awccanadianpharmacy.com", true },
- { "awen.me", true },
+ { "awecademy.org", true },
+ { "awesome-coconut-software.fr", true },
{ "awesomebouncycastles.co.uk", true },
{ "awesomesit.es", true },
- { "awin.la", true },
+ { "awic.ca", true },
{ "awk.tw", true },
{ "awksolutions.com", true },
+ { "awningcanopyus.com", true },
{ "awningsaboveus.com", true },
{ "awningsatlantaga.com", true },
{ "awomaninherprime.com", true },
@@ -3522,232 +3945,156 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "awsome-books.co.uk", true },
{ "awxg.com", true },
{ "ax25.org", true },
- { "axa-middleeast.com", true },
{ "axchap.ir", true },
{ "axelname.ru", true },
{ "axelteichmann.net", true },
+ { "axiatancell.com", true },
{ "axiomer.com", true },
{ "axiomer.es", true },
{ "axiomer.eu", true },
{ "axiomer.me", true },
{ "axiomer.net", true },
{ "axiomer.org", true },
- { "axka.com", false },
- { "axolotlfarm.org", true },
+ { "axisfleetmanagement.co.uk", true },
+ { "axolotlfarm.org", false },
+ { "axon-toumpa.gr", true },
{ "axonholdingse.eu", true },
+ { "axre.de", true },
{ "axrec.de", true },
- { "axtudo.com", true },
- { "axtux.tk", true },
+ { "ay-net.jp", true },
+ { "ayahya.me", true },
{ "ayanomimi.com", true },
{ "aycomba.de", true },
{ "ayesh.me", true },
- { "ayesh.win", true },
+ { "ayj.solutions", true },
{ "aykutcevik.com", true },
{ "aylak.com", true },
{ "aylesburycastlehire.co.uk", true },
+ { "aymerick.fr", true },
{ "aymericlagier.com", true },
- { "ayon.group", true },
{ "ayothemes.com", true },
{ "ayrohq.com", true },
{ "ayrshirebouncycastlehire.co.uk", true },
{ "ayumindev.net", true },
{ "ayurveda-mantry.com", true },
+ { "az-moga.bg", true },
{ "az.search.yahoo.com", false },
+ { "azabani.com", true },
{ "azadliq.info", true },
+ { "azane.ga", true },
+ { "azarus.ch", true },
{ "azazy.net", false },
{ "azgfd.com", true },
- { "azia.info", true },
+ { "aziende.com.ar", true },
{ "azimut.fr", true },
+ { "azino777.ru", true },
+ { "azizfirat.com", true },
+ { "azizvicdan.com", false },
{ "azlk-team.ru", true },
+ { "azmusica.biz", true },
+ { "azmusica.com", true },
{ "azort.com", true },
{ "azrazalea.net", true },
+ { "azsgeniedev.azurewebsites.net", true },
{ "azso.pro", true },
+ { "azsupport.com", true },
{ "aztraslochi.it", true },
{ "aztrix.me", true },
{ "azu-l.com", true },
{ "azu-l.jp", true },
- { "azun.pl", true },
- { "azuxul.fr", true },
- { "azzag.co.uk", true },
+ { "azuki.cloud", true },
+ { "azukie.com", true },
+ { "azurecrimson.com", true },
+ { "azuriasky.com", true },
+ { "azuriasky.net", true },
{ "azzorti.com", true },
{ "azzurrapelletterie.it", true },
{ "b-b-law.com", true },
+ { "b-boom.nl", true },
{ "b-cyclesshop.ch", true },
{ "b-f-s.pl", true },
{ "b-freerobux.ga", true },
{ "b-landia.net", true },
{ "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 },
- { "b422edu.com", 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 },
- { "b61688.com", 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.com", true },
- { "b9886.net", true },
- { "b9887.net", true },
- { "b9888.net", true },
- { "b9889.net", true },
- { "b9920.com", true },
- { "b9948.com", true },
- { "b9948.net", true },
- { "b99520.com", true },
- { "b9960.com", true },
- { "b99881.com", true },
- { "b99882.com", true },
- { "b99883.com", true },
- { "b99885.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 },
+ { "bablodel.biz", true },
+ { "bablodel.com", true },
+ { "babsbibs.com", true },
+ { "baby-bath-tub.com", true },
{ "baby-digne.com", true },
+ { "baby-fotografie-muenchen.de", true },
+ { "babybauch-shooting-muenchen.de", true },
{ "babyboom.pl", true },
{ "babycamapp.com", true },
{ "babyfotograf-schweiz.ch", true },
{ "babymasaze.cz", true },
{ "babyphototime.com", true },
{ "babypibu.com", true },
- { "bacgrouppublishing.com", true },
+ { "babyshoprimini.com", true },
{ "bachata.info", true },
{ "baches-piscines.com", true },
{ "baciu.ch", true },
{ "backeby.eu", true },
- { "backlogapp.io", true },
+ { "backgroundchecks.online", true },
{ "backmountaingas.com", true },
- { "backpacken.org", 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 },
+ { "backup-kurumsal.com", true },
{ "backupcloud.ru", true },
{ "backupsinop.com.br", true },
{ "bacon-monitoring.org", true },
{ "baconismagic.ca", true },
{ "bacontreeconsulting.com", true },
{ "bacoux.com", true },
+ { "bacsituvansuckhoe.com", true },
{ "bacula.jp", true },
+ { "bad-wurzach.de", true },
{ "bad.horse", true },
{ "bad.pet", true },
{ "badam.co", true },
+ { "badanka.com", true },
{ "badanteinfamiglia.it", true },
+ { "badaparda.com", true },
{ "badblock.fr", true },
{ "badboyzclub.de", true },
{ "badf00d.de", true },
+ { "badgersystems.de", true },
{ "badges.fedoraproject.org", true },
{ "badges.stg.fedoraproject.org", true },
{ "badgesenpatches.nl", true },
- { "badgirlsbible.com", true },
{ "badhusky.com", true },
+ { "badlink.org", true },
{ "badmania.fr", true },
{ "badmintonbible.com", true },
{ "badoo.com", true },
+ { "badoo.de", true },
+ { "badoo.eu", true },
+ { "badoo.us", true },
{ "badpackets.net", true },
{ "badrequest.me", true },
{ "badseacoffee.com", true },
@@ -3755,32 +4102,37 @@ 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 },
{ "bahnhelden.de", true },
{ "bahninrotweissrot.at", true },
+ { "bahnmagazine.de", true },
+ { "baiduo.com", true },
{ "baifubao.com", true },
{ "baiker.info", true },
{ "bailakomigo.com.br", true },
{ "baildonbouncycastles.co.uk", true },
{ "baileebee.com", true },
+ { "bailonga.com", true },
{ "baitulongbaycruises.com", true },
{ "baiyangliu.com", true },
- { "bajajfinserv.in", true },
+ { "bajic.ch", true },
{ "baka-gamer.net", true },
{ "baka.network", true },
{ "baka.org.cn", true },
+ { "baka.red", true },
{ "bakaproxy.moe", true },
{ "bakermen.com", true },
{ "bakersafari.co", true },
@@ -3794,45 +4146,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "baladecommune.ch", true },
{ "balancascia.com.br", true },
{ "balance7.jp", true },
+ { "balancedbrawl.net", true },
{ "balancenaturalhealthclinic.ca", true },
{ "balboa.io", true },
{ "balcaonet.com.br", true },
+ { "balcarek.pl", true },
{ "balconnr.com", true },
{ "balconsverdun.com", true },
{ "baldur.cc", true },
- { "balenciaspa.com", true },
+ { "baldwin.com.au", true },
{ "balia.de", true },
{ "balicekzdravi.cz", true },
+ { "balidesignshop.com.br", true },
{ "balikonos.cz", true },
- { "balilingo.ooo", true },
{ "balinese.dating", true },
{ "balist.es", true },
{ "balivillassanur.com", true },
{ "balkonien.org", true },
+ { "ball-bizarr.de", true },
{ "ball.holdings", true },
+ { "ball3d.es", true },
{ "ballarin.cc", true },
- { "ballbusting-cbt.com", true },
{ "ballejaune.com", true },
+ { "balletcenterofhouston.com", true },
{ "ballinarsl.com.au", 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 },
+ { "balticmed.pl", true },
{ "balticnetworks.com", true },
{ "bamahammer.com", true },
{ "bambooforest.nl", true },
{ "bamboorelay.com", true },
{ "bambumania.com.br", true },
+ { "bamily.rocks", true },
+ { "bananavapes.com", true },
{ "banburybid.com", true },
{ "bancacrs.it", true },
{ "bancaolhares.com.br", true },
{ "bancobai.ao", true },
{ "bancoctt.pt", true },
- { "bandar303.id", true },
- { "bandar303.win", true },
+ { "bancor.network", true },
+ { "bandagastrica.es", true },
{ "bandeira1.com.br", true },
{ "bandgap.io", true },
{ "bandiga.it", true },
@@ -3842,72 +4203,80 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bangkok-dark-night.com", true },
{ "bangkok.dating", true },
{ "bangkokcity.de", true },
- { "bangorfederal.com", true },
+ { "bangorfederal.com", false },
+ { "bangridho.com", true },
{ "bangumi.co", true },
+ { "bangyu.wang", 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 },
- { "bankitt.network", true },
{ "banknet.gov", true },
{ "bankofdenton.com", true },
+ { "bankpolicies.com", true },
{ "banksiaparkcottages.com.au", true },
{ "bankstownapartments.com.au", true },
{ "bankvanbreda.be", true },
{ "banned-bitches.tk", true },
{ "bannermarquees.ie", true },
{ "bannsecurity.com", true },
- { "banoviny.sk", true },
{ "banquevanbreda.be", true },
+ { "bantaihost.com", true },
{ "banter.city", true },
- { "banxehoi.com", true },
- { "bao-in.com", true },
- { "bao-in.net", true },
{ "baobeiglass.com", true },
- { "baodan666.com", true },
{ "baofengtech.com", true },
{ "baopublishing.it", true },
- { "baptistboard.com", true },
{ "baptistedeleris.fr", true },
{ "bar-harcourt.com", true },
{ "barabrume.fr", true },
{ "barans2239.com", true },
+ { "baravalle.com", true },
+ { "barbarabowersrealty.com", true },
{ "barbarafabbri.com", true },
{ "barbarafeldman.com", true },
{ "barbarians.com", false },
- { "barbaros.info", true },
{ "barbate.fr", true },
+ { "barberlegalcounsel.com", true },
+ { "barbershop-harmony.org", true },
+ { "barbershop-lasvillas.com", true },
+ { "barbiere.it", true },
{ "barbu.family", true },
{ "barburas.com", true },
{ "barcamp.koeln", true },
+ { "barcel.com.mx", true },
{ "barclays.net", true },
{ "barcodeberlin.com", true },
{ "barcoderealty.com", true },
- { "bardiel.de", true },
+ { "bardes.org", true },
+ { "bardiharborow.com", true },
{ "bardiharborow.tk", true },
- { "barf-alarm.de", true },
+ { "baresquare.com", true },
{ "baripedia.org", true },
- { "baris-sagdic.com", true },
{ "bariseau-mottrie.be", true },
{ "barisi.me", true },
{ "bariskaragoz.nl", true },
+ { "baristador.com", true },
{ "barkerjr.xyz", true },
+ { "barlex.pl", true },
{ "barlotta.net", true },
{ "barnabycolby.io", true },
{ "barnel.com", true },
- { "barnrats.com", true },
+ { "barnfotografistockholm.se", true },
{ "barpodsosnami.pl", true },
{ "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 },
@@ -3916,16 +4285,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "barslecht.nl", true },
{ "bart-f.com", true },
{ "barta.me", true },
- { "bartel.ws", true },
- { "bartelldrugs.com", true },
+ { "bartbania.com", true },
{ "bartelt.name", true },
+ { "barter4crypto.com", true },
{ "barthonia-showroom.de", true },
+ { "bartkramer.nl", true },
{ "bartlamboo.nl", true },
+ { "bartolomebellido.com", true },
{ "bartula.de", true },
{ "bartzutow.xyz", true },
{ "baruch.me", true },
{ "bas.co.jp", true },
- { "bascht.com", true },
{ "base-autonome-durable.com", true },
{ "baseballrampage.com", true },
{ "baseballsavings.com", true },
@@ -3937,60 +4307,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "basementdoctor.com", true },
{ "basementdoctornorthwest.com", true },
{ "basementfinishingohio.com", true },
+ { "basementwaterproofingdesmoines.com", true },
+ { "baserverz.ga", true },
+ { "bashing-battlecats.com", true },
{ "bashstreetband.co.uk", true },
{ "basicapparel.de", true },
{ "basicattentiontoken.org", true },
- { "basilicaknights.org", true },
- { "basilm.co", true },
{ "basketball-brannenburg.de", true },
- { "basketsbymaurice.com", false },
{ "basnoslovno.com.ua", false },
{ "basnoslovno.ru", true },
+ { "basonlinemarketing.nl", true },
{ "bass-pro.ru", true },
{ "bassblog.net", true },
{ "bassment.ph", true },
{ "bassresource.com", true },
{ "bassrider.eu", true },
+ { "bassys.com.co", 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 },
{ "batiburrillo.net", true },
- { "batipresta.ch", true },
{ "batistareisfloresonline.com.br", true },
{ "batlab.ch", true },
{ "batolis.com", true },
- { "batonger.com", true },
{ "batook.org", true },
{ "batschu.de", true },
- { "batten.eu.org", true },
- { "batteryservice.ru", false },
{ "batterystaple.pw", true },
{ "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 },
- { "bautied.de", true },
{ "bauunternehmen-herr.de", true },
+ { "bauwens.cloud", true },
+ { "bavartec.de", true },
{ "bayareaenergyevents.com", true },
{ "baychimo.com", true },
{ "bayden.com", true },
@@ -4003,14 +4367,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bayerstefan.eu", true },
{ "bayherbalist.com", true },
{ "bayilelakiku.com", true },
+ { "baykatre.com", true },
{ "bayly.eu", true },
{ "baymard.com", true },
+ { "bayportbotswana.com", true },
+ { "bayportfinance.com", true },
+ { "bayportghana.com", true },
+ { "bayporttanzania.com", true },
+ { "bayportuganda.com", true },
+ { "bayportzambia.com", true },
+ { "baytalebaa.com", true },
{ "baywatch.io", true },
{ "bayz.de", true },
+ { "bazaarbhaav.com", true },
{ "bazaarcompass.com", true },
- { "bazdell.com", false },
+ { "bazdell.com", true },
{ "bazos.at", true },
{ "bazos.cz", true },
+ { "bazos.pl", true },
{ "bazos.sk", true },
{ "bazziergraphik.com", true },
{ "bb1718.net", true },
@@ -4019,22 +4393,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bbcastles.com", true },
{ "bbgeschenke.ch", true },
{ "bbimarketing.com", true },
- { "bbj.io", 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 },
@@ -4046,79 +4418,72 @@ 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 },
- { "bcmlu.org", true },
- { "bcnet.com.hk", true },
- { "bcodeur.com", true },
{ "bcpc-ccgpfcheminots.com", true },
{ "bcrook.com", true },
{ "bcswampcabins.com", true },
- { "bcvps.com", true },
+ { "bcyw56.live", false },
{ "bd2positivo.com", true },
{ "bda-boulevarddesairs.com", true },
- { "bdata.cl", true },
+ { "bdbxml.net", true },
{ "bdd.fi", true },
- { "bdikaros-network.net", true },
{ "bdpachicago.tech", true },
{ "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 },
- { "be9966.com", true },
- { "beachfutbolclub.com", true },
- { "beacinsight.com", true },
+ { "beacham.online", true },
+ { "beachcitycastles.com", true },
{ "beadare.com", true },
{ "beadare.nl", true },
{ "beaglesecurity.com", true },
{ "bealpha.pl", true },
{ "beamer-discount.de", true },
+ { "beamstat.com", true },
+ { "beanbagaa.com", true },
+ { "beanilla.com", true },
{ "beanjuice.me", true },
{ "beans-one.com", false },
+ { "bearcms.com", true },
{ "bearcosports.com.br", true },
{ "bearded.sexy", true },
+ { "beardic.cn", true },
{ "bearingworks.com", true },
+ { "bearlakelife.com", true },
+ { "beastiejob.com", true },
{ "beastowner.li", true },
{ "beatfeld.de", true },
{ "beatnikbreaks.com", true },
{ "beatrizaebischer.ch", true },
+ { "beaumelcosmetiques.fr", true },
{ "beaute-eternelle.ch", true },
{ "beauty-hippie-schmuck.de", true },
{ "beauty-italy.ru", true },
+ { "beauty-yan-enterprise.com", true },
{ "beauty24.de", true },
{ "beautybear.dk", true },
{ "beautyby.tv", true },
- { "beautyconcept.co", false },
{ "beautyevent.fr", true },
{ "beautykat.ru", true },
+ { "beaverdamautos.com", true },
{ "bebef.de", true },
{ "bebefofuxo.com.br", true },
{ "bebes.uno", true },
{ "bebest.gov", false },
{ "bebetrotteur.com", true },
{ "bebout.domains", true },
+ { "bebout.pw", true },
{ "beckenhamcastles.co.uk", true },
- { "beckerantiques.com", false },
- { "beckon.com", true },
- { "becoast.fr", true },
+ { "beckerantiques.com", true },
{ "becs.ch", true },
{ "becydog.cz", true },
{ "bedamedia.com", true },
@@ -4127,16 +4492,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bedandbreakfasthoekvanholland.com", true },
{ "bedels.nl", true },
{ "bedfordnissanparts.com", true },
- { "bedlingtonterrier.com.br", true },
{ "bednar.co", true },
- { "bedouille.com", true },
+ { "bedrijfsfotoreportages.nl", true },
+ { "bedrijfshulpverleningfriesland.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 },
{ "beehive42.com", true },
{ "beehive42.eu", true },
@@ -4155,6 +4521,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beeksnetwork.nl", true },
{ "beelen.fr", true },
{ "beelit.com", true },
+ { "beeming.net", true },
+ { "beer9.com", true },
{ "beercandle.com", true },
{ "beergazetteer.com", true },
{ "beerians.com", true },
@@ -4163,7 +4531,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beerjet.ro", true },
{ "beerjet.sk", true },
{ "beerjetcz.cz", true },
- { "beermedlar.com", true },
+ { "beerly.eu", true },
{ "beerradar.no", true },
{ "beerradar.party", true },
{ "beersconf.com", true },
@@ -4176,15 +4544,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beezkneezcastles.co.uk", true },
{ "beeznest.com", true },
{ "befoodsafe.gov", true },
+ { "beforeyoueatoc.com", true },
{ "beframed.ch", true },
+ { "befreewifi.info", true },
{ "befundonline.de", true },
{ "begabungsfoerderung.info", true },
{ "begbie.com", true },
{ "beginatzero.com", true },
{ "beginner.nl", true },
{ "beginwp.top", true },
- { "begoodny.co.il", true },
+ { "behamepresrdce.sk", true },
{ "behamzdarma.cz", true },
+ { "behead.de", true },
{ "behindthethrills.com", true },
{ "behna24hodin.cz", true },
{ "behoerden-online-dienste.de", true },
@@ -4196,6 +4567,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beimchristoph.de", true },
{ "beinad.com", true },
{ "beinad.ru", true },
+ { "beisance.com", true },
+ { "bejarano.io", true },
{ "belacapa.com.br", true },
{ "belanglos.de", true },
{ "belani.eu", true },
@@ -4206,13 +4579,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "belarto.it", true },
{ "belarto.nl", true },
{ "belarto.pl", true },
- { "belastingdienst-in-beeld.nl", false },
{ "belastingmiddeling.nl", true },
- { "belcompany.nl", false },
+ { "belavis.com", true },
+ { "beleggingspanden-financiering.nl", true },
{ "belegit.org", true },
+ { "belezashopping.com.br", true },
{ "belfastbounce.co.uk", true },
{ "belfastlocks.com", true },
{ "belfasttechservices.co.uk", true },
+ { "belfor-probleme.de", true },
{ "belge.rs", true },
{ "belgers.com", true },
{ "belhopro.be", true },
@@ -4222,36 +4597,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "believersweb.org", true },
{ "bell.id.au", true },
{ "bella.network", true },
+ { "bellaklein.de", 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 },
- { "belua.com", true },
{ "belvoirbouncycastles.co.uk", true },
{ "bely-mishka.by", true },
- { "belyvly.com", true },
+ { "bemcorp.de", true },
+ { "bemindly.com", true },
{ "bemsoft.pl", true },
{ "ben-energy.com", false },
+ { "ben-jarvis.co.uk", true },
{ "ben-stock.de", true },
{ "ben.ninja", true },
{ "ben2.co.il", true },
{ "benabrams.it", true },
+ { "benandsarah.life", true },
{ "benary.org", true },
{ "benbozsa.ca", true },
{ "benburwell.com", true },
{ "benc.io", true },
{ "benceskorka.com", true },
- { "benchcast.com", true },
{ "benchling.com", true },
{ "benchmarkmonument.com", true },
+ { "benchstoolo.com", true },
{ "bencorby.com", true },
{ "bendemaree.com", true },
{ "bendigoland.com.au", true },
- { "bendingtheending.com", true },
{ "bendix.co", true },
{ "bendyworks.com", true },
{ "beneathvt.com", true },
@@ -4259,20 +4639,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benepiscinas.com.br", true },
{ "beneri.se", true },
{ "benevita.bio", true },
- { "benevita.life", true },
- { "benevita.live", true },
- { "benevita.organic", true },
+ { "benewpro.com", true },
{ "bengalurugifts.com", true },
{ "bengisureklam.com", true },
{ "benhaney.com", true },
{ "benhartmann.de", true },
{ "benhavenarchives.org", true },
+ { "benjamin-hering.com", true },
{ "benjamin.pe", true },
+ { "benjaminbedard.com", true },
{ "benjaminblack.net", true },
- { "benjamindietrich.com", true },
{ "benjamindietrich.de", true },
{ "benjaminjurke.com", true },
- { "benjaminjurke.net", true },
{ "benjaminkopelke.com", true },
{ "benjaminpiquet.fr", true },
{ "benjamins.com", true },
@@ -4281,7 +4659,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benleemd.com", true },
{ "benmatthews.com.au", true },
{ "benmillett.us", false },
- { "benmorecentre.co.uk", true },
{ "bennettsbouncycastlehire.co.uk", true },
{ "bennettshire.co.uk", true },
{ "benni1.eu", true },
@@ -4296,6 +4673,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benscobie.com", true },
{ "benshoof.org", true },
{ "bensinflatables.co.uk", true },
+ { "bensokol.com", true },
{ "bentertain.de", true },
{ "bentley.blog", true },
{ "bentley.link", true },
@@ -4305,15 +4683,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benz-hikaku.com", true },
{ "benzi.io", true },
{ "beoordelingen.be", true },
+ { "bepenak.com", true },
{ "bephoenix.org.uk", true },
+ { "bepsvpt.me", true },
{ "bequiia.com", true },
{ "beranovi.com", true },
{ "berasavocate.com", true },
- { "beraten-entwickeln-steuern.de", true },
- { "berdaguermontes.eu", false },
+ { "berdu.id", true },
{ "bergenhave.nl", true },
+ { "berger-chiro.com", true },
{ "bergevoet-fa.nl", true },
- { "bergfex.at", true },
{ "bergfreunde.de", true },
{ "bergfreunde.dk", true },
{ "bergfreunde.es", true },
@@ -4324,9 +4703,20 @@ 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 },
+ { "bergmann-fotografin-essen.de", true },
+ { "bergmann-fotografin-frankfurt.de", true },
+ { "bergmann-fotografin-hamburg.de", true },
+ { "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 },
+ { "beringsoegaard.dk", true },
{ "berlin-flirt.de", true },
{ "berlin.dating", true },
{ "bermeitinger.eu", true },
@@ -4334,21 +4724,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bernadetteanderes.ch", true },
{ "bernardcontainers.be", true },
{ "bernarddickens.com", true },
+ { "bernardez-photo.com", true },
{ "bernardfischer.fr", true },
{ "bernardgo.com", true },
+ { "bernardo.fm", true },
+ { "bernat.ch", true },
{ "bernat.im", true },
{ "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 },
- { "bernieware.de", 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 },
@@ -4361,19 +4756,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bertrandkeller.info", true },
{ "bertsmithvwparts.com", true },
{ "beryl.net", true },
- { "berz.one", true },
{ "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-tickets.co.uk", true },
+ { "best-trucking-schools.com", true },
{ "best-wallpaper.net", true },
{ "best10websitebuilders.com", true },
{ "best2pay.net", true },
@@ -4382,53 +4794,64 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bestattungshaus-kammerer.de", true },
{ "bestautoinsurance.com", true },
{ "bestbatteriesonline.com", true },
- { "bestbonuses.co.uk", true },
+ { "bestbefore.com", true },
{ "bestbrakes.com", true },
{ "bestbridal.top", true },
{ "bestbyte.com.br", true },
{ "bestcellular.com", false },
+ { "bestdating.today", false },
+ { "bestdoc.com.br", true },
+ { "bestdownloadscenter.com", 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 },
+ { "besti.it", true },
{ "bestinductioncooktop.us", true },
+ { "bestinshowing.com", true },
+ { "bestinver.es", false },
+ { "bestjumptrampolines.be", true },
+ { "bestkenmoredentists.com", true },
{ "bestlashesandbrows.com", true },
{ "bestlashesandbrows.hu", true },
{ "bestmotherfucking.website", true },
{ "bestoffert.club", true },
{ "bestoliveoils.com", true },
+ { "bestpal.eu", true },
{ "bestpartyhire.com", true },
{ "bestperfumebrands.com", true },
+ { "bestpig.fr", true },
+ { "bestplumbing.com", true },
+ { "bestpractice.domains", true },
+ { "bestschools.io", true },
+ { "bestschools.top", true },
{ "bestseries.tv", true },
{ "bestshoesmix.com", true },
- { "bestwarezone.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 },
- { "bet990.com", true },
- { "bet9bet9.net", true },
+ { "bet.eu", true },
+ { "betaal.my", 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 },
+ { "betleakbot.com", true },
{ "betobaccofree.gov", true },
{ "betonbit.com", true },
+ { "betonmarkets.info", true },
{ "betpamm.com", true },
- { "betrallyarabia.com", true },
+ { "betrallyarabia.com", false },
+ { "bets.gg", true },
{ "betseybuckheit.com", true },
- { "betshoot.com", true },
+ { "betsharpangles.com", true },
{ "betsyshilling.com", true },
{ "bett1.de", true },
{ "better-bounce.co.uk", true },
@@ -4438,10 +4861,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "betterconsult.com", true },
{ "bettercrypto.org", true },
{ "betterhelp.com", true },
+ { "betterjapanese.blog", true },
+ { "betterjapanese.com", true },
{ "betterjapanese.org", true },
+ { "betterjapanese.xyz", true },
{ "betterna.me", true },
{ "betterscience.org", true },
{ "bettertechinterviews.com", true },
+ { "bettertest.it", true },
+ { "bettertime.de", true },
+ { "bettertime.jetzt", true },
{ "betterweb.fr", true },
{ "betterworldinternational.org", true },
{ "bettflaschen.ch", true },
@@ -4451,9 +4880,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -4465,16 +4891,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bevinco2020.com", true },
{ "bevinsco.org", true },
{ "bevnut.com", true },
- { "bewegungsfluss.com", true },
+ { "bewegungsfluss.com", false },
{ "bewerbungsfoto-deinfoto.ch", true },
- { "bewertet.de", true },
{ "bewonderen.com", true },
{ "bexit.nl", true },
- { "bexithosting.nl", true },
{ "bexleycastles.co.uk", true },
{ "beybiz.com", true },
- { "beylikduzuvaillant.com", true },
- { "beyond-infinity.org", true },
+ { "beyerautomation.com", true },
+ { "beyond-infinity.org", false },
{ "beyond-rational.com", true },
{ "beyondalderaan.net", true },
{ "beyondbounce.co.uk", true },
@@ -4485,80 +4909,91 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beyondweb.net", true },
{ "beyonic.com", true },
{ "beyours.be", true },
- { "bez-energie.de", true },
{ "bezemkast.nl", true },
{ "bezpecnostsiti.cf", true },
{ "bezr.co.uk", true },
+ { "bezzia.com", true },
+ { "bf7088.com", true },
+ { "bf7877.com", true },
{ "bfam.tv", true },
{ "bfem.gov", true },
{ "bfgcdn.com", true },
{ "bfi.wien", false },
{ "bflix.tv", true },
{ "bforb.sk", true },
+ { "bfp-mail.de", true },
{ "bfpg.org", true },
{ "bft-media.com", true },
{ "bftbradio.com", true },
{ "bfw-online.de", true },
- { "bg-sexologia.com", true },
- { "bg16.de", true },
{ "bgbhsf.top", true },
- { "bgenlisted.com", true },
{ "bgeo.io", true },
- { "bgfashion.net", true },
{ "bgfoto.info", true },
{ "bghost.xyz", true },
{ "bgkoleda.bg", true },
{ "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 },
+ { "bhxch.moe", true },
{ "bi.search.yahoo.com", false },
{ "biaggeo.com", true },
{ "biano-ai.com", true },
{ "biasmath.es", true },
{ "biathloncup.ru", true },
+ { "bibica.net", true },
{ "bible-maroc.com", true },
{ "bible.ru", true },
{ "bibleonline.ru", true },
- { "bibliafeminina.com.br", true },
+ { "biblethoughts.blog", true },
{ "bibliaon.com", true },
- { "biblio.wiki", true },
{ "biblioblog.fr", true },
{ "bibliomarkt.ch", true },
{ "biblionaut.net", true },
+ { "biblioporn.com", true },
{ "bibliotekarien.se", true },
{ "biboumail.fr", true },
{ "bibuch.com", true },
{ "bicecontracting.com", true },
{ "bicha.net", true },
- { "bichines.es", true },
+ { "bicifanaticos.com", true },
{ "bicranial.io", true },
{ "bicycle-events.com", true },
+ { "bicycleframeiz.com", true },
{ "biddl.com", true },
- { "bidorbuy.co.ke", true },
+ { "biddle.co", true },
+ { "bidman.cz", true },
+ { "bidman.eu", 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 },
{ "bienici.com", true },
{ "bienoubien.org", true },
{ "biensenvue.com", true },
+ { "bienstar.tv", true },
{ "bierbaumer.net", true },
{ "biergaizi.info", true },
{ "bieser.ch", true },
{ "biester.pro", true },
+ { "bieumau.net", true },
{ "bifrost.cz", true },
+ { "biftin.net", true },
{ "big-andy.co.uk", true },
{ "big-bounce.co.uk", true },
{ "big-fluglaerm-hamburg.de", true },
@@ -4567,22 +5002,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bigbouncebouncycastles.co.uk", true },
{ "bigbouncetheory.co.uk", true },
{ "bigbounceuk.com", true },
+ { "bigbrotherawards.nl", true },
{ "bigcakes.dk", true },
{ "bigclassaction.com", true },
{ "bigdinosaur.org", true },
- { "bigfunbouncycastles.com", true },
{ "biggreenexchange.com", true },
+ { "bigideasnetwork.com", true },
{ "bigio.com.br", true },
- { "bigjohn.ru", true },
- { "bigshort.org", true },
+ { "biglou.com", false },
+ { "bignumworks.com", true },
+ { "bigorbitgallery.org", true },
+ { "bigserp.com", true },
+ { "bigshopper.com", true },
+ { "bigshopper.nl", true },
{ "bigsisterchannel.com", true },
+ { "bigskylifestylerealestate.com", true },
{ "bigskymontanalandforsale.com", true },
+ { "bigwiseguide.com", true },
{ "bihub.io", true },
{ "biilo.com", true },
+ { "bijancompany.com", true },
{ "bijoux.com.br", true },
- { "bijouxbrasil.com.br", true },
{ "bijouxcherie.com", true },
- { "bijuteriicualint.ro", true },
+ { "biju-neko.jp", true },
{ "bike-discount.de", true },
{ "bike-kurse.ch", true },
{ "bike-shack.com", true },
@@ -4590,7 +5032,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bikehistory.org", true },
{ "biker.dating", true },
{ "bikerebel.com", true },
- { "bikeshopitalia.com", true },
{ "bikiniatoll.com", true },
{ "bikiniseli.com", true },
{ "bikkelbroeders.com", false },
@@ -4603,9 +5044,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bildkomponist.de", true },
{ "bildschirmflackern.de", true },
{ "biletyplus.by", true },
+ { "biletyplus.com", true },
{ "biletyplus.ua", true },
{ "bilgo.com", true },
- { "bilibili.red", true },
+ { "bilibili.link", true },
{ "bilimoe.com", true },
{ "bilke.org", true },
{ "billaud.eu.org", true },
@@ -4614,12 +5056,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "billiger-mietwagen.de", true },
{ "billigerfinder.de", true },
{ "billigpoker.dk", true },
+ { "billin.net", true },
+ { "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 },
+ { "billsqualityautocare.com", true },
{ "billy.pictures", true },
{ "billyoh.com", true },
{ "billysbouncycastlehire.co.uk", true },
@@ -4627,6 +5072,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biloplysninger.dk", true },
{ "bilsho.com", true },
{ "biltullen.com", true },
+ { "bimbo.com", false },
+ { "bimbo.com.ar", false },
+ { "bimbobakeriesusa.com", false },
{ "bimmerlabs.com", true },
{ "bin95.com", true },
{ "bina.az", true },
@@ -4637,25 +5085,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "binans.net", true },
{ "binans.xyz", true },
{ "binarization.com", true },
- { "binarization.net", true },
- { "binarization.org", true },
{ "binaryapparatus.com", true },
{ "binaryappdev.com", true },
{ "binarycreations.scot", true },
{ "binarydream.fi", true },
+ { "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 },
{ "bingobank.org", true },
- { "bingostars.com", true },
{ "binhex.net", true },
- { "binkanhada.biz", true },
{ "binkconsulting.be", true },
- { "binsp.net", true },
+ { "binnenmeer.de", true },
+ { "bintangsyurga.com", true },
+ { "bintelligence.info", true },
{ "binti.com", true },
{ "bintooshoots.com", true },
{ "bio-disinfestazione.it", true },
@@ -4664,6 +5109,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bioatelier.it", true },
{ "biobuttons.ch", true },
{ "biocheminee.com", true },
+ { "biocrafting.net", false },
{ "biodiagnostiki.clinic", true },
{ "biodieseldata.com", true },
{ "biodots.at", true },
@@ -4681,26 +5127,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biohappiness.com", true },
{ "bioharmony.ca", true },
{ "biointelligence-explosion.com", true },
+ { "bioknowme.com", true },
+ { "bioleev.sklep.pl", true },
{ "bioligo.ch", true },
- { "biomax-mep.com.br", true },
+ { "biologis.ch", true },
+ { "biology-colleges.com", true },
+ { "biomag.it", true },
+ { "biomasscore.com", true },
+ { "biomed-hospital.ch", true },
+ { "biomed.ch", true },
{ "biometrics.es", true },
+ { "biomin.co.uk", true },
{ "biomodra.cz", true },
- { "biopreferred.gov", true },
{ "biopsychiatry.com", true },
{ "bioresonanz-ibiza.com", true },
{ "biosafe.ch", true },
{ "biosbits.org", true },
{ "bioshine.com.sg", true },
{ "biosignalanalytics.com", true },
- { "biospeak.solutions", true },
{ "biosphere.cc", true },
+ { "biospw.com", true },
{ "biotechware.com", true },
+ { "biotin.ch", true },
{ "bipyo.com", true },
{ "birbaumer.li", true },
- { "birchbarkfurniture.ch", true },
{ "birchbarkfurniture.com", true },
{ "birchbarkfurniture.fr", true },
- { "birdandbranchnyc.com", true },
{ "birdbrowser.com", true },
{ "birdfeeder.online", true },
{ "birdiehosting.nl", true },
@@ -4709,135 +5161,145 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "birgerschwarz.de", true },
{ "birgit-rydlewski.de", true },
{ "birgitandmerlin.com", true },
- { "birkengarten.ch", true },
{ "birkenstab.de", true },
- { "birkhoff.me", false },
+ { "birkhoff.me", true },
{ "birminghamcastlehire.co.uk", true },
{ "birminghamsunset.com", true },
{ "birthdaytip.com", true },
{ "birthmatters.us", true },
+ { "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 },
+ { "bishopscourt-hawarden.co.uk", true },
{ "bismarck-tb.de", true },
+ { "biso.ga", true },
{ "bison.co", true },
+ { "bisq.community", true },
{ "bissalama.org", true },
{ "bisschopssteeg.nl", true },
{ "bistrocean.com", true },
+ { "bistroservice.de", true },
{ "bistrotdelagare.fr", true },
{ "bit-cloud.de", true },
{ "bit-rapid.com", true },
{ "bit-sentinel.com", true },
- { "bit.voyage", true },
+ { "bit-service-aalter.be", true },
+ { "bit.biz.tr", true },
{ "bit8.com", true },
- { "bitace.com", true },
+ { "bitaccelerate.com", true },
{ "bitbank.cc", true },
{ "bitbeans.de", true },
+ { "bitbox.me", true },
{ "bitbucket.com", true },
{ "bitbucket.io", true },
{ "bitbucket.org", true },
{ "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 },
{ "bitcoin.ch", true },
{ "bitcoin.co.nz", true },
- { "bitcoin.com", true },
{ "bitcoin.de", true },
{ "bitcoin.im", true },
{ "bitcoin.info", true },
{ "bitcoin.org", true },
{ "bitcoin.us", true },
{ "bitcoinbitcoin.com", true },
- { "bitcoinclashic.ninja", true },
{ "bitcoincore.org", true },
- { "bitcoinfo.jp", false },
+ { "bitcoinfees.net", true },
{ "bitcoinindia.com", true },
{ "bitcoinkarlsruhe.de", true },
{ "bitcoinrealestate.com.au", true },
{ "bitcointhefts.com", true },
- { "bitcoinwalletscript.tk", true },
{ "bitcoinx.gr", true },
{ "bitcoinx.ro", true },
- { "bitedge.com", true },
+ { "bitcork.io", true },
+ { "bitcqr.io", true },
{ "bitenose.com", 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.uk", true },
{ "bitlish.com", true },
{ "bitlo.com", true },
{ "bitlo.com.tr", true },
{ "bitlo.io", true },
{ "bitlo.org", true },
{ "bitmainwarranty.com", true },
- { "bitmainwarranty.com.ua", true },
- { "bitmainwarranty.ru", true },
{ "bitmarket.net", true },
{ "bitmarket.pl", true },
+ { "bitmask.me", true },
{ "bitmessage.ch", true },
- { "bitmex.com", true },
{ "bitmidi.com", true },
{ "bitminter.com", true },
- { "bitmon.net", true },
+ { "bitmoe.com", true },
{ "bitok.com", true },
{ "bitpoll.de", true },
{ "bitpoll.org", true },
{ "bitpumpe.net", true },
{ "bitref.com", true },
- { "bitroll.com", true },
{ "bitrush.nl", true },
+ { "bits-hr.de", true },
{ "bitsafe.com.my", true },
{ "bitsburg.ru", true },
- { "bitshaker.net", true },
+ { "bitski.com", true },
+ { "bitskins.co", true },
{ "bitskrieg.net", true },
+ { "bitso.com", true },
+ { "bitsoffreedom.nl", true },
+ { "bitstep.ca", true },
{ "bitstorm.nl", true },
{ "bitstorm.org", true },
{ "bitsum.com", true },
+ { "bitsy.com", true },
{ "bitsync.nl", true },
{ "bitten.pw", true },
{ "bittersweetcandybowl.com", true },
{ "bittylicious.com", true },
- { "bituptick.com", true },
- { "bitvegas.com", true },
{ "bitvest.io", true },
+ { "bitwarden.com", true },
{ "bitwolk.nl", true },
{ "bitxel.com.co", true },
+ { "biupay.com.br", true },
{ "biurokarier.edu.pl", true },
{ "bixservice.com", true },
- { "biyori.moe", true },
{ "biyou-homme.com", true },
{ "biz4x.com", true },
+ { "bizbudding.com", true },
+ { "bizcash.co.za", true },
{ "bizeau.ch", true },
- { "bizedge.co.nz", true },
+ { "biznesonline.info", true },
{ "bizniskatalog.mk", true },
{ "biznpro.ru", true },
{ "bizstarter.cz", true },
{ "biztera.com", true },
{ "biztok.eu", true },
- { "bizzi.tv", true },
+ { "biztouch.work", true },
+ { "bizzdesign.com", 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 },
{ "bl4ckb0x.biz", true },
@@ -4847,6 +5309,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bl4ckb0x.info", true },
{ "bl4ckb0x.net", true },
{ "bl4ckb0x.org", true },
+ { "blaauwgeers.pro", true },
{ "blabber.im", true },
{ "blablacar.co.uk", true },
{ "blablacar.com", true },
@@ -4866,25 +5329,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blablacar.ro", true },
{ "blablacar.rs", true },
{ "blablacar.ru", true },
- { "black-gay-porn.biz", true },
{ "black-khat.com", true },
{ "black-mail.nl", true },
+ { "black-pool.net", true },
{ "black-raven.fr", true },
{ "black.dating", true },
{ "black.host", true },
{ "blackandpony.de", true },
- { "blackapron.com.br", true },
{ "blackbag.nl", true },
{ "blackbase.de", true },
- { "blackberryforums.be", true },
+ { "blackbird-whitebird.com", true },
{ "blackcat.ca", true },
{ "blackcatinformatics.ca", true },
{ "blackcatinformatics.com", true },
{ "blackcicada.com", true },
- { "blackdesertsp.com", true },
{ "blackdotbrewery.com", true },
{ "blackdown.de", true },
- { "blackdragoninc.org", true },
{ "blackedbyte.com", true },
{ "blackevent.be", true },
{ "blackfire.io", true },
@@ -4895,20 +5355,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "blackpayment.ru", true },
{ "blackphoenix.de", true },
+ { "blackpi.dedyn.io", true },
{ "blackroadphotography.de", true },
{ "blackscytheconsulting.com", true },
{ "blackseals.net", true },
+ { "blacktown.eu", true },
+ { "blackyau.cc", true },
{ "blackys-chamber.de", true },
{ "blaise.io", true },
{ "blakecoin.org", true },
{ "blakekhan.com", true },
+ { "blakezone.com", true },
+ { "blameomar.com", true },
{ "blancodent.com", true },
{ "blankersfamily.com", true },
{ "blanket.technology", true },
@@ -4926,28 +5395,28 @@ 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 },
{ "blendle.nl", true },
{ "blendr.com", true },
+ { "blendstudios.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 },
{ "blikk.no", true },
{ "blikund.swedbank.se", true },
+ { "blinder.com.co", true },
{ "blindpigandtheacorn.com", true },
- { "bling9.com", true },
- { "bling999.cc", true },
- { "bling999.com", true },
- { "bling999.net", true },
+ { "blinds-unlimited.com", true },
{ "blingsparkleshine.com", true },
{ "blink-security.com", true },
{ "blinking.link", true },
@@ -4962,9 +5431,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blizhost.com", true },
{ "blizhost.com.br", true },
{ "blizora.com", true },
- { "blizz.news", true },
{ "blkbx.eu", true },
{ "blm.gov", true },
+ { "blo-melchiorshausen.de", true },
{ "blobfolio.com", true },
{ "block-this.com", true },
{ "block65.com", true },
@@ -4973,6 +5442,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blockchainced.com", true },
{ "blockchaindaigakko.jp", true },
{ "blockchainwhiz.com", true },
+ { "blockcheck.network", true },
{ "blockedyourcar.com", true },
{ "blockedyourcar.net", true },
{ "blockedyourcar.org", true },
@@ -4987,10 +5457,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blog.linode.com", false },
{ "blog.lookout.com", false },
{ "blogaid.net", true },
+ { "blogarts.net", true },
{ "blogbooker.com", true },
{ "blogconcours.net", true },
- { "blogcuaviet.com", true },
- { "blogdeyugioh.com", true },
+ { "blogdelosjuguetes.com", true },
{ "blogexpert.ca", true },
{ "bloggermumofthreeboys.com", true },
{ "blogging-life.com", true },
@@ -4998,13 +5468,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bloggytalky.com", true },
{ "bloginbeeld.nl", true },
{ "bloglines.co.za", true },
+ { "bloglogistics.com", true },
{ "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 },
+ { "bloodhunt.pl", true },
{ "bloodsports.org", true },
+ { "bloody.pw", true },
{ "bloom-avenue.com", true },
+ { "bloom.sh", true },
{ "bltc.co.uk", true },
{ "bltc.com", true },
{ "bltc.net", true },
@@ -5012,82 +5490,76 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bltc.org.uk", true },
{ "bltdirect.com", true },
{ "blubberladen.de", true },
- { "bludnykoren.ml", true },
+ { "blue-gmbh-erfahrungen.de", true },
+ { "blue-gmbh.de", true },
{ "blue-leaf81.net", true },
{ "blue42.net", true },
{ "blueblou.com", true },
- { "bluecardlottery.eu", true },
{ "bluecards.eu", true },
{ "bluechilli.com", true },
{ "bluecon.ninja", true },
{ "bluecrazii.nl", true },
{ "blued.moe", true },
+ { "bluedata.ltd", true },
{ "bluedeck.org", true },
- { "bluefinger.nl", true },
{ "blueflare.org", true },
{ "bluefrag.com", true },
{ "bluefuzz.nl", true },
{ "blueimp.net", true },
+ { "bluekrypt.com", true },
{ "blueliquiddesigns.com.au", true },
{ "bluemeda.web.id", true },
- { "bluemoonroleplaying.com", true },
{ "bluemtnrentalmanagement.ca", true },
{ "bluenote9.com", true },
- { "bluepearl.tk", true },
+ { "blueoakart.com", true },
+ { "blueoceantech.us", true },
{ "blueperil.de", true },
{ "bluepoint.one", true },
{ "bluepostbox.de", true },
- { "blueprintloans.co.uk", true },
{ "bluerootsmarketing.com", true },
{ "blues-and-pictures.com", true },
- { "bluesecure.com.br", true },
{ "blueskycoverage.com", true },
{ "bluestardiabetes.com", true },
+ { "bluesuncamping.com", true },
+ { "bluesunhotels.com", true },
+ { "bluetexservice.com", true },
{ "bluewavewebdesign.com", true },
{ "bluex.im", true },
{ "bluex.info", true },
{ "bluex.net", true },
{ "bluex.org", true },
{ "blueyed.eu", true },
- { "blui.cf", true },
+ { "blui.ml", true },
{ "bluiandaj.ml", true },
+ { "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 },
- { "blutopia.xyz", true },
{ "blyat.science", true },
{ "blyth.me.uk", true },
+ { "blzrk.com", true },
+ { "bm-immo.ch", true },
{ "bmhglobal.com.au", true },
- { "bmone.net", true },
+ { "bminton.is-a-geek.net", true },
+ { "bmk-kramsach.at", true },
{ "bmriv.com", true },
{ "bmros.com.ar", true },
{ "bmw-motorradclub-seefeld.de", true },
{ "bmwcolors.com", true },
{ "bn1digital.co.uk", true },
- { "bn4t.me", true },
- { "bnb-buddy.nl", true },
- { "bnboy.cn", true },
{ "bnbsinflatablehire.co.uk", true },
{ "bngs.pl", true },
{ "bnin.org", true },
{ "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 },
+ { "bo4tracker.com", true },
{ "boardgamegeeks.de", true },
{ "boards.ie", true },
{ "boat-engines.eu", true },
@@ -5096,13 +5568,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boattrader.com.au", true },
{ "bobaly.es", true },
{ "bobancoamigo.com", true },
+ { "bobaobei.net", true },
{ "bobazar.com", true },
{ "bobcopeland.com", true },
- { "bobep.ru", true },
{ "bobkidbob.com", true },
{ "bobkoetsier.nl", true },
{ "bobnbouncedublin.ie", true },
- { "boboates.com", true },
{ "bobobox.net", true },
{ "boboolo.com", true },
{ "bobstronomie.fr", true },
@@ -5113,7 +5584,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bocreation.fr", true },
{ "bodhi.fedoraproject.org", true },
{ "bodis.nl", true },
- { "bodixite.com", true },
{ "bodsch.com", true },
{ "bodybuildingworld.com", true },
{ "bodyconshop.com", true },
@@ -5121,7 +5591,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 },
@@ -5130,49 +5603,57 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bogdanepureanu.ro", true },
{ "bogner.sh", true },
{ "bogobeats.com", true },
+ { "bogosity.se", true },
{ "bohan.co", true },
{ "bohramt.de", true },
{ "boimmobilier.ch", true },
{ "boincstats.com", true },
{ "boiseonlinemall.com", true },
{ "boisewaldorf.org", true },
+ { "bokadoktorn-test.net", true },
{ "boke112.com", true },
{ "bokka.com", true },
+ { "bokkeriders.com", true },
{ "bokutake.com", true },
{ "boldmediagroup.com", true },
{ "boldt-metallbau.de", true },
{ "bolektro.de", true },
{ "bolgarnyelv.hu", true },
- { "bolivarfm.com.ve", true },
- { "bollywood.uno", true },
{ "bologna-disinfestazioni.it", true },
{ "bolovegna.it", true },
{ "bolt.cm", false },
{ "boltbeat.com", true },
{ "bolte.org", true },
{ "bomb.codes", true },
+ { "bombe-lacrymogene.fr", true },
+ { "bomhard.de", true },
{ "bonaccorso.eu", true },
{ "bonami.cz", true },
{ "bonami.hu", true },
{ "bonami.pl", true },
{ "bonami.ro", true },
{ "bonami.sk", true },
+ { "bonawehouse.co.uk", true },
{ "bonbonmania.com", true },
- { "bondagefetishstore.com", true },
{ "bondank.com", true },
{ "bondarenko.dn.ua", true },
{ "bondingwithbaby.ca", true },
+ { "bondlink.com", true },
{ "bondoer.fr", true },
{ "bondskampeerder.nl", true },
+ { "bondtofte.dk", true },
{ "bonebunny.de", true },
{ "bonesserver.com", true },
{ "bonfi.net", true },
+ { "bongo.cat", true },
{ "bonibuty.com", true },
{ "bonifacius.be", true },
- { "bonita.com.br", true },
+ { "bonito.pl", true },
{ "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 },
@@ -5181,31 +5662,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bonnyprints.fr", true },
{ "bonprix.co.uk", true },
{ "bonqoeur.ca", true },
+ { "bonrecipe.com", true },
{ "bonsaimedia.nl", true },
- { "boodaah.com", true },
+ { "bonux.co", true },
{ "boodmo.com", true },
+ { "boogaerdtmakelaars.nl", true },
{ "boogiebouncecastles.co.uk", true },
{ "book-in-hotel.com", true },
+ { "booker.ly", true },
{ "bookingapp.be", true },
{ "bookingapp.nl", true },
- { "bookingdeluxesp.com", true },
{ "bookingready.com", true },
{ "bookingslog.com", true },
{ "bookingworldspeakers.com", true },
{ "bookluk.com", true },
{ "bookmein.in", true },
- { "bookourdjs.com", true },
{ "booksearch.jp", true },
- { "bookshopofindia.com", true },
{ "booksinthefridge.at", true },
+ { "booksouthafrica.travel", true },
{ "booktracker-org.appspot.com", true },
- { "bookwitty.social", true },
{ "bool.be", true },
+ { "boombv.com", true },
{ "boomersurf.com", true },
{ "boomshelf.com", true },
{ "boomshelf.org", true },
+ { "boomvm.pw", true },
{ "boonbox.com", true },
- { "boonehenry.co.uk", true },
{ "booox.biz", true },
{ "booox.cc", true },
{ "booox.info", true },
@@ -5217,14 +5699,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "booq.org", true },
{ "booquiz.com", true },
{ "boosinflatablegames.co.uk", true },
+ { "boost.fyi", true },
{ "boost.ink", true },
- { "booter.pw", true },
{ "bootjp.me", false },
{ "bopiweb.com", true },
{ "bopp.org", true },
{ "borahan.net", true },
- { "borchers-media.de", true },
- { "borchers.ninja", true },
{ "bordadoenpedreria.com", true },
{ "bordes.me", true },
{ "boredhackers.com", true },
@@ -5236,28 +5716,31 @@ 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 },
{ "borrelpartybus.nl", true },
{ "borysek.net", true },
- { "borzoi.com.br", true },
{ "bosabosa.org", true },
{ "boscoyacht.ch", true },
{ "boskeopolis-stories.com", true },
{ "boss.az", true },
{ "bostadsportal.se", true },
+ { "bostonadvisors.com", true },
{ "bosufitness.cz", true },
{ "bosun.io", true },
- { "bosworthdental.co.uk", true },
- { "botlab.ch", true },
- { "botmanager.pl", true },
- { "bots.cat", true },
- { "botserver.de", true },
- { "botstack.host", true },
+ { "bot-manager.pl", true },
+ { "botezdepoveste.ro", true },
+ { "botguard.net", true },
+ { "bothellwaygarage.net", true },
+ { "botoes-primor.pt", true },
+ { "botsindiscord.me", true },
{ "bottaerisposta.net", true },
{ "bottineauneighborhood.org", true },
{ "bottke.berlin", true },
+ { "bottledstories.de", true },
+ { "bou.cloud", true },
{ "bou.lt", true },
{ "bouah.net", true },
{ "bouchard-mathieux.com", true },
@@ -5265,14 +5748,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouckaert-usedcars.be", true },
{ "boudah.pl", true },
{ "bougeret.fr", true },
- { "bouk.co", true },
{ "boukoubengo.com", true },
+ { "boulderswap.com", true },
{ "boulzicourt.fr", true },
{ "bounce-a-mania.co.uk", true },
{ "bounce-a-roo.co.uk", true },
{ "bounce-abouts.com", true },
{ "bounce-n-go.co.uk", true },
{ "bounce-on.co.uk", true },
+ { "bounce-r-us.co.uk", true },
{ "bounce-xtreme.co.uk", true },
{ "bounce4fun.co.uk", true },
{ "bounce4fun.ie", true },
@@ -5281,7 +5765,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncea-bout.com", true },
{ "bounceaboutandplay.co.uk", true },
{ "bounceaboutnewark.co.uk", true },
- { "bounceaboutsussex.co.uk", true },
{ "bouncealotcastlehire.co.uk", true },
{ "bouncealotnorthwest.co.uk", true },
{ "bounceandwobble.co.uk", true },
@@ -5290,7 +5773,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 },
@@ -5310,7 +5792,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 },
@@ -5331,6 +5812,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncycastle.net.au", true },
{ "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 },
@@ -5347,7 +5829,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 },
@@ -5356,19 +5837,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncycastlesinleeds.co.uk", true },
{ "bouncycastlesisleofwight.co.uk", true },
{ "bouncycastlesmonaghan.com", true },
- { "bouncycastlesperth.net", true },
{ "bouncycastlessheerness.co.uk", true },
{ "bouncydays.co.uk", true },
{ "bouncyfeet.co.uk", true },
{ "bouncygiggles.com.au", true },
{ "bouncyhigher.co.uk", true },
{ "bouncyhousecastlehire.co.uk", true },
- { "bouncyhouses.co.uk", true },
{ "bouncykingdom.co.uk", true },
{ "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 },
@@ -5385,6 +5863,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 },
@@ -5404,8 +5883,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boxpeg.com", true },
{ "boxpirates.to", true },
{ "boxvergelijker.nl", true },
+ { "boyerassoc.com", true },
+ { "boyfriendcookbook.com", true },
{ "boyhost.cn", true },
- { "boypoint.de", true },
+ { "boyinglanguage.com", true },
+ { "boyntonobserver.org", true },
{ "boz.nl", false },
{ "bozdoz.com", true },
{ "bozit.com.au", true },
@@ -5421,16 +5903,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "br3in.nl", false },
{ "br7.ru", true },
{ "braams.nl", true },
+ { "braathe.no", true },
{ "bracho.xyz", true },
+ { "brachotelborak.com", true },
{ "brackets-salad.com", true },
{ "bradbrockmeyer.com", true },
+ { "bradfergusonrealestate.com", true },
{ "bradfordhottubhire.co.uk", true },
{ "bradfordmascots.co.uk", true },
{ "bradkovach.com", true },
{ "bradler.net", true },
{ "bradlinder.org", true },
{ "bradypatterson.com", true },
- { "braemer-it-consulting.de", true },
{ "braeunlich-gmbh.com", true },
{ "brage.info", true },
{ "brahmins.com", true },
@@ -5447,42 +5931,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brainserve.swiss", true },
{ "brainsik.net", true },
{ "brainster.co", true },
+ { "brainvation.de", true },
{ "brainvoyagermusic.com", true },
+ { "brainwav.es", true },
{ "brainwork.space", true },
{ "brakemanpro.com", true },
+ { "brakpanplumber24-7.co.za", true },
+ { "brakstad.org", true },
{ "bralnik.com", true },
{ "brambogaerts.nl", true },
- { "bramburek.net", true },
{ "bramhallsamusements.com", true },
{ "brammingfys.dk", true },
+ { "bramsikkens.be", true },
{ "bramstaps.nl", true },
{ "bramvanaken.be", true },
+ { "bramygrozy.pl", true },
{ "bran.land", true },
{ "branch-bookkeeper.com", true },
+ { "branchtrack.com", true },
+ { "brandand.co.uk", true },
{ "brandbil.dk", true },
- { "brandbuilderwebsites.com", true },
{ "brandcodeconsulting.com", true },
{ "brandcodestyle.com", true },
+ { "brandingclic.com", true },
{ "brando753.xyz", true },
{ "brandongomez.me", true },
{ "brandonhubbard.com", true },
{ "brandonwalker.me", true },
{ "brandrocket.dk", true },
{ "brandstead.com", true },
- { "brandtrapselfie.nl", true },
{ "brandweerfraneker.nl", true },
{ "brandweertrainingen.nl", true },
- { "brandweeruitgeest.nl", true },
{ "brank.as", true },
{ "branw.xyz", true },
{ "brasal.ma", true },
{ "brasalcosmetics.com", true },
{ "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 },
{ "bratteng.me", true },
+ { "bratteng.xyz", true },
{ "bratvanov.com", true },
{ "brau-ingenieur.de", true },
{ "braudoktor.de", true },
@@ -5496,16 +5988,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bravebaby.com.au", true },
{ "bravehearts.org.au", true },
{ "braviskindenjeugd.nl", true },
- { "bravisziekenhuis.nl", true },
+ { "bravisziekenhuis.nl", false },
{ "brazenfol.io", true },
{ "brazilian.dating", true },
{ "brazillens.com", true },
+ { "brazoriabar.org", true },
{ "brck.nl", true },
{ "brd.ro", true },
{ "breadandlife.org", true },
{ "breadofgod.org", true },
{ "breakingtech.it", true },
{ "breakpoint.at", true },
+ { "breaky.de", true },
{ "breathedreamgo.com", true },
{ "breathingblanket.com", true },
{ "brecht.ch", true },
@@ -5518,15 +6012,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brecknell.org", true },
{ "breda.computer", true },
{ "bredvid.no", true },
+ { "breest.net", true },
{ "breeyn.com", true },
{ "brefy.com", true },
{ "brege.org", true },
- { "bregnedalsystems.dk", true },
{ "breitband.bz.it", true },
{ "breitbild-beamer.de", true },
{ "brejoc.com", true },
+ { "brelahotelberulia.com", true },
{ "bremen-restaurants.de", true },
- { "bremensaki.com", true },
{ "bremerfriedensforum.de", true },
{ "brendanbatliner.com", true },
{ "brendanscherer.com", true },
@@ -5535,22 +6029,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bressier.fr", true },
{ "bretcarmichael.com", true },
{ "brettabel.com", true },
+ { "brettcornwall.com", true },
{ "brettelliff.com", true },
+ { "brettlawyer.com", true },
{ "brettw.xyz", true },
- { "bretz-hufer.de", true },
{ "bretzner.fr", true },
{ "brevboxar.se", true },
{ "brewsouth.com", true },
{ "brewtrackr.com", true },
+ { "breznet.com", true },
{ "brgins.com", true },
+ { "brian-gordon.name", true },
{ "brianalaway.com", true },
{ "brianalawayconsulting.com", true },
{ "briandwells.com", true },
{ "brianfoshee.com", true },
- { "briangarcia.ga", true },
{ "brianjohnson.co.za", true },
{ "brianlanders.us", true },
- { "brianmwaters.net", true },
{ "brianroadifer.com", true },
{ "briansmith.org", true },
{ "briantkatch.com", true },
@@ -5558,32 +6053,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "briarproject.org", true },
{ "brickftp.com", true },
{ "brickheroes.com", true },
+ { "brickstreettrio.com", true },
{ "brickvortex.com", true },
{ "bricolajeux.ch", true },
{ "brid.gy", false },
+ { "bridalshoes.com", true },
+ { "bridgedirectoutreach.com", true },
{ "bridgeglobalmarketing.com", true },
+ { "bridgehomeloans.com", true },
{ "bridgement.com", true },
{ "bridgevest.com", true },
{ "bridgingdirectory.com", true },
+ { "bridltaceng.com", true },
+ { "bridzius.lt", true },
{ "brie.tech", true },
{ "briefassistant.com", true },
{ "briefhansa.de", true },
{ "briefvorlagen-papierformat.de", true },
+ { "brier.me", true },
+ { "briffoud.fr", true },
{ "briggsleroux.com", true },
{ "brighouse-leisure.co.uk", true },
{ "brightday.bz", true },
+ { "brightendofleasecleaning.com.au", true },
+ { "brightlifedirect.com", true },
{ "brightonbank.com", true },
{ "brightonbouncycastles.net", true },
{ "brightonchilli.org.uk", true },
{ "brightonzhang.com", true },
+ { "brightworkcreative.com", true },
{ "brigidaarie.com", true },
{ "brilliantbouncyfun.co.uk", true },
- { "brilliantdecisionmaking.com", true },
{ "brilliantproductions.co.nz", true },
{ "brimspark.systems", true },
- { "brinkhu.is", true },
- { "brinquedoseducativos.art.br", true },
{ "brio-shop.ch", true },
+ { "brioukraine.store", true },
{ "brisbanelogistics.com.au", true },
{ "bristebein.com", true },
{ "bristolandwestonsuperbounce.com", true },
@@ -5592,23 +6096,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "britishbeef.com", true },
{ "britishbookmakers.co.uk", true },
{ "britishgroupsg.com", true },
- { "britishmeat.com", true },
{ "britishpearl.com", true },
{ "britishsciencefestival.org", true },
{ "britishscienceweek.org", true },
+ { "britishsnoring.co.uk", true },
{ "britneyclause.com", true },
+ { "brittanyferriesnewsroom.com", true },
{ "britton-photography.com", true },
- { "brn.by", true },
+ { "brk.st", true },
+ { "brmsalescommunity.com", true },
+ { "brnojebozi.cz", true },
{ "bro.hk", true },
+ { "broadbandnd.com", true },
{ "broadleft.org", true },
{ "broadsheet.com.au", true },
{ "brockmeyer.net", true },
{ "brockmeyer.org", true },
{ "brodowski.cc", true },
+ { "brody.digital", true },
+ { "brody.ninja", true },
{ "broersma.com", true },
{ "broeselei.at", true },
{ "brokenhands.io", true },
- { "brokenjoysticks.net", true },
{ "brokervalues.com", true },
{ "brompton-cocktail.com", true },
{ "bronetb2b.com.br", true },
@@ -5616,49 +6125,65 @@ 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 },
- { "brossman.it", true },
{ "brossmanit.com", true },
{ "brother-printsmart.nl", true },
{ "brouillard.ch", true },
- { "brouwerijkoelit.nl", true },
+ { "brouwerijdeblauweijsbeer.nl", true },
{ "brovelton.com", true },
{ "brown-devost.com", true },
{ "brownfieldstsc.org", true },
{ "brownihc.com", true },
+ { "browntowncountryclub.com", true },
+ { "browsemycity.com", true },
+ { "browserleaks.com", true },
+ { "brrd.io", true },
{ "brring.com", true },
+ { "brrr.fr", true },
{ "bru6.de", true },
+ { "brubankv1-staging.azurewebsites.net", true },
+ { "brucekovner.com", true },
{ "brucemartin.net", true },
{ "brucemobile.de", false },
{ "bruck.me", true },
- { "bruckner.li", true },
+ { "brudkista.nu", true },
+ { "brudkista.se", true },
+ { "brudkistan.nu", true },
+ { "brudkistan.se", true },
+ { "brueser-gmbh.de", true },
{ "bruna-cdn.nl", true },
{ "brunick.de", false },
{ "brunn.email", true },
- { "brunner.ninja", false },
+ { "brunner.ninja", true },
{ "brunohenc.from.hr", true },
+ { "brunoproduit.ch", true },
{ "brunoramos.com", true },
- { "brunoramos.org", true },
{ "brunosouza.org", true },
{ "brush.ninja", true },
+ { "brutus2.ga", true },
{ "bruun.co", true },
+ { "bry.do", 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 },
+ { "bsapack564.org", true },
{ "bsatroop794.org", true },
{ "bsc-rietz.at", true },
{ "bscc.support", true },
{ "bsd-box.net", true },
- { "bsd.com.ro", true },
{ "bsdes.net", true },
{ "bsdfreak.dk", true },
{ "bsdlab.com", true },
@@ -5666,7 +6191,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 },
@@ -5674,51 +6198,49 @@ 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 },
+ { "bst.gg", true },
{ "bstoked.net", true },
{ "bsw-solution.de", true },
{ "bt123.xyz", true },
- { "bt78.cn", true },
- { "bt85.cn", true },
- { "bt9.cc", true },
- { "bt96.cn", true },
- { "bt995.com", true },
{ "bta.lv", false },
- { "btaoke.com", true },
- { "btc2secure.com", true },
{ "btcarmory.com", true },
{ "btcbolsa.com", true },
{ "btcontract.com", true },
{ "btcpop.co", true },
{ "btcycle.org", true },
+ { "btine.tk", true },
{ "btio.pw", 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 },
{ "bttorj45.com", true },
- { "bturboo.com", true },
+ { "buayacorp.com", true },
{ "bubblegumblog.com", true },
{ "bubblespetspa.com", true },
+ { "bubblin.io", true },
{ "bubblinghottubs.co.uk", true },
{ "bubblybouncers.co.uk", true },
{ "bubhub.io", true },
+ { "bubulazi.com", false },
+ { "bubulazy.com", false },
+ { "bucek.cz", true },
{ "buch-angucken.de", true },
{ "buchhandlungkilgus.de", true },
{ "buchwegweiser.com", true },
- { "buck.com", true },
+ { "buckelewrealtygroup.com", true },
+ { "bucketlist.co.ke", true },
{ "buckypaper.com", true },
- { "budaev-shop.ru", true },
{ "buddhismus.net", true },
{ "buddie5.com", true },
{ "buddlycrafts.com", true },
@@ -5734,14 +6256,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "budgiesballoons.com", true },
{ "budntod.com", true },
{ "budolfs.de", true },
- { "buehnenbande.ch", false },
{ "bueltge.de", true },
+ { "buena-vista.cz", true },
{ "buena.me", true },
- { "buergerdialog.net", true },
- { "buergerhaushalt.com", true },
+ { "bueny.com", true },
+ { "bueny.net", true },
{ "bueroplus.de", true },
{ "bueroschwarz.design", true },
{ "bueroshop24.de", true },
+ { "buettgens.net", true },
{ "buffaloautomation.com", true },
{ "buffaloturf.com.au", true },
{ "buffetbouc.com", true },
@@ -5751,13 +6274,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bugginslab.co.uk", true },
{ "bugs.chromium.org", true },
{ "bugsmashed.com", true },
- { "bugtrack.co.uk", true },
+ { "bugwie.com", true },
{ "bugzil.la", true },
{ "bugzilla.mozilla.org", true },
{ "build.chromium.org", true },
{ "buildbox.io", true },
{ "buildbytes.com", true },
- { "building-cost-estimators.com", true },
+ { "buildfaith.ca", true },
+ { "buildhoscaletraingi.com", true },
{ "buildingclouds.de", true },
{ "buildingcostestimators.co.uk", true },
{ "builditsolutions.net", true },
@@ -5766,78 +6290,92 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "buildplease.com", true },
{ "buildrightbuildingservicesltd.co.uk", true },
{ "buileo.com", true },
+ { "builtory.my", true },
{ "builtvisible.com", true },
{ "builtwith.com", true },
+ { "buissonchardin.fr", true },
{ "bukkenfan.jp", true },
{ "bul3seas.eu", true },
{ "bulario.com", true },
{ "bulario.net", true },
{ "bulbcompare.com", true },
- { "bulbgenie.com", true },
+ { "bulgarianwine.com", true },
{ "bulkcandystore.com", true },
{ "bulkingtime.com", true },
+ { "bulkowespacerkowo.nl", true },
{ "bulktrade.de", true },
+ { "bulktshirtsjohannesburg.co.za", true },
{ "bulkwholesalesweets.co.uk", true },
{ "bull.id.au", true },
{ "bulldog-hosting.de", true },
- { "bulldoghire.co.uk", true },
{ "bulledair-savons.ch", true },
{ "bullettags.com", true },
- { "bullpay.com", true },
+ { "bullpendaily.com", true },
{ "bullshitmail.nl", true },
{ "bullterrier.nu", true },
{ "bulwarkhost.com", true },
- { "bumarkamoda.com", true },
{ "bunbun.be", false },
{ "bund-von-theramore.de", true },
- { "bundaberg.com", 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 },
+ { "bunnydiamond.de", true },
{ "bunnyvishal.com", true },
{ "bunzy.ca", true },
{ "bupropion.com", true },
+ { "bupu.ml", true },
{ "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 },
{ "burnerfitness.com", true },
{ "burnhamonseabouncycastles.co.uk", true },
{ "burningbird.net", true },
{ "burningflipside.com", false },
+ { "burningmarket.de", true },
{ "burntfish.com", true },
{ "burnworks.com", true },
{ "buronwater.com", true },
{ "burotec-sarl.com", true },
{ "burr.is", true },
- { "burroughsid.com", true },
{ "bursaries-southafrica.co.za", true },
{ "burtplasticsurgery.com", true },
{ "burtrum.family", true },
{ "burtrum.me", true },
{ "burtrum.name", true },
{ "burtrum.org", true },
+ { "burzcast.ro", true },
{ "burzmali.com", true },
- { "buserror.cn", true },
+ { "burzmedia.com", true },
+ { "burzstudios.com", true },
+ { "busanhs.win", 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 },
{ "busit.be", true },
{ "busold.ws", true },
{ "bustadice.com", true },
@@ -5846,25 +6384,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "busuttil.org.uk", true },
{ "butarque.es", true },
{ "buthowdoyoubuygroceries.com", true },
+ { "butikpris.se", true },
{ "butikvip.ru", true },
- { "buttercupstraining.co.uk", true },
- { "buttermilk.cf", true },
+ { "butlerfm.dk", 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 },
+ { "buy-out.jp", true },
{ "buybike.shop", true },
{ "buycarpet.shop", true },
+ { "buycbd.store", true },
{ "buycook.shop", true },
{ "buydissertations.com", true },
+ { "buyebook.xyz", true },
{ "buyerdocs.com", true },
- { "buyessay.org", true },
- { "buyessays.net", true },
- { "buyessayscheap.com", true },
+ { "buyhealth.shop", true },
{ "buyinginvestmentproperty.com", true },
{ "buyjewel.shop", true },
{ "buymindhack.com", true },
@@ -5872,65 +6410,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "buyplussize.shop", true },
{ "buyprofessional.shop", true },
{ "buyritefairview.com", true },
+ { "buysellinvestproperties.com", true },
{ "buyseo.store", true },
+ { "buysuisse.shop", 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 },
{ "bvl.aero", true },
- { "bvv-europe.eu", true },
{ "bw.codes", true },
{ "bwcscorecard.org", true },
{ "bwe-seminare.de", true },
{ "bwfc.nl", true },
- { "bwh1.net", true },
+ { "bwh1.net", false },
{ "bwilkinson.co.uk", true },
- { "bwin86.com", true },
- { "bwin8601.com", true },
- { "bwin8602.com", true },
- { "bwin8603.com", true },
- { "bwin8604.com", true },
- { "bwin8605.com", true },
- { "bwin8606.com", true },
{ "bwl-earth.club", true },
{ "bws16.de", true },
- { "bwwb.nu", true },
+ { "bwserhoscaletrainaz.com", true },
{ "bx-n.de", true },
+ { "bxdev.me", true },
{ "bxp40.at", true },
- { "by.cx", true },
+ { "byange.pro", true },
{ "byatte.com", true },
- { "bydisk.com", false },
+ { "bye-bye.us", true },
{ "byeskille.no", true },
{ "bygningsregistrering.dk", true },
- { "byiu.info", 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 },
- { "byronwade.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 },
+ { "bytecrafter.com", true },
+ { "bytecrafter.net", true },
{ "bytejail.com", true },
{ "bytema.cz", true },
{ "bytema.eu", true },
{ "bytema.re", true },
{ "bytema.sk", true },
+ { "bytemix.cloud", true },
{ "byteowls.com", false },
{ "bytepark.de", true },
{ "bytepen.com", true },
@@ -5944,12 +6478,13 @@ 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 },
+ { "bzsparks.com", false },
{ "bztech.com.br", true },
+ { "bztraveler.com", true },
+ { "bztraveler.net", true },
{ "bzv-fr.eu", true },
{ "c-aeroconsult.com", true },
{ "c-path.org", true },
@@ -5959,27 +6494,31 @@ 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 },
+ { "c3sign.de", true },
{ "c3vo.de", true },
{ "c3w.at", true },
{ "c3wien.at", true },
+ { "c3woc.de", true },
{ "c4539.com", true },
{ "c4k3.net", true },
+ { "c5h8no4na.net", true },
{ "c7dn.com", true },
{ "ca-key.de", true },
- { "ca-terminal-multiservices.fr", true },
{ "ca.gparent.org", true },
{ "ca.search.yahoo.com", false },
{ "ca5.de", true },
+ { "caaps.org.au", true },
{ "caarecord.org", true },
{ "caasd.org", true },
+ { "cabaladada.org", true },
{ "cabarave.com", true },
{ "cabforum.org", true },
+ { "cabineritten.nl", true },
{ "cabinet-bedin.com", true },
- { "cablehighspeed.net", true },
+ { "cabinetfurnituree.com", true },
{ "cablemod.com", true },
{ "cablesandkits.com", true },
{ "cabotfinancial.co.uk", true },
@@ -5988,12 +6527,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cacaolalina.com", true },
{ "cacaumidade.com.br", true },
{ "caceis.bank", true },
+ { "cachacacha.com", true },
+ { "cachedview.nl", true },
{ "cachetagalong.com", true },
- { "cachethome.com", true },
- { "cachethq.io", true },
{ "cachetur.no", true },
{ "cackette.com", true },
+ { "cacn.pw", true },
{ "cad-noerdlingen.de", true },
+ { "cadacoon.com", true },
+ { "cadafamilia.de", true },
{ "cadams.io", true },
{ "cadetsge.ch", true },
{ "cadmail.nl", true },
@@ -6001,21 +6543,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cadooz.com", true },
{ "cadorama.fr", true },
{ "cadoth.net", true },
- { "cadra.nl", true },
{ "cadre.com", true },
{ "cadsys.net", true },
- { "cadusilva.com", true },
{ "caesarkabalan.com", true },
- { "cafe-service.ru", false },
{ "cafedupont.be", true },
{ "cafedupont.co.uk", true },
{ "cafedupont.de", true },
{ "cafedupont.nl", true },
- { "cafefresco.pe", true },
{ "cafeimsueden.de", true },
{ "cafelandia.net", true },
{ "cafeobscura.nl", true },
+ { "caferagazzi.de", true },
+ { "cafericoy.com", true },
+ { "cafeterasbaratas.net", true },
{ "caffeinatedcode.com", true },
+ { "cafled.org", true },
+ { "cagalogluyayinevi.com", false },
+ { "caglarcakici.com", true },
{ "caibi.io", true },
{ "cainhosting.com", false },
{ "caitcs.com", true },
@@ -6025,6 +6569,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cajio.ru", true },
{ "cajunuk.co.uk", true },
{ "cake-time.co.uk", true },
+ { "cakearific.com", true },
{ "cakestart.net", true },
{ "caketoindia.com", true },
{ "cakingandbaking.com", true },
@@ -6043,40 +6588,53 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "calc.pw", true },
{ "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 },
- { "calebmorris.com", false },
+ { "calebennett.com", true },
{ "calebthompson.io", true },
+ { "calehoo.com", true },
+ { "calendar.cf", true },
{ "calendarr.com", true },
{ "calendarsnow.com", true },
+ { "calendly.com", true },
+ { "calenfil.com", true },
+ { "calentadores-solares-sunshine.com", true },
{ "caletka.cz", true },
{ "calgoty.com", true },
{ "calibreapp.com", true },
{ "calibso.net", true },
{ "caliderumba.com", true },
- { "calidoinvierno.com", true },
{ "calixte-concept.fr", true },
+ { "calkinsmusic.com", true },
{ "call.me", true },
- { "callanbryant.co.uk", true },
- { "callawayracing.se", true },
+ { "callanan.nl", true },
+ { "callantonia.com", true },
{ "callear.org", true },
{ "callhub.io", true },
+ { "callidus-vulpes.de", true },
{ "calltoar.ms", true },
{ "calltothepen.com", true },
{ "callumsilcock.com", true },
{ "callumsilcock.me", true },
{ "calluna.nl", true },
+ { "calminteractive.fr", true },
{ "calmtech.com", true },
- { "calomel.org", true },
{ "calotte-academy.com", true },
+ { "calrotaract.org", true },
{ "calvin.my", true },
- { "calypso-tour.net", true },
+ { "calvinallen.net", false },
{ "calyxengineers.com", true },
+ { "calyxinstitute.org", false },
+ { "camara360grados.com", true },
{ "camaradivisas.com", true },
{ "camaras.uno", true },
{ "camarilloelectric.com", true },
@@ -6085,28 +6643,37 @@ 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 },
+ { "cambreaconsulting.com", true },
+ { "cambridge-examen.nl", 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 },
{ "cameraviva.com.br", true },
{ "camerweb.es", true },
{ "camilomodzz.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 },
- { "campeonatoalemao.com.br", true },
{ "camperdays.de", true },
{ "camperlist.com", true },
{ "campermanaustralia.com", true },
@@ -6120,36 +6687,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "campula.cz", true },
{ "campus-discounts.com", true },
{ "campus-finance.com", true },
- { "campusdrugprevention.gov", true },
+ { "campusdrugprevention.gov", false },
{ "campuswire.com", true },
+ { "campvana.com", true },
{ "campwabashi.org", true },
- { "camshowhub.com", true },
- { "camsky.de", true },
+ { "camshowstorage.com", true },
+ { "camshowverse.com", true },
+ { "camsky.de", false },
{ "canada-tourisme.ch", true },
+ { "canadabread.com", false },
{ "canadalife.de", true },
{ "canadasmotorcycle.ca", true },
{ "canadian-nurse.com", true },
{ "canadian.dating", true },
+ { "canadianatheists.ca", true },
+ { "canadianatheists.com", true },
{ "canadianchristianity.com", false },
{ "canadianoutdoorequipment.com", true },
{ "canadiantouristboard.com", true },
+ { "canal-onanismo.org", true },
{ "canalsidehouse.be", true },
{ "canalsidehouse.com", true },
+ { "canariculturacolor.com", true },
{ "canarymod.net", true },
{ "cancerdata.nhs.uk", true },
{ "candaceplayforth.com", true },
+ { "candelec.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 },
- { "canglong.net", true },
{ "canhazip.com", true },
{ "canicaprice.com", true },
{ "canihavesome.coffee", true },
@@ -6157,26 +6732,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "canlidoviz.com", true },
{ "canmipai.com", true },
{ "cannabis-marijuana.com", true },
- { "cannahealth.com", false },
- { "cannarobotics.com", true },
+ { "cannabismd.com", true },
+ { "cannacards.ca", true },
+ { "cannahealth.com", true },
{ "cannoli.london", true },
{ "cannyfoxx.me", true },
{ "canoonic.se", true },
+ { "canopycleaningmelbourne.com.au", true },
+ { "cant.at", true },
{ "cantatio.ch", true },
- { "canterberry.cc", true },
{ "canterburybouncycastlehire.co.uk", true },
+ { "cantonroadjewelry.com", true },
{ "cantrack.com", true },
{ "canva-dev.com", true },
{ "canva.com", true },
{ "canx.org", true },
+ { "canyonshoa.com", true },
{ "canyoupwn.me", true },
{ "cao.gov", true },
{ "cao.la", true },
- { "caodesantohumberto.com.br", true },
- { "capacent.is", true },
+ { "caoshan60.com", true },
{ "capachitos.cl", true },
- { "capacitacionyautoempleo.com", true },
{ "capacityproject.org", true },
+ { "capebretonpiper.com", true },
{ "capekeen.com", true },
{ "capellidipremoli.com", true },
{ "caphane.com", true },
@@ -6185,30 +6763,36 @@ 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 },
+ { "caps.is", true },
{ "capsogusto.com", true },
{ "capstansecurity.co.uk", true },
{ "capstansecurity.com", true },
+ { "capstoneinsights.com", true },
+ { "capsule.org", true },
+ { "capsulesubs.fr", true },
+ { "captain-dandelion.com", true },
{ "captainark.net", true },
+ { "captainsfarm.in", true },
{ "captainsinn.com", true },
- { "captalize.com", true },
+ { "captivationtheory.com", true },
{ "capturapp.com", false },
{ "capture-app.com", true },
{ "captured-symphonies.com", true },
- { "capturethepen.co.uk", true },
{ "capuchinox.com", true },
{ "caputo.com", true },
{ "caputodesign.com", true },
+ { "car-shop.top", true },
{ "car.info", true },
{ "car24.de", true },
{ "car24portal.de", true },
@@ -6222,9 +6806,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carbon-project.org", true },
{ "carbon12.org", true },
{ "carbon12.software", true },
+ { "carboneselectricosnettosl.info", false },
{ "carbonmade.com", false },
{ "carbono.uy", true },
{ "carbontv.com", true },
+ { "carburetorcycleoi.com", true },
{ "carck.co.uk", true },
{ "carck.uk", true },
{ "cardboard.cx", true },
@@ -6237,28 +6823,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cardelmar.de", true },
{ "cardelmar.es", true },
{ "cardexchangesolutions.com", true },
+ { "cardgames.com", true },
{ "cardios.srv.br", true },
{ "cardranking.jp", true },
{ "cardrecovery.fr", true },
{ "cardse.net", true },
- { "cardwars.hu", true },
+ { "cardsolutionsbh.com.br", true },
{ "cardxl.be", true },
{ "cardxl.de", true },
{ "cardxl.fr", true },
{ "cardxl.nl", true },
{ "care4all.com", true },
{ "careeapp.com", true },
+ { "career.support", true },
{ "careeroptionscoach.com", true },
{ "careerpower.co.in", true },
+ { "careers.plus", true },
{ "carefour.nl", true },
{ "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 },
{ "caribbeanarthritisfoundation.org", true },
{ "caribbeanexams.com", true },
@@ -6268,40 +6860,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carinthia.eu", true },
{ "cariocacooking.com", true },
{ "carisenda.com", true },
+ { "carkeysanantonio.com", true },
{ "carlandfaith.com", true },
+ { "carlgo11.com", true },
{ "carlife-at.jp", true },
{ "carlili.fr", true },
{ "carlingfordapartments.com.au", true },
+ { "carlinmack.com", true },
{ "carlmjohnson.net", true },
+ { "carlo.mx", false },
{ "carlobiagi.de", true },
+ { "carlocksmith--dallas.com", true },
+ { "carlocksmithbaltimore.com", true },
+ { "carlocksmithellicottcity.com", true },
{ "carlocksmithfallbrook.com", true },
+ { "carlocksmithkey.com", true },
+ { "carlocksmithlewisville.com", true },
+ { "carlocksmithmesquite.com", true },
+ { "carlocksmithtucson.com", true },
{ "carlosfelic.io", true },
{ "carlosjeurissen.com", true },
+ { "carlot-j.com", true },
+ { "carmelrise.co.uk", true },
{ "carnaticalifornia.com", true },
{ "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.biz", 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 },
- { "carrentalsathens.com", true },
{ "carriedin.com", true },
{ "carrierplatform.com", true },
{ "carringtonrealtygroup.com", true },
+ { "carroattrezzimilanodaluiso.it", true },
+ { "carroceriascarluis.com", true },
{ "carrollservicecompany.com", true },
+ { "carrosserie-dubois.com", true },
+ { "carrouselcompany.fr", true },
+ { "cars4salecy.com", true },
+ { "carseatchecks.ca", true },
+ { "carshippingcarriers.com", true },
{ "carson-aviation-adventures.com", true },
+ { "carson-matthews.co.uk", true },
+ { "carsoug.com", true },
{ "carspneu.cz", true },
- { "carsten.pw", true },
{ "cartadeviajes.cl", true },
{ "cartadeviajes.co", true },
{ "cartadeviajes.com", true },
@@ -6316,9 +6929,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cartadeviajes.uk", true },
{ "carteirasedistintivos.com.br", true },
{ "cartelcircuit.com", true },
+ { "carterstad.se", true },
{ "cartertonscouts.org.nz", true },
{ "cartesentreprises-unicef.fr", true },
{ "carthedral.com", true },
+ { "cartierplan.ga", false },
{ "carto.la", true },
{ "cartongesso.roma.it", true },
{ "cartooncastles.ie", true },
@@ -6326,21 +6941,29 @@ 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 },
{ "casadasportasejanelas.com", true },
- { "casadellecose.com", true },
{ "casadoarbitro.com.br", true },
{ "casadowifi.com.br", true },
+ { "casaessencias.com.br", true },
+ { "casalborgo.it", true },
{ "casalindamex.com", true },
+ { "casalunchbreak.de", true },
{ "casamariposaspi.com", true },
{ "casapalla.com.br", true },
{ "casasuara.com", true },
@@ -6351,35 +6974,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cascadesjobcorpscca.com", true },
{ "cascavelle.fr", true },
{ "cascavelle.nl", true },
+ { "case-vacanza-salento.com", true },
+ { "casecoverkeygi.com", true },
{ "casecurity.org", true },
+ { "caseof.tk", true },
{ "caseplus-daem.de", true },
+ { "caseycapitalpartners.com", true },
{ "cash-4x4.com", true },
{ "cashati.com", true },
{ "cashbook.co.tz", true },
{ "cashbot.cz", true },
+ { "cashfazz.com", true },
{ "cashlink.de", true },
- { "cashlink.io", true },
{ "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 },
- { "casinolistings.com", true },
- { "casinoluck.com", true },
+ { "casinomucho.com", true },
+ { "casinomucho.org", true },
+ { "casinomucho.se", true },
{ "casinoonlinesicuri.com", true },
+ { "casinorewards.info", true },
+ { "casinovergleich.com", true },
{ "casio-caisses-enregistreuses.fr", true },
- { "casjay.com", true },
+ { "casirus.com", true },
+ { "casjay.cloud", 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 },
{ "castible.de", true },
+ { "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 },
@@ -6388,33 +7024,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "castles4kidz.com", true },
{ "castles4rascalsiow.co.uk", true },
{ "castlesrus-kent.com", true },
- { "castleswa.com.au", true },
+ { "casualdesignsfurniture.com", true },
{ "casusgrillcaribbean.com", true },
- { "cat-blum.com", true },
{ "cat-box.de", true },
{ "cat.net", true },
{ "cat73.org", true },
{ "catalog.beer", true },
{ "catalogobiblioteca.com", true },
{ "catalogoreina.com", true },
+ { "catalogosvirtualesonline.com", true },
+ { "catalyconv.com", true },
{ "catalystapp.co", true },
{ "catbold.space", true },
{ "catbull.com", true },
{ "catburton.co.uk", true },
+ { "catchers.cc", true },
{ "catchersgear.com", true },
{ "catchfotografie.nl", true },
{ "catchhimandkeephim.com", true },
{ "catchief.com", true },
+ { "catcoxx.de", true },
{ "catdecor.ru", true },
{ "catenacondos.com", true },
- { "catgirl.me", true },
+ { "catering-xanadu.cz", true },
+ { "catfooddispensersreviews.com", true },
+ { "catgirl.science", true },
{ "catharinesomerville.com", true },
{ "catharisme.eu", true },
{ "catharisme.net", true },
- { "catherineidylle.com", true },
+ { "catherinejf.com", true },
{ "catherinescastles.co.uk", true },
{ "catholics.dating", true },
{ "cathosa.nl", true },
+ { "cathy.guru", true },
+ { "cathy.website", true },
+ { "cathyfitzpatrick.com", true },
+ { "cathyjf.ca", true },
+ { "cathyjf.com", true },
+ { "cathyjf.net", true },
+ { "cathyjf.org", true },
+ { "cathyjfitzpatrick.com", true },
{ "cativa.net", true },
{ "catl.st", true },
{ "catmoose.ca", true },
@@ -6422,13 +7071,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cattivo.nl", false },
{ "catuniverse.org", true },
{ "catveteran.com", true },
+ { "caughtredhanded.co.nz", true },
{ "caulfieldeastapartments.com.au", true },
{ "caulfieldracecourseapartments.com.au", true },
{ "caulong-ao.net", true },
+ { "cav.ac", true },
{ "cavac.at", true },
- { "cave-reynard.ch", true },
{ "cavevinsdefrance.fr", true },
{ "cavzodiaco.com.br", true },
+ { "caxalt.com", true },
{ "caylercapital.com", true },
{ "cazaviajes.es", true },
{ "cazes.info", true },
@@ -6438,31 +7089,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cbcf.info", true },
{ "cbd.casa", true },
{ "cbd.supply", true },
- { "cbdev.de", true },
+ { "cbdcontact.pl", true },
{ "cbdmarket.space", true },
+ { "cbdoilcures.co", true },
{ "cbecrft.net", true },
+ { "cbhq.net", true },
+ { "cbin168.com", true },
{ "cbintermountainrealty.com", true },
+ { "cbk-connect.com", true },
{ "cbr-xml-daily.ru", true },
{ "cbsdeheidevlinder.nl", true },
{ "cbw.sh", true },
{ "cc-brantomois.fr", true },
{ "ccac.gov", true },
+ { "ccattestprep.com", true },
{ "ccavenue.com", true },
+ { "ccc-ch.ch", true },
{ "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 },
{ "ccv-deutschland.de", true },
{ "ccv.ch", true },
- { "ccv.eu", true },
{ "ccv.nl", true },
+ { "cd-shopware.de", true },
{ "cd-sport.com", true },
{ "cd.search.yahoo.com", false },
{ "cd5k.net", true },
@@ -6476,57 +7132,69 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cdda.ch", true },
{ "cdepot.eu", true },
{ "cdkeykopen.com", true },
- { "cdlcenter.com", true },
+ { "cdmlb.net", 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 },
+ { "cdvl.org", true },
{ "ce-pimkie.fr", true },
+ { "ceanimalhealth.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 },
{ "cedricmartineau.com", true },
{ "ceebee.com", true },
{ "cejhon.cz", false },
- { "cekaja.com", true },
{ "celcomhomefibre.com.my", true },
+ { "cele.bi", true },
+ { "celebmasta.com", true },
+ { "celebrityhealthcritic.com", true },
{ "celebrityscope.net", true },
{ "celectro-pro.com", true },
{ "celiendev.ch", true },
{ "celine-patisserie.fr", true },
- { "cellartracker.com", 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 },
{ "centio.bg", true },
{ "centos.tips", true },
{ "centralbank.ae", true },
{ "centralebigmat.eu", true },
{ "centralegedimat.eu", true },
+ { "centrallotus.com", true },
{ "centralmarket.com", true },
{ "centralmissourifoundationrepair.com", true },
{ "centralpoint.be", false },
@@ -6535,13 +7203,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "centrationgame.com", true },
{ "centredaccueil.fr", true },
{ "centreoeil.ch", true },
- { "centricbeats.com", 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 },
+ { "centrym.top", true },
{ "centum.no", true },
{ "centura.de", true },
{ "centurialeonina.com", true },
@@ -6550,9 +7220,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 },
@@ -6562,15 +7230,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cerebelo.info", true },
{ "cerena-silver.ru", true },
{ "ceres-corp.org", true },
- { "ceres1.space", true },
{ "cerivo.co.uk", true },
{ "cermak.photos", true },
{ "cernakova.eu", true },
{ "cerpus-course.com", true },
- { "cerstve-korenie.sk", true },
- { "cerstvekorenie.sk", true },
+ { "cerrajeriaamericadelquindio.com", true },
{ "cert.govt.nz", true },
{ "cert.or.id", true },
+ { "certaintelligence.com", true },
{ "certcenter.ch", true },
{ "certcenter.co.uk", true },
{ "certcenter.com", true },
@@ -6580,7 +7247,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "certfa.com", true },
{ "certible.com", true },
{ "certificatedetails.com", true },
+ { "certificatespending.com", true },
{ "certificatetools.com", true },
+ { "certifiedfieldassociate.com", true },
{ "certifiednurses.org", true },
{ "certmonitor.com.au", true },
{ "certmonitor.net", true },
@@ -6588,6 +7257,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "certspotter.com", true },
{ "certspotter.org", true },
{ "cervejista.com", true },
+ { "ces-ltd.co.uk", true },
{ "cesboard.com", true },
{ "cesdb.com", true },
{ "cesipagano.com", true },
@@ -6598,24 +7268,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cestasedelicias.com.br", true },
{ "cestunmetier.ch", true },
{ "cetamol.com", true },
+ { "cetangarana.com", true },
{ "ceu.edu", false },
{ "cevo.com.hr", true },
{ "ceyizlikelisleri.com", true },
{ "cf-ide.de", true },
{ "cf-tm.net", true },
- { "cf11.de", true },
- { "cfa.gov", true },
- { "cfan.space", true },
+ { "cfda.gov", true },
{ "cfdcre5.org", true },
{ "cfh.com", true },
+ { "cflsystems.com", true },
{ "cfno.org", true },
{ "cfo.gov", true },
{ "cfpa-formation.fr", true },
{ "cfsh.tk", true },
{ "cftc.gov", true },
{ "cftcarouge.com", true },
+ { "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 },
{ "cgal.org", true },
{ "cgan.de", true },
@@ -6623,24 +7297,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cgbassurances.ch", true },
{ "cgbilling.com", true },
{ "cgcookiemarkets.com", true },
+ { "cgminc.net", true },
{ "cgnparts.com", true },
{ "cgpe.com", true },
{ "cgsmart.com", true },
+ { "cgurtner.ch", true },
{ "ch-laborit.fr", true },
{ "ch-sc.de", true },
+ { "ch.bzh", true },
{ "ch.search.yahoo.com", false },
{ "ch47f.com", true },
- { "chabaojia.com", true },
{ "chabaudparfum.com", true },
{ "chabert-provence.fr", true },
+ { "chabik.com", true },
{ "chad.ch", true },
{ "chadstoneapartments.com.au", true },
+ { "chaffeyconstruction.com", true },
{ "chaifeng.com", true },
{ "chainedunion.info", true },
- { "chaip.org", true },
- { "chairinstitute.com", true },
{ "chaisystems.net", true },
- { "chaldeen.pro", true },
{ "chaletdemontagne.org", true },
{ "chaletmanager.com", true },
{ "chaletpierrot.ch", true },
@@ -6650,55 +7325,59 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "challstrom.com", true },
{ "chamathellawala.com", true },
{ "chambion.ch", true },
- { "chameleon-ents.co.uk", true },
+ { "chamicro.com", true },
{ "champdogs.co.uk", true },
{ "champdogs.com", true },
{ "champicreuse.fr", true },
{ "championcastles.ie", true },
{ "champions.co", true },
{ "championsofpowerfulliving.com", true },
+ { "championweb.co.nz", true },
+ { "championweb.com", true },
{ "championweb.com.au", true },
+ { "championweb.com.sg", true },
+ { "championweb.nz", true },
+ { "championweb.sg", true },
{ "champonthis.de", true },
{ "champserver.net", false },
+ { "chancekorte.com", true },
{ "chanddriving.co.uk", true },
{ "chandr1000.ga", true },
+ { "chang-feng.info", true },
{ "changecopyright.ru", true },
{ "changes.jp", true },
{ "changesfor.life", true },
{ "changethislater.com", true },
{ "channeladam.com", true },
- { "channellife.co.nz", true },
- { "channellife.com.au", 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 },
+ { "chaospott.de", true },
{ "chaosriftgames.com", true },
{ "chaoswars.ddns.net", true },
- { "chaotichive.com", true },
- { "chaoticlaw.com", true },
- { "chapelaria.tf", true },
{ "chapelfordbouncers.co.uk", true },
{ "chapiteauxduleman.fr", true },
{ "chaplain.co", true },
- { "charakato.com", true },
{ "charbonnel.eu", true },
{ "charcoal-se.org", true },
{ "charcoalvenice.com", true },
+ { "charge.co", false },
+ { "chargedmonkey.com", true },
{ "chargify.com", true },
+ { "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 },
@@ -6712,36 +7391,38 @@ 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 },
{ "charmingsaul.com", true },
{ "charmyadesara.com", true },
- { "charr.xyz", true },
- { "chars.ga", true },
+ { "chars.ga", false },
{ "charta-digitale-vernetzung.de", true },
{ "charteroak.org", true },
{ "chartkick.com", true },
{ "chartpen.com", true },
{ "chartsy.de", true },
- { "charuru.moe", true },
- { "chasafilli.ch", true },
+ { "chartwellestate.com", true },
+ { "charuru.moe", false },
+ { "chascrazycreations.com", true },
{ "chaseandzoey.de", true },
{ "chasetrails.co.uk", true },
+ { "chat-house-adell.com", true },
{ "chat-libera.org", true },
{ "chat-senza-registrazione.net", true },
{ "chat.cz", true },
{ "chat2.cf", true },
{ "chat40.net", true },
{ "chatbelgie.eu", true },
- { "chatbot.one", true },
- { "chatbotclic.com", true },
- { "chatbotclick.com", true },
{ "chatbots.systems", true },
{ "chatear.social", true },
- { "chateau-belvoir.com", true },
{ "chateau-de-lisle.fr", true },
{ "chateaudestrainchamps.com", true },
{ "chatfacile.org", true },
+ { "chatforskning.no", true },
+ { "chatgrape.com", true },
+ { "chatint.com", true },
{ "chatitaly.org", true },
{ "chatme.im", false },
{ "chatnederland.eu", true },
@@ -6751,28 +7432,28 @@ 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 },
- { "chatxp.com", true },
{ "chatxsingle.net", true },
{ "chatxtutti.com", true },
{ "chatzimanolis.com", true },
{ "chatzimanolis.gr", true },
+ { "chauffage-budget.fr", true },
{ "chaurocks.com", true },
{ "chaussenot.net", true },
- { "chaverde.org", true },
{ "chavetaro.com", true },
- { "chaz6.com", true },
{ "chazalet.fr", true },
{ "chazay.net", false },
- { "chazgie.se", true },
+ { "chbk.co", true },
{ "chbs.me", true },
{ "chch.it", true },
+ { "chci-web.cz", true },
{ "chcoc.gov", true },
{ "chcsct.com", true },
{ "chd-expert.fr", true },
- { "chdgaming.xyz", true },
+ { "cheap-colleges.com", true },
{ "cheapalarmparts.com.au", true },
{ "cheapcaribbean.com", true },
{ "cheapessay.net", true },
@@ -6791,15 +7472,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cheapiesystems.com", true },
{ "cheapssl.com.tr", true },
{ "cheapticket.in", true },
- { "cheapwritinghelp.com", true },
+ { "cheatengine.pro", true },
{ "check.torproject.org", false },
{ "checkecert.nl", true },
- { "checkmateshoes.com", false },
+ { "checkjelinkje.nl", true },
{ "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 },
@@ -6812,60 +7496,68 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cheekymonkeysinflatables.co.uk", true },
{ "cheela.org", true },
{ "cheeseemergency.co.uk", true },
- { "cheesefusion.com", true },
- { "cheesehosting.net", true },
{ "cheetahwerx.com", true },
{ "cheez.systems", true },
{ "cheezflix.uk", true },
+ { "chefwear.com", true },
{ "chehalemgroup.com", true },
{ "cheladmin.ru", true },
- { "chelema.xyz", true },
{ "cheltenhambounce.co.uk", true },
{ "cheltenhambouncycastles.co.uk", true },
{ "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 },
+ { "chenzhipeng.com.cn", true },
{ "cheolguso.com", true },
{ "cherevoiture.com", true },
{ "cherie-belle.com", true },
- { "cherrett.digital", true },
{ "cherry-green.ch", true },
+ { "cherrybread.net", true },
{ "cherryonit.com", true },
{ "cherrywoodtech.com", true },
{ "chertseybouncycastles.co.uk", true },
+ { "chesapeakebaychristmas.com", true },
+ { "chess.com", true },
+ { "chessboardao.com", true },
+ { "chesscoders.com", true },
+ { "chesskid.com", true },
{ "chesspoint.ch", true },
+ { "chesterlestreetasc.co.uk", false },
+ { "chestnut.cf", true },
+ { "chetwood.se", true },
{ "chevy37.com", true },
{ "chevymotor-occasions.be", true },
{ "chewey.de", true },
{ "chewey.org", true },
- { "chez-janine.de", true },
+ { "chewingucand.com", true },
{ "chez-oim.org", true },
{ "chez.moe", true },
{ "chfr.search.yahoo.com", false },
{ "chhory.com", true },
- { "chhy.at", true },
{ "chiaraiuola.com", false },
- { "chiaramail.com", true },
{ "chiaseeds24.com", true },
{ "chiboard.co", true },
+ { "chibr.eu", true },
{ "chic-leather.com", true },
+ { "chicagoemergencyclosings.com", true },
{ "chicagolug.org", true },
{ "chicagostudentactivists.org", true },
{ "chicisimo.com", true },
{ "chicolawfirm.com", true },
{ "chiemgauflirt.de", true },
{ "chif16.at", true },
- { "chikan-beacon.net", true },
- { "chikatomo-ryugaku.com", true },
{ "chikazawa.info", true },
- { "chikory.com", true },
{ "childcare.gov", true },
{ "childcounseling.org", true },
{ "childcustodylegalaid.org", true },
@@ -6880,27 +7572,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "childvisitationassistance.org", true },
{ "childwelfare.gov", true },
{ "chilihosting.eu", true },
+ { "chilimath.com", true },
+ { "chilimathwords.com", true },
{ "chilio.net", true },
{ "chillebever.nl", true },
- { "chilli943.info", true },
{ "chima.net", true },
{ "chima.us", true },
{ "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 },
{ "chinwag.org", true },
- { "chipcore.com", true },
+ { "chipcore.com", false },
+ { "chipglobe.com", true },
{ "chippy.ch", false },
- { "chiralsoftware.com", true },
+ { "chips-scheduler.de", true },
+ { "chipset.no", true },
{ "chireiden.net", true },
{ "chiro-neuchatel.ch", true },
+ { "chiropractic.gr", true },
{ "chiropracticwpb.com", true },
{ "chiropraktik-riemann.de", true },
{ "chiropraticien-neuchatel.ch", true },
@@ -6913,45 +7608,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chitoku.jp", false },
{ "chksite.com", true },
{ "chl.la", true },
- { "chloeallison.co.uk", true },
- { "chloehorler.com", 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 },
+ { "chocolat.work", true },
{ "chocolatesandhealth.com", true },
{ "chocolatier-tristan.ch", true },
- { "chocotough.nl", false },
- { "chodocu.com", true },
- { "choe.fi", true },
- { "choisirmonerp.com", true },
+ { "chocolytech.info", true },
+ { "chocotough.nl", true },
+ { "choiceautoloan.com", true },
{ "chokladfantasi.net", true },
- { "chollima.pro", true },
+ { "chomp.life", true },
{ "chon.io", true },
{ "chonghe.org", true },
{ "chook.as", true },
- { "choootto.club", true },
+ { "choootto.net", true },
{ "choosemypc.net", true },
+ { "chopperdesign.com", true },
{ "chorkley.co.uk", true },
{ "chorkley.com", true },
{ "chorkley.uk", true },
- { "chorleiterverband.de", true },
{ "chorpinkpoemps.de", true },
{ "chosenplaintext.org", true },
+ { "chotlo.com", true },
{ "chourishi-shigoto.com", true },
+ { "chovancova.sk", true },
{ "chowii.com", true },
+ { "choyri.com", true },
+ { "chr0me.sh", true },
{ "chris-edwards.net", true },
+ { "chrisahrweileryoga.com", true },
{ "chrisaitch.com", true },
{ "chrisb.me", true },
{ "chrisb.xyz", true },
{ "chrisbryant.me.uk", true },
{ "chrisburnell.com", true },
{ "chriscarey.com", true },
+ { "chriscowley.me.uk", true },
{ "chrisdecairos.ca", true },
{ "chrisirwin.ca", true },
{ "chrisjean.com", true },
@@ -6962,7 +7662,9 @@ 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 },
@@ -6970,23 +7672,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "christensenplace.us", true },
{ "christerwaren.fi", true },
{ "christiaanconover.com", true },
+ { "christian-fischer.pictures", true },
+ { "christian-folini.ch", true },
{ "christian-gredig.de", true },
{ "christian-host.com", true },
{ "christian-liebel.com", true },
{ "christian-stadelmann.de", true },
{ "christianbargon.de", false },
{ "christiancleva.com", true },
+ { "christiancoleman.info", true },
{ "christianfaq.org", true },
{ "christianforums.com", true },
{ "christiangehring.org", true },
{ "christianillies.de", true },
{ "christianjens.com", true },
{ "christianliebel.com", true },
+ { "christianlis.org.uk", true },
+ { "christianlis.uk", true },
{ "christianpeltier.com", true },
{ "christianpilgrimage.com.au", true },
{ "christians.dating", true },
- { "christianscholz.de", true },
- { "christianscholz.eu", true },
+ { "christianscholz.de", false },
{ "christiehawkes.com", true },
{ "christiesantiques.com", true },
{ "christmascard.be", true },
@@ -6994,14 +7700,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "christoph-conrads.name", true },
{ "christophbartschat.com", true },
{ "christopher-simon.de", true },
+ { "christopher.sh", true },
{ "christopherandcharlotte.uk", true },
{ "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 },
@@ -7014,26 +7723,30 @@ 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 },
+ { "chrystajewelry.com", true },
+ { "chshouyu.com", true },
{ "chsterz.de", true },
- { "chua.family", true },
{ "chuchote-moi.fr", true },
{ "chuck.ovh", true },
+ { "chuill.com", true },
{ "chun.pro", true },
{ "chunche.net", true },
{ "chunk.science", true },
{ "chupadelfrasco.com", true },
- { "churchlinkpro.com", true },
+ { "chuppa.com.au", true },
+ { "churchofsaintrocco.org", true },
+ { "churchofscb.org", true },
{ "churchthemes.com", true },
{ "churchwebcanada.ca", true },
{ "churchwebsupport.com", true },
{ "churningtracker.com", true },
- { "chxdf.net", true },
+ { "chybeck.net", true },
{ "chyen.cc", true },
{ "chytraauta.cz", true },
{ "chziyue.com", true },
@@ -7041,47 +7754,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ci-suite.com", true },
{ "ci5.me", true },
{ "ciancode.com", true },
+ { "ciania.pl", true },
{ "cianmawhinney.me", true },
{ "ciansc.com", true },
+ { "ciaracode.com", true },
{ "ciat.no", false },
- { "cidadedopoker.com.br", true },
+ { "cibercactus.com", true },
+ { "cica.es", true },
{ "cidbot.com", true },
- { "ciderclub.com", true },
{ "cidersus.com.ec", true },
{ "cie-theatre-montfaucon.ch", true },
+ { "ciel.pro", true },
{ "cielbleu.org", true },
{ "cielly.com", true },
+ { "cierreperimetral.com", true },
{ "cifop-numerique.fr", true },
+ { "ciftlikesintisi.com", true },
{ "cig-dem.com", true },
{ "cigar-cartel.com", true },
- { "cigarterminal.com", false },
{ "cilloc.be", true },
{ "cima-idf.fr", true },
+ { "cimbalino.org", true },
{ "cimballa.com", true },
{ "cimfax.com", true },
{ "cinafilm.com", true },
- { "cinay.pw", true },
- { "cindey.io", true },
+ { "cindydudley.com", true },
{ "cine-music.de", true },
{ "cine.to", true },
{ "cinefilzonen.se", true },
- { "cinelite.club", true },
- { "cinema5.ru", false },
+ { "cinefun.net", true },
{ "cinemarxism.com", true },
+ { "cinemasetfree.com", true },
{ "cinemysticism.com", true },
{ "cineplex.my", true },
- { "ciner.is", true },
{ "cinnabon.com", true },
{ "cinq-elements.com", true },
{ "cinq-elements.fr", true },
{ "cinq-elements.net", true },
{ "cinsects.de", true },
- { "cintactimber.com", true },
{ "cinteo.com", true },
{ "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 },
@@ -7094,38 +7809,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cipri.nl", true },
{ "cipri.org", true },
{ "cipria.no", true },
- { "cipriano.nl", true },
{ "cipy.com", true },
{ "cir.is", true },
+ { "circady.com", true },
{ "circara.com", true },
{ "circle-people.com", true },
{ "circu.ml", true },
{ "circulatedigital.com", true },
{ "circule.cc", true },
- { "cirfi.com", true },
{ "ciri.com.co", true },
- { "cirope.com", true },
{ "cirrus0.de", true },
- { "cirugiasplasticas.com.mx", true },
- { "cirujanooral.com", true },
{ "cirurgicagervasio.com.br", true },
{ "cirurgicalucena.com.br", true },
- { "ciscodude.net", true },
+ { "cirurgicasalutar.com.br", true },
+ { "cirurgicavirtual.com.br", true },
+ { "cisa.gov", 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 },
+ { "citfin.cz", true },
{ "cities.cl", true },
{ "citimarinestore.com", true },
{ "citizen-cam.de", true },
{ "citizensbankal.com", true },
{ "citizenscience.gov", false },
+ { "citizenscience.org", true },
+ { "citizenslasvegas.com", true },
{ "citizensleague.org", true },
{ "citizenspact.eu", true },
{ "citizing.org", true },
- { "citroner.blog", true },
{ "citrusui.me", true },
{ "cittadesign.com", false },
{ "citton.com.br", true },
@@ -7133,19 +7850,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "city-walks.info", true },
{ "citya.com", true },
{ "citybeat.de", true },
+ { "citycreek.studio", true },
+ { "cityextra.com.au", true },
+ { "cityfloorsupply.com", true },
{ "citylights.eu", true },
{ "citymoobel.ee", true },
{ "cityoftitans.com", true },
- { "cityoftitansmmo.com", true },
{ "citysportapp.com", true },
{ "cityworksonline.com", true },
{ "ciubotaru.tk", true },
- { "civicunicorn.com", true },
- { "civicunicorn.us", true },
+ { "ciurcasdan.eu", true },
+ { "civicforum.pl", true },
+ { "civilbikes.com", true },
{ "civilg20.org", true },
{ "civillines.nl", true },
+ { "civiltoday.com", true },
{ "cj-espace-vert.fr", true },
{ "cj-jackson.com", true },
+ { "cjdby.net", true },
+ { "cjdpenterprises.com", true },
+ { "cjdpenterprises.com.au", true },
+ { "cjean.fr", true },
{ "cjey.me", true },
{ "cjhzp.net", true },
{ "cjr.host", true },
@@ -7164,17 +7889,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ckostecki.de", true },
{ "cktennis.com", true },
{ "cl.search.yahoo.com", false },
- { "clad.cf", true },
+ { "cl0ud.space", true },
{ "claimconnect.com", true },
{ "claimconnect.us", true },
{ "claimjeidee.be", true },
{ "claimnote.com", true },
{ "clairegold.com", true },
{ "clairescastles.co.uk", true },
+ { "clamofon.com", true },
{ "clanebouncycastles.com", true },
{ "clangwarnings.com", true },
{ "clanrose.org.uk", true },
- { "clanthor.com", true },
{ "clanwarz.com", true },
{ "clarkeaward.com", true },
{ "clarkwinkelmann.com", true },
@@ -7183,13 +7908,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "class.com.au", true },
{ "classdojo.com", true },
{ "classicalpilates.ca", true },
- { "classics.io", true },
{ "classictheatrecumbria.co.uk", true },
{ "classpoint.cz", true },
{ "classroom.google.com", true },
{ "classroomconductor.com", true },
{ "classroomcountdown.co.nz", true },
{ "classteaching.com.au", true },
+ { "classyvaper.de", true },
+ { "claster.it", true },
{ "claude-leveille.com", true },
{ "claude.tech", true },
{ "claudia-urio.com", true },
@@ -7198,27 +7924,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clawe.de", true },
{ "clawhammer.dk", true },
{ "clayandcottonkirkwood.com", true },
+ { "claygregory.com", true },
+ { "clayprints.com", true },
{ "claytonstowing.com.au", true },
{ "clazzrooms.com", true },
{ "cldfile.com", true },
{ "cldly.com", true },
- { "cleanbeautymarket.com.au", true },
+ { "cleanapproachnw.com", 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 },
{ "clearblueday.co.uk", true },
+ { "clearbookscdn.uk", true },
{ "clearbreezesecuritydoors.com.au", true },
+ { "clearer.cloud", true },
{ "clearip.com", true },
{ "clearkonjac.com", true },
{ "clearsettle-admin.com", true },
+ { "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 },
@@ -7227,10 +7963,10 @@ 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 },
- { "clickforclever.com", true },
- { "clickomobile.com", true },
+ { "clickingmad.com", true },
{ "clickphish.com", true },
{ "clicksaveandprint.com", true },
{ "clien.net", true },
@@ -7238,44 +7974,38 @@ 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 },
{ "clindoeilmontagne.com", true },
{ "clingout.com", true },
{ "clinicadam.com", true },
- { "clinicadelogopedia.net", true },
{ "clinicalrehabilitation.info", true },
{ "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 },
- { "clorik.com", true },
{ "clorophilla.net", true },
{ "closeli.cn", true },
{ "closelinksecurity.co.uk", true },
{ "closelinksecurity.com", true },
{ "closetemail.com", true },
- { "cloturea.fr", true },
- { "cloud-surfer.net", true },
+ { "cloud-surfer.net", false },
{ "cloud.bugatti", true },
{ "cloud.fail", true },
{ "cloud.google.com", true },
@@ -7284,14 +8014,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloud9bouncycastlehire.com", true },
{ "cloudapps.digital", true },
{ "cloudbolin.es", true },
- { "cloudbreaker.de", true },
{ "cloudbrothers.info", true },
{ "cloudcactuar.com", false },
{ "cloudcaprice.net", true },
+ { "cloudcert.org", 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 },
@@ -7299,23 +8029,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloudflareonazure.com", true },
{ "cloudia.org", true },
{ "cloudily.com", true },
- { "cloudimproved.com", true },
- { "cloudimprovedtest.com", true },
+ { "cloudkeep.nl", true },
{ "cloudkit.pro", false },
+ { "cloudland.club", true },
+ { "cloudlessdreams.com", true },
{ "cloudlight.biz", true },
- { "cloudmigrator365.com", true },
{ "cloudnote.cc", true },
{ "cloudns.net", true },
{ "cloudoptimizedsmb.com", true },
{ "cloudoptimus.com", true },
- { "cloudpagesforwork.com", true },
- { "cloudpebble.net", true },
- { "cloudpengu.in", true },
{ "cloudpipes.com", true },
+ { "cloudse.co.uk", true },
{ "cloudsecurityalliance.org", true },
{ "cloudservice.io", true },
{ "cloudservices.nz", true },
- { "cloudsocial.io", true },
+ { "cloudsign.jp", true },
{ "cloudspace-analytics.com", true },
{ "cloudspeedy.net", true },
{ "cloudspire.net", true },
@@ -7323,49 +8051,59 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloudtropia.de", true },
{ "cloudtskr.com", true },
{ "cloudup.com", true },
+ { "cloudwellmarketing.com", true },
{ "clouz.de", true },
{ "cloveros.ga", true },
{ "clownindeklas.nl", true },
{ "cloxy.com", true },
{ "clr3.com", true },
+ { "clsfoundationrepairandwaterproofing.com", true },
{ "clsimage.com", true },
{ "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 },
{ "club-is.ru", true },
+ { "club-premiere.com", true },
{ "club-reduc.com", true },
+ { "club-slow.jp", true },
+ { "club-yy.com", true },
{ "club103.ch", true },
+ { "clubcorsavenezuela.com", true },
{ "clubdelzapato.com", true },
{ "clubedalutashop.com", true },
{ "clubefiel.com.br", true },
{ "clubempleos.com", true },
{ "clubeohara.com", true },
{ "clubfamily.de", true },
+ { "clubgalaxy.futbol", false },
{ "clubiconkenosha.com", true },
{ "clubmate.rocks", true },
{ "clubmini.jp", true },
{ "clubnoetig-ink2g.de", true },
{ "clubon.space", true },
- { "clubscannan.ie", true },
- { "clueful.ca", true },
- { "cluefulca.com", true },
- { "cluefulca.net", true },
- { "cluefulca.org", true },
+ { "cluster.biz.tr", true },
{ "clusteranalyse.net", true },
{ "clusterfuck.nz", true },
{ "clustermaze.net", true },
{ "clweb.ch", true },
+ { "cm.center", true },
{ "cmacacias.ch", true },
{ "cmadeangelis.it", true },
- { "cmahy.be", true },
+ { "cmc.pt", true },
+ { "cmcelectrical.com", 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 },
+ { "cmitao.com", true },
{ "cmlachapelle.ch", true },
{ "cmlancy.ch", true },
{ "cmlignon.ch", true },
@@ -7374,31 +8112,31 @@ 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 },
+ { "cmv.gr", true },
{ "cmylife.nl", true },
{ "cn.search.yahoo.com", false },
{ "cn8522.com", true },
{ "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 },
+ { "cnnet.in", true },
{ "cnre.eu", true },
+ { "cnvt.fr", true },
{ "co-factor.ro", true },
{ "co-founder-stuttgart.de", true },
{ "co.search.yahoo.com", false },
{ "co50.com", true },
- { "coa.one", true },
{ "coachezmoi.ch", true },
{ "coachfederation.ro", true },
{ "coaching-impulse.ch", true },
@@ -7410,9 +8148,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coathangastrangler.com", true },
{ "coathangerstrangla.com", true },
{ "coathangerstrangler.com", true },
- { "coatl-industries.com", true },
+ { "coatl-industries.com", false },
+ { "coatsandcocktails.org", true },
{ "cobalt.io", true },
{ "cobaltgp.com", true },
+ { "cobaltis.co.uk", true },
{ "cobracastles.co.uk", true },
{ "cocaine-import.agency", true },
{ "cocaine.ninja", true },
@@ -7425,19 +8165,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coco-line.ch", true },
{ "cocoaheads.at", false },
{ "cocoamexico.com", true },
- { "cocodemy.com", true },
{ "cocodroid.com", true },
{ "coconutoil24.com", true },
{ "cocoscastles.co.uk", true },
{ "cocquyt-usedcars.be", true },
{ "cocubes.com", true },
- { "cocyou.ooo", true },
{ "coda.io", true },
{ "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-vikings.de", true },
{ "code-well.com", true },
{ "code.facebook.com", false },
{ "code.fm", true },
@@ -7446,14 +8187,20 @@ 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 },
+ { "codehz.one", true },
+ { "codein.ca", true },
{ "codeine.co.uk", true },
{ "codeit.guru", true },
{ "codeit.us", true },
+ { "codejots.com", true },
+ { "codemill.se", true },
{ "codemonster.eu", true },
{ "codenode.io", true },
{ "codeofthenorth.com", true },
@@ -7462,17 +8209,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codepult.com", true },
{ "codera.co.uk", true },
{ "codercross.com", true },
- { "codercy.com", true },
{ "codereview.appspot.com", false },
{ "codereview.chromium.org", false },
- { "coderhangout.com", true },
{ "coderme.com", true },
- { "codersbistro.com", true },
+ { "codersbase.org", true },
+ { "coderware.co.uk", true },
{ "codes.pk", true },
{ "codesplain.in", true },
{ "codesport.io", true },
{ "codespromo.be", true },
- { "codestep.io", true },
{ "codestudies.net", true },
{ "codesyncro.com", true },
{ "codetheworld.com", true },
@@ -7480,34 +8225,43 @@ 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 },
+ { "codexpo.net", true },
{ "codeyellow.nl", true },
{ "codific.com", true },
{ "codific.eu", true },
{ "codigo-bonus-bet.es", true },
{ "codigodelbonusbet365.com", true },
+ { "codigosddd.com.br", true },
{ "coding-minds.com", true },
{ "coding.lv", true },
{ "coding.net", true },
{ "codingforspeed.com", true },
{ "codingfromhell.net", true },
+ { "codinginfinity.me", true },
{ "codingrobots.com", true },
{ "codxg.org", true },
{ "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 },
- { "coffeetocode.me", true },
+ { "coffeetime.fun", 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 },
+ { "cogsquad.house", true },
{ "coi-verify.com", true },
{ "coiffeurschnittstelle.ch", true },
{ "coigach-assynt.org", true },
@@ -7519,19 +8273,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coinbit.trade", true },
{ "coincealed.com", true },
{ "coinchat.im", true },
- { "coincoele.com.br", true },
{ "coincoin.eu.org", true },
{ "coincolors.co", true },
- { "coindatabase.net", true },
- { "coinessa.com", 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 },
{ "cojam.ru", true },
@@ -7541,17 +8294,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "colaborativa.tv", true },
{ "colapsys.net", true },
{ "colasjourdain.fr", true },
- { "coldaddy.com", true },
- { "coldawn.com", false },
+ { "coldcardwallet.com", true },
{ "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 },
@@ -7571,21 +8323,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "collabornation.net", true },
{ "collaction.hk", true },
{ "collada.org", true },
- { "collbox.co", true },
{ "collectdocs.com", true },
{ "collectfood.com", true },
+ { "collectiblebeans.com", true },
{ "collectivesupply.com", true },
{ "collectorknives.net", true },
{ "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 },
{ "collinmbarrett.com", true },
- { "colo-tech.com", true },
+ { "cololi.moe", true },
{ "colombian.dating", true },
{ "coloppe.com", true },
{ "coloraid.net", true },
@@ -7594,19 +8346,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "colorcodedlyrics.com", true },
{ "colorectalcompounding.com", true },
{ "colorfuldots.com", true },
+ { "colorguni.com", true },
{ "colorhexa.com", true },
- { "coloringnotebook.com", true },
{ "coloristcafe.com", true },
- { "colorlifesupport.com", true },
{ "colorsbycarin.com", true },
{ "colossal-events.co.uk", true },
+ { "colotimes.com", true },
{ "colourfulcastles.co.uk", true },
{ "colpacpackaging.com", true },
+ { "colpatriaws.azurewebsites.net", true },
{ "colson-occasions.be", true },
+ { "coltellisurvival.com", true },
+ { "coltonrb.com", true },
{ "columbuswines.com", true },
{ "colyakootees.com", true },
{ "com-in.de", true },
{ "comalia.com", true },
+ { "comame.xyz", true },
+ { "comandofilmes.club", true },
{ "comarkinstruments.net", true },
{ "combatircelulitis.com", true },
{ "combattrecellulite.com", true },
@@ -7614,42 +8371,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "combron.co.uk", true },
{ "combron.com", true },
{ "combron.nl", true },
- { "comchezmeme.com", true },
{ "comcol.nl", true },
- { "comdotgame.com", true },
{ "comdurav.com", true },
+ { "comeals.com", true },
+ { "comefollowme2016.com", true },
+ { "comeoishii.com", true },
{ "comercialtpv.com", true },
{ "comerford.net", true },
{ "comestoarra.com", true },
- { "cometbot.cf", true },
{ "cometcache.com", true },
{ "cometonovascotia.ca", true },
- { "cometrueunlimited.com", true },
+ { "comevius.com", true },
+ { "comevius.org", true },
+ { "comevius.xyz", true },
{ "comff.net", true },
{ "comfintouch.com", true },
{ "comflores.com.br", true },
{ "comfortmastersinsulation.com", true },
+ { "comfun.net", true },
{ "comhack.com", true },
{ "comicspornos.com", true },
+ { "comicspornow.com", true },
{ "comicspornoxxx.com", true },
{ "comicwiki.dk", true },
{ "comidasperuanas.net", true },
{ "comiteaintriathlon.fr", true },
{ "comm.cx", true },
+ { "commania.co.kr", true },
{ "commco.nl", true },
{ "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 },
+ { "communitymanagertorrejon.com", true },
{ "communote.net", true },
{ "como-se-escribe.com", true },
+ { "comocurarlagastritis24.online", true },
{ "comocurarlagastritistratamientonatural.com", true },
{ "comodesinflamarlashemorroides.org", true },
{ "comodo.nl", true },
@@ -7657,21 +8423,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "comodosslstore.com", true },
{ "comoeliminarlaspapulasperladasenelglande.com", true },
{ "comogene.com", true },
+ { "comohacerblog.net", true },
{ "comohacerelamoraunhombrenet.com", true },
{ "comohacerpara.com", true },
{ "comoimportar.net", true },
{ "comopuededejardefumar.net", true },
{ "comoquitarlacaspa24.com", true },
{ "comoquitarlasestriasrapidamente.com", true },
- { "comorecuperaratumujerpdf.com", true },
{ "comosatisfaceraunhombreenlacamaydejarloloco.com", true },
{ "comosecarabarriga.net", true },
{ "comoseduzir.net", true },
+ { "comosefazisto.com.br", true },
{ "comp2go.com.au", true },
+ { "compactchess.cc", true },
{ "compagnia-buffo.de", true },
{ "compagniemartin.com", true },
{ "comparatif-moto.fr", true },
- { "compareandrecycle.com", false },
+ { "compareandrecycle.co.uk", true },
{ "compareinsurance.com.au", true },
{ "comparesoft.com", true },
{ "comparexcloudcenter.com", true },
@@ -7684,41 +8452,52 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "comphare.nl", true },
{ "compibus.fr", true },
{ "compilenix.org", true },
+ { "compleetondernemen.nl", true },
{ "completefloorcoverings.com", true },
{ "completesecurityessex.co.uk", true },
{ "completesecurityessex.com", true },
{ "completionist.me", true },
{ "complexart.ro", true },
- { "complexsystems.fail", true },
+ { "complexorganizations.com", true },
{ "compliance-management.ch", true },
+ { "compliance-systeme.de", true },
{ "compliancedictionary.com", true },
{ "compliancerisksoftware.co.uk", true },
{ "compostatebien.com.ar", true },
{ "compoundingrxusa.com", true },
{ "compraneta.com", false },
+ { "compraporinternet.online", true },
+ { "comprarimpresoras-3d.com", true },
+ { "comprasoffie.com.br", true },
{ "compreautomacao.com.br", true },
{ "compree.com", true },
- { "compromised.com", true },
- { "compsmag.com", true },
+ { "compservice.in.ua", true },
+ { "comptrollerofthecurrency.gov", 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 },
- { "computeracademy.co.za", true },
+ { "computer-menschen.de", true },
+ { "computer-science-schools.com", true },
{ "computerassistance.co.uk", true },
{ "computerbas.nl", true },
{ "computerbase.de", true },
+ { "computercamaccgi.com", true },
+ { "computeremergency.com.au", false },
+ { "computerfreunde-barmbek.de", true },
{ "computerhilfe-feucht.de", true },
{ "computernetwerkwestland.nl", true },
{ "computerslotopschool.nl", true },
{ "computersystems.guru", false },
- { "comssa.org.au", true },
+ { "computop.com", true },
+ { "comtily.com", true },
{ "comunidadmontepinar.es", true },
- { "comw.cc", true },
+ { "comvos.de", true },
{ "conalcorp.com", true },
+ { "conatus.ai", true },
{ "conaudisa.com", false },
{ "concept-web.ch", true },
{ "concertengine.com", true },
@@ -7726,6 +8505,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "concertsenboite.fr", true },
{ "concertsto.com", true },
{ "conciliumnotaire.ca", true },
+ { "concordsoftwareleasing.com", true },
+ { "concretelevelingsystems.com", true },
{ "concreterepairatlanta.com", true },
{ "concursopublico.com.br", true },
{ "concursos.com.br", true },
@@ -7747,24 +8528,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "conejovalleylandscapelighting.com", true },
{ "conejovalleylighting.com", true },
{ "conejovalleyoutdoorlighting.com", true },
+ { "conexiontransporte.com", true },
+ { "conference.dnsfor.me", true },
{ "confiancefoundation.org", true },
- { "confidential.network", true },
{ "config.schokokeks.org", false },
{ "confiwall.de", true },
- { "conflux.tw", true },
{ "conformax.com.br", true },
- { "conformist.jp", true },
- { "confuddledpenguin.com", true },
- { "cong5.net", true },
{ "congineer.com", true },
{ "congobunkering.com", true },
{ "conju.cat", true },
{ "conjugacao.com.br", true },
- { "conkret.ch", true },
{ "conkret.de", true },
- { "conkret.mobi", true },
{ "conmedapps.com", true },
+ { "conn.cx", true },
{ "connect-ed.network", true },
+ { "connect-me.com", true },
{ "connect.dating", true },
{ "connect.facebook.net", true },
{ "connecta.store", true },
@@ -7774,21 +8552,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "connectmy.car", true },
{ "connecto-data.com", true },
{ "connectum.eu", true },
+ { "conner.work", true },
{ "connexas.eu", true },
{ "connext.de", true },
{ "connictro.de", true },
- { "conniesacademy.com", true },
+ { "connorhatch.com", true },
{ "connorsmith.co", true },
{ "connyduck.at", true },
- { "conocimientosdigitales.com", true },
+ { "conociendosalama.com", true },
+ { "conorboyd.info", true },
{ "conory.com", true },
+ { "conpath.net", true },
{ "conpins.nl", true },
{ "conrad-kostecki.de", true },
{ "conradkostecki.de", true },
- { "consciousbrand.co", true },
+ { "conradsautotransmissionrepair.com", true },
+ { "conrail.blue", true },
+ { "consagracionamariasantisima.org", true },
{ "consciouschoices.net", true },
+ { "consciousnesschange.com", true },
{ "consec-systems.de", true },
- { "conseil-gli.fr", true },
+ { "consegnafioridomicilio.net", true },
{ "consejosdenutricion.com", true },
{ "consensoprivacy.it", true },
{ "conservados.com.br", true },
@@ -7801,17 +8585,25 @@ 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 },
- { "construct-trust.com", 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 },
+ { "consultanta-in-afaceri.ro", 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 },
{ "consumeractionlawgroup.com", true },
@@ -7820,10 +8612,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "consuwijzer.nl", true },
{ "contactsingapore.sg", true },
{ "contaquanto.com.br", true },
+ { "contemplativeeducation.org", true },
{ "content-api-dev.azurewebsites.net", false },
- { "content-design.de", true },
{ "contentcoms.co.uk", true },
- { "contentdesign.de", true },
{ "contentpass.net", true },
{ "contessa32experience.com", true },
{ "contextplatform.com", true },
@@ -7839,8 +8630,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "controlautocom.com.br", true },
{ "controlbooth.com", true },
{ "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 },
@@ -7848,8 +8639,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "conversiones.com", true },
{ "conversionsciences.com", true },
{ "convert.im", true },
- { "convert.zone", true },
- { "converter.ml", true },
{ "converticacommerce.com", false },
{ "convexset.org", true },
{ "convocatoriafundacionpepsicomexico.org", false },
@@ -7862,7 +8651,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cookiecrook.com", true },
{ "cookielab.io", true },
{ "cookiesoft.de", true },
- { "cookingbazart.com", true },
+ { "cooking-sun.com", true },
{ "cookingcrusade.com", true },
{ "cookinglife.nl", false },
{ "cookingreporter.com", true },
@@ -7872,47 +8661,52 @@ 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 },
{ "coor.fun", true },
{ "coore.jp", true },
{ "coorpacademy.com", true },
{ "copdfoundation.org", true },
{ "copinstant.com", true },
- { "copperhead.co", true },
+ { "copperandtileroofing.com", true },
{ "copperheados.com", true },
+ { "coppermein.co.za", true },
{ "copplaw.com", true },
- { "coptic-treasures.com", true },
+ { "copta-imagefilme-und-drohnenvideos.de", true },
{ "coptkm.cz", true },
{ "copycaught.co", true },
{ "copycaught.net", true },
{ "copycaught.org", true },
{ "copycaught.xyz", true },
{ "copycrafter.net", true },
+ { "copydz.com", true },
{ "copypoison.com", true },
{ "copyright-watch.org", true },
- { "copytrack.com", true },
+ { "coquibus.net", true },
{ "corbi.net.au", true },
+ { "cordejong.nl", true },
{ "cordep.biz", true },
{ "corder.tech", true },
{ "cordeydesign.ch", true },
{ "cordis.io", true },
{ "cordis.tk", true },
{ "cordlessdog.com", true },
- { "core-concepts.de", true },
+ { "core-concepts.de", false },
{ "core-networks.de", true },
{ "core.mx", true },
- { "core.org.pt", false },
+ { "core.org.pt", true },
{ "coreapm.org", true },
{ "corecodec.com", true },
{ "coredump.gr", true },
@@ -7920,11 +8714,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "corelia.net", true },
{ "corepartners.com.ua", true },
{ "coresolutions.ca", true },
- { "coresos.com", true },
{ "coreum.ca", true },
{ "coreyjmahler.com", true },
- { "corgi.party", true },
{ "coribi.com", true },
+ { "corinastefan.ro", true },
{ "corintech.net", true },
{ "corisu.co", true },
{ "corkedwinebar.com", true },
@@ -7946,25 +8739,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "corpio.nl", true },
{ "corpkitnw.com", true },
{ "corpoflow.nl", true },
+ { "corporacioninternacionallideres.org", true },
{ "corporateclash.net", true },
{ "corporatecomputingsolutions.com", true },
{ "corporateinfluencers.com", true },
+ { "corporativoarval.info", true },
{ "corpsepaint.life", true },
{ "corpulant.coffee", true },
{ "corpulantcoffee.com", true },
{ "corpulent.coffee", true },
{ "corpulentcoffee.com", true },
+ { "corpuschristisouthriver.org", true },
{ "corpusslayer.com", true },
{ "corrbee.com", true },
+ { "correct.cf", true },
+ { "correcthorse.cf", true },
{ "correctiv.org", true },
+ { "corrick.io", true },
{ "corrupted.io", true },
{ "corsa-b.uk", true },
+ { "corscanplus.com", true },
{ "corsectra.com", true },
{ "corsihaccpsicurezzalavoro.it", true },
{ "cortexitrecruitment.com", true },
{ "cortexx.nl", true },
{ "cortis-consulting.ch", true },
{ "cortisolsupplement.com", true },
+ { "corvax.kiev.ua", true },
{ "corvus.eu.org", true },
{ "coryadum.com", true },
{ "corytyburski.com", true },
@@ -7977,49 +8778,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cosmeticappraisal.com", true },
{ "cosmeticasimple.com", true },
{ "cosmeticos-naturales.com", true },
- { "cosmeticosdelivery.com.br", true },
- { "cosmic-os.org", true },
{ "cosmicnavigator.com", true },
+ { "cosmintataru.ro", 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.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 },
+ { "country-creativ.de", true },
{ "countryattire.com", true },
{ "countrybrewer.com.au", true },
{ "countryfrog.uk", true },
{ "countryhouseresort.com", true },
- { "countryoutlaws.ca", true },
{ "countybankdel.com", true },
{ "countyjailinmatesearch.com", true },
{ "coupe-bordure.com", true },
+ { "couplay.org", true },
{ "couponcodesme.com", true },
{ "cour4g3.me", true },
{ "couragefound.org", true },
{ "coursables.com", true },
{ "coursera.org", true },
- { "courseworkbank.info", true },
{ "courtlistener.com", true },
{ "couscous.recipes", true },
- { "cousincouples.com", true },
+ { "cousincouples.com", false },
{ "coussinsky.net", true },
+ { "couvreur-hinault.fr", true },
{ "covbounce.co.uk", true },
{ "covenantoftheriver.org", true },
{ "covermytrip.com.au", true },
@@ -8031,17 +8839,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cowbird.org", true },
{ "cowboyim.com", true },
{ "coweo.cz", true },
+ { "cowo.group", true },
+ { "coworking-luzern.ch", 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 },
+ { "cpap.com", true },
+ { "cpasperdu.com", true },
{ "cpbapremiocaduceo.com.ar", true },
{ "cpcheats.co", true },
{ "cpd-education.co.uk", true },
+ { "cpe-colleg.de", true },
+ { "cpgarmor.com", true },
{ "cphpvb.net", true },
+ { "cplala.com", true },
{ "cplus.me", true },
{ "cplusplus.se", true },
{ "cppan.org", true },
@@ -8049,114 +8863,136 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cpqcol.gov.co", true },
{ "cprheartcenter.com", true },
{ "cprnearme.com", true },
+ { "cpsc.gov", true },
+ { "cpsq.fr", true },
{ "cptoon.com", true },
+ { "cpu.biz.tr", true },
{ "cpvmatch.eu", true },
{ "cpy.pt", true },
- { "cqchome.com", 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 },
+ { "crackers4cheese.com", true },
{ "crackle.io", true },
{ "crackorsquad.in", true },
+ { "crackslut.eu", true },
{ "crackstation.net", true },
{ "cradlepointecm.com", true },
{ "craft-verlag.de", true },
{ "craftandbuild.de", true },
{ "craftcommerce.com", true },
- { "craftinghand.com", true },
+ { "craftinghand.com", false },
{ "craftinginredlipstick.com", true },
{ "craftist.de", true },
{ "craftsmandruggets.com", true },
- { "craftwmcp.xyz", 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 },
{ "crawl.report", true },
+ { "crawler.ninja", true },
{ "crawleybouncycastles.co.uk", true },
{ "crawlspaceandbasementsolutions.com", true },
+ { "crazy-bulks.com", true },
+ { "crazy-cat.net", true },
{ "crazy-coders.com", true },
+ { "crazybulk.co.uk", true },
+ { "crazybulk.com", true },
+ { "crazybulk.de", true },
+ { "crazybulk.fr", true },
{ "crazycastles.ie", true },
{ "crazydomains.ae", true },
{ "crazydomains.co.nz", true },
{ "crazydomains.co.uk", true },
{ "crazydomains.com.au", true },
{ "crazydomains.in", true },
- { "crazyfamily11.de", true },
{ "crazymeeshu.com", true },
{ "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 },
{ "crea.bg", true },
{ "creadstudy.com", true },
+ { "crealogix-online.com", true },
{ "creamcastles.co.uk", true },
{ "creared.edu.co", true },
- { "create-ls.jp", true },
- { "create-together.nl", true },
+ { "createcos.com", true },
{ "createme.com.pl", true },
{ "createursdefilms.com", true },
{ "creatieven.com", true },
{ "creation-contemporaine.com", true },
- { "creations-edita.com", true },
- { "creative-coder.de", false },
{ "creative-wave.fr", true },
{ "creativebites.de", true },
{ "creativecaptiv.es", true },
- { "creativecommons.cl", true },
{ "creativecommons.gr", true },
{ "creativecommons.org", true },
{ "creativeconceptsvernon.com", true },
{ "creativedigital.co.nz", true },
{ "creativefolks.co.uk", true },
{ "creativefreedom.ca", true },
+ { "creativeglassgifts.com.au", true },
+ { "creativeground.com.au", true },
+ { "creativeimagery.com.au", true },
+ { "creativeink.de", true },
{ "creativekkids.com", true },
{ "creativelaw.eu", true },
{ "creativeliquid.com", true },
+ { "creativerezults.com", true },
{ "creativesprite.com", true },
{ "creativesurvey.com", true },
{ "creativeweb.biz", true },
{ "creativewolf.net", true },
- { "creativlabor.ch", true },
- { "creatixx-network.de", true },
+ { "creativosonline.org", true },
+ { "creatixx-network.de", false },
{ "creators-design.com", true },
- { "creators.co", true },
{ "creators.direct", true },
{ "creatujoya.com", true },
- { "crecips.com", true },
{ "credential.eu", true },
{ "credex.bg", true },
{ "credigo.se", true },
{ "crediteo.pl", true },
{ "creditkarma.com", true },
{ "creditos-rapidos.com", true },
+ { "creditozen.es", true },
+ { "creditozen.mx", true },
{ "creditproautos.com", false },
+ { "creditscoretalk.com", true },
+ { "creditta.com", true },
+ { "credittoken.io", true },
{ "creeks-coworking.com", true },
{ "creep.im", true },
- { "creepycraft.nl", true },
{ "creepypastas.com", true },
{ "creepypastas.net", true },
+ { "creer-une-boutique-en-ligne.com", true },
{ "creerunsitepro.com", true },
{ "crefelder.com", true },
{ "crem.in", false },
{ "cremepassion.de", true },
{ "crena.ch", true },
- { "creorin.com", true },
{ "crepa.ch", true },
{ "crepererum.net", true },
{ "crescent.gr.jp", true },
@@ -8164,48 +9000,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cretdupuy.com", true },
{ "creteangle.com", true },
{ "cretica.no", true },
- { "creusalp.ch", true },
{ "crew505.org", true },
- { "crge.eu", true },
+ { "crgalvin.com", true },
{ "crgm.net", true },
- { "criadorespet.com.br", true },
{ "cribcore.com", true },
- { "crickey.eu", true },
{ "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 },
- { "crip-usk.ba", true },
+ { "crinesdanzantes.be", true },
+ { "criptolog.com", true },
+ { "criscitos.it", 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 },
- { "croisieres.discount", true },
{ "croixblanche-haguenau.fr", true },
{ "cromefire.myds.me", true },
- { "cronberg.ch", true },
{ "croncron.io", true },
+ { "cronix.cc", true },
{ "cronologie.de", true },
{ "cronometer.com", true },
+ { "cronoscentral.be", true },
{ "cropdiagnosis.com", true },
- { "croquette.net", true },
{ "crosbug.com", true },
{ "crose.co.uk", true },
{ "cross-led-sign.com", true },
@@ -8222,11 +9055,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crossorig.in", true },
{ "crossoverit.com", true },
{ "crosssellguide.com", true },
+ { "crowd.supply", true },
{ "crowdbox.net", true },
{ "crowdcloud.be", true },
{ "crowdliminal.com", true },
+ { "crowdsim3d.com", true },
{ "crowdsupply.com", true },
- { "crowdwis.com", true },
+ { "crownaffairs.ch", true },
{ "crowncastles.co.uk", true },
{ "crownchessclub.com", true },
{ "crownmarqueehire.co.uk", true },
@@ -8235,9 +9070,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "croydonapartments.com.au", true },
{ "croydonbouncycastles.co.uk", true },
{ "crrev.com", true },
+ { "crsmsodry.cz", true },
{ "crstat.ru", true },
- { "crt.sh", true },
+ { "crt.cloud", true },
{ "crt2014-2024review.gov", true },
+ { "cruisemoab.com", true },
{ "crumbcontrol.com", true },
{ "crunchrapps.com", true },
{ "crunchy.rocks", true },
@@ -8245,20 +9082,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crute.me", true },
{ "crvv.me", true },
{ "cry.nu", false },
+ { "cryogenix.net", true },
{ "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-armory.com", true },
- { "crypto-navi.org", true },
{ "crypto.cat", false },
{ "crypto.graphics", true },
{ "crypto.is", false },
- { "cryptobells.com", false },
{ "cryptobin.co", true },
{ "cryptocon.org", true },
{ "cryptoegg.ca", true },
@@ -8268,17 +9105,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cryptography.io", true },
{ "cryptoguidemap.com", true },
{ "cryptoisnotacrime.org", true },
+ { "cryptojacks.io", true },
{ "cryptojourney.com", true },
{ "cryptolinc.com", true },
{ "cryptology.ch", true },
+ { "cryptolosophy.io", true },
{ "cryptolosophy.org", true },
- { "cryptonom.org", true },
+ { "cryptomaniaks.com", 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 },
@@ -8286,14 +9124,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cryptract.co", true },
{ "crys.cloud", true },
{ "crys.hu", true },
+ { "crystal-zone.com", true },
{ "crystalapp.ca", true },
{ "crystalchandelierservices.com", true },
{ "crystalgrid.net", true },
+ { "crystaloscillat.com", true },
+ { "crystalzoneshop.com", true },
{ "crystone.me", true },
{ "cryz.ru", true },
{ "cs2016.ch", true },
{ "csabg.org", true },
- { "csbgtribalta.com", true },
+ { "csacongress.org", true },
{ "csbs.fr", true },
{ "csbuilder.io", true },
{ "csca.me", true },
@@ -8301,64 +9142,72 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "csd-sevnica.si", true },
{ "csfcloud.com", true },
{ "csfd.cz", true },
- { "csfloors.co.uk", true },
{ "csfm.com", true },
- { "csgo.su", true },
- { "csgogamers.com", false },
- { "csgohandouts.com", true },
+ { "csgo.design", true },
+ { "csgo.su", false },
{ "csgoswap.com", true },
- { "csgotwister.com", true },
{ "csharpmarc.net", true },
- { "cshopify.com", true },
+ { "cshub.nl", true },
{ "csi.lk", true },
+ { "csinterstargeneve.ch", 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 },
+ { "cstanley.net", true },
{ "cstb.ch", true },
{ "cstp-marketing.com", true },
+ { "cstrong.nl", true },
{ "csu.st", true },
+ { "csust.ac.cn", true },
{ "csuw.net", true },
{ "csvalpha.nl", true },
- { "cswarzone.com", 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 },
{ "ctoforhire.com.au", true },
- { "ctomp.io", true },
+ { "ctomp.io", false },
+ { "ctoresms.com", true },
{ "ctpe.net", true },
+ { "ctr.id", true },
+ { "ctrl.blog", true },
{ "ctrld.me", true },
- { "ctyi.me", true },
{ "cu247secure.ie", true },
{ "cub-bouncingcastles.co.uk", true },
{ "cube-cloud.com", true },
+ { "cube.builders", true },
{ "cube.de", true },
+ { "cubebot.io", true },
+ { "cubebuilders.net", true },
{ "cubecart-demo.co.uk", true },
{ "cubecart-hosting.co.uk", true },
{ "cubecraft.net", true },
- { "cubecraftstore.com", true },
- { "cubecraftstore.net", true },
+ { "cubecraftcdn.com", true },
{ "cubekrowd.net", true },
+ { "cubetech.co.jp", true },
{ "cubia.de", true },
{ "cubia3.com", true },
{ "cubia4.com", true },
{ "cubile.xyz", true },
+ { "cubing.net", true },
+ { "cublick.com", true },
{ "cubos.io", false },
{ "cubostecnologia.com", false },
{ "cubostecnologia.com.br", false },
@@ -8376,68 +9225,67 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cultivo.bio", true },
{ "cultofd50.org", true },
{ "cultofperf.org.uk", true },
+ { "cultura10.com", true },
+ { "culture-school.top", true },
{ "culturedcode.com", true },
- { "cultureelbeleggen.nl", true },
{ "culturerain.com", true },
- { "cultureroll.com", true },
+ { "culturesouthwest.org.uk", true },
+ { "cumberlandrivertales.com", true },
+ { "cumparama.com", true },
{ "cumplegenial.com", true },
- { "cunha.be", true },
{ "cuoc.org.uk", true },
{ "cup.al", true },
{ "cupcakesandcrinoline.com", true },
{ "cupcao.gov", true },
- { "cupi.co", true },
- { "cupofarchitects.net", true },
{ "cupom.net", true },
{ "cuppycakes.fi", true },
{ "cur.by", true },
{ "curacao-firma.com", true },
{ "curamail.co.uk", true },
{ "curareldolordeespalda.com", true },
+ { "curatedgeek.com", true },
{ "curbside.com", true },
- { "curia.fi", true },
{ "curieux.digital", true },
{ "curio-shiki.com", true },
{ "curiosity-driven.org", true },
+ { "curiouspeddler.com", true },
{ "curlybracket.co.uk", true },
{ "currency-strength.com", true },
- { "current.com", true },
{ "currentlystreaming.com", true },
+ { "currentlyusa.com", true },
{ "currentobserver.com", true },
{ "currynissanmaparts.com", true },
+ { "cursos-trabajadores.net", true },
{ "cursos.com", true },
- { "cursosgratuitos.com.br", true },
+ { "cursosforex.com", 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 },
+ { "curva.co", true },
{ "curveprotect.com", true },
{ "curveprotect.cz", true },
{ "curveprotect.net", true },
{ "curveprotect.org", true },
{ "curvesandwords.com", true },
{ "curvissa.co.uk", true },
- { "custerweb.com", true },
+ { "curvylove.de", true },
{ "custodyxchange.com", true },
+ { "custombikes.cl", true },
{ "customdissertation.com", true },
{ "customerbox.ir", true },
{ "customfitbymj.net", true },
{ "customfitmarketing.com", true },
{ "customgear.com.au", true },
- { "customizeyourshower.com", true },
{ "customizeyoursink.com", true },
- { "custompapers.com", true },
- { "customromlist.com", true },
- { "customshort.link", true },
- { "customwritings.com", true },
{ "customwritingservice.com", true },
{ "customwritten.com", true },
- { "cutephil.com", true },
- { "cutimbo.com", true },
{ "cutimbo.ovh", true },
{ "cutner.co", true },
{ "cuvva.co", true },
@@ -8451,8 +9299,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 },
@@ -8461,8 +9310,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cvl.ch", true },
{ "cvlibrary.co.uk", true },
{ "cvmu.jp", true },
- { "cvninja.pl", true },
- { "cvps.top", true },
{ "cvr.dk", true },
{ "cvursache.com", true },
{ "cvv.cn", true },
@@ -8473,40 +9320,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cwgaming.co.uk", true },
{ "cwinfo.fi", true },
{ "cwmart.in", true },
- { "cwningen.cymru", false },
+ { "cwrau.com", true },
+ { "cwrau.de", true },
+ { "cwrau.info", true },
+ { "cwrau.io", true },
+ { "cwrau.me", true },
+ { "cwrau.name", true },
+ { "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 },
+ { "cybercloud.cc", true },
{ "cybercocoon.com", true },
{ "cybercrew.cc", true },
{ "cybercrime-forschung.de", true },
+ { "cybercrime.gov", true },
+ { "cyberdos.de", false },
{ "cyberduck.io", true },
- { "cyberdyne-industries.net", true },
{ "cyberexplained.info", true },
- { "cyberfrancais.ro", true },
+ { "cybergates.org", true },
{ "cybergrx.com", true },
{ "cyberguerrilla.info", true },
{ "cyberguerrilla.org", true },
+ { "cyberhipsters.nl", true },
{ "cyberianhusky.com", true },
{ "cyberkov.com", true },
+ { "cyberlab.kiev.ua", false },
+ { "cyberlegal.co", true },
{ "cyberlightapp.com", true },
{ "cybermeldpunt.nl", true },
+ { "cyberogism.com", true },
{ "cyberoptic.de", true },
- { "cyberphaze.com", true },
+ { "cyberpioneer.net", false },
{ "cyberpubonline.com", true },
{ "cyberregister.nl", true },
{ "cyberregister.org", true },
+ { "cybersafesolutions.com", true },
{ "cybersantri.com", true },
+ { "cyberscan.io", true },
{ "cybersecurity.nz", true },
- { "cybersecuritychallenge.be", true },
+ { "cybersecurity.run", true },
+ { "cybersecuritychallenge.be", false },
{ "cybersecurityketen.nl", true },
{ "cyberseguranca.com.br", true },
- { "cyberserver.org", true },
{ "cybersins.com", true },
- { "cybersmart.co.uk", true },
{ "cybersmartdefence.com", true },
{ "cyberspace.community", true },
{ "cyberspect.com", true },
@@ -8516,13 +9378,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cybertu.be", true },
{ "cyberwars.dk", true },
{ "cyberwire.nl", true },
+ { "cyberxpert.nl", true },
{ "cybit.io", true },
{ "cybozu.cn", true },
{ "cybozu.com", true },
{ "cybozulive-dev.com", true },
{ "cybozulive.com", true },
+ { "cybrary.it", true },
{ "cyclebeads.com", true },
{ "cycleluxembourg.lu", true },
+ { "cyclinggoodso.com", true },
{ "cyclisjumper.gallery", true },
{ "cyclop-editorial.fr", true },
{ "cydetec.com", true },
@@ -8531,12 +9396,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cygnan.com", true },
{ "cygnatus.com", true },
{ "cygnius.net", true },
- { "cygu.ch", true },
{ "cyhour.com", true },
{ "cykelbanor.se", true },
+ { "cyl6.com", true },
+ { "cylindehea.com", true },
{ "cylindricity.com", true },
{ "cyon.ch", true },
- { "cype.dedyn.io", true },
{ "cyph.audio", true },
{ "cyph.com", true },
{ "cyph.healthcare", true },
@@ -8546,20 +9411,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cyph.video", true },
{ "cyph.ws", true },
{ "cypherpunk.at", true },
+ { "cypherpunk.com", true },
+ { "cypherpunk.observer", true },
{ "cypressinheritancesaga.com", true },
{ "cypresslegacy.com", true },
{ "cyprus-company-service.com", true },
{ "cyrating.com", true },
{ "cysec.biz", true },
+ { "cysmo.de", true },
{ "cyson.tech", true },
{ "cytech.com.tr", true },
{ "cytegic-update-packages.com", true },
+ { "cytotecforsale.com", true },
{ "cyumus.com", true },
- { "cyyzaid.cn", true },
{ "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 },
@@ -8568,32 +9437,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "d-designerin.de", true },
{ "d-eisenbahn.com", true },
{ "d-loop.de", true },
- { "d-macindustries.com", true },
{ "d-msg.com", true },
+ { "d-parts.de", true },
{ "d-parts24.de", true },
{ "d-quantum.com", true },
{ "d-toys.com.ua", true },
{ "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 },
+ { "d2.gg", true },
+ { "d2ph.com", true },
{ "d2s.uk", true },
- { "d3njjcbhbojbot.cloudfront.net", true },
+ { "d3lab.net", true },
{ "d3xt3r01.tk", true },
{ "d3xx3r.de", true },
{ "d42.no", true },
+ { "d4done.com", true },
+ { "d4rkdeagle.tk", true },
{ "d4wson.com", true },
{ "d4x.de", true },
{ "d66.nl", true },
+ { "d6c5yfulmsbv6.cloudfront.net", true },
{ "d8.io", true },
- { "da-ist-kunst.de", true },
- { "da.hn", true },
+ { "d88988.com", true },
{ "da42foripad.com", true },
{ "daallexx.eu", true },
+ { "dabasstacija.lv", true },
+ { "dabneydriveanimalhospital.com", true },
{ "dabuttonfactory.com", true },
{ "dachb0den.net", true },
{ "dachdecker-ranzenberger.de", true },
@@ -8609,7 +9483,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dadrian.io", true },
{ "daduke.org", true },
{ "daemen.org", true },
- { "daemonslayer.net", true },
{ "daemwool.ch", true },
{ "daevel.fr", true },
{ "dafnik.me", true },
@@ -8621,19 +9494,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "dailyroverr.com", true },
{ "dailyxenang.com", true },
{ "daintymeal.com", true },
{ "dairyshrine.org", true },
+ { "daisakuikeda.org", true },
{ "daisidaniels.co.uk", true },
{ "daisy-peanut.com", true },
{ "daisypeanut.com", true },
{ "daiweihu.com", true },
+ { "daiyuu.jp", true },
+ { "dajiadu.net", true },
{ "dak.org", true },
{ "daknob.net", true },
{ "daktarisys.com", true },
@@ -8642,7 +9522,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dalb.in", true },
{ "dale-electric.com", true },
{ "dalek.co.nz", true },
- { "dalepresencia.com", true },
{ "dalfsennet.nl", true },
{ "dalingk.com", true },
{ "dallaslu.com", true },
@@ -8651,71 +9530,81 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dalmatiersheusden.be", true },
{ "damaged.org", true },
{ "damasexpress.com", true },
+ { "damejidlo.cz", true },
+ { "dameocio.com", true },
{ "damghaem.ir", true },
{ "damicris.ro", true },
{ "damienoreilly.org", true },
- { "damienpontifex.com", true },
{ "daminiphysio.ca", true },
{ "damip.net", true },
+ { "damirsystems.com", true },
{ "dammekens.be", true },
{ "damngoodpepper.com", false },
{ "damongant.de", true },
{ "damonline.dk", true },
+ { "dampedia.com", true },
{ "dan-informacijske-varnosti.si", true },
{ "dan.me.uk", true },
- { "dan.org.nz", true },
{ "danaketh.com", true },
{ "danamica.dk", true },
{ "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 },
- { "dango.in", true },
+ { "dangmai.tk", 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 },
+ { "daniel-wildhaber.ch", true },
{ "danielalvarez.net", true },
{ "danielas.boutique", true },
{ "danielehniss.de", true },
{ "danielepestilli.com", true },
{ "danielgorr.de", true },
+ { "danielgray.email", true },
{ "danielheal.net", true },
- { "danielhinterlechner.eu", false },
+ { "danielhinterlechner.eu", true },
{ "danielhochleitner.de", true },
{ "danieljamesscott.org", true },
- { "danieljireh.com", true },
+ { "danieljstevens.com", true },
{ "danielkoster.nl", true },
{ "daniellockyer.com", true },
- { "danielmarquard.com", true },
{ "danielmartin.de", true },
{ "danielmoch.com", true },
- { "danielmostertman.com", false },
- { "danielmostertman.nl", false },
+ { "danielmorell.com", true },
+ { "danielmostertman.com", true },
+ { "danielmostertman.nl", true },
+ { "danieln.tech", true },
+ { "danielnaaman.com", true },
+ { "danielparker.com.au", true },
{ "danielpeukert.cz", true },
+ { "danielran.com", true },
{ "danielrozenberg.com", true },
{ "danielsblog.org", true },
{ "danielschreurs.com", true },
+ { "danielsfirm.com", true },
{ "danielstach.cz", true },
{ "danielsteiner.net", true },
{ "danielstiner.me", true },
- { "danielt.co.uk", true },
{ "danielthompson.info", true },
{ "danieltollot.de", true },
{ "danielvoogsgerd.nl", true },
+ { "danielwildhaber.ch", true },
{ "danifabi.eu", true },
{ "danilapisarev.com", true },
{ "danjesensky.com", true },
{ "dank.ninja", true },
{ "dankim.de", false },
- { "dankredues.com", true },
{ "danla.nl", true },
{ "danmaby.com", true },
{ "danmarksbedstefredagsbar.dk", true },
@@ -8723,6 +9612,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danmassarano.com", true },
{ "danminkevitch.com", true },
{ "danna-salary.com", true },
+ { "dannhanks.com", true },
+ { "dannicholas.net", true },
{ "danny-tittel.de", true },
{ "danny.fm", true },
{ "dannycairns.com", true },
@@ -8730,11 +9621,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dannystevens.co.uk", true },
{ "danonsecurity.com", true },
{ "danotage.tv", true },
- { "danova.de", true },
- { "danoz.net", true },
{ "danpiel.net", true },
+ { "dansa.com.co", true },
{ "dansage.co", true },
{ "danscomp.com", true },
+ { "dansdiscounttools.com", true },
{ "danselibre.net", true },
{ "danselibre.org", true },
{ "danseressen.nl", true },
@@ -8749,11 +9640,14 @@ 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 },
{ "darbi.org", true },
@@ -8764,21 +9658,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daren.com.br", true },
{ "dareyou.be", true },
{ "dariaburger.de", true },
- { "darinjohnson.ca", true },
{ "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 },
{ "darkengine.net", true },
+ { "darkerlystormy.com", true },
+ { "darkerstormy.com", true },
+ { "darkestproductions.net", true },
{ "darkeststar.org", true },
{ "darkfire.ch", true },
+ { "darklaunch.com", true },
+ { "darknessflickers.com", true },
{ "darknetlive.com", true },
{ "darknight.blog", true },
+ { "darkrisks.com", true },
{ "darkroomsaredead.com", true },
{ "darkserver.fedoraproject.org", true },
{ "darkserver.stg.fedoraproject.org", true },
@@ -8787,66 +9689,74 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "darkspacelab.com", true },
{ "darktime.ru", true },
{ "darkwater.info", true },
- { "darkwebkittens.xyz", true },
+ { "darkwebnews.com", true },
{ "darkx.me", true },
+ { "darmgesundheit.ch", 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 },
+ { "darylcrouse.com", true },
{ "darylcumbo.net", true },
{ "das-forum24.de", true },
{ "das-mediale-haus.de", true },
{ "das-sommercamp.de", true },
{ "dasgeestig.nl", true },
{ "dashboard.run", true },
- { "dashlane.com", true },
+ { "dashcloud.co", true },
{ "dashnearby.com", true },
+ { "dashwebconsulting.com", true },
+ { "dasignsource.com", true },
{ "dasinternetluegt.at", true },
+ { "dasteichwerk.at", true },
{ "dasug.de", true },
{ "data-detox.de", true },
+ { "data-wing.ga", true },
{ "data.gov", true },
{ "data.govt.nz", true },
- { "data.world", true },
- { "databeam.de", true },
+ { "data3w.nl", true },
{ "databionix.com", true },
{ "databutlr.com", true },
{ "databutlr.net", true },
{ "datacalle.com", true },
{ "datacandy.com", true },
- { "datacenternews.asia", true },
- { "datacenternews.co.nz", true },
- { "datacentrenews.eu", true },
- { "datacool.tk", true },
{ "datadit.hu", true },
{ "datadyne.technology", true },
{ "datafd.com", true },
{ "datafd.net", true },
{ "dataformers.at", true },
+ { "datagrail.io", true },
+ { "dataguidance.com", true },
{ "dataharvest.at", true },
- { "datahoarderschool.club", true },
+ { "datahive360.com", true },
+ { "datahjalp.nu", true },
+ { "datahoarder.xyz", true },
+ { "datajobs.ai", true },
{ "datakick.org", true },
{ "datalife.gr", true },
{ "datalysis.ch", true },
+ { "dataprivacysolution.com", true },
{ "dataprotectionadvisors.com", true },
{ "datapun.ch", true },
{ "datapure.net", true },
{ "dataregister.info", true },
{ "datascience.cafe", true },
{ "datascience.ch", true },
- { "datascomemorativas.com.br", true },
- { "datasharesystem.com", true },
{ "dataskydd.net", true },
{ "dataspace.pl", true },
+ { "datasupport-stockholm.se", true },
+ { "datasupport.one", true },
{ "dataswamp.org", true },
{ "datatekniikka.fi", false },
+ { "datatekniker.nu", true },
{ "datateknologsektionen.se", false },
{ "datatree.nl", true },
{ "datatruckers.com", true },
@@ -8856,7 +9766,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "datememe.com", true },
{ "datengrab.xyz", true },
{ "datenkeks.de", true },
- { "datenlast.de", true },
{ "dateno1.com", true },
{ "datenreiter.org", true },
{ "datenschutz-consult.de", true },
@@ -8868,8 +9777,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "datewon.net", false },
{ "datingticino.ch", true },
{ "datmancrm.com", true },
+ { "dator-test.se", true },
+ { "datorhjalp-stockholm.se", true },
+ { "datorhjalptaby.se", true },
+ { "datorservice-stockholm.se", true },
{ "datovyaudit.cz", true },
- { "datsound.ru", true },
{ "datumou-osusume.com", true },
{ "datumou-recipe.com", true },
{ "datumstudio.jp", true },
@@ -8882,15 +9794,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daveoc64.co.uk", true },
{ "davepage.me.uk", true },
{ "davepearce.com", true },
+ { "davepermen.net", true },
{ "davescomputertips.com", true },
+ { "davesharpe.com", true },
{ "davesinclair.com.au", true },
{ "davetempleton.com", true },
{ "davevelopment.net", true },
{ "davewardle.com", true },
- { "davewut.ca", true },
{ "david-corry.com", true },
+ { "david-hinschberger.me", true },
{ "david-jeffery.co.uk", true },
- { "david-mallett.com", true },
{ "david-pearce.com", true },
{ "david-reess.de", true },
{ "david-schiffmann.de", true },
@@ -8901,17 +9814,21 @@ 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 },
- { "davidlillo.com", true },
{ "davidlyness.com", true },
{ "davidmcevoy.org.uk", true },
{ "davidmessenger.co.uk", true },
+ { "davidmn.org", true },
{ "davidnadaski.com", true },
{ "davidpearce.com", true },
{ "davidpearce.org", true },
@@ -8920,30 +9837,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davidschlachter.com", true },
{ "davidsimner.me.uk", true },
{ "davidsopas.com", true },
+ { "davidtiffany.com", true },
{ "davidundetiwan.com", true },
{ "davie3.com", true },
- { "davimun.org", 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 },
{ "dawnbringer.net", true },
{ "dawnofeden.net", true },
- { "dawnsonb.com", true },
{ "dawoud.org", true },
{ "dawson-floridavilla.co.uk", true },
{ "day-peak.com", true },
{ "daycontactlens.com", true },
+ { "daydream.team", true },
{ "daylight-dream.ee", true },
{ "daylightpirates.org", true },
{ "dayman.net", true },
{ "daymprove.life", true },
{ "dayofdays.be", true },
{ "daysoftheyear.com", true },
- { "db-sanity.com", true },
{ "db-works.nl", true },
+ { "db.ci", true },
{ "dbapress.org", true },
{ "dbaron.org", true },
{ "dbas.cz", true },
@@ -8951,10 +9871,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dbdc.us", true },
{ "dbentertainment.co.uk", true },
{ "dbgamestudio.com", true },
+ { "dbjc.tk", true },
{ "dblcastles.co.uk", true },
{ "dbldub.net", true },
{ "dbmiller.org", true },
{ "dbmteam.com", true },
+ { "dbmxpca.com", true },
{ "dborcard.com", true },
{ "dbpkg.com", true },
{ "dbq.com", true },
@@ -8964,10 +9886,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 },
@@ -8977,22 +9900,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dchatelain.ch", true },
{ "dchest.org", true },
{ "dckd.nl", true },
- { "dcl.re", true },
+ { "dclaisse.fr", true },
+ { "dcmediahosting.com", true },
{ "dcmt.co", true },
{ "dcpower.eu", true },
{ "dcrdev.com", true },
- { "dd.art.pl", true },
+ { "dcw.io", true },
+ { "ddatsh.com", true },
{ "ddays2008.org", true },
{ "ddel.de", true },
{ "dden.ca", true },
{ "ddepot.us", true },
- { "ddholdingservices.com", true },
{ "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 },
+ { "ddy.tw", true },
{ "de-gucci.com", true },
{ "de-mail.info", true },
{ "de-medici.nl", true },
@@ -9001,9 +9928,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "de.search.yahoo.com", false },
{ "deadbeef.ninja", true },
{ "deadc0de.re", true },
+ { "deadinsi.de", false },
{ "deaf.dating", true },
{ "deaf.eu.org", true },
- { "deai-life.biz", true },
{ "dealapp.nl", true },
{ "dealbanana.at", true },
{ "dealbanana.be", true },
@@ -9016,6 +9943,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dealbanana.it", true },
{ "dealbanana.se", true },
{ "dealcruiser.nl", true },
+ { "dealerselectric.com", true },
{ "dealinflatables.co.uk", true },
{ "dealpass.no", true },
{ "deamuseum.org", true },
@@ -9030,7 +9958,9 @@ 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 },
{ "debarrasantony.com", true },
{ "debarrasasnieressurseine.com", true },
@@ -9040,8 +9970,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "debarrasnanterre.com", true },
{ "debbyefurd.com", true },
{ "debie-usedcars.be", true },
- { "debigare.com", true },
- { "debitpaie.com", true },
+ { "debora-singkreis.de", true },
{ "debron-ot.nl", true },
{ "debrusoft.ch", true },
{ "debt.com", true },
@@ -9050,15 +9979,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "debuis.nl", true },
{ "decaffeinated.io", true },
{ "decalquai.ch", true },
+ { "decay24.de", true },
+ { "decfun.com", true },
{ "dechat.nl", true },
+ { "decher.de", true },
{ "decidetreatment.org", true },
{ "decis.fr", true },
{ "decisivetactics.com", true },
{ "deckbuilderamerica.com", true },
+ { "declivitas.com", true },
+ { "decoating.pl", true },
{ "decock-usedcars.be", true },
{ "decodeanddestroy.com", true },
{ "decoder.link", true },
{ "decompiled.de", true },
+ { "decoora.com", true },
{ "decor-d.com", true },
{ "decoratingadvice.co.uk", true },
{ "decoratore.roma.it", true },
@@ -9067,12 +10002,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "decorestilo.com.br", true },
{ "decosoftware.com", true },
{ "decrousaz-ceramique.ch", true },
+ { "decrypto.net", true },
{ "decs.es", true },
- { "decstasy.de", true },
- { "dede.ml", true },
{ "dedelta.net", true },
{ "dedg3.com", true },
{ "dedge.org", true },
+ { "dedicatedtowomenobgyn.com", true },
{ "dedimax.de", true },
{ "dedmorozrzn.ru", false },
{ "deduijventil.nl", true },
@@ -9080,23 +10015,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dee.su", true },
{ "deechtebakkers.nl", true },
{ "deegeeinflatables.co.uk", true },
+ { "deejayevents.ro", true },
{ "deelmijnreis.nl", true },
- { "deep.club", true },
- { "deep.social", true },
- { "deepaero.com", true },
+ { "deep-chess.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 },
+ { "deeps.me", true },
{ "deepserve.info", true },
{ "deepsouthsounds.com", true },
{ "deepspace.dedyn.io", true },
{ "deepwealth.institute", true },
{ "deepz.pt", true },
{ "deepzz.com", true },
- { "deer.team", true },
- { "deezeno.com", true },
{ "def-pos.ru", true },
{ "defcon.org", true },
{ "defcongroups.org", true },
@@ -9106,6 +10042,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "defendinnovation.org", true },
{ "defendtheweb.co.uk", true },
{ "defero.io", true },
+ { "define-atheism.com", true },
+ { "define-atheist.com", true },
+ { "defineatheism.com", true },
+ { "defineatheist.com", true },
{ "deflect.ca", true },
{ "deflumeri.com", true },
{ "deflumeriker.com", true },
@@ -9114,7 +10054,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "defont.nl", true },
{ "defrax.com", true },
{ "defrax.de", true },
+ { "defreitas.no", true },
{ "deftek.com", true },
+ { "deftig-und-fein.de", true },
{ "deftnerd.com", true },
{ "defuse.ca", true },
{ "defxing.net", true },
@@ -9122,34 +10064,33 @@ 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 },
{ "degressif.com", true },
{ "dehopre.com", true },
- { "dehydrated.de", true },
{ "deidee.nl", true },
{ "deinballon.de", true },
{ "deinewebsite.de", true },
{ "deinfoto.ch", true },
{ "deinserverhost.de", true },
{ "deitti.net", true },
- { "dejan.media", true },
{ "dejandayoff.com", true },
{ "dejure.org", true },
{ "dejw.cz", true },
+ { "dekasegi-kansai.com", true },
{ "dekasiba.com", true },
{ "dekeurslagers.nl", true },
{ "dekka.cz", true },
{ "dekkercreativedesign.nl", true },
- { "dekoh-shouyu.com", true },
+ { "dekko.io", true },
{ "dekonix.ru", true },
{ "dekulk.nl", true },
{ "delahrzolder.nl", true },
{ "delbecqvo.be", true },
{ "delbrouck.ch", true },
{ "deleidscheflesch.nl", true },
- { "delf.co.jp", true },
{ "delfic.org", true },
{ "delfino.cr", true },
{ "delhionlinegifts.com", true },
@@ -9160,8 +10101,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deliciousmedia.net", true },
{ "delicioustable.com", true },
{ "delid.cz", true },
- { "delitto.top", true },
{ "delivery.co.at", true },
+ { "deliveryiquique.cl", true },
{ "dellipaoli.com", true },
{ "delogo.nl", true },
{ "delorenzi.dk", true },
@@ -9173,9 +10114,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deltaacademy.org", true },
{ "deltadata.ch", true },
{ "deltafinanceiro.com.br", true },
+ { "deltanio.nl", true },
{ "deltaonlineguards.com", true },
{ "deltaservers.com.br", true },
- { "deltasmart.ch", true },
+ { "deltasigmachi.org", true },
{ "deltava.org", true },
{ "demarle.ch", true },
{ "dementiapraecox.de", true },
@@ -9183,6 +10125,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "demfloro.ru", true },
{ "demijn.nl", true },
{ "demilletech.net", true },
+ { "demiranda.com", true },
{ "demmer.one", true },
{ "demo.swedbank.se", true },
{ "demo9.ovh", true },
@@ -9194,9 +10137,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "demonwav.com", true },
{ "demonwolfdev.com", true },
{ "demotivatorbi.ru", true },
+ { "dempsters.ca", false },
{ "demuzere.be", true },
{ "demuzere.com", true },
- { "demuzere.eu", true },
{ "demuzere.net", true },
{ "demuzere.org", true },
{ "denabot.pw", true },
@@ -9204,13 +10147,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "denardbrewing.com", true },
{ "denbkh.ru", true },
{ "dengode.eu", true },
- { "denimio.com", true },
{ "denimtoday.com", true },
{ "denis-martinez.photos", true },
{ "denisewakeman.com", true },
{ "denistruffaut.fr", false },
{ "deniszczuk.pl", true },
{ "denizdesign.co.uk", true },
+ { "denkubator.de", true },
{ "dennisang.com", true },
{ "dennisdoes.net", false },
{ "denniskoot.nl", true },
@@ -9219,55 +10162,71 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dennogumi.org", true },
{ "denous.nl", true },
{ "dent.uy", true },
+ { "dental-colleges.com", true },
{ "dentallaborgeraeteservice.de", true },
- { "dentfix.ro", true },
+ { "dentechnica.co.uk", true },
+ { "dentfix.ro", false },
+ { "dentistesdarveauetrioux.com", true },
{ "dentistglasgow.com", true },
{ "dentrassi.de", true },
{ "dentystabirmingham.co.uk", true },
+ { "denvergospelhall.org", true },
+ { "denwauranailab.com", true },
+ { "deonlinespecialist.nl", true },
{ "deontology.com", true },
{ "depaddestoeltjes.be", true },
+ { "depannage-traceur.fr", true },
{ "deparis.me", true },
+ { "depeces.com", true },
{ "depechemode-live.com", true },
- { "depedshs.com", true },
- { "depedtayo.com", true },
+ { "depedncr.com", true },
+ { "depedtalks.com", true },
{ "depicus.com", true },
{ "depone.net", true },
{ "depot-leipzig.de", true },
{ "depotsquarekerrville.com", true },
{ "depotter-usedcars.be", true },
{ "deprecate.de", true },
- { "deprobe.pro", true },
{ "depth-co.jp", true },
{ "depthe.gr", true },
{ "der-bank-blog.de", true },
+ { "der-fliesenzauberer.de", true },
{ "der-gardinenmann.de", true },
{ "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 },
{ "derattizzazioni.org", true },
{ "derbuntering.de", true },
{ "derbybouncycastles.com", true },
+ { "derbyware.com", true },
{ "derdewereldrommelmarkt.nl", true },
{ "derechosdigitales.org", true },
+ { "dereddingsklos.nl", true },
{ "dereferenced.net", true },
{ "derehamcastles.co.uk", true },
{ "derekheld.com", true },
{ "derekkent.com", true },
+ { "derekseaman.com", true },
+ { "derekseaman.studio", true },
{ "dergeilstestammderwelt.de", true },
{ "derhil.de", true },
+ { "derivedata.com", true },
{ "derk-jan.com", true },
{ "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 },
{ "dermscc.com", true },
{ "deroo.org", true },
{ "derp.army", true },
+ { "derp.chat", true },
{ "derre.fr", true },
{ "derreichesack.com", true },
{ "dersix.com", true },
@@ -9278,12 +10237,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "desarrollowp.com", true },
{ "descartes-finance.com", true },
{ "desec.io", true },
+ { "desertmedaesthetics.com", true },
{ "desertsounds.org", true },
{ "desgenst.ch", true },
- { "design-fu.com", false },
+ { "design-in-bad.eu", true },
{ "design-tooning.de", true },
{ "designdevs.eu", true },
{ "designed-cybersecurity.com", true },
+ { "designedbygeniuses.com", true },
{ "designedcybersecurity.com", true },
{ "designer-drug.com", true },
{ "designera.se", true },
@@ -9295,12 +10256,12 @@ 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 },
{ "desmaakvanplanten.be", true },
{ "desmo.gg", true },
- { "despachomartinyasociados.com", true },
{ "despertadoronline.com.es", true },
{ "desplats.com.ar", true },
{ "dessinemoilademocratie.ch", true },
@@ -9309,19 +10270,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "destileria.net.br", true },
{ "destinationsofnewyorkstate.com", true },
{ "destinattorneyjohngreene.com", true },
+ { "destinoytarot.com", true },
+ { "destinyofthephoenix.me", false },
{ "desu.ne.jp", true },
- { "desveja.com.br", true },
+ { "desuchan.eu", true },
+ { "desuchan.org", true },
{ "det-te.ch", true },
+ { "detalhecomercio.com.br", true },
{ "detalika.ru", true },
{ "detalyedesigngroup.com", true },
+ { "detecmon.com", true },
{ "detectify.com", false },
+ { "detectivedesk.com.au", true },
{ "detekenmuze.nl", true },
{ "dethemium.com", true },
+ { "detodojuegos.com", true },
{ "detoxetmoi.com", true },
+ { "detoxic.vn", true },
{ "detoxsinutritie.ro", true },
{ "detroit-english.de", true },
- { "detroitrocs.org", true },
- { "detroitstylepizza.com", true },
+ { "detroitstylepizza.com", false },
{ "detroitzoo.org", true },
{ "detski.center", true },
{ "detskysad.com", true },
@@ -9330,6 +10298,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deuchnord.fr", true },
{ "deude.de", true },
{ "deukie.nl", true },
+ { "deumavan.ch", true },
{ "deurenfabriek.nl", true },
{ "deutsch-vietnamesisch-dolmetscher.com", true },
{ "deutsche-seniorenbetreuung.de", true },
@@ -9339,68 +10308,71 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deutscher-rollenspielpreis.de", true },
{ "deutscheshoponline.com", true },
{ "deutschland-dsl.de", true },
- { "deux.solutions", true },
{ "deuxmetrescubes.fr", true },
- { "deuxsol.co", true },
- { "deuxsol.com", true },
- { "deuxsolutions.com", true },
{ "dev-brandywineglobal.com", true },
+ { "dev-gutools.co.uk", true },
{ "dev-pulse-mtn.pantheonsite.io", true },
+ { "dev-sev-web.pantheonsite.io", true },
{ "dev-tek.de", true },
{ "devagency.fr", true },
{ "devalps.eu", true },
{ "devb.nl", true },
- { "devcast.io", true },
{ "devcf.com", true },
{ "devct.cz", false },
{ "devcu.com", true },
{ "devcu.net", true },
- { "devdom.io", true },
- { "devdoodle.net", true },
{ "devel.cz", true },
- { "develerik.com", true },
- { "develop.cool", true },
{ "developer.android.com", true },
{ "developer.mydigipass.com", false },
{ "developerdan.com", true },
{ "developerfair.com", true },
- { "developermail.io", 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 },
{ "devinfo.net", false },
{ "devirc.net", true },
+ { "deviser.wang", true },
{ "devisnow.fr", true },
- { "devjack.de", true },
{ "devkid.net", true },
{ "devklog.net", true },
- { "devlamvzw.org", true },
+ { "devlamvzw.org", false },
{ "devlatron.net", true },
{ "devlogr.com", true },
- { "devolution.ws", true },
+ { "devnull.zone", true },
{ "devonsawatzky.ca", true },
{ "devopers.com.br", true },
{ "devops-survey.com", true },
- { "devpgsv.com", true },
+ { "devpsy.info", true },
+ { "devragu.com", true },
{ "devrandom.net", true },
+ { "devries.one", true },
+ { "devsjournal.com", true },
+ { "devsrvr.ru", true },
{ "devstaff.gr", true },
- { "devyn.ca", true },
+ { "devstroke.io", true },
+ { "devswag.io", true },
+ { "devtty.org", true },
+ { "devyn.ca", false },
{ "devzero.io", true },
{ "dewaard.de", true },
{ "dewalch.net", true },
{ "dewapress.com", true },
{ "dewinter.com", true },
+ { "dex.top", true },
{ "dexalo.de", true },
+ { "dexigner.com", true },
+ { "dexonrest.azurewebsites.net", true },
{ "deyute.com", true },
+ { "dez-online.de", true },
{ "dezeregio.nl", true },
{ "dezet-ev.de", true },
{ "dezintranet.com", true },
@@ -9415,35 +10387,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dfmn.berlin", true },
{ "dfranke.com", true },
{ "dg7.in", true },
- { "dgblaw.com.au", true },
+ { "dgblaw.com.au", false },
{ "dgbouncycastlehire.com", true },
- { "dgby.org", true },
{ "dgeex.eu", true },
{ "dggm.ru", true },
{ "dgitup.com", true },
{ "dgportals.co.uk", true },
{ "dgpot.com", true },
{ "dgt-portal.de", true },
- { "dgx.io", true },
{ "dharveydev.com", true },
{ "dhautefeuille.eu", true },
{ "dhauwer.nl", true },
{ "dhaynes.xyz", true },
+ { "dhbr.org", true },
{ "dhconcept.ch", true },
{ "dheart.net", true },
{ "dhhs.gov", true },
{ "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 },
+ { "dia.com.br", true },
+ { "diablovalleytech.com", true },
{ "diadorafitness.es", true },
{ "diadorafitness.it", true },
{ "diagnostix.org", true },
+ { "dialapicnic.co.za", true },
{ "dialoegue.com", true },
{ "diamante.ro", true },
{ "diamantovaburza.cz", true },
+ { "diamond-hairstyle.dk", true },
{ "diamondsleepsolutions.com", true },
{ "diamondyze.nl", true },
{ "diamorphine.com", true },
@@ -9453,28 +10429,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dianurse.com", true },
{ "diare-na-miru.cz", true },
{ "diario-egipto.com", true },
+ { "diaroma.it", true },
+ { "diarynote.jp", true },
{ "diasdasemana.com", true },
{ "diasp.org", true },
+ { "diatrofi-ygeia.gr", true },
+ { "diba.org.cn", true },
{ "dibiphp.com", true },
{ "diccionarioabierto.com", true },
{ "diccionariodedudas.com", true },
+ { "diccionarqui.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 },
+ { "dickord.club", 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 },
@@ -9484,11 +10474,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "die-seide.de", true },
{ "die-sinlosen.de", true },
{ "die-speisekammer-reutlingen.de", true },
+ { "diebestengutscheine.de", true },
{ "diedrich.co", true },
{ "diedrich.me", true },
{ "dieecpd.org", true },
{ "diegelernten.de", true },
{ "diegerbers.de", true },
+ { "diegobarrosmaia.com.br", true },
{ "diegogelin.com", true },
{ "diegorbaquero.com", true },
{ "diehl.io", true },
@@ -9500,7 +10492,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dienstplan.one", true },
{ "dierabenmutti.de", true },
{ "dierenartsdeconinck.be", true },
- { "dierencompleet.nl", true },
{ "dieselanimals.lt", true },
{ "dieselgalleri.com", true },
{ "diesteppenreiter.de", true },
@@ -9515,42 +10506,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dietlin.com", true },
{ "dietrich.cx", true },
{ "dieumfrage.com", true },
- { "diff2html.xyz", true },
{ "different.cz", false },
{ "differenta.ro", false },
{ "diffnow.com", true },
{ "difoosion.com", true },
+ { "difusordeambientes.com.br", true },
{ "digcit.org", true },
{ "digdata.de", true },
{ "dighans.com", true },
{ "digiarc.net", true },
{ "digibild.ch", true },
+ { "digibones.be", true },
{ "digibull.email", true },
{ "digibull.link", true },
{ "digicert-support.com", true },
{ "digicert.nl", true },
+ { "digicy.cloud", true },
{ "digideli.ee", true },
{ "digidroom.be", true },
{ "digilicious.com", true },
{ "digimagical.com", true },
{ "digimedia.cd", false },
{ "digioccumss.ddns.net", true },
- { "digired.ro", true },
+ { "digipitch.com", true },
{ "digital-compounds.com", true },
{ "digital-eastside.de", true },
{ "digital-liberal.ch", true },
+ { "digital-muscle.com.au", true },
{ "digital.gov", false },
{ "digital.govt.nz", true },
{ "digital1st.co.uk", true },
- { "digital1world.com", true },
- { "digital2web.com", true },
+ { "digital2web.com", false },
{ "digitalarchitecture.com", true },
{ "digitalbitbox.com", true },
- { "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 },
@@ -9561,31 +10553,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digitaldem.it", true },
{ "digitalehandtekeningen.nl", true },
{ "digitaleoverheid.nl", true },
- { "digitalewelten.de", true },
+ { "digitaletanker.com", true },
{ "digitalezukunft-hagen.de", true },
{ "digitalezukunft.nrw", true },
{ "digitalfishfun.com", true },
+ { "digitalfury.co.uk", true },
{ "digitalfuturenow.com", true },
{ "digitalgov.gov", false },
{ "digitalhabit.at", true },
{ "digitalhabitat.io", true },
{ "digitalliteracy.gov", true },
- { "digitalmaniac.co.uk", true },
{ "digitalmarketingindallas.com", true },
+ { "digitalposition.com", true },
{ "digitalrights.center", true },
{ "digitalrights.fund", true },
+ { "digitalroar.com", true },
{ "digitalskillswap.com", true },
{ "digitalsurge.io", true },
+ { "digitaltcertifikat.dk", true },
{ "digitaltechnologies.ltd.uk", true },
+ { "digitalunite.de", 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 },
@@ -9594,10 +10591,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 },
@@ -9612,55 +10610,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "din-hkd.jp", true },
{ "dineachook.com.au", true },
{ "dinepont.fr", true },
- { "dinge.xyz", true },
- { "dingelbob-schuhcreme.gq", true },
+ { "dinerroboticurology.com", true },
+ { "dingcc.me", 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 },
+ { "diplomatiq.org", true },
{ "diplona.de", true },
{ "dipulse.it", true },
{ "dir2epub.com", true },
{ "dir2epub.org", true },
{ "dirba.io", true },
{ "direct-sel.com", true },
+ { "direct365.es", true },
{ "directebanking.com", true },
{ "directelectricalltd.co.uk", true },
- { "directinsure.in", true },
{ "directlinkfunding.co.uk", true },
- { "directme.ga", true },
{ "directnews.be", true },
{ "directorioz.com", true },
{ "directreal.sk", true },
{ "directspa.fr", true },
{ "direktvermarktung-schmitzberger.at", true },
- { "dirips.com", true },
{ "dirk-scheele.de", true },
+ { "dirk-weise.de", true },
+ { "dirkdoering.de", true },
+ { "dirkjonker.nl", true },
{ "dirko.net", true },
{ "dirkwolf.de", true },
{ "dirtcraft.ca", true },
{ "dirtygeek.ovh", true },
+ { "dirtyincest.com", true },
+ { "dirtyprettyartwear.com", true },
{ "disability.gov", true },
{ "disabled.dating", true },
{ "disanteimpianti.com", true },
- { "disarc.com", true },
{ "disavow.tools", true },
{ "disc.uz", true },
+ { "discarica.bari.it", 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 },
@@ -9668,14 +10672,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "discordapp.com", true },
{ "discordghost.space", true },
{ "discordia.me", true },
- { "discotek.club", false },
+ { "discordservers.com", true },
+ { "discotek.club", true },
{ "discount24.de", true },
+ { "discountlumberspokane.com", true },
{ "discountplush.com", true },
{ "discover-shaken.com", true },
{ "discoverthreejs.com", true },
{ "discoveryaima.com", true },
+ { "discoveryottawa.ca", true },
{ "discoveryrom.org", true },
{ "discreet-condooms.nl", true },
+ { "discrypt.ca", true },
{ "dise-online.de", true },
{ "disinclined.org", true },
{ "disinfesta.it", true },
@@ -9684,6 +10692,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 },
@@ -9691,10 +10700,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "disinfestazioni.bari.it", true },
{ "disinfestazioni.bergamo.it", true },
{ "disinfestazioni.catania.it", true },
+ { "disinfestazioni.co", true },
{ "disinfestazioni.firenze.it", true },
{ "disinfestazioni.genova.it", true },
+ { "disinfestazioni.gorizia.it", true },
{ "disinfestazioni.info", true },
{ "disinfestazioni.milano.it", true },
+ { "disinfestazioni.napoli.it", true },
{ "disinfestazioni.net", true },
{ "disinfestazioni.padova.it", true },
{ "disinfestazioni.rimini.it", true },
@@ -9706,8 +10718,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "disinfestazionivespe.milano.it", true },
{ "disinfestazionizanzare.milano.it", true },
{ "disinisharing.com", true },
+ { "disk.do", true },
{ "diskbit.com", true },
{ "diskbit.nl", true },
+ { "disking.co.uk", true },
{ "dismail.de", true },
{ "dispatchitsolutions.com", true },
{ "dispatchitsolutions.io", true },
@@ -9717,36 +10731,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dissertationhelp.com", true },
{ "dissidence.ovh", true },
{ "dissident.host", true },
- { "dissieux.com", true },
+ { "dist-it.com", true },
{ "dist.torproject.org", false },
{ "disti.com", true },
- { "distiduffer.org", true },
{ "distillery.com", true },
{ "distinguishedprisoner.com", true },
{ "distribuidoracristal.com.br", true },
+ { "distribuidoraplus.com", true },
{ "distribuidorveterinario.es", true },
- { "distro.re", true },
+ { "distro.fr", true },
{ "ditelbat.com", true },
{ "diti.me", true },
{ "ditisabc.nl", true },
+ { "div.im", true },
{ "diva.nl", true },
{ "divari.nl", true },
{ "divcoder.com", true },
+ { "dive-japan.com", true },
{ "divedowntown.com", true },
{ "divegearexpress.com", true },
+ { "divegearexpress.net", true },
{ "diveidc.com", true },
- { "divenwa.com", true },
{ "diveplan.org", true },
{ "divergenz.org", true },
+ { "diversifiedproduct.com", true },
{ "diversityflags.com", true },
{ "diversityflags.com.au", true },
{ "diversityflags.nz", true },
{ "divertiagua.com.br", true },
{ "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 },
+ { "diwei.vip", true },
{ "dixi.fi", true },
+ { "dixibox.com", true },
{ "diybook.at", true },
{ "diycc.org", true },
{ "diygod.me", true },
@@ -9763,24 +10786,29 @@ 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 },
+ { "djeung.org", true },
{ "djipanov.com", true },
+ { "djleon.net", true },
+ { "djlinux.cz", true },
{ "djlive.pl", true },
{ "djlnetworks.co.uk", true },
+ { "djroynomden.nl", true },
{ "djsbouncycastlehire.com", true },
- { "djsk.nl", true },
{ "djt-vom-chausseehaus.de", true },
- { "djursland-psykologen.dk", true },
+ { "djvintagevinyl.nl", true },
{ "djwaynepryke.com", true },
{ "dk-kromeriz.cz", true },
{ "dk.com", true },
{ "dk.search.yahoo.com", false },
{ "dkcomputers.com.au", true },
{ "dkds.us", true },
- { "dkn.go.id", false },
+ { "dko-steiermark.ml", true },
{ "dkstage.com", true },
+ { "dkwedding.gr", true },
{ "dl.google.com", true },
{ "dlabouncycastlehire.co.uk", true },
{ "dlaspania.pl", true },
@@ -9790,28 +10818,29 @@ 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 },
{ "dlunch.net", true },
+ { "dlyanxs.com", true },
{ "dlz149.me", true },
{ "dlzz.net", true },
{ "dm.lookout.com", false },
{ "dm.mylookout.com", false },
{ "dm4productions.com", true },
{ "dm7ds.de", true },
+ { "dmaglobal.com", true },
{ "dmailshop.ro", true },
{ "dmarc.dk", true },
{ "dmatrix.xyz", true },
- { "dmcastles.com", true },
{ "dmd.lv", true },
{ "dmdd.org.uk", true },
- { "dmeevalumate.com", true },
- { "dmfd.net", 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 },
@@ -9820,38 +10849,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dn42.us", true },
{ "dna.li", true },
{ "dnacloud.pl", true },
+ { "dnakids.co.uk", true },
{ "dnc.org.nz", 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 },
+ { "dnsaio.com", true },
{ "dnscrawler.com", true },
{ "dnscrypt.info", true },
- { "dnscrypt.nl", true },
{ "dnscurve.io", true },
{ "dnshallinta.fi", true },
{ "dnsinfo.ml", true },
+ { "dnsipv6.srv.br", true },
+ { "dnskeep.com", true },
+ { "dnskeeper.com", true },
{ "dnsman.se", true },
+ { "dnspod.ml", true },
{ "dnstwister.report", true },
- { "do-it.cz", true },
{ "do-prod.com", true },
{ "do.gd", true },
{ "do.search.yahoo.com", false },
{ "do13.net", true },
{ "do67.de", true },
{ "do67.net", true },
+ { "doanhnhanplus.vn", true },
+ { "dobraprace.cz", true },
{ "dobrev.family", true },
{ "dobrisan.ro", true },
{ "dobsnet.net", true },
{ "doc.python.org", true },
- { "doc.to", true },
+ { "doc.to", false },
{ "doc8643.com", true },
{ "docabo.ch", true },
{ "docbox.ch", true },
@@ -9860,65 +10893,69 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dochimera.com", true },
{ "dochitaceahlau.ro", true },
{ "dockerbook.com", false },
- { "dockerm.com", true },
- { "dockerturkiye.com", true },
{ "dockerup.net", true },
- { "doclassworks.com", true },
{ "docline.gov", true },
{ "docloh.de", true },
{ "docloudu.info", true },
- { "docplexus.org", true },
+ { "docplexus.com", true },
{ "docs.google.com", false },
{ "docs.python.org", true },
{ "docs.re", true },
{ "docs.tw", true },
- { "docsoc.org.uk", true },
+ { "doctabaila.com", true },
{ "doctafit.com", true },
{ "doctor-locks.co.uk", true },
{ "doctor.dating", true },
+ { "doctorbini.com", true },
{ "doctorfox.co.uk", true },
+ { "doctorsonmaps.com", true },
{ "doctorwho.cz", true },
{ "docubox.info", true },
{ "docucopies.com", true },
+ { "docudanang.com.vn", true },
{ "documaniatv.com", true },
- { "docupet.com", true },
+ { "docusearch.com", true },
+ { "dodds.cc", true },
+ { "dodomu.ddns.net", true },
{ "dodopri.com", true },
{ "doenjoylife.com", true },
{ "does.one", true },
{ "doesburg-comp.nl", true },
{ "dofuspvp.com", true },
- { "dog-blum.com", true },
+ { "dofux.org", true },
{ "dogadayiz.net", true },
{ "dogan.ch", false },
{ "dogcontrol.ca", true },
+ { "doge.me", true },
{ "dogear.ch", true },
- { "dogfi.sh", true },
{ "dogft.com", true },
{ "doggedbyirs.com", true },
{ "doggroomingcourse.com", true },
{ "dogmap.jp", true },
{ "dogoo.com", true },
{ "dogpawstudio.com", true },
- { "dogprograms.net", true },
{ "dogrescuegreece.nl", true },
{ "dogworld.com.br", true },
{ "dohanews.co", true },
{ "doihavetoputonpants.com", true },
- { "dokan-e.com", false },
+ { "doitauto.de", true },
+ { "dojozendebourges.fr", true },
{ "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 },
+ { "dolciterapie.com", 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 },
- { "dolt.xyz", true },
{ "dom-medicina.ru", true },
{ "doma.in", true },
{ "domadillo.com", true },
@@ -9927,6 +10964,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "domain001.info", true },
{ "domainedemiolan.ch", true },
{ "domainexpress.de", false },
+ { "domainhacks.io", true },
{ "domainkauf.de", true },
{ "domainoo.com", true },
{ "domains.autos", true },
@@ -9936,27 +10974,30 @@ 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 },
+ { "domein-direct.nl", false },
{ "domenic.me", true },
+ { "domenicam.com", true },
{ "domesticcleaners.co.uk", true },
{ "domhaase.me", true },
- { "domian.cz", true },
{ "dominationgame.co.uk", true },
{ "dominicself.co.uk", true },
{ "dominik-schlueter.de", true },
{ "dominikaner-vechta.de", true },
{ "dominikkulaga.pl", true },
- { "dominioanimal.com.br", true },
{ "dominionregistries.domains", true },
{ "dominique-haas.fr", true },
{ "dominoknihy.cz", true },
{ "dominomatrix.com", true },
{ "domix.fun", true },
+ { "domizx.de", true },
{ "dommascate.com.br", true },
+ { "domob.eu", true },
{ "domodeco.fr", true },
{ "domodedovo.travel", true },
{ "domprojects.com", true },
@@ -9978,32 +11019,50 @@ 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 },
+ { "donateway.com", true },
+ { "donboscogroep.nl", true },
{ "donfelino.tk", false },
{ "dongxuwang.com", true },
+ { "donjusto.nl", true },
{ "donkennedyandsons.com", true },
{ "donkeytrekkingkefalonia.com", true },
{ "donmaldeamores.com", true },
+ { "donna-bellini-fotografie-berlin.de", true },
+ { "donna-bellini-fotografie-erfurt.de", true },
+ { "donna-bellini-fotografie-frankfurt.de", true },
+ { "donna-bellini-fotografie-hamburg.de", true },
+ { "donna-bellini-fotografie-koeln.de", true },
+ { "donna-bellini-fotografie-muenchen.de", true },
+ { "donna-bellini-fotografie-nuernberg.de", true },
+ { "donna-bellini-fotografie-stuttgart.de", true },
+ { "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 },
+ { "donnajeanbooks.com", true },
{ "donner-reuschel.de", true },
{ "donnons.org", false },
- { "donnoval.ru", true },
+ { "donnoval.ru", false },
+ { "donotcall.gov", true },
{ "donotlink.it", true },
{ "donovand.info", true },
- { "donpaginasweb.com", true },
+ { "donovankraag.nl", true },
{ "donpomodoro.com.co", true },
{ "dont.re", true },
{ "dont.watch", true },
+ { "dontbeevil.com", true },
{ "dontbubble.me", true },
{ "dontcageus.org", true },
+ { "dontpayfull.com", true },
{ "donttrust.me", true },
{ "donutcompany.co.jp", true },
- { "donzool.es", true },
{ "dooby.fr", true },
{ "dooleylabs.com", true },
{ "dooleytackaberry.com", true },
@@ -10013,35 +11072,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "doomus.me", true },
{ "doooooops.com", true },
{ "doop.im", true },
- { "doopdidoop.com", true },
- { "door.cards", true },
{ "doordecor.bg", true },
{ "doorflow.com", true },
+ { "doorhandlese.com", true },
+ { "doorshingekit.com", true },
+ { "doorswest.net", true },
{ "dopesoft.de", true },
- { "dopfer-fenstertechnik.de", true },
- { "doppenpost.nl", true },
+ { "dopetrue.com", true },
+ { "dophys.top", true },
{ "dopply.com", true },
{ "dopravni-modely.cz", true },
{ "dopsi.ch", true },
{ "dora.moe", true },
{ "dorde.eu", true },
+ { "dorfbaeck.at", true },
{ "dorfbrunnen.eu", true },
{ "dorfzittig.de", true },
{ "doriangirod.ch", true },
{ "dorianharmans.nl", true },
{ "dorianmuthig.com", true },
+ { "doridian.com", true },
+ { "doridian.de", true },
{ "doridian.net", true },
+ { "doridian.org", true },
+ { "dormirmucho.com", true },
{ "dormiu.com", true },
{ "dormiu.com.br", true },
+ { "dornhecker.me", true },
+ { "dorpshuis-dwarsgracht.nl", true },
+ { "dorpshuiskesteren.nl", true },
{ "dorquelle.com", true },
{ "dorsetentertainments.co.uk", true },
{ "dorth.nl", true },
+ { "dosdediez.com", true },
{ "dosenbierrepublik.com", true },
{ "dosenkiwi.at", true },
{ "doska.by", true },
{ "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 },
@@ -10052,8 +11124,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "doswap.com", true },
{ "dosyauzantisi.com", true },
{ "dot.ro", true },
+ { "dot42.no", true },
+ { "dota2huds.com", true },
{ "dotacni-parazit.cz", true },
- { "dotb.dn.ua", false },
{ "dotbigbang.com", true },
{ "dotbox.org", true },
{ "dotcircle.co", true },
@@ -10061,6 +11134,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dotgov.gov", true },
{ "dothebangthingsalon.com", true },
{ "dothydesign.com", true },
+ { "dotjesper.com", true },
+ { "dotjesper.dk", true },
+ { "dotjesper.net", true },
{ "dotjs.party", true },
{ "dotkniseandroida.cz", true },
{ "dotkod.pl", true },
@@ -10072,6 +11148,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dotshule.ug", true },
{ "dotsiam.co.th", true },
{ "dotsiam.com", true },
+ { "dotsiam.in.th", true },
{ "douai.me", true },
{ "doubleaste.com", true },
{ "doubleavineyards.com", true },
@@ -10080,23 +11157,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "doubleup.com.au", true },
{ "doucheba.gs", false },
{ "dougley.com", true },
+ { "dougsautobody.com", true },
{ "doujinshi.info", true },
+ { "doujinspot.com", true },
{ "dounats.com", true },
{ "douzer.de", true },
+ { "douzer.industries", true },
{ "dovenzorgmalawi.nl", true },
- { "dovro.de", true },
+ { "dowell.media", true },
{ "dowellconsulting.com", true },
{ "dowhatmakegood.de", true },
{ "dowling.nz", true },
{ "downloadaja.com", true },
{ "downloadgamemods.com", true },
{ "downloadgram.com", true },
+ { "downloadhindimovie.com", true },
+ { "downloadhindimovie.net", true },
+ { "downloadhindimovies.net", true },
+ { "downloads.zdnet.com", true },
{ "downloadsoftwaregratisan.com", true },
{ "downrightcute.com", true },
{ "downtimerobot.com", true },
{ "downtimerobot.nl", true },
+ { "downtownautospecialists.com", true },
{ "downtownvernon.com", true },
- { "doxcelerate.com", false },
+ { "dox-box.eu", true },
{ "doyoucheck.com", false },
{ "doyouedc.com", true },
{ "doyoutax.com", true },
@@ -10105,19 +11190,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dozecloud.com", true },
{ "dp.cx", true },
{ "dpd.com.pl", true },
+ { "dpecuador.com", true },
{ "dperson.net", true },
{ "dpfsolutionsfl.com", true },
+ { "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 },
+ { "dps.srl", true },
+ { "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-knirr.de", true },
{ "dr-krebs.net", true },
{ "dr-marlen-nystroem.de", true },
{ "dr-moldovan.de", true },
@@ -10127,9 +11216,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dr-schuessler.de", true },
{ "dr-stoetter.de", true },
{ "dr-www.de", true },
+ { "dr2dr.ca", true },
+ { "draadloze-noodstop.nl", true },
{ "drabadir.com", true },
- { "drabben.be", true },
- { "drabbin.com", true },
+ { "drabim.org", true },
{ "drach.xyz", true },
{ "drachenleder.de", true },
{ "dracisvet.cz", true },
@@ -10139,6 +11229,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drafton.com", true },
{ "drageeparadise.fr", true },
{ "dragfiles.com", true },
+ { "draghetti.it", true },
{ "draghive.asia", true },
{ "draghive.ca", true },
{ "draghive.co", true },
@@ -10146,11 +11237,11 @@ 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 },
+ { "dragon.nu", true },
{ "dragoncave.me", true },
- { "dragoncityhack.tips", true },
+ { "dragonclean.gr", true },
{ "dragonfly.co.uk", true },
{ "dragonheartsrpg.com", true },
{ "dragonkin.net", true },
@@ -10163,75 +11254,111 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dragonsunited.info", true },
{ "dragonsunited.net", true },
{ "dragonsunited.org", true },
+ { "dragonwolfpackaquaria.com", true },
{ "dragonwork.me", true },
+ { "drainagedirect.com", true },
+ { "draintechnorthwest.net", true },
+ { "drakecommercial.com", true },
{ "drakeluce.com", true },
{ "drakenson.de", true },
+ { "draliabadi.com", 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 },
- { "drbethanybarnes.com", true },
+ { "drawtwo.gg", true },
+ { "drawxp.com", true },
{ "drbriones.com", true },
+ { "drcarolynquist.com", true },
{ "drchrislivingston.com", true },
{ "drchristinehatfield.ca", true },
{ "drchristophepanthier.com", true },
- { "drdavidgilpin.com", true },
- { "drdim.ru", true },
{ "drdipilla.com", true },
{ "dreamcreator108.com", true },
{ "dreamday-with-dreamcar.de", true },
+ { "dreamdivers.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", false },
{ "dreamonkey.com", true },
{ "dreamrae.net", true },
- { "dreamtechie.com", true },
- { "dreax.win", true },
+ { "dreamstream.mobi", true },
+ { "dreamstream.network", true },
+ { "dreamstream.nl", true },
+ { "dreamstream.tv", true },
+ { "dreamstream.video", true },
+ { "dreemurr.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 },
- { "drevo-door.cz", true },
+ { "dressify.co", true },
+ { "dressify.in", true },
+ { "drevanbeale.com", true },
+ { "drevo-door.cz", false },
{ "drew.beer", true },
{ "drew.red", true },
+ { "drewapianostudio.com", true },
{ "dreweryinc.com", true },
{ "drewsilcock.co.uk", true },
{ "dreyfussplasticsurgery.com", true },
{ "drezzy.it", true },
+ { "drfranciscofonseca.com.br", true },
{ "drfrey.ch", true },
+ { "drgdrp.com", true },
{ "drgn.no", true },
{ "drhathazi.hu", true },
{ "drheibel.com", true },
+ { "drhoseyni.com", true },
{ "driesjtuver.nl", true },
+ { "driessoftsec.tk", true },
{ "driftdude.nl", true },
+ { "driftingruby.com", true },
{ "drighes.com", true },
{ "drillingsupply.info", true },
{ "drillingsupplystore.com", true },
{ "drillion.net", true },
{ "drillshackresort.com", true },
- { "drinkplanet.eu", true },
+ { "drinkcontrolapp.com", true },
+ { "drinkgas-jihlava.cz", 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 },
+ { "drixn.cn", true },
{ "drixn.com", true },
+ { "drizz.com.br", false },
{ "drjacquesmalan.com", true },
{ "drjenafernandez.com", true },
{ "drjoe.ca", true },
@@ -10239,12 +11366,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drjulianneil.com", true },
{ "drkhsh.at", false },
{ "drkmtrx.xyz", true },
+ { "drlandis.com", true },
{ "drlangsdon.com", true },
+ { "drlinkcheck.com", true },
+ { "drlutfi.com", true },
{ "drmayakato.com", true },
{ "drmcdaniel.com", true },
{ "drms.us", true },
{ "drmtransit.com", true },
+ { "drmyco.net", true },
+ { "drnow.ru", true },
{ "drogueriaelbarco.com", true },
+ { "droidandy.com", true },
{ "droidapp.nl", true },
{ "droidgyan.com", true },
{ "droidhere.com", true },
@@ -10252,12 +11385,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "droidwave.com", true },
{ "droidwiki.de", true },
{ "drone-it.net", true },
- { "dronebotworkshop.com", true },
+ { "dronebl.org", true },
{ "dronepit.dk", true },
- { "dronexpertos.com", true },
{ "droni.cz", true },
{ "dronnet.com", false },
{ "dronografia.es", true },
+ { "dronova-art.ru", true },
{ "drop.com", true },
{ "dropbox.com", true },
{ "dropboxer.net", true },
@@ -10265,57 +11398,80 @@ 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 },
{ "drrr.chat", true },
{ "drrr.wiki", true },
{ "drsajjadian.com", true },
+ { "drsamuelkoo.com", true },
+ { "drschlarb.eu", true },
{ "drschruefer.de", true },
{ "drsturgeonfreitas.com", true },
- { "drubn.de", false },
+ { "drtimmarch.com", true },
+ { "drtimothybradley.com", true },
+ { "druckerei-huesgen.de", true },
{ "drugs.com", true },
{ "drumbe.at", true },
+ { "drummondframing.com", true },
{ "drunkscifi.com", true },
{ "drupal-expert.it", true },
{ "drupal.org", true },
{ "drupalspb.org", true },
+ { "drusantia.net", true },
{ "drusillas.co.uk", true },
- { "druwe.net", true },
+ { "druwe.net", false },
{ "druznek.me", true },
- { "drvr.xyz", true },
+ { "drwang.group", true },
{ "drweissbrot.net", true },
+ { "drwxr.org", true },
+ { "dryan.com", false },
{ "drybjed.net", true },
{ "drycleancoalition.org", true },
{ "drycreekphoto.com", true },
{ "drydrydry.com", true },
+ { "dryerventcleaningarlington.com", true },
+ { "dryerventcleaningcarrollton.com", true },
+ { "dryjersey.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 },
+ { "dsmstainlessproducts.co.uk", true },
{ "dso-imaging.co.uk", true },
+ { "dso-izlake.si", true },
{ "dsol.hu", true },
- { "dsouzamusic.com", true },
- { "dsrw.org", true },
{ "dssale.com", true },
{ "dstamou.de", true },
+ { "dstat.cc", true },
{ "dsteiner.at", true },
+ { "dstvinstallalberton.co.za", true },
+ { "dstvinstalledenvale.co.za", true },
+ { "dstvinstallfourways.co.za", true },
+ { "dstvinstallkemptonpark.co.za", true },
{ "dstvinstallrandburg.co.za", true },
- { "dsuinnovation.com", true },
- { "dsyunmall.com", true },
+ { "dstvsandton.co.za", true },
+ { "dstvsouthafrica.com", true },
{ "dt27.org", true },
{ "dtbouncycastles.co.uk", true },
{ "dtdsh.com", true },
{ "dte.co.uk", true },
- { "dtechstore.com.br", true },
{ "dtg-fonds.com", true },
{ "dtg-fonds.de", true },
{ "dtg-fonds.net", true },
@@ -10323,49 +11479,57 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dtnx.eu", true },
{ "dtnx.net", true },
{ "dtnx.org", true },
- { "dtp-mstdn.jp", true },
+ { "dtoweb.be", true },
+ { "dtp-mstdn.jp", false },
+ { "dtpak.cz", true },
{ "dtuaarsfest.dk", true },
+ { "dtx.sk", true },
{ "dualascent.com", true },
- { "dualias.xyz", false },
{ "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 },
{ "dubrovskiy.pro", true },
+ { "dubtrack.fm", true },
{ "ducalendars.com", true },
{ "duch.cloud", true },
- { "duchyoffeann.com", true },
- { "duckasylum.com", true },
{ "duckbase.com", true },
+ { "duckblade.com", true },
{ "duckduck.horse", true },
{ "duckduckstart.com", true },
+ { "duckeight.win", true },
{ "duckinc.net", true },
+ { "duckyubuntu.tk", true },
{ "duct.me", true },
+ { "due-diligence-security.com", true },
+ { "duerlund-falkenberg.dk", true },
{ "duernberg.at", true },
+ { "duesee.org", true },
{ "duesterhus.eu", true },
{ "dufrei.com", true },
{ "dugnet.com", false },
{ "dugnet.io", false },
{ "dugnet.net", false },
{ "dugnet.org", false },
- { "dugnet.tech", false },
{ "dugunedavet.com", true },
{ "duh.se", true },
+ { "dui805.com", true },
{ "duijf.info", true },
{ "duijfathome.nl", true },
{ "duitang.com", true },
{ "dukan-recepty.ru", true },
+ { "dukatek.cz", true },
{ "dukegat.de", false },
{ "dukesatqueens.com", true },
{ "dukun.de", true },
+ { "dulcinela.es", true },
{ "dulei.si", true },
{ "dullapp.com", true },
{ "dumax.xyz", true },
- { "dumbdemo.com", true },
{ "dumbeartech.com", true },
{ "dumberger-bau.de", true },
{ "dumbfunded.co.uk", true },
@@ -10373,24 +11537,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dumino.bg", true },
{ "dumont.ovh", true },
{ "dumpsters.com", true },
- { "dunamiscommunity.com", true },
{ "duncancmt.com", true },
{ "duncanfamilytrust.org", true },
+ { "duncanmoffat.com", true },
{ "duncanwinfrey.com", true },
+ { "duncm.com", true },
{ "dundalkdonnie.com", true },
+ { "dunesadventure.net", true },
{ "dungeon-bbs.de", true },
{ "dunklau.fr", true },
{ "dunkle-seite.org", true },
{ "dunloptrade.com", true },
{ "dunmanelectric.com", true },
{ "duobus.nl", true },
- { "duocircle.com", true },
- { "duonganhtuan.com", true },
+ { "duoluodeyu.com", true },
{ "duoquadragintien.fr", true },
{ "dupisces.com.tw", true },
{ "dupree.co", true },
{ "dupree.pe", true },
{ "durand.tf", true },
+ { "duranthon.eu", true },
+ { "durbanlocksmiths.co.za", true },
{ "durchblick-shop.de", true },
{ "durdle.com", true },
{ "dureuil.info", true },
@@ -10398,38 +11565,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "durfteparticiperen.nl", true },
{ "duria.de", true },
{ "duriaux-dentiste.ch", true },
+ { "duroterm.ro", true },
{ "durys.be", true },
{ "dusmomente.com", true },
{ "dusnan.com", true },
{ "dustplanet.de", true },
{ "dustri.org", true },
- { "dustycloth.com", true },
{ "dustygroove.com", true },
{ "dustyspokesbnb.ca", true },
{ "dutch.desi", true },
{ "dutchdare.nl", true },
- { "dutchessuganda.com", true },
{ "dutchforkrunners.com", true },
{ "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 },
{ "dvx.cloud", true },
+ { "dw-loewe.de", true },
{ "dwbtoftshit.com", true },
{ "dwgf.xyz", true },
{ "dwi-sued.de", true },
+ { "dwienzek.de", true },
+ { "dworekhetmanski.pl", true },
{ "dworzak.ch", true },
{ "dwscdv3.com", true },
{ "dwtm.ch", true },
{ "dwworld.co.uk", true },
+ { "dx-revision.com", true },
{ "dxgl.info", true },
- { "dxm.no-ip.biz", true },
+ { "dxgl.org", true },
{ "dybuster.at", true },
{ "dybuster.ch", true },
{ "dybuster.com", true },
@@ -10442,14 +11616,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dyktig.as", true },
{ "dyktig.no", true },
{ "dylanboudro.com", true },
+ { "dylancl.cf", true },
{ "dylankatz.com", true },
{ "dylanknoll.ca", true },
{ "dylanspcrepairs.com", true },
{ "dylanwise.net", true },
{ "dylmye.me", true },
+ { "dym.asia", true },
+ { "dym.bz", true },
+ { "dym2012.com", true },
+ { "dym2013.com", true },
+ { "dym2014.com", true },
+ { "dym2017.com", true },
{ "dymersion.com", true },
{ "dymfbbs.com", true },
- { "dymowski.de", true },
+ { "dymmovie.com", true },
+ { "dymowski.de", false },
{ "dyn-dnhensel.de", true },
{ "dyn-nserve.net", true },
{ "dyn.im", true },
@@ -10459,12 +11641,25 @@ 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 },
{ "dynapptic.com", true },
{ "dynastic.co", true },
- { "dyncdn.me", true },
+ { "dynastyarena.com", true },
+ { "dynastybullpen.com", true },
+ { "dynastycalculator.com", true },
+ { "dynastycentral.com", true },
+ { "dynastychalkboard.com", true },
+ { "dynastyclubhouse.com", true },
+ { "dynastycrate.com", true },
+ { "dynastyduel.com", true },
+ { "dynastyfan.com", true },
+ { "dynastygoal.com", true },
+ { "dynastylocker.com", true },
+ { "dynastyredline.com", true },
+ { "dynastyredzone.com", true },
{ "dynn.be", true },
{ "dynorphin.com", true },
{ "dynorphins.com", true },
@@ -10475,38 +11670,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dyscalculia-blog.com", true },
{ "dysthymia.com", true },
{ "dyyn.de", true },
- { "dyz.pw", true },
+ { "dzar.nsupdate.info", true },
{ "dzeina.ch", true },
{ "dzet.de", true },
{ "dziary.com", true },
{ "dziurdzia.pl", true },
+ { "dzivniekubriviba.lv", true },
{ "dzndk.com", true },
- { "dzndk.net", true },
- { "dzndk.org", true },
{ "dznn.nl", true },
{ "dzomo.org", true },
+ { "dzsi.bi", true },
{ "dzsibi.com", true },
{ "dzsula.hu", true },
{ "dzyabchenko.com", true },
- { "e-apack.com.br", true },
+ { "dzyszla.pl", true },
{ "e-bikesdirect.co.uk", true },
{ "e-biografias.net", true },
+ { "e-borneoshop.com", true },
{ "e-briancon.com", true },
{ "e-colle.info", true },
{ "e-cottage.com.br", true },
{ "e-enterprise.gov", false },
{ "e-hon.link", true },
{ "e-id.ee", true },
+ { "e-imzo.uz", true },
{ "e-kontakti.fi", true },
{ "e-lambre.com", true },
{ "e-learningbs.com", true },
{ "e-lifetechnology.com", true },
- { "e-migration.ch", 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 },
@@ -10514,93 +11712,91 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "e-tonery.cz", true },
{ "e-traceur-france.fr", true },
{ "e-tresor.at", true },
- { "e-tune-mt.net", true },
{ "e-typ.eu", true },
{ "e-verify.gov", false },
{ "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 },
- { "e51888.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 },
{ "e9a.at", true },
{ "ea2drocks.com", true },
+ { "eacero.com", true },
{ "ead-italia.it", true },
{ "eagle.net", true },
{ "eagleindustriesltd.com", true },
{ "eaglemessaging.com", true },
{ "eaglesecurity.com", true },
{ "eagletechz.com.br", true },
+ { "eaglewreck.info", true },
+ { "eaglexiang.org", true },
{ "eagleyecs.com", true },
{ "eaimty.com", true },
{ "ealev.de", true },
{ "eapestudioweb.com", true },
{ "earl.org.uk", true },
+ { "earlydocs.com", true },
{ "earlyyearshub.com", true },
{ "earmarks.gov", true },
{ "earn.com", true },
{ "earthsystemprediction.gov", true },
{ "earticleblog.com", true },
- { "earvinkayonga.com", true },
+ { "earvinkayonga.com", false },
{ "easelforart.com", true },
- { "easez.net", true },
{ "eashwar.com", true },
- { "eason-yang.com", true },
- { "east-line.su", true },
{ "eastarm.net", true },
- { "eastcoastbubbleandbounce.co.uk", true },
- { "eastcoastinflatables.co.uk", true },
+ { "eastblue.org", true },
{ "easterncapebirding.co.za", true },
{ "eastlothianbouncycastles.co.uk", true },
+ { "eastman.space", 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 },
{ "easycoding.org", true },
{ "easyconstat.com", true },
- { "easycontentplan.com", true },
{ "easycosmetic.ch", true },
{ "easycup.com", false },
{ "easydumpsterrental.com", true },
+ { "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 },
- { "easyreal.ru", 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-sleep-code.com", true },
- { "eat4happiness.com", true },
{ "eatery.co.il", true },
{ "eatmebudapest.hu", true },
{ "eaton-works.com", true },
{ "eatry.io", true },
+ { "eats.soy", true },
{ "eatsleeprepeat.net", true },
{ "eatson.com", true },
+ { "eatz-and-treatz.com", true },
{ "eatz.com", true },
{ "eaucube.com", true },
{ "eauxdespleiades.ch", true },
@@ -10616,56 +11812,73 @@ 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 },
{ "eboek.info", true },
{ "ebonyriddle.com", true },
{ "ebooki.eu.org", true },
- { "ebop.ch", true },
+ { "ebooklaunchers.com", true },
+ { "eboutic.ch", true },
{ "eboyer.com", true },
- { "ebrnd.de", true },
- { "ec-baran.de", true },
+ { "ebpglobal.com", false },
{ "ec-current.com", true },
+ { "ec.mine.nu", true },
+ { "eca.edu.au", true },
{ "ecacollege.nsw.edu.au", true },
{ "ecardoo.com", true },
+ { "ecardoo.de", true },
+ { "ecardoo.net", true },
+ { "ecardoo.org", true },
{ "ecchidreams.com", true },
{ "ecclesia-koeln.de", true },
{ "ecco-verde.com", false },
{ "ecdn.cz", true },
- { "ecelembrou.ovh", true },
{ "ecfnorte.com.br", true },
+ { "ecfunstalls.com", true },
{ "echatta.net", true },
{ "echatta.org", true },
+ { "echi.pw", true },
{ "echidna-rocktools.eu", true },
{ "echo-security.co", true },
{ "echo.cc", true },
- { "echoactive.com", true },
{ "echoanalytics.com", true },
+ { "echobridgepartners.com", true },
{ "echodio.com", true },
{ "echofoxtrot.co", true },
+ { "echoit.net", true },
+ { "echoit.net.au", true },
+ { "echoit.services", true },
{ "echopaper.com", true },
+ { "echorecovery.org", true },
{ "echosim.io", true },
{ "echosixmonkey.com", true },
{ "echosystem.fr", true },
- { "echoteam.gq", false },
+ { "echoteam.gq", true },
+ { "echoteen.com", true },
{ "echoworld.ch", true },
- { "ecir.pro", true },
+ { "echternach-immobilien.de", true },
+ { "echtes-hutzelbrot.de", true },
+ { "echtgeld-casinos.de", 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 },
- { "ecobrain.be", true },
{ "ecoccinelles.ch", true },
{ "ecoccinelles.com", true },
{ "ecococon.fr", true },
@@ -10684,34 +11897,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ecoledusabbat.org", true },
{ "ecolemathurincordier.com", true },
{ "ecombustibil.ro", true },
- { "ecommercestore.net.br", true },
- { "ecompen.co.za", true },
+ { "ecomycie.com", true },
+ { "economiafinanzas.com", true },
{ "economias.pt", true },
{ "economic-sanctions.com", true },
{ "economicinclusion.gov", true },
+ { "economics-colleges.com", true },
{ "economiefidu.ch", true },
{ "economies.ch", true },
- { "economycarrentalscyprus.com", true },
{ "econsumer.gov", true },
{ "econverter.cloud", true },
{ "ecorp.cc", true },
{ "ecos-ev.de", true },
- { "ecos.srl", true },
{ "ecoshare.info", true },
- { "ecoskif.ru", true },
- { "ecosoftconsult.com", true },
+ { "ecosm.com.au", true },
{ "ecosound.ch", true },
{ "ecostruxureit.com", true },
{ "ecosystem.atlassian.net", true },
+ { "ecosystemmanager-uat1.azurewebsites.net", true },
+ { "ecotaxi2airport.com", true },
{ "ecoterramedia.com", true },
{ "ecotur.org", true },
{ "ecovision.com.br", true },
+ { "ecpannualmeeting.com", true },
{ "ecrandouble.ch", true },
+ { "ecuinformacion.com", true },
{ "ecupcafe.com", false },
+ { "ecuteam.com", true },
{ "ecxforum.com", true },
{ "ed.gs", true },
{ "ed4becky.net", true },
{ "edakoe.ru", true },
+ { "edanni.io", true },
{ "edd-miles.com", true },
{ "eddesign.ch", true },
{ "eddmil.es", true },
@@ -10719,24 +11936,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eddyn.net", true },
{ "edeca.net", true },
{ "edehsa.com", true },
- { "edenvalerubbleremovals.co.za", true },
+ { "edeka-jbl-treueaktion.de", true },
+ { "eden-eu.com", true },
+ { "eden.co.uk", true },
+ { "edenming.info", true },
{ "edesseglabor.hu", true },
{ "edfinancial.com", true },
- { "edge-cloud.net", true },
+ { "edge-cloud.net", false },
+ { "edgedynasty.com", true },
+ { "edgefantasy.com", true },
{ "edgeservices.co.uk", true },
{ "edgetalk.net", true },
{ "edgevelder.com", true },
- { "edh.email", 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 },
+ { "edilservizi.it", true },
+ { "edilservizivco.it", true },
{ "edinburghsportsandoutdoorlearning.com", true },
{ "edincmovie.com", true },
- { "edisonchee.com", true },
+ { "ediscomp.sk", true },
{ "edisonlee55.com", true },
{ "edisonluiz.com", true },
{ "edisonnissanparts.com", true },
+ { "edit.co.uk", true },
{ "edit.yahoo.com", false },
{ "edited.de", true },
{ "edition-bambou.com", true },
@@ -10753,6 +11981,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edragneainpuscarie.ro", true },
{ "edsby.com", true },
{ "edservicing.com", true },
+ { "edshogg.co.uk", true },
{ "edsm.net", true },
{ "edstep.com", true },
{ "edtech-hub.com", true },
@@ -10760,53 +11989,59 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edu-kingdom.com", true },
{ "edu6.cloud", true },
{ "eduard-dopler.de", true },
- { "eduardnikolenko.com", true },
- { "eduardnikolenko.ru", true },
{ "edubras.com.br", true },
+ { "educatek.es", true },
{ "educationevolving.org", true },
{ "educationfutures.com", true },
+ { "educationmalaysia.co.uk", true },
{ "educationunlimited.com", true },
{ "educator-one.com", true },
- { "educators.co.nz", true },
+ { "eductf.org", true },
{ "eduid.se", false },
{ "edumundo.nl", true },
+ { "edupool.in", true },
{ "eduroam.no", true },
{ "eduroam.uy", true },
{ "edusanjal.com", true },
{ "edusantorini.com", true },
{ "eduvpn.no", true },
+ { "eduxpert.in", true },
{ "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 },
+ { "edwarddekker.nl", true },
{ "edwards.me.uk", true },
{ "edwardsnowden.com", true },
{ "edwardspeyer.com", true },
{ "edwardwall.me", true },
{ "edwellbrook.com", true },
+ { "edwinmattiacci.com", true },
{ "edwinyrkuniversity.de", true },
{ "edxg.de", false },
{ "edxn.de", true },
{ "edyou.eu", true },
{ "edzilla.info", true },
+ { "eelcapone.nl", true },
{ "eellak.gr", true },
{ "eelsden.net", true },
{ "eelzak.nl", true },
- { "eemcevn.com", true },
- { "eengoedenotaris.nl", true },
- { "eeqj.com", true },
+ { "eentweevijf.be", true },
{ "eer.io", true },
{ "eerlijktransport.nl", true },
{ "eerstejaarsweekend.nl", true },
{ "eery.de", true },
+ { "eesti.xyz", true },
{ "eewna.org", true },
{ "ef-georgia.org", true },
{ "ef.gy", true },
{ "efa-football.com", true },
{ "efaas.nl", true },
{ "efag.com", true },
+ { "efcross.com", true },
{ "efeen.nl", true },
{ "eff-bee-eye.de", true },
{ "eff.org", true },
@@ -10814,15 +12049,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "effe.ch", true },
{ "effective-altruist.com", true },
{ "effectivecoffee.com", true },
- { "effectivepapers.com", true },
{ "effero.net", true },
{ "effex.ru", true },
- { "effizienta.ch", true },
+ { "effinfun.com", 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 },
@@ -10831,7 +12079,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "egb.at", false },
{ "egbert.net", true },
{ "egeozcan.com", true },
- { "egfl.org.uk", true },
{ "egg-ortho.ch", true },
{ "eggblast.com", true },
{ "eggert.org", false },
@@ -10839,11 +12086,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "egiftcards.be", true },
{ "eglek.com", true },
{ "egles.eu", true },
+ { "eglisedenantes.fr", true },
{ "ego4u.com", true },
{ "ego4u.de", true },
{ "egoroof.ru", true },
{ "egov4.ch", true },
{ "egovernment-podcast.com", true },
+ { "egres.xyz", true },
{ "egrojsoft.info", true },
{ "egrp365.ru", true },
{ "egumenita.ro", true },
@@ -10852,6 +12101,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ehaccp.it", true },
{ "ehandel.com", true },
{ "ehazi.hu", true },
+ { "ehbssl.com", true },
+ { "ehcommerce.com", true },
{ "eheliche-disziplin.schule", true },
{ "ehertz.uk", true },
{ "ehipaa.com", true },
@@ -10860,7 +12111,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ehmtheblueline.com", true },
{ "ehne.de", true },
{ "ehomusicgear.com", true },
+ { "ehrenburg.info", true },
+ { "ehseller.com", true },
+ { "ehub.cz", true },
+ { "ehub.hu", true },
+ { "ehub.pl", true },
+ { "ehub.sk", true },
+ { "eiao.me", true },
{ "eichel.eu", true },
+ { "eichler.work", true },
{ "eichornenterprises.com", true },
{ "eickemeyer.nl", true },
{ "eickhof.co", true },
@@ -10868,32 +12127,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eickhofcolumbaria.com", true },
{ "eidolons.org", true },
{ "eifel.website", true },
- { "eiga-movie.com", true },
+ { "eifelindex.de", true },
{ "eigenpul.se", true },
{ "eigenpulse.com", true },
{ "eighty-aid.com", true },
- { "eightyfour.ca", true },
{ "eigpropertyauctions.co.uk", true },
{ "eihaikyo.com", true },
+ { "eika.as", true },
+ { "eikounoayumi.jp", true },
+ { "eilandprojectkeukens.nl", true },
{ "eilhan.com", true },
{ "eimacs.com", true },
- { "einar.io", true },
{ "einaros.is", true },
{ "einfachbahn.de", true },
{ "einheft.info", true },
{ "einheizpreis.de", true },
- { "einmonolog.de", true },
{ "einrichtwerk.de", true },
{ "einrichtwerk.shop", true },
{ "einsatzstellenverwaltung.de", true },
{ "einser.com", true },
- { "einsit.com", true },
- { "einsitapis.com", true },
{ "einsteinathome.org", true },
+ { "einsteincapital.ca", true },
{ "eintageinzug.de", true },
{ "eintragsservice24.de", true },
+ { "eioperator.com", true },
{ "eipione.com", true },
{ "eirastudios.co.uk", false },
+ { "eirb.fr", true },
{ "eisaev.ru", true },
{ "eiskratzer-bedrucken.de", true },
{ "eit-web.de", false },
@@ -10901,27 +12161,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eiyoushi-shigoto.com", true },
{ "ejdv-anmeldung.de", true },
{ "ejeff.org", true },
- { "ejuicelab.co.uk", true },
- { "ek-networks.de", true },
- { "ek.network", true },
+ { "ejkmedia.nl", true },
+ { "ejkmuseum.nl", true },
+ { "ejknet.nl", true },
+ { "ejkwebdesign.nl", true },
+ { "ek-networks.de", false },
{ "ekaigotenshoku.com", true },
{ "ekati.ru", true },
+ { "ekawaiishop.com", true },
{ "ekb-avia.ru", true },
{ "ekd.de", true },
{ "ekedc.com", true },
{ "ekedp.com", true },
{ "eklepka.com", true },
{ "eklitzke.org", true },
- { "ekodevices.com", true },
{ "ekokontakt.cz", true },
{ "ekonbenefits.com", true },
{ "ekostecki.de", true },
+ { "ekostrateg.com", true },
{ "ekpyroticfrood.net", true },
{ "ekrana.info", true },
{ "eksisozluk.com", true },
{ "ekuatorial.com", true },
{ "ekyu.moe", true },
+ { "ekz-crosstour.ch", true },
{ "ekzarta.ru", true },
+ { "ekzcrosstour.ch", true },
{ "el-cell.com", true },
{ "el-hossari.com", true },
{ "el-news.de", true },
@@ -10931,33 +12196,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elaon.de", true },
{ "elars.de", true },
{ "elarvee.xyz", true },
- { "elastic7.uk", true },
{ "elb500ttl.nl", true },
{ "elbetech.net", true },
- { "elbohlyart.com", 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 },
- { "eldietista.es", true },
+ { "eldevo.com", true },
{ "eldinhadzic.com", true },
{ "eldisagjapi.com", true },
- { "eldisagjapi.de", true },
{ "eldrid.ge", true },
{ "eldritchfiction.net", true },
{ "electionsbycounty.com", true },
{ "electionsdatabase.com", true },
+ { "electmikewaters.com", true },
{ "electr0sheep.com", true },
{ "electragirl.com", true },
{ "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 },
@@ -10965,6 +12234,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricalmoorpark.com", true },
{ "electricalnewburypark.com", true },
{ "electricaloakpark.com", true },
+ { "electricalpacificpalisades.com", true },
{ "electricalsimivalley.com", true },
{ "electricalthousandoaks.com", true },
{ "electricalwestlakevillage.com", true },
@@ -10974,12 +12244,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricdosvientos.com", true },
{ "electricfencealberton.co.za", true },
{ "electricfencebenoni.co.za", true },
+ { "electricfencingballito.co.za", true },
{ "electricgatemotorgermiston.co.za", true },
{ "electricgatemotorrandburg.co.za", true },
{ "electricgatemotorskemptonpark.co.za", true },
{ "electricgatemotorsroodepoort.co.za", true },
{ "electrichiddenhills.com", true },
- { "electrician-umhlangaridge.co.za", true },
{ "electricianagoura.com", true },
{ "electricianagourahills.com", true },
{ "electriciancalabasas.com", true },
@@ -10987,8 +12257,8 @@ 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 },
{ "electricianmoorpark.com", true },
{ "electriciannewburypark.com", true },
@@ -11007,6 +12277,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricsimivalley.com", true },
{ "electricthousandoaks.com", true },
{ "electricwestlakevillage.com", true },
+ { "electro-pak.com.pk", true },
+ { "electroinkoophardenberg.nl", true },
{ "electronic-ignition-system.com", true },
{ "electronicafacil.net", true },
{ "electronicfasteners.com", true },
@@ -11017,9 +12289,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eleicoes2014.com.br", true },
{ "eleicoes2016.com.br", true },
{ "eleicoes2018.com", true },
+ { "elekharris.com", true },
{ "elektro-adam.de", true },
{ "elektro-collee.de", true },
{ "elektro-diehm.de", true },
+ { "elektro-doerr.com", true },
{ "elektro-hammes.net", true },
{ "elektro-hofmann-gmbh.de", true },
{ "elektro-hornetz.de", true },
@@ -11039,30 +12313,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elektrometz.de", true },
{ "elektronickakancelar.cz", true },
{ "elektronische-post.org", true },
+ { "elektropartner.nu", true },
{ "elektropost.org", true },
{ "elektrotechnik-heisel.de", true },
{ "elektrotechnik-kaetzel.de", true },
{ "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 },
+ { "eletesstilus.hu", true },
+ { "eletor.com", true },
+ { "eletor.pl", true },
+ { "elettricista-roma.it", true },
{ "elettricista-roma.org", true },
{ "eleusis-zur-verschwiegenheit.de", true },
- { "elevator.ee", true },
{ "elevatoraptitudetest.com", true },
- { "elexel.ru", true },
{ "elexprimidor.com", true },
+ { "elexwong.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 },
{ "elguadia.faith", true },
{ "elhamadimi.com", true },
@@ -11070,15 +12352,17 @@ 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 },
{ "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 },
@@ -11088,29 +12372,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elisabethkostecki.de", true },
{ "elisabethrene.com", true },
{ "elisechristie.com", true },
- { "elite-porno.ru", true },
{ "elite12.de", true },
{ "elitebouncingfun.com", true },
{ "elitegameservers.net", true },
- { "elitehosting.de", false },
+ { "elitenutritionoficial.com", true },
{ "elixi.re", true },
{ "elixir.bzh", true },
{ "eliyah.co.il", true },
{ "elizabethbuitrago.com", true },
{ "elizabethgreenfield.com", true },
- { "elizeugomes.com.br", true },
+ { "elizabethrominski.com", true },
{ "eljef.me", true },
{ "elkoy.org", true },
- { "ell-net.tokyo", true },
{ "ella-kwikmed.com", false },
{ "ellak.gr", true },
+ { "ellegaard.dk", true },
{ "ellemental.me", true },
{ "ellencorddry.com", true },
{ "ellevit.ch", true },
{ "elliesbouncers.co.uk", true },
- { "elliff.net", true },
{ "elliot.cat", true },
- { "elliquiy.com", true },
{ "elliriehl.at", true },
{ "ellisamusements.co.uk", true },
{ "ellisleisure.co.uk", true },
@@ -11118,16 +12399,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elmermx.ch", true },
{ "elnan.do", true },
{ "elnoorandelmohanad.com", true },
- { "elo.fyi", true },
+ { "elo-forum.org", true },
{ "elodieclerc.ch", true },
{ "elohellp.com", false },
{ "elonaspitze.de", true },
{ "elosrah.com", true },
- { "elosuite.com", true },
- { "eloxt.com", true },
{ "elpado.de", true },
{ "elpo.net", true },
{ "elpoderdelespiritu.org", true },
+ { "elradix.be", true },
{ "elrinconderovica.com", true },
{ "elsagradocoran.org", true },
{ "elshou.com", true },
@@ -11140,35 +12420,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elternbeiratswahl.online", true },
{ "elternforum-birmensdorf.ch", true },
{ "elternverein-utzenstorf.ch", true },
- { "eltrox.me", true },
+ { "eltip.click", true },
+ { "eltlaw.com", true },
{ "elucron.com", true },
{ "eluhome.de", true },
+ { "eluvio.com", true },
+ { "elvcino.com", false },
{ "elvidence.com.au", true },
{ "elviraszabo.com", true },
{ "elvispresley.net", true },
{ "elvisripley.com", true },
+ { "elvn.tokyo", true },
{ "elwave.org", true },
{ "elwix.com", true },
{ "elxsi.de", true },
{ "elyasweb.com", true },
- { "elyisus.info", true },
{ "elysiria.fr", true },
{ "elysiumware.com", true },
{ "em-biotek.cz", true },
{ "emaging-productions.fr", true },
- { "emailalaperformance.fr", true },
+ { "emaging.fr", true },
{ "emailconfiguration.com", true },
- { "emailcontrol.nl", true },
{ "emailfuermich.de", true },
{ "emailhunter.co", true },
- { "emailing.alsace", true },
+ { "emailmeform.com", true },
{ "emailprivacytester.com", true },
{ "emailtools.io", true },
{ "emaily.eu", true },
+ { "emanol.co.uk", true },
{ "emanuel.photography", true },
+ { "emanuela-gabriela.co.uk", true },
{ "emanuelduss.ch", true },
{ "emanueleanastasio.com", true },
{ "emanuelemazzotta.com", true },
+ { "emarketingmatters.com", true },
+ { "emasex.com", true },
{ "embassycargo.eu", true },
{ "emberlife.com", true },
{ "embox.net", true },
@@ -11176,38 +12462,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "embroideryexpress.co.uk", true },
{ "emby.cloud", true },
{ "emcspotlight.com", true },
- { "emedworld.com", true },
+ { "emdrupholm.dk", true },
+ { "emecew.com", true },
{ "emeliefalk.se", true },
+ { "ememsei.com", true },
+ { "emeraldcbdshop.com", false },
{ "emeraldcityswagger.com", true },
{ "emeraldcoastrideshare.com", true },
{ "emeraldonion.org", true },
- { "emergencyessay.com", true },
{ "emergenzalavoro.com", true },
{ "emero.de", true },
{ "emex.ro", true },
{ "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 },
+ { "emilio.media", 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 },
- { "emmaliddell.com", true },
{ "emobilityforum.org", true },
- { "emoji.bzh", true },
+ { "emoji.bzh", false },
{ "emolafarm.com", true },
{ "emond-usedcars.net", true },
{ "empathogen.com", true },
@@ -11218,6 +12512,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emperor-penguins.com", true },
{ "empese.com", true },
{ "empherino.net", true },
+ { "empire-univ.com", true },
+ { "emploi-collectivites.fr", true },
{ "employeeexpress.gov", true },
{ "employer.gov", true },
{ "employer.guru", true },
@@ -11229,12 +12525,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emporioviverbem.com.br", false },
{ "empower.net", true },
{ "empowerdb.com", true },
+ { "emprechtinger.com", true },
{ "emprego.pt", true },
+ { "emprunterlivre.ci", true },
{ "empyrean-advisors.com", true },
{ "emresaglam.com", true },
{ "emtradingacademy.com", true },
{ "emultiagent.pl", true },
- { "emupedia.net", true },
+ { "emvoice.net", true },
{ "emvoiceapp.com", true },
{ "emw3.com", true },
{ "emyr.net", true },
@@ -11243,15 +12541,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "en-maktoob.search.yahoo.com", false },
{ "en4rab.co.uk", true },
{ "enaah.de", true },
- { "enaim.de", true },
+ { "enalean.com", true },
{ "enamae.net", true },
{ "enbecom.net", true },
- { "encadrer-mon-enfant.com", true },
{ "encfs.win", true },
{ "encircleapp.com", true },
{ "encnet.de", true },
{ "encode.host", true },
{ "encoderx.uk", true },
+ { "encore.io", false },
{ "encouragemarketing.com", true },
{ "encredible.de", false },
{ "encredible.org", false },
@@ -11259,8 +12557,12 @@ 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 },
- { "ende-x.com", true },
+ { "encycarpedia.com", true },
+ { "encyclopedia-titanica.org", true },
{ "endeal.nl", true },
{ "ender.co.at", true },
{ "enderbycamping.com", true },
@@ -11268,15 +12570,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "endingthedocumentgame.gov", true },
{ "endlessdiy.ca", true },
{ "endlessvideo.com", true },
+ { "endofodo.goip.de", true },
{ "endoftenancycleaninglondon.co.uk", true },
{ "endoftennancycleaning.co.uk", true },
+ { "endpointsystems.com", true },
{ "enduranceday.be", true },
{ "endzeit-architekten.com", false },
{ "enemiesoflight.de", true },
- { "energethik-tulln.at", true },
{ "energie-sante.ch", true },
{ "energiekeurplus.nl", true },
- { "energisammenslutningen.dk", true },
{ "energy-drink-magazin.de", true },
{ "energy-in-balance.eu", true },
{ "energy-infra.nl", true },
@@ -11284,32 +12586,30 @@ 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 },
- { "enersaveapp.org", true },
- { "enersec.co.uk", true },
{ "enet-navigator.de", true },
{ "enfantsdelarue.ch", true },
{ "enfield-kitchens.co.uk", true },
{ "enflow.nl", true },
- { "enfoqueseguro.com", true },
{ "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 },
- { "enginx.cn", true },
- { "enginx.net", true },
+ { "enginsight.com", true },
+ { "engl-systems.de", true },
{ "englishbulgaria.net", true },
{ "englishcast.com.br", true },
- { "englishclub.com", true },
{ "englishforums.com", true },
{ "englishlol.com", true },
{ "englishphonopass.com", true },
@@ -11318,14 +12618,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "enigma.swiss", true },
{ "enijew.com", true },
{ "enitso.de", true },
+ { "enixgaming.com", true },
+ { "enjin.io", true },
{ "enjincoin.io", true },
{ "enjinwallet.io", true },
+ { "enjinx.cn", true },
{ "enjinx.io", true },
+ { "enjoy-drive.com", true },
+ { "enjoy-israel.ru", true },
{ "enjoyphoneblog.it", true },
- { "enjoystudio.ro", true },
- { "enlatte.com", true },
- { "enlazaresbueno.cl", true },
- { "enlightened.si", true },
+ { "enlight.no", true },
{ "enlightenedhr.com", true },
{ "enlightenment.org", true },
{ "enlnf.link", true },
@@ -11334,17 +12636,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "enness.co.uk", true },
{ "ennori.jp", true },
{ "enomada.net", true },
+ { "enord.fr", true },
{ "enorekcah.com", true },
{ "enot32.ru", true },
{ "enotecastore.it", true },
+ { "enpasenerji.com.tr", true },
{ "enquos.com", true },
+ { "enrich.email", true },
{ "enriquepiraces.com", true },
{ "enrollapp.com", true },
{ "ensage.io", true },
{ "enscosupply.com", true },
{ "ensemble-rubato.de", true },
- { "enskat.de", true },
- { "enskatson-sippe.de", true },
+ { "ensembling.com", true },
{ "ensley.tech", true },
{ "ensons.de", true },
{ "ensured.com", true },
@@ -11354,11 +12658,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "entabe.jp", true },
{ "entactogen.com", true },
{ "entactogens.com", true },
- { "enteente.com", true },
- { "enterprisechannel.asia", true },
+ { "entercenter.ru", true },
{ "enterprisey.enterprises", true },
+ { "entersoftsecurity.com", true },
{ "entheogens.com", true },
- { "entheorie.net", true },
{ "enthusiaformazione.com", true },
{ "entradaweb.cl", true },
{ "entrainr.com", true },
@@ -11368,55 +12671,57 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "entrusted.io", true },
{ "entryboss.cc", true },
{ "entrypoint.sh", true },
+ { "entwickler.land", true },
{ "enuchi.jp", true },
{ "envant.co.uk", true },
{ "enveloppenopmaat.nl", true },
{ "envescent.com", true },
- { "enviam.de", true },
+ { "enviatufoto.com", true },
{ "enviaya.com.mx", true },
- { "environment.ai", true },
+ { "environmental-colleges.com", true },
{ "environmentkirklees.org", true },
{ "enviroprobasements.com", true },
{ "envirotech.com.au", true },
{ "envoie.moi", true },
{ "envoyez.moi", true },
- { "envoyglobal.com", true },
- { "envoyworld.com", 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 },
{ "epa.com.es", true },
{ "epassafe.com", true },
- { "epave.paris", true },
{ "epay.bg", true },
- { "ephe.be", 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 },
- { "epichouse.net", true },
+ { "epichouse.net", false },
{ "epicinflatables.co.uk", true },
{ "epickitty.co.uk", true },
- { "epicpages.com", true },
{ "epicsecure.de", true },
{ "epicsoft.de", false },
{ "epicvistas.com", true },
{ "epicvistas.de", true },
{ "epicwalnutcreek.com", true },
+ { "epidauros.be", true },
+ { "epigrafes-led-farmakeia.gr", true },
{ "epilis.gr", true },
+ { "epiphanyofourlordchurch.com", true },
{ "epiphyte.network", true },
{ "episkevh-plaketas.gr", true },
{ "epistas.com", true },
{ "epistas.de", true },
+ { "epitesz.co", true },
{ "epiteugma.com", true },
{ "epizentrum.work", true },
{ "epizentrum.works", true },
@@ -11430,35 +12735,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eposbrighton.co.uk", true },
{ "eposbristol.co.uk", true },
{ "eposcardiff.co.uk", true },
+ { "eposig.net", true },
{ "eposkent.co.uk", true },
{ "eposleeds.co.uk", true },
{ "eposleicester.co.uk", true },
{ "eposliverpool.co.uk", true },
{ "eposlondon.co.uk", true },
- { "eposmidlands.co.uk", true },
- { "eposnewport.co.uk", true },
- { "eposnottingham.co.uk", true },
- { "eposreading.co.uk", true },
- { "eposreview.co.uk", true },
{ "epossheffield.co.uk", true },
- { "epossurrey.co.uk", true },
- { "epossussex.co.uk", true },
{ "eposswansea.co.uk", true },
{ "epossystems.co.uk", true },
{ "epostplus.li", true },
- { "eposwales.co.uk", true },
{ "eposyork.co.uk", true },
{ "eppelblei.lu", true },
{ "eppelduerferjugend.lu", true },
{ "eppelpress.lu", true },
{ "epreskripce.cz", true },
- { "epsorting.cz", true },
+ { "epsilon.dk", true },
+ { "epspolymer.com", true },
{ "epublibre.org", true },
- { "epulsar.ru", true },
- { "epvin.com", true },
{ "epyonsuniverse.net", true },
{ "eq-serve.com", true },
{ "equalcloud.com", true },
+ { "equallove.me", true },
+ { "equeim.ru", true },
{ "equidam.com", true },
{ "equinecoaching.ca", true },
{ "equinetherapy.ca", true },
@@ -11466,18 +12765,16 @@ 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 },
{ "er1s.xyz", true },
+ { "erasmo.info", true },
{ "erasmusplusrooms.com", true },
{ "erate.fi", true },
{ "erath.fr", true },
{ "erdethamburgeronsdag.no", true },
{ "ereader.uno", true },
- { "erecciontotalal100.com", true },
- { "erectiepillenwinkel.nl", true },
{ "erethon.com", true },
{ "erf-neuilly.com", true },
{ "ergo-open.de", true },
@@ -11490,6 +12787,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ericabrahamsen.net", true },
{ "ericairwin.com", true },
{ "ericdiao.com", true },
+ { "erichogue.ca", true },
{ "erichorstmanshof.nl", true },
{ "ericisaweso.me", true },
{ "ericjohnltd.com", true },
@@ -11497,37 +12795,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ericleuthardt.com", true },
{ "erico.jp", true },
{ "ericoc.com", true },
+ { "erics.site", true },
+ { "ericschwartzlive.com", true },
+ { "ericspeidel.de", true },
+ { "ericvaughn-flam.com", true },
{ "ericwie.se", true },
- { "eridanus.uk", true },
+ { "ericyl.com", true },
{ "erigrid.eu", true },
{ "eriix.org", true },
{ "erikheemskerk.nl", true },
{ "erikhubers.nl", true },
+ { "erikkruithof.nl", true },
{ "erikserver2.tk", true },
{ "erikseth.de", true },
- { "erikwagner.de", true },
{ "erikwalther.eu", true },
{ "erinaceinae.com", true },
{ "eriner.me", true },
- { "erinlin.com", true },
{ "erinn.io", true },
{ "erisrenee.com", true },
{ "erixschueler.de", true },
{ "erkaelderbarenaaben.dk", true },
{ "ernest.ly", true },
- { "eroma.com.au", true },
+ { "ero.ink", true },
{ "eron.info", true },
- { "erotpo.cz", false },
+ { "eroskines.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 },
@@ -11535,6 +12835,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 },
@@ -11555,115 +12856,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erythroxylum-coca.com", true },
{ "es-geenen.de", true },
{ "es.search.yahoo.com", false },
- { "es888.net", true },
- { "es8888.net", true },
- { "es999.net", true },
- { "es9999.net", true },
+ { "esafar.cz", false },
{ "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 },
- { "esb1314.net", true },
- { "esb1668.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 },
- { "esb17888.com", 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 },
- { "esb556.com", true },
- { "esb5889.com", true },
- { "esb5889.net", true },
- { "esb6.net", true },
- { "esb677.net", true },
- { "esb775.net", true },
- { "esb777.biz", true },
- { "esb777.cc", true },
- { "esb777.com", true },
- { "esb777.me", true },
- { "esb777.net", 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.com", true },
- { "esb999.info", true },
- { "esb999.org", true },
- { "esba11.cc", true },
- { "esba11.com", true },
- { "esba11.in", true },
- { "esba11.net", 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 },
- { "esball888.com", true },
- { "esball888.net", 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 },
- { "escape2rooms.fr", true },
+ { "esc.gov", true },
+ { "escael.org", true },
{ "escapeplaza.de", true },
{ "escapetalk.nl", true },
{ "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 },
@@ -11673,24 +12882,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esdiscuss.org", true },
{ "eservices-greece.com", true },
{ "esg-abi2001.de", true },
+ { "esgen.org", true },
{ "esgr.in", true },
- { "eshepperd.com", true },
- { "eshobe.com", true },
+ { "eshigami.com", true },
{ "eshop-prices.com", true },
- { "eshtapay.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 },
{ "esolitos.com", true },
{ "esono.de", true },
+ { "esote.net", true },
{ "esoterikerforum.de", true },
{ "espace-caen.fr", true },
{ "espace-gestion.fr", true },
@@ -11699,61 +12907,73 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "espacetemps.ch", true },
{ "espacetheosophie.fr", true },
{ "espacio-cultural.com", true },
+ { "espacioantiguo.com", true },
{ "espanol.search.yahoo.com", false },
+ { "espanolseguros.com", true },
{ "espanova.com", true },
{ "espci.fr", true },
{ "especificosba.com.ar", true },
+ { "espehus.dk", true },
{ "espenandersen.no", true },
{ "espgg.org", true },
{ "esphigmenou.gr", true },
{ "espigol.org", true },
+ { "espiritugay.com", true },
+ { "esport-battlefield.com", true },
{ "esports-network.de", true },
- { "esprit-cloture.fr", 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 },
{ "essaydirectory.com", true },
{ "essayforsale.net", true },
- { "essayforum.com", true },
- { "essayhave.com", true },
- { "essaylib.com", true },
+ { "essayjob.com", true },
{ "essaynews.com", true },
{ "essaypro.net", true },
- { "essayscam.org", true },
- { "essayshark.com", true },
{ "essaytalk.com", true },
- { "essaywebsite.com", true },
{ "essaywriting.biz", true },
+ { "essca.fr", true },
{ "essenalablog.de", true },
- { "essencesdeprana.org", true },
+ { "essenciasparis.com.br", true },
+ { "essex.cc", true },
{ "essite.net", true },
{ "esslm.sk", true },
{ "essoduke.org", true },
{ "essteebee.ch", true },
+ { "establo.pro", true },
+ { "estada.ch", true },
{ "estafallando.es", true },
{ "estafallando.mx", true },
{ "estaleiro.org", true },
- { "estan.cn", true },
{ "estate360.co.tz", true },
{ "estateczech-eu.ru", true },
- { "estcequejailaflemme.fr", true },
+ { "estcequejailaflemme.fr", false },
{ "estcequonmetenprodaujourdhui.info", true },
{ "esteam.se", true },
{ "estedafah.com", true },
{ "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 },
{ "estoniantrade.ee", true },
{ "estonoentraenelexamen.com", true },
- { "estoqueinformatica.com.br", true },
- { "estudioamazonico.com", true },
+ { "estoppels.com", true },
+ { "estudiarparaser.com", true },
{ "estudiserradal.com", true },
+ { "estufitas.com", true },
+ { "esu.zone", true },
+ { "esurety.net", true },
+ { "esuretynew.azurewebsites.net", true },
{ "esw00.com", true },
{ "esw06.com", true },
{ "esw07.com", true },
@@ -11761,16 +12981,18 @@ 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 },
{ "etaoinwu.win", true },
{ "etasigmaphi.org", true },
{ "etath.com", true },
+ { "etax.com.au", true },
{ "etaxi.tn", true },
{ "etccooperative.org", true },
{ "etch.co", true },
{ "etd-glasfaser.de", true },
+ { "etda.or.th", true },
{ "etech-solution.com", true },
{ "etech-solution.net", true },
{ "etech-solutions.com", true },
@@ -11787,18 +13009,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ethack.org", true },
{ "ethaligan.fr", true },
{ "ethan.pm", true },
- { "ethandelany.me", true },
+ { "ethanjones.me", true },
{ "ethercalc.com", true },
{ "ethercalc.org", true },
- { "ethergeist.de", true },
- { "etherpad.fr", true },
+ { "ethergeist.de", false },
+ { "etherium.org", true },
{ "etherpad.nl", true },
+ { "ethers.news", true },
{ "ethicaldata.co.uk", true },
{ "ethicalpolitics.org", true },
- { "ethicaltek.com", true },
{ "ethicsburg.gov", true },
{ "ethika.com", true },
{ "ethiopian.dating", true },
+ { "ethiopiannews247.com", true },
{ "ethitter.com", true },
{ "ethosinfo.com", true },
{ "etienne.cc", true },
@@ -11810,14 +13033,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "etrecosmeticderm.com", true },
{ "etresmant.es", true },
{ "etrker.com", true },
+ { "etrolleybizstore.com", true },
{ "etskinner.com", true },
{ "etskinner.net", true },
+ { "etssquare.com", true },
{ "etudesbibliques.fr", true },
{ "etudesbibliques.net", true },
{ "etudesbibliques.org", true },
+ { "eturist.si", true },
{ "etv.cx", true },
{ "etyd.org", true },
- { "etzi.myds.me", true },
{ "eu-darlehen-finanzierung.de", true },
{ "eu-datenbank.de", true },
{ "eu-gamers.com", true },
@@ -11825,6 +13050,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "euaggelion.blog.br", true },
{ "euanbarrett.com", true },
{ "euchre.us", true },
+ { "eugenechae.com", true },
{ "eugenekay.com", true },
{ "eugenetech.org", true },
{ "eujuicers.bg", true },
@@ -11849,28 +13075,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eureka.archi", true },
{ "eurekaarchi.com", true },
{ "eurekaarchitecture.com", true },
+ { "eurheilu.com", true },
{ "euro-servers.de", true },
{ "euroalter.com", true },
- { "euroapo.org", true },
+ { "eurocars2000.es", true },
{ "eurocenterobuda.hu", true },
- { "eurocomcompany.cz", 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 },
- { "europeanpreppers.com", true },
+ { "europeancupinline.eu", true },
{ "europeantimberconnectors.ca", true },
{ "europeantransportmanagement.com", true },
{ "europeanwineresource.com", true },
@@ -11879,24 +13101,23 @@ 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 },
+ { "euterpiaradio.ch", true },
{ "eutotal.com", true },
{ "eutram.com", true },
- { "euvo.tk", false },
+ { "euwid-energie.de", true },
{ "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 },
{ "evailoil.eu", true },
@@ -11907,32 +13128,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evanfiddes.com", true },
{ "evangelicalmagazine.com", true },
{ "evangelosm.com", true },
- { "evantage.org", true },
+ { "evansdesignstudio.com", true },
{ "evantageglobal.com", true },
+ { "evanwang0.com", true },
{ "evapp.org", true },
+ { "evasioncreole.com", true },
{ "evasovova.cz", true },
+ { "evavolfova.cz", true },
{ "eve.ac", true },
{ "eve0s.com", true },
+ { "eveadmin.azurewebsites.net", true },
{ "evelienzorgt.nl", true },
{ "evelyndayman.com", true },
{ "evemarketer.com", true },
{ "evemodx.com", true },
{ "evenementenhoekvanholland.nl", true },
- { "evenstar-gaming.com", true },
+ { "evenstargames.com", true },
+ { "event-blick.de", true },
{ "event4fun.no", true },
{ "eventaro.com", true },
+ { "eventide.space", true },
{ "eventive.org", true },
+ { "eventnexus.co.uk", true },
{ "eventosenmendoza.com.ar", true },
- { "eventplace.me", false },
{ "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 },
{ "everpcpc.com", true },
{ "evertonarentwe.com", true },
{ "everwaking.com", false },
@@ -11943,7 +13176,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "everydaywp.com", true },
{ "everyex.com", true },
{ "everyfad.com", true },
+ { "everygayporn.com", false },
+ { "everything-everywhere.com", true },
{ "everythingaccess.com", true },
+ { "everythinq.com", true },
{ "everytrycounts.gov", false },
{ "everywhere.cloud", true },
{ "eveshamglass.co.uk", true },
@@ -11952,15 +13188,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evidence-based.review", true },
{ "evidencebased.net", true },
{ "evidenceusa.com.br", true },
+ { "evidencija.ba", true },
{ "evidentiasoftware.com", true },
- { "evilarmy.com", true },
- { "evilcult.me", true },
+ { "evilbunnyfufu.com", true },
{ "evileden.com", 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 },
@@ -11968,13 +13202,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evodation.org", true },
{ "evodia-spirits.de", true },
{ "evok.com.co", false },
- { "evokepk.com", true },
{ "evolutioninflatables.co.uk", true },
{ "evolutionlending.co.uk", true },
{ "evolutionpets.com", true },
+ { "evolutionsmedicalspa.com", true },
{ "evolvetechnologies.co.uk", true },
{ "evolvingthoughts.net", true },
- { "evonews.com", true },
{ "evony.eu", true },
{ "evosyn.com", true },
{ "evotec.pl", true },
@@ -11982,19 +13215,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evoting.ch", true },
{ "evrial.com", true },
{ "evrica.me", true },
+ { "evromandie.ch", true },
+ { "evrotrust.com", true },
{ "evstatus.com", true },
+ { "evtasima.name.tr", true },
{ "evtripping.com", true },
+ { "evtscan.io", true },
{ "ewaipiotr.pl", true },
{ "ewanm89.co.uk", true },
{ "ewanm89.com", true },
{ "ewanm89.uk", true },
{ "ewe2.ninja", true },
+ { "ewhitehat.com", true },
{ "ewie.name", true },
{ "ewizmo.com", true },
+ { "ewok.io", true },
{ "ewout.io", true },
{ "ewsfeed.com", true },
{ "ewtl.es", true },
- { "ewuchuan.com", true },
{ "ewus.de", true },
{ "ewycena.pl", true },
{ "ex-deli.jp", true },
@@ -12002,27 +13240,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exactphilosophy.net", true },
{ "exagoni.com.au", true },
{ "exagoni.com.my", true },
+ { "examedge.com", true },
{ "example.sc", true },
{ "example.wf", true },
- { "exampleessays.com", true },
{ "examsmate.in", true },
{ "exaplac.com", true },
+ { "exarpy.com", true },
{ "exatmiseis.net", false },
{ "exceed.global", true },
{ "exceedagency.com", true },
+ { "excel-utbildning.nu", true },
+ { "excelhot.com", true },
+ { "excelkurs.one", true },
+ { "excella.me", true },
{ "exceltechdubai.com", true },
{ "exceltechoman.com", true },
{ "exceltobarcode.com", true },
{ "excentos.com", true },
+ { "exceptionalservers.com", true },
{ "excessamerica.com", true },
{ "excesssecurity.com", true },
- { "exchangeworks.co", true },
{ "exchaser.com", true },
{ "exclusivebouncycastles.co.uk", true },
- { "exclusivedesignz.com", true },
+ { "exclusivecarcare.co.uk", true },
{ "exdamo.de", false },
{ "exe-boss.tech", true },
- { "exebouncycastles.co.uk", true },
+ { "execution.biz.tr", true },
{ "exehack.net", true },
{ "exeintel.com", true },
{ "exekutori.com", true },
@@ -12031,48 +13274,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exerforge.net", true },
{ "exeria.de", true },
{ "exexcarriers.com", true },
- { "exgaywatch.com", true },
{ "exgen.io", true },
- { "exhaledayspa.com.au", true },
{ "exhalespa.com", true },
{ "exhibityour.com", true },
{ "exiahost.com", true },
{ "exit9wineandliquor.com", true },
+ { "exitooutdoor.com", true },
+ { "exmart.ng", true },
{ "exmoe.com", true },
- { "exocen.com", true },
{ "exon.io", true },
+ { "exordiumconcepts.com", true },
{ "exoscale.ch", true },
{ "exoscale.com", true },
{ "exoten-spezialist.de", true },
- { "exoticads.com", true },
{ "exousiakaidunamis.pw", true },
{ "exp.de", true },
- { "expancio.com", true },
+ { "expancio.com", false },
+ { "expanddigital.media", true },
{ "expandeco.com", true },
{ "expatmortgage.uk", true },
- { "expatriate.pl", true },
- { "expecting.com.br", 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-db.com", true },
+ { "exploit.cz", true },
{ "exploit.party", true },
{ "exploit.ph", true },
{ "exploited.cz", true },
{ "exploitit.com.au", true },
{ "exploodo.rocks", true },
{ "exploravacations.in", true },
+ { "exploremonero.com", true },
{ "exploringenderby.com", true },
{ "expo-america.ru", true },
{ "expo-asia.ru", true },
{ "expo-europe.ru", true },
- { "expokohler.com", true },
+ { "expo-larionov.org", true },
{ "exponentialnews.net", true },
{ "expoort.co.uk", true },
{ "expoort.com", true },
@@ -12080,7 +13330,6 @@ 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 },
@@ -12097,6 +13346,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "extasic.com", true },
{ "extendwings.com", true },
{ "extensia.it", true },
+ { "extensibility.biz.tr", true },
{ "extensiblewebmanifesto.org", true },
{ "extensiblewebreportcard.org", true },
{ "extensiblewebsummit.org", true },
@@ -12119,18 +13369,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exteriorlightingwestlakevillage.com", true },
{ "extintormadrid.com", true },
{ "extradesktops.com", false },
+ { "extradivers-worldwide.com", true },
{ "extranetpuc.com.br", true },
{ "extrapagetab.com", true },
+ { "extreemhost.nl", true },
{ "extreme-gaming.de", true },
{ "extreme-gaming.us", true },
{ "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 },
+ { "eye-encounters.com", true },
{ "eyeandfire.com", true },
{ "eyecandy.gr", true },
{ "eyeglasses.com", false },
@@ -12140,20 +13392,19 @@ 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 },
+ { "eyrelles-tissus.com", true },
{ "eyyit.com", false },
{ "eyyubyilmaz.com", true },
{ "ez3d.eu", true },
{ "ezakazivanje.rs", true },
{ "ezdog.press", true },
- { "ezequiel-garzon.net", true },
- { "ezgamble.com", true },
+ { "ezesec.com", true },
{ "ezgif.com", true },
{ "ezhik-din.ru", true },
- { "eznfe.com", true },
+ { "ezpzdelivery.com", true },
{ "eztvtorrent.com", true },
{ "ezwritingservice.com", true },
{ "ezzhole.net", true },
@@ -12169,19 +13420,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "f1fever.co.uk", true },
{ "f1fever.net", true },
{ "f1minute.com", true },
- { "f2e.io", true },
{ "f2h.io", true },
{ "f3nws.com", true },
{ "f43.me", true },
- { "f5movies.top", true },
+ { "f5.hk", true },
{ "f5nu.com", true },
{ "f5w.de", true },
+ { "f88-line.com", true },
+ { "f88-line.net", true },
+ { "f88line.com", true },
+ { "f88line.net", true },
+ { "f88yule1.com", true },
+ { "f88yule5.com", true },
+ { "f88yule6.com", true },
+ { "f88yule7.com", true },
+ { "f88yule8.com", true },
{ "fa-works.com", true },
+ { "fabbro-roma.org", true },
+ { "fabbro.roma.it", true },
{ "faber.org.ru", true },
{ "fabian-fingerle.de", true },
- { "fabian-koeppen.de", true },
+ { "fabian-klose.com", true },
+ { "fabian-klose.de", true },
+ { "fabian-klose.net", true },
{ "fabianackle.ch", true },
- { "fabianasantiago.com", true },
{ "fabianbeiner.com", false },
{ "fabianbeiner.de", false },
{ "fabianfranke.de", true },
@@ -12190,10 +13452,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fabiobier.com", true },
{ "fabjansisters.eu", true },
{ "fableforge.nl", true },
+ { "fabmart.com", true },
{ "fabrica360.com", true },
{ "fabriceleroux.com", true },
{ "fabriziocavaliere.it", true },
- { "fabriziorocca.com", true },
{ "fabriziorocca.it", true },
{ "fabrysociety.org", true },
{ "fabse.net", true },
@@ -12203,15 +13465,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "facciadastile.it", true },
{ "face-mania.com", true },
{ "facealacrise.fr", true },
- { "facebattle.com", true },
{ "facebook-atom.appspot.com", true },
{ "facebook.com", true },
{ "facebydrh.com", true },
{ "facebylouise.co.uk", true },
{ "facekungfu.com", true },
- { "facepalmsecurity.com", true },
- { "facepunch.org", true },
+ { "facepainting.gr", true },
{ "facerepo.com", true },
+ { "faceresources.org", true },
{ "fach-journalist.de", true },
{ "fachschaftslisten.at", true },
{ "fachschaftslisten.org", true },
@@ -12239,27 +13500,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "facucosta.com.ar", true },
{ "faderweb.de", true },
{ "faehler.de", true },
+ { "faelix.net", true },
{ "faerb.it", true },
{ "faerie-art.com", true },
- { "faeriecakes.be", true },
+ { "faeservice.eu", true },
+ { "fafarishoptrading.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 },
{ "failover.eu", true },
{ "failoverplan.it", true },
{ "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 },
{ "faithmissionaries.com", true },
{ "faithwatch.org", true },
@@ -12267,16 +13539,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fakeapple.nl", true },
{ "fakerli.com", true },
{ "fakti.bg", true },
+ { "faktotum.tech", true },
{ "fakturi.com", true },
{ "fakturoid.cz", true },
{ "falaeapp.org", true },
{ "falaowang.com", true },
{ "falbros.com", true },
+ { "falce.in", true },
+ { "falcema.com", true },
+ { "falcona.io", true },
{ "falconfrag.com", true },
{ "falconvintners.com", true },
- { "falcoz.co", true },
- { "faldoria.de", false },
+ { "falcoz.co", false },
+ { "faldoria.de", true },
{ "falegname-roma.it", true },
+ { "falkhusemann.de", true },
{ "falldennismarketing.com", true },
{ "fallenangeldrinks.co.uk", true },
{ "fallenangeldrinks.com", true },
@@ -12286,25 +13563,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fallenspirits.co.uk", true },
{ "falling.se", true },
{ "fallofthecitadel.com", true },
- { "false.in.net", 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 },
{ "familiaperez.net", true },
+ { "familie-keil.de", true },
+ { "familie-kruithof.nl", true },
{ "familie-kupschke.de", true },
{ "familie-leu.ch", true },
+ { "familie-mischak.de", true },
{ "familie-monka.de", true },
{ "familie-poeppinghaus.de", true },
{ "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 },
@@ -12315,10 +13594,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "famoushostels.com", true },
{ "famvangelder.nl", true },
{ "famvsomeren.nl", true },
+ { "fan.gov", true },
{ "fanactu.com", true },
+ { "fanatical.com", true },
+ { "fanatik.io", true },
{ "fanboi.ch", true },
{ "fancy-bridge.com", true },
{ "fancy.org.uk", true },
+ { "fancygaming.dk", true },
{ "fander.it", true },
{ "fandler.cz", true },
{ "fandomservices.com", true },
@@ -12327,27 +13610,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fanhouwan.com", true },
{ "fanjoe.be", true },
{ "fansided.com", true },
- { "fansmade.art", 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 },
+ { "fantasy-judo.com", true },
{ "fantasycastles.co.uk", true },
+ { "fantasycdn.com", true },
+ { "fantasydrop.com", true },
{ "fantasyescortsbirmingham.co.uk", true },
+ { "fantasymina.de", true },
{ "fantasypartyhire.com.au", true },
{ "fantasyspectrum.com", true },
{ "fantopia.club", true },
{ "fanvoice.com", true },
+ { "fanyina.cn", true },
+ { "fanyina.com", true },
{ "fanyue123.tk", true },
{ "fanz.pro", true },
{ "fanzlive.com", true },
- { "fap.no", true },
+ { "fapplepie.com", true },
{ "faq.ie", true },
{ "fara.gov", true },
{ "faradji.nu", true },
{ "faradome.ws", true },
{ "faraslot8.com", true },
{ "farcecrew.de", true },
+ { "farces.com", false },
{ "farfallapets.com.br", true },
{ "farfetchos.com", true },
{ "fargtorget.se", true },
@@ -12355,6 +13647,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "farhood.org", true },
{ "farid.is", true },
{ "farmacia-discreto.com", true },
+ { "farmaciadejaime.es", true },
{ "farmacialaboratorio.it", true },
{ "farmer.dating", true },
{ "farmers.gov", false },
@@ -12363,15 +13656,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "faroes.net", true },
{ "faroes.org", true },
{ "farrel-f.cf", true },
- { "farrel-f.id", true },
{ "farrel-f.tk", true },
{ "farrelf.blog", true },
- { "farsil.eu", true },
{ "fart.wtf", true },
+ { "farthing.xyz", true },
{ "farwat.ru", true },
+ { "faschingmd.com", true },
{ "fashion-stoff.de", true },
{ "fashion24.de", true },
{ "fashion4ever.pl", true },
+ { "fashionhijabers.com", true },
{ "fashionunited.be", true },
{ "fashionunited.cl", true },
{ "fashionunited.com", true },
@@ -12389,15 +13683,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fashionunited.pl", true },
{ "fashionunited.se", true },
{ "fashionweekweb.com", true },
+ { "fashtic.nl", true },
{ "faspirits.co.uk", true },
{ "faspirits.com", true },
{ "fassaden-selleng.de", true },
{ "fassadenverkleidung24.de", true },
{ "fassi-sport.it", true },
+ { "fast-host.net", true },
+ { "fast-pro.co.jp", true },
{ "fastblit.com", true },
{ "fastcash.com.br", true },
+ { "fastcomcorp.com", true },
{ "fastcommerce.org", true },
- { "fastconfirm.com", true },
+ { "fastest-hosting.co.uk", true },
{ "fastforwardsociety.nl", true },
{ "fastforwardthemes.com", true },
{ "fastlike.co", true },
@@ -12406,27 +13704,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fastpresence.com", true },
{ "fastrevision.com", true },
{ "fastvistorias.com.br", true },
- { "fastwebsites.com.br", true },
{ "faszienrollen-info.de", false },
+ { "fatalerrorcoded.eu", true },
+ { "fateandirony.com", true },
+ { "fatecdevday.com.br", true },
{ "fatedata.com", true },
+ { "fateitalia.it", true },
+ { "fatherhood.gov", true },
{ "fathers4equalrights.org", true },
{ "fatidique.com", true },
{ "fatimamoldes.com.br", true },
- { "fator25.com.br", true },
+ { "fatmixx.com", true },
{ "fatowltees.com", true },
{ "faucetbox.com", false },
- { "faui2k17.de", true },
+ { "faui2k17.de", false },
+ { "faultlines.org", true },
{ "faulty.equipment", true },
{ "fauvettes.be", true },
{ "favirei.com", true },
{ "fawong.com", true },
{ "faxite.com", true },
{ "faxvorlagen-druckvorlagen.de", true },
- { "fayntic.com", true },
{ "fb.me", true },
{ "fbcdn.net", true },
{ "fbcopy.com", true },
- { "fbi.pw", true },
+ { "fbi.gov", true },
{ "fbigame.com", true },
{ "fbiic.gov", true },
{ "fbijobs.gov", true },
@@ -12437,25 +13739,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fc.media", true },
{ "fca-tools.com", true },
{ "fcburk.de", true },
+ { "fccarbon.com", true },
+ { "fcdn.nl", true },
{ "fcforum.net", true },
- { "fcitasc.com", true },
+ { "fcingolstadt.de", true },
{ "fckd.net", true },
{ "fcosinus.com", true },
- { "fcp.cn", 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 },
{ "feastr-dev.de", true },
@@ -12464,10 +13771,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "featherweightlabs.com", true },
{ "featuredmen.com", false },
{ "feb.gov", true },
- { "fecik.sk", true },
{ "fedcenter.gov", true },
{ "federaljobs.gov", true },
{ "federalreserve.gov", true },
+ { "federalreserveconsumerhelp.gov", true },
{ "federatedbank.com", true },
{ "federicomigliavacca.it", true },
{ "fedjobs.gov", true },
@@ -12475,19 +13782,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fedoramagazine.org", true },
{ "fedorapeople.org", true },
{ "fedoraproject.org", true },
+ { "fedpartnership.gov", true },
{ "fedramp.gov", false },
{ "fedrtc.org", true },
{ "fedshirevets.gov", true },
{ "fedux.com.ar", true },
{ "fedvan.com", true },
- { "fee-hosting.com", true },
{ "feedbin.com", false },
{ "feedfall.com", true },
{ "feedhq.org", true },
{ "feedkovacs.hu", true },
{ "feedough.com", true },
{ "feedthefuture.gov", true },
- { "feegg.com.br", true },
+ { "feeeei.com", true },
+ { "feek.fit", true },
{ "feel-events.com", true },
{ "feel.aero", true },
{ "feelgood-workouts.de", true },
@@ -12495,7 +13803,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feeltennis.net", true },
{ "feen.us", true },
{ "feepod.com", true },
- { "feeriedesign-event.com", true },
{ "feetpa.ws", true },
{ "feezmodo.com", false },
{ "fefelovalex.ru", true },
@@ -12506,46 +13813,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fegli.gov", true },
{ "fehngarten.de", true },
{ "fehnladen.de", true },
- { "feigling.net", true },
+ { "feigling.net", false },
+ { "feildel.fr", true },
{ "feilen.de", true },
{ "feisbed.com", true },
{ "feisim.com", true },
{ "feisim.org", true },
- { "feist.io", true },
{ "feistyduck.com", true },
{ "feizhujianzhi.com", true },
- { "fejes.house", true },
{ "feld.design", true },
{ "feld.saarland", true },
{ "feldhousen.com", true },
- { "felgitscher.xyz", true },
+ { "feldmann-stachelscheid.de", true },
+ { "felett.es", 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 },
- { "felixhefner.de", true },
{ "felixkauer.de", true },
- { "felixqu.com", true },
{ "felixsanz.com", true },
{ "felixseele.de", true },
{ "felsing.net", true },
{ "felsmalerei.net", true },
{ "femanca.com", true },
{ "femastudios.com", true },
- { "femdombbw.com", true },
+ { "femiluna.com", true },
{ "feminina.pt", true },
+ { "feminism.lgbt", true },
{ "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 },
{ "fenster-bank.de", true },
+ { "feragon.net", true },
{ "ferdies.co.za", true },
{ "fergtm.com", true },
{ "fergusoncastle.com", true },
@@ -12554,6 +13861,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ferienhaeuser-krummin.de", true },
{ "ferienhaus-polchow-ruegen.de", false },
{ "ferienhausprovence.ch", true },
+ { "ferienwohnung-hafeninsel-stralsund.de", true },
+ { "ferienwohnung-wiesengrund.eu", true },
{ "feriespotter.dk", true },
{ "ferm-rotterdam.nl", true },
{ "fermabel.com.br", true },
@@ -12562,10 +13871,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fernandobarata.pt", true },
{ "fernandobarillas.com", true },
{ "fernandomiguel.net", true },
+ { "feross.org", true },
{ "ferrariadvisor.it", true },
{ "ferret.zone", true },
{ "ferreteriaxerez.com", true },
{ "ferrolatino.ch", true },
+ { "ferrone.ru", true },
{ "ferrousmoon.com", true },
{ "ferry.tw", true },
{ "ferticare.pt", true },
@@ -12573,36 +13884,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "festaprylar.se", true },
{ "festival-tipps.com", true },
{ "festivaljapon.com", true },
- { "festivalxdentro.com", true },
- { "fetlife.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 },
{ "feuerwehr-oberkotzau.de", true },
{ "feuerwehr-offenbach-bieber.de", false },
{ "feuerwehr-vechta.de", true },
+ { "feuerwehrbadwurzach.de", true },
{ "feuerwerksmanufaktur.de", true },
{ "feuetgloire.com", true },
+ { "fewo-hafeninsel-stralsund.de", true },
{ "fewo-thueringer-wald.de", true },
{ "fexco.com", true },
+ { "feybiblia.com", true },
{ "feyermedia.de", true },
{ "ff-bad-hoehenstadt.de", true },
- { "ff-bg.xyz", true },
{ "ff-getzersdorf.at", true },
{ "ff-obersunzing-niedersunzing.de", true },
- { "ff14-mstdn.xyz", true },
+ { "ff14-mstdn.xyz", false },
{ "ffb.gov", false },
- { "ffbans.org", true },
+ { "ffbsee.net", true },
+ { "ffh.me", true },
{ "ffiec.gov", true },
{ "ffis.me", true },
{ "ffkoenigsberg.de", true },
{ "ffmradio.de", true },
{ "ffprofile.com", true },
+ { "ffrev.de", true },
{ "ffsociety.nl", true },
{ "ffta.eu", true },
{ "ffw-zeven.de", true },
@@ -12614,7 +13930,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fhdhelp.de", false },
{ "fhdhilft.de", false },
{ "fhfaoig.gov", true },
- { "fhg90.com", true },
{ "fhmkh.cn", true },
{ "fi.google.com", true },
{ "fi.search.yahoo.com", false },
@@ -12624,9 +13939,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fiasgo.com", true },
{ "fiasgo.dk", true },
{ "fiasgo.i.ng", true },
+ { "fibabanka.com.tr", true },
{ "fibo-forex.org", true },
+ { "fibra.click", true },
{ "fibretv.co.nz", true },
{ "fibretv.tv", true },
+ { "fibromuebles.com", true },
{ "fichier-pdf.fr", true },
{ "fickweiler.nl", true },
{ "ficlab.com", true },
@@ -12638,9 +13956,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fidelis-it.net", true },
{ "fidhouriet.ch", true },
{ "fiduciaire-ratio.ch", true },
- { "fieldwork-paysage.com", true },
+ { "fieldwork-paysage.com", false },
{ "fierlafijn.net", true },
+ { "fierscleaning.nl", true },
{ "fiery.me", true },
+ { "fiestagenial.com", true },
+ { "fifautstore.com", true },
{ "fifei.de", true },
{ "fifichachnil.paris", true },
{ "fifieldtech.com", true },
@@ -12651,24 +13972,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fight215.com", true },
{ "fight215.org", true },
{ "figinstitute.org", true },
+ { "figliasons.com", true },
{ "figshare.com", true },
- { "figura.cz", true },
{ "figurasdelinguagem.com.br", true },
+ { "figure.nz", true },
{ "fiilr.com", true },
- { "fiissh.tech", true },
{ "fiix.io", true },
{ "fijnefeestdageneneengelukkignieuwjaar.nl", true },
{ "fijnewoensdag.nl", true },
{ "fiken.no", true },
+ { "fikst.com", true },
+ { "fil-tec-rixen.com", true },
{ "fil.fi", true },
{ "filanthropystar.org", true },
+ { "file-cloud.eu", true },
{ "file-pdf.it", true },
- { "filebox.moe", false },
{ "filecopa.com", true },
{ "files.from-me.org", true },
+ { "fileservicios.com.ar", true },
{ "filestar.io", true },
+ { "filestartest.io", true },
{ "filetransfer.one", true },
- { "filewall.de", true },
{ "filezilla-project.org", true },
{ "filezilla.cn", true },
{ "filhin.es", true },
@@ -12677,41 +14001,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "filidorwiese.nl", true },
{ "filiio.com", true },
{ "filingsmadeeasy.com", true },
- { "filip-prochazka.com", true },
+ { "filiosoft.cloud", true },
+ { "filip-prochazka.com", false },
{ "filippo.io", true },
{ "filipsebesta.com", true },
{ "filleritemsindia.com", true },
{ "fillo.sk", true },
+ { "film-colleges.com", true },
+ { "film-storyboards.fr", true },
{ "film-tutorial.com", true },
- { "film.photography", true },
- { "film.photos", true },
- { "filmatiporno.xxx", true },
{ "filme-onlines.com", true },
+ { "filmers.net", true },
{ "filmesonline.online", true },
{ "filmitis.com", true },
+ { "filmovizija.mk", true },
{ "filmreviewonline.com", true },
{ "filmserver.de", true },
{ "filmsite-studio.com", true },
+ { "filmsphoto.com", true },
{ "filoo.de", true },
{ "filstop.com", true },
- { "filterflasche-kaufen.de", true },
{ "filterlists.com", true },
{ "filtr.me", true },
{ "fimsquad.com", true },
+ { "finagosolo.com", true },
{ "final-expense-quotes.com", true },
+ { "finalprice.net", true },
{ "finalrewind.org", true },
- { "finalx.nl", false },
+ { "finalx.nl", true },
+ { "finance-colleges.com", true },
{ "financejobs.ch", true },
{ "financepark.ch", true },
{ "financniexperti.sk", true },
{ "finansa.no", true },
+ { "finanstilsynet.dk", true },
{ "finch.am", true },
{ "finchi.de", true },
{ "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 },
{ "findingkorea.com", true },
{ "finditez.com", true },
@@ -12722,30 +14052,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "findstorenearme.co.uk", true },
{ "findstorenearme.us", true },
{ "findthatnude.com", true },
+ { "findyourtrainer.com", true },
{ "findyourvoice.ca", true },
- { "fine-services.paris", true },
- { "finecocoin.io", true },
+ { "finecocoin.io", false },
+ { "finecraft.cc", true },
{ "finefriends.nl", true },
{ "finelovedolls.com", true },
{ "finenet.com.tw", true },
- { "finewineonline.com", true },
+ { "finesoon.net", 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", true },
+ { "fintandunleavy.com", false },
{ "fintechnics.com", false },
{ "fintry.ca", true },
{ "finvantage.com", true },
+ { "finwe.info", true },
+ { "finzy.com", true },
+ { "fionafuchs.de", 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 },
@@ -12758,20 +14098,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firefighters.dating", true },
{ "firefly-iii.org", true },
{ "firegoby.jp", true },
+ { "firegore.com", true },
+ { "firekoi.com", true },
{ "fireleadership.gov", true },
{ "firemudfm.com", true },
- { "firepeak.ru", true },
+ { "firenza.org", true },
+ { "fireplex.co.uk", true },
{ "fireportal.cz", true },
{ "fireportal.sk", true },
{ "fireshellsecurity.team", true },
{ "firesofheaven.org", true },
+ { "firesuite.net", true },
{ "firetotheprisons.org", true },
{ "firevap.org", true },
{ "firewallconsultants.com", true },
{ "fireworksshowvr.com", true },
+ { "firexfly.com", true },
{ "firma-cerny.cz", true },
{ "firma-offshore.com", true },
- { "firmale.com", true },
{ "firmament.space", true },
{ "firmapi.com", true },
{ "firmen-assekuranz.de", true },
@@ -12785,12 +14129,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firstclasscastles.com", true },
{ "firstclassleisure.co.uk", true },
{ "firstderm.com", true },
+ { "firstdry.com.br", true },
{ "firstfinca.de", true },
{ "firstinnovation.co.jp", true },
{ "firstinnovationltd.com", true },
{ "firstmall.de", true },
{ "firstq.xyz", true },
- { "fischer-its.com", false },
{ "fischer-kundendienst.de", true },
{ "fischers.cc", true },
{ "fischers.it", true },
@@ -12804,18 +14148,21 @@ 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 },
+ { "fisinfomanagerdr.com", true },
+ { "fisiobox.eu", true },
+ { "fiskalnepretor.pl", true },
{ "fistu.la", true },
{ "fit-4u.ch", true },
{ "fit-mit-nina.com", true },
{ "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 },
@@ -12824,23 +14171,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fiuxy.bz", true },
{ "fiuxy.co", true },
{ "fiuxy.me", true },
- { "fiuxy.org", true },
- { "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.je", true },
{ "fj.search.yahoo.com", false },
{ "fj.simple.com", false },
+ { "fjdekermadec.com", true },
{ "fjharcu.com", true },
{ "fjordboge.dk", true },
{ "fjugstad.com", true },
+ { "fjzone.org", true },
{ "fkcdn.de", true },
{ "fkfev.de", true },
{ "fktpm.ru", true },
@@ -12856,23 +14208,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flamme-von-anor.de", true },
{ "flana.com", true },
{ "flanga.io", true },
+ { "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 },
+ { "fleesty.dynv6.net", true },
{ "fleetcor.at", true },
{ "fleetcor.ch", true },
{ "fleetcor.cz", true },
@@ -12891,19 +14246,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flers-agglo.fr", true },
{ "flerstourisme.fr", true },
{ "fletchto99.com", true },
+ { "fletemaritimo.online", true },
{ "flets-ms.com", true },
{ "fleurenplume.fr", true },
- { "fleurette.me", true },
{ "fleuryfleury.com", true },
{ "flexapplications.se", true },
+ { "flexfunding.com", true },
{ "fleximaal.com", true },
{ "fleximal.com", true },
{ "fleximus.org", false },
{ "flexport.com", true },
{ "flexstart.me", true },
{ "flextrack.dk", true },
- { "flextribly.xyz", true },
{ "fliacuello.com.ar", true },
+ { "flickcritter.com", true },
+ { "flieger-funk-runde.de", true },
+ { "fliesen-waldschmidt.de", true },
{ "flight.school", true },
{ "flightdeckfriend.com", true },
{ "flightmedx.com", true },
@@ -12916,16 +14274,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fliino.net", true },
{ "fliino.org", true },
{ "fliio.com", true },
- { "flikmsg.co", true },
{ "flinch.io", true },
- { "fling.dating", true },
+ { "flip.kim", true },
{ "flipneus.net", true },
{ "fliptable.org", true },
{ "flirt-norden.de", true },
{ "flirtee.net", true },
{ "flirtfaces.de", true },
{ "flirtos.de", true },
- { "flirtycourts.com", true },
{ "flixports.com", true },
{ "flmortgagebank.com", true },
{ "floatationlocations.com", true },
@@ -12934,17 +14290,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flocktofedora.org", true },
{ "floersheimer-openair.de", true },
{ "floffi.media", true },
+ { "floify.com", 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 },
{ "floriankarmen.com", true },
@@ -12954,36 +14318,34 @@ 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 },
{ "florisvdk.net", true },
{ "floriswesterman.nl", true },
{ "flosch.at", false },
- { "floseed.fr", true },
{ "floskelwolke.de", true },
- { "flosserver.de", true },
+ { "flourishtogether.com", true },
{ "flow.su", true },
{ "flowair24.ru", true },
{ "flowcom.de", true },
- { "flowcount.xyz", true },
{ "flowersbylegacy.com", true },
{ "flowinvoice.com", true },
{ "flowreader.com", true },
- { "flox.io", true },
{ "flra.gov", true },
- { "flucky.xyz", false },
- { "flucto.com", true },
- { "flue-ducting.co.uk", true },
{ "fluffycloud.de", true },
- { "flugsportvereinigungcelle.de", true },
+ { "fluggesellschaft.de", true },
{ "fluhrers.de", true },
{ "fluidmeterusa.com", true },
+ { "fluids.ac.uk", true },
{ "flumble.nl", true },
{ "flunschi.goip.de", true },
{ "fluoxetine.net", true },
{ "flurp.de", false },
+ { "flushlife.com", true },
{ "fluteandpianoteaching.co.uk", true },
{ "flux.by", true },
{ "flux.healthcare", true },
@@ -13000,35 +14362,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flydrivesicilie.nl", true },
{ "flyer.tools", true },
{ "flygon.pink", true },
- { "flyinglocksmiths.com", false },
+ { "flyinglocksmiths.com", true },
{ "flyingpackets.net", true },
{ "flyingrub.me", true },
- { "flyingspaghettimonsterdonationsfund.nl", true },
{ "flymns.fr", true },
{ "flynn.io", true },
+ { "flyp.me", true },
+ { "flypenge.dk", true },
{ "flyserver.co.il", true },
{ "flyshe.co.uk", true },
- { "flyspace.ml", 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 },
- { "fnfpt.co.uk", true },
+ { "fnh-expert.net", true },
{ "fnkr.net", true },
{ "fnof.ch", true },
{ "fnordserver.eu", true },
+ { "fnpro.eu", true },
{ "fnzc.co.nz", true },
{ "foairbus.fr", true },
{ "foairbussas.fr", true },
@@ -13038,9 +14399,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "focuspointtechnologies.com", true },
{ "foej-aktiv.de", true },
{ "foej.net", true },
+ { "foerster.gmbh", true },
{ "fogpublishingph.com", true },
+ { "fogway.net", true },
{ "foia.gov", true },
{ "foiaonline.gov", true },
+ { "foixet.com", true },
{ "fojing.com", true },
{ "fojt.cz", true },
{ "fojtova.cz", true },
@@ -13048,13 +14412,12 @@ 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 },
{ "followerrocket.com", true },
{ "followersya.com", true },
{ "followings-live.com", true },
@@ -13065,13 +14428,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "folwark.krakow.pl", true },
{ "folwarkwiazy.pl", true },
{ "fomopop.com", true },
- { "fondanastasia.ru", true },
{ "fondationwiggli.ch", true },
{ "fondsdiscountbroker.de", true },
{ "fondy.eu", true },
{ "fondy.ua", true },
{ "fonga.ch", true },
{ "fonolo.com", true },
+ { "fonseguin.ca", true },
{ "font-converter.net", true },
{ "fonte-trading.com", true },
{ "fontein.de", true },
@@ -13079,14 +14442,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fonts4free.net", true },
{ "foo.fo", true },
{ "foo.hamburg", true },
- { "foodacademy.capetown", true },
{ "foodattitude.ch", true },
{ "foodblogger.club", true },
- { "foodcowgirls.com", true },
{ "foodev.de", true },
+ { "foodloader.net", true },
{ "foodsafety.gov", true },
{ "foodsafetyjobs.gov", true },
- { "foodserve.in", true },
{ "foodsouvenirs.it", true },
{ "foodtable.at", true },
{ "foodwise.marketing", true },
@@ -13096,7 +14457,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fooster.io", true },
{ "foot.fr", true },
{ "footagecrate.com", true },
+ { "football.de", true },
{ "footballforum.de", true },
+ { "footloose.co.uk", true },
{ "for.care", true },
{ "foray-jero.me", true },
{ "forbusiness.ca", true },
@@ -13112,6 +14475,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 },
@@ -13119,48 +14483,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forestraven.net", true },
{ "foreverssl.com", true },
{ "foreversummertime.com", true },
+ { "forewordreviews.com", true },
{ "forex.ee", true },
{ "forexchef.de", true },
{ "forexee.com", true },
- { "forexsignals7.com", true },
+ { "forextickler.com", true },
{ "forextimes.ru", false },
{ "forfunssake.co.uk", true },
{ "forge-goerger.eu", true },
- { "forglemmigej.net", true },
{ "forgotten-legends.org", true },
+ { "form3w.nl", true },
+ { "formacionyestudios.com", true },
{ "forman.store", true },
{ "formapi.io", true },
- { "formasdemaquillarse.com", true },
{ "format-paysage.ch", true },
{ "formation-assureur.com", true },
{ "formation-mac.ch", true },
{ "formationseeker.com", true },
{ "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 },
{ "forodeespanol.com", true },
{ "forodieta.com", true },
+ { "forokd.com", true },
{ "forologikidilosi.com.gr", true },
{ "forourselves.com", true },
- { "forpc.us", true },
{ "forrestheller.com", true },
+ { "forro.berlin", true },
{ "forro.info", true },
{ "forsakringsarkivet.se", true },
+ { "forschbach-janssen.de", true },
{ "forsec.nl", true },
{ "forstbetrieb-hennecke.de", true },
{ "forstprodukte.de", true },
{ "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 },
{ "forum-bonn.de", true },
@@ -13169,7 +14541,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forum-kinozal.appspot.com", true },
{ "forum.quantifiedself.com", false },
{ "forum3.ru", true },
- { "forumjuridico.org", true },
{ "forumvoordemocratie.nl", true },
{ "forvisualdesign.com", true },
{ "forward-fly-fishing.ch", true },
@@ -13179,7 +14550,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 },
@@ -13187,18 +14558,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foto-leistenschneider.de", true },
{ "foto-leitner.com", true },
{ "foto-leitner.de", true },
- { "foto-pro.by", true },
{ "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 },
+ { "fotografiamakro.pl", true },
{ "fotohome.dk", true },
+ { "fotokomorkomania.pl", true },
{ "fotoleitner.com", true },
{ "fotoleitner.de", true },
{ "fotonjan.com", true },
- { "fotostravestisbr.com", true },
{ "fotostudio-leitner.com", true },
{ "fotostudio-leitner.de", true },
{ "fotostudio-schweiz.ch", true },
@@ -13206,6 +14579,9 @@ 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 },
{ "foundsounds.me", true },
{ "fourashesgolfcentre.co.uk", true },
@@ -13215,26 +14591,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foutrelis.com", true },
{ "fowlervwparts.com", true },
{ "fowlsmurf.net", true },
+ { "fox.my", false },
{ "foxbnc.co.uk", true },
{ "foxdev.co", true },
- { "foxhound.com.br", true },
+ { "foxesare.sexy", true },
{ "foxing.club", true },
+ { "foxo.blue", true },
{ "foxontheinter.net", true },
{ "foxphotography.ch", true },
{ "foxquill.com", true },
- { "foxterrier.com.br", true },
- { "foyale.io", true },
- { "fpc.gov", true },
+ { "foxstreetcomms.co.za", true },
+ { "fpaci.org", true },
+ { "fpasca.com", true },
+ { "fpc.gov", false },
{ "fpersona.com", true },
- { "fpki.sh", 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 },
+ { "fracreazioni.it", true },
{ "fraesentest.de", true },
{ "fragmentspuren.de", true },
+ { "fragrances.bg", true },
{ "fragstore.net", true },
{ "fraho.eu", true },
{ "framapiaf.org", true },
@@ -13242,24 +14626,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "framedpaws.com", true },
{ "framezdakkapellen.nl", true },
{ "fran.cr", true },
- { "francesca-and-lucas.com", 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 },
+ { "frank.fyi", true },
+ { "frankbellamy.co.uk", true },
{ "franke-chemie.de", true },
- { "frankedier.com", true },
{ "franken-lehrmittel.de", true },
{ "frankenhost.de", true },
{ "frankenlehrmittel.de", true },
@@ -13270,17 +14658,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frankinteriordesign.co.uk", true },
{ "frankl.in", true },
{ "frankmorrow.com", true },
+ { "frankopol-sklep.pl", true },
+ { "frankpalomeque.com", 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 },
{ "franz.beer", true },
{ "franziska-pascal.de", true },
- { "frappant.cc", false },
+ { "franzknoll.de", true },
+ { "frappant.cc", true },
{ "fraselab.ru", true },
+ { "frasesconemocion.com", true },
{ "frasesdodia.com", true },
{ "frasesparaface.com.br", true },
{ "frasesytarjetas.com", true },
@@ -13295,38 +14687,46 @@ 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 },
- { "frebi.org", true },
- { "frebib.co.uk", true },
- { "frebib.com", true },
- { "frebib.me", true },
- { "frebib.net", true },
+ { "freakyawesome.agency", true },
+ { "freakyawesome.art", true },
+ { "freakyawesome.band", true },
+ { "freakyawesome.business", true },
+ { "freakyawesome.ca", true },
+ { "freakyawesome.co.uk", true },
+ { "freakyawesome.in", true },
+ { "freakyawesome.net", true },
+ { "freakyawesome.org", true },
+ { "freddieonfire.tk", false },
{ "freddyfazbearspizzeria.com", true },
{ "freddysfuncastles.co.uk", true },
- { "fredericcote.com", true },
- { "frederickalcantara.com", true },
{ "frederik-braun.com", false },
{ "frederikvig.com", true },
{ "fredloya.com", true },
- { "fredriksslekt.se", true },
+ { "fredriksslaktforskning.se", true },
{ "fredtec.ru", true },
{ "fredvoyage.fr", true },
- { "free-your-pc.com", true },
+ { "free-ss.site", true },
+ { "free.ac.cn", true },
{ "free.com.tw", true },
+ { "freeassangenow.org", true },
{ "freeasyshop.com", true },
{ "freebarrettbrown.org", true },
{ "freebcard.com", true },
{ "freebetoffers.co.uk", true },
- { "freeblog.me", true },
{ "freebookmakersbetsandbonuses.com.au", true },
{ "freeboson.org", true },
+ { "freebus.org", true },
{ "freecam2cam.site", true },
{ "freecloud.at", true },
- { "freecookies.nl", true },
+ { "freecycleusa.com", true },
{ "freedev.cz", true },
+ { "freedom.nl", true },
{ "freedom.press", true },
+ { "freedom35.org", true },
{ "freedomfinance.se", true },
{ "freedomflotilla.org", true },
{ "freedomfrontier.tk", true },
@@ -13334,7 +14734,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freedomonline.bg", true },
{ "freedomrahoitus.fi", true },
{ "freeenglishhelp.com", true },
- { "freeexampapers.com", true },
{ "freeform4u.de", true },
{ "freegame-mugen.jp", true },
{ "freegutters.com", true },
@@ -13342,25 +14741,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freeinoutboard.com", true },
{ "freejasongoudlock.org", true },
{ "freejeremy.net", true },
+ { "freekdevries.nl", true },
+ { "freeks.com.br", true },
{ "freela.ch", true },
{ "freelance.boutique", true },
{ "freelance.guide", true },
{ "freelance.nl", true },
- { "freelancecollab.com", true },
{ "freelanceessaywriters.com", true },
{ "freelancehunt.com", true },
- { "freelanceshipping.com", true },
+ { "freelancejobs.org.uk", true },
{ "freelauri.com", true },
{ "freelifer.jp", true },
{ "freelo.cz", true },
{ "freelysurf.cf", true },
+ { "freemania.eu", true },
+ { "freemania.nl", true },
+ { "freemanlogistics.com", true },
{ "freemans.com", true },
+ { "freemomhugs.org", true },
{ "freemyipod.org", true },
{ "freend.me", false },
{ "freenetproject.org", true },
{ "freeonplate.com", true },
{ "freepnglogos.com", true },
- { "freepoints.us", true },
{ "freepublicprofile.com", true },
{ "freergform.org", true },
{ "freeshell.de", true },
@@ -13371,12 +14774,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freesoft-board.to", true },
{ "freesoftlab.com", true },
{ "freesolitaire.win", true },
+ { "freesourcestl.org", true },
+ { "freesquare.net", true },
+ { "freessl.tech", true },
+ { "freesslcertificate.me", true },
{ "freethetv.ie", true },
{ "freetsa.org", true },
- { "freevps.us", false },
{ "freeweibo.com", true },
+ { "freewoodfactory.com", true },
{ "freeyourmusic.com", true },
+ { "freezion.com", true },
{ "frei.social", true },
+ { "freie-software.net", true },
{ "freifahrt.de", true },
{ "freifamily.ch", true },
{ "freifunk-burgaltendorf.de", true },
@@ -13388,13 +14797,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freifunk-remscheid.de", true },
{ "freimeldungen.de", true },
{ "freims.cc", true },
- { "freitasul.com.br", true },
- { "freitasul.io", true },
{ "freiwurst.net", true },
+ { "freizeitbad-riff.de", true },
{ "freizeitplaza.de", true },
{ "frejasdal.dk", true },
{ "frenchcreekcog.org", true },
- { "frenzel.dk", true },
+ { "frenchmusic.fr", true },
{ "frequencebanane.ch", true },
{ "frequentflyerapp.com", true },
{ "fresh-hotel.org", true },
@@ -13404,46 +14812,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freshdns.nl", true },
{ "freshempire.gov", true },
{ "freshislandfish.com", true },
- { "freshkiss.com.au", true },
- { "freshmaza.com", true },
- { "freshmaza.io", true },
+ { "freshlymind.com", true },
{ "freshmaza.net", true },
+ { "freshpounds.com", 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 },
+ { "frickelboxx.de", 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 },
+ { "fringeintravel.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 },
+ { "frnco.uk", true },
{ "frob.nl", true },
- { "froehlich.it", true },
{ "froehliche-hessen.de", true },
{ "frogatto.com", true },
{ "frogeye.fr", true },
@@ -13453,26 +14866,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "frontiers.nl", true },
+ { "frontlinemessenger.com", true },
{ "fropky.com", true },
- { "frosthall.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 },
- { "frprn.com", true },
+ { "frozenjam.com", true },
+ { "frpg.gov", true },
{ "frprn.es", true },
- { "frprn.xxx", true },
{ "frtn.com", true },
{ "frtr.gov", true },
{ "frtrains.com", true },
{ "fruchthof24.de", true },
{ "fruchtikus.net", true },
{ "fruend-hausgeraeteshop.de", true },
- { "frugal-millennial.com", true },
{ "frugalfamilyhome.com", true },
{ "frugalmechanic.com", true },
{ "frugro.be", true },
@@ -13482,9 +14898,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fruttini.de", true },
{ "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 },
{ "fsbn.eu", true },
{ "fsbnh.bank", true },
{ "fsbpaintrock.com", true },
@@ -13495,16 +14912,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fscott.de", true },
{ "fsdress.com", true },
{ "fsfxpackages.com", true },
- { "fsj4u.ch", true },
+ { "fsg.one", true },
{ "fsk.fo", true },
{ "fsky.info", true },
{ "fsm2016.org", true },
{ "fsps.ch", true },
{ "fsstyle.com", true },
- { "fsvoboda.cz", true },
+ { "fsty.uk", true },
{ "fsvt.ch", true },
{ "ft.com", false },
- { "ftang.de", true },
+ { "ftc.gov", false },
{ "ftccomplaintassistant.gov", true },
{ "ftcefile.gov", true },
{ "ftf.agency", true },
@@ -13513,32 +14930,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ftptest.net", true },
{ "ftrsecure.com", true },
{ "ftv.re", true },
- { "fu-li88.com", true },
- { "fu-li88.net", true },
+ { "fu898.top", true },
{ "fuantaishenhaimuli.net", true },
{ "fuck-your-false-positive.de", true },
{ "fuckav.ru", true },
{ "fuckcie.com", true },
{ "fucklife.ch", true },
- { "fuckobr.com", true },
- { "fuckobr.net", true },
- { "fuckobr.org", true },
- { "fuckobr.su", true },
{ "fuckonthefirst.date", true },
{ "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 },
{ "fujianshipbuilding.com", true },
- { "fujiorganics.com", false },
{ "fujiwaraqol.com", true },
+ { "fujiwarashinzo.com", true },
{ "fukakukeiba.com", true },
{ "fukikaeru.com", true },
+ { "fukuiedu.com", true },
{ "fukushimacoffee.com", true },
{ "fulfilmentcrowd.com", true },
{ "fulgenzis.com", true },
@@ -13548,19 +14961,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "full-stack.ninja", true },
{ "fullautomotivo.com.br", true },
{ "fullbundle.com", true },
+ { "fullereno.com", true },
+ { "fullerlife.org.uk", true },
+ { "fullfilez.com", true },
{ "fullhost.com", true },
{ "fullhub.ru", true },
{ "fullmatch.net", true },
- { "fullpackage.co.uk", true },
+ { "fullstack.love", true },
{ "fullstacknotes.com", true },
- { "fulltxt.ml", true },
{ "fumblers.ca", true },
{ "fumerolles.ch", true },
{ "fumo.se", false },
{ "fun-bounce.co.uk", true },
{ "fun-tasia.co.uk", true },
{ "fun4kidzbouncycastles.co.uk", true },
+ { "fun4tomorrow.com", true },
{ "fun4ubouncycastles.co.uk", true },
+ { "fun888city.com", true },
+ { "fun888city.net", true },
+ { "fun88city.com", true },
{ "funadvisor.ca", true },
{ "funadvisorfrance.com", true },
{ "funandbounce.com", true },
@@ -13569,40 +14988,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "funchestra.at", false },
{ "functional.cc", true },
{ "functions-online.com", true },
- { "fundayltd.com", true },
{ "fundays.nl", true },
{ "fundchan.com", true },
{ "fundeego.com", true },
- { "fundingempire.com", true },
{ "fundort.ch", true },
{ "funds.ddns.net", true },
- { "funerariahogardecristo.cl", true },
{ "funfactorleeds.co.uk", true },
+ { "funfair.io", true },
{ "funfoodco.co.uk", true },
{ "funfunmstdn.tokyo", true },
+ { "fungames.com", true },
{ "funhouse-inflatables.co.uk", true },
- { "funi4u.com", true },
{ "funinbeds.org.uk", true },
{ "funken-networks.de", true },
+ { "funkner.ru", true },
{ "funktionel.co", true },
{ "funktionsverket.se", true },
{ "funkygamer1.de", true },
- { "funnelweb.xyz", true },
{ "funniestclip.com", true },
{ "funnybikini.com", true },
{ "funoverip.net", true },
+ { "funsochi.ru", true },
{ "funspins.com", true },
{ "funtasticinflatablesdurham.co.uk", true },
{ "funtime-inflatables.co.uk", true },
{ "funtime.com.ua", true },
{ "funtime.kiev.ua", true },
- { "funtimebourne.co.uk", true },
{ "funtimeentertainment.co.uk", true },
{ "funtimesbouncycastles.co.uk", true },
{ "fur.red", true },
+ { "furcdn.net", true },
+ { "furgetmeknot.org", true },
{ "furgo.love", true },
{ "furigana.info", true },
- { "furikake.xyz", true },
{ "furkancaliskan.com", true },
{ "furkot.com", true },
{ "furkot.de", true },
@@ -13613,44 +15031,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "furlan.co", true },
{ "furlog.it", true },
{ "furnfurs.com", true },
- { "furnitureconcept.co.uk", true },
- { "furry.agency", true },
+ { "furnishedproperty.com.au", true },
+ { "furry.cat", true },
{ "furry.dk", true },
- { "furry.zone", false },
{ "furrybot.me", true },
{ "furrytech.network", true },
+ { "furrytf.club", false },
{ "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 },
- { "fuskator.com", true },
{ "fussball-xxl.de", true },
{ "fussell.io", true },
+ { "fuszara.eu", true },
+ { "futa.moe", true },
+ { "futaba-works.com", true },
{ "futagro.com", true },
+ { "futbomb.com", true },
+ { "futcre.com", true },
{ "futrou.com", true },
{ "future-moves.com", true },
- { "futurefire.de", true },
+ { "futureaudiographics.com", true },
{ "futurefund.com", true },
- { "futurefundapp.com", true },
+ { "futuregrowthva.com", true },
{ "futurehack.io", true },
{ "futurenda.com", true },
{ "futureoceans.org", true },
+ { "futuressm.com", true },
{ "futuretimes.io", true },
{ "futurezone.at", true },
{ "futurope.com", true },
{ "fuwafuwa.moe", true },
{ "fuyu.moe", true },
- { "fuzoku.jp", true },
{ "fuzzing-project.org", true },
{ "fveevaete.com", true },
{ "fwdx.net", true },
{ "fwest.ovh", true },
{ "fwest98.nl", true },
{ "fwest98.ovh", true },
- { "fwww7.com", true },
{ "fx-rk.com", true },
{ "fx24.uk", true },
{ "fx5.de", true },
@@ -13673,8 +15094,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fxwebsites.com.au", true },
{ "fxwebsites.net.au", true },
{ "fxwebstudio.net.au", true },
+ { "fyfywka.com", true },
{ "fyksen.me", true },
{ "fyn.nl", true },
+ { "fyol.xyz", false },
+ { "fyreek.me", true },
{ "fyretrine.com", true },
{ "fysesbjerg.dk", true },
{ "fysio123.nl", true },
@@ -13684,17 +15108,22 @@ 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 },
+ { "g.co", true },
{ "g0881.com", true },
+ { "g0man.com", true },
{ "g1.ie", true },
{ "g10e.ch", true },
{ "g2links.com", true },
{ "g2pla.net", true },
+ { "g2ship.com", true },
{ "g2soft.net", true },
{ "g3d.ro", true },
{ "g3dev.ch", true },
@@ -13704,63 +15133,74 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "g8energysolutions.co.uk", true },
{ "gaaz.fr", true },
{ "gabe565.com", true },
+ { "gabeb1920.com", true },
{ "gabecook.com", true },
{ "gabemack.com", true },
{ "gabinetpsychoterapii.krakow.pl", true },
+ { "gabiocs.com", true },
{ "gabriel.to", true },
- { "gabrielsimonet.ch", true },
+ { "gabriele.tips", true },
{ "gabrielsteens.nl", true },
+ { "gachimuchi.ru", true },
+ { "gachiyase.com", true },
{ "gachter.name", true },
{ "gadabit.pl", true },
{ "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 },
- { "gagne-enterprises.com", true },
+ { "gagliarducci.it", true },
{ "gagne.tk", true },
{ "gagnerplusdargent.info", true },
{ "gagniard.org", true },
{ "gagor.pl", true },
{ "gagygnole.ch", true },
+ { "gaiavanderzeyp.com", true },
{ "gaichon.com", true },
{ "gailfellowsphotography.com", true },
{ "gaines-sodiamex.fr", true },
{ "gaio-automobiles.fr", true },
{ "gaireg.de", true },
- { "gaiserik.com", true },
{ "gaitandmobility.com", true },
{ "gaitrehabilitation.com", true },
{ "gaitresearch.com", true },
- { "gajas18.com", true },
- { "gakkainavi-epsilon.jp", true },
{ "gakkainavi-epsilon.net", true },
{ "gakkainavi.jp", true },
{ "gakkainavi.net", true },
{ "gakkainavi4.jp", true },
{ "gakkainavi4.net", true },
{ "gaku-architect.com", true },
- { "gala.kiev.ua", false },
+ { "galabau-maurmann.de", true },
+ { "galacg.me", true },
{ "galactic-crew.org", true },
{ "galak.ch", true },
- { "galerieautodirect.com", true },
+ { "galanight.cz", true },
+ { "galaxy.edu.pe", true },
+ { "galaxymimi.com", true },
+ { "galecia.com", true },
+ { "galeria42.com", true },
+ { "galerialottus.com.br", true },
+ { "galeriarr.pl", true },
{ "galeries.photo", true },
- { "galgopersa.com.br", true },
+ { "galilahiskye.com", true },
{ "galileanhome.org", true },
- { "galileomtz.com", true },
+ { "galilel.cloud", true },
{ "galinas-blog.de", true },
{ "galinos.gr", true },
{ "galle.cz", true },
+ { "galletasgabi.com.mx", false },
{ "galleyfoods.com", true },
{ "gallicrooster.com", true },
{ "gallifreyapp.co.uk", true },
{ "gallifreypermaculture.com.au", true },
{ "gallun-shop.com", true },
{ "galpaoap.com.br", true },
- { "gamajo.com", true },
{ "gamberorosso.menu", true },
{ "gambetti.fr", true },
{ "gambit.pro", true },
@@ -13768,35 +15208,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gambitnash.co.uk", true },
{ "gambitnash.com", true },
{ "gambitprint.com", true },
+ { "gamblerhealing.com", true },
{ "gamblersgaming.eu", true },
{ "game-files.net", false },
+ { "game-topic.ru", 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 },
- { "gamerz-stream.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 },
{ "gamingexodus.com", true },
@@ -13804,9 +15259,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gamingrealms.net", true },
{ "gamingwithcromulent.com", true },
{ "gamingzoneservers.com", true },
+ { "gamisalya.com", true },
{ "gamishou.fr", true },
+ { "gamismodernshop.com", true },
+ { "gamismurahonline.com", true },
+ { "gamivo.com", true },
{ "gamoloco.com", true },
- { "gan.wtf", true },
{ "ganado.org", true },
{ "ganaenergia.com", true },
{ "ganasoku.net", true },
@@ -13817,41 +15275,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gandgliquors.com", true },
{ "ganggalbichler.at", true },
{ "gansleit.com", false },
- { "ganzgraph.de", true },
{ "ganztagplus.de", true },
+ { "gao.ci", true },
{ "gao.rocks", true },
+ { "gaojianli.me", true },
{ "gaojianli.tk", true },
- { "gaon.network", true },
{ "gaos.org", true },
{ "gapdirect.com", true },
{ "gapfa.org", true },
- { "gaptek.id", false },
- { "gar-nich.net", false },
- { "garage-abri-chalet.fr", true },
+ { "gaphag.ddns.net", true },
{ "garage-leone.com", true },
{ "garage-meynard.com", true },
+ { "garagedejan.ch", true },
{ "garageenginuity.com", true },
{ "garagegoossens.be", true },
{ "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 },
+ { "gardis.ua", true },
{ "garedtech.com", false },
{ "garethbowker.com", true },
+ { "garethkirk.com", true },
{ "garethkirkreviews.com", true },
{ "garethrhugh.es", true },
{ "garforthgolfclub.co.uk", true },
{ "gargazon.net", true },
+ { "garnuchbau.de", true },
{ "garron.net", true },
{ "garrowmediallc.com", true },
+ { "gartenbaur.de", true },
{ "gartenplanung-brendes.de", true },
{ "garycarmell.com", true },
{ "garycwaite.com", true },
@@ -13862,42 +15322,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "garywhittington.com", true },
{ "gashalot.com", true },
{ "gastoudererenda.nl", true },
- { "gastritisolucion.com", true },
+ { "gastromedicalcenter.com.br", true },
{ "gastrotiger.at", true },
{ "gastrotiger.de", true },
{ "gate2home.com", true },
{ "gateaucreation.fr", true },
+ { "gatekiller.co.uk", true },
{ "gatewaybridal.com", true },
{ "gatewaybronco.com", true },
- { "gatilagata.com.br", true },
{ "gauche.com", true },
{ "gaudeamus-folklor.cz", true },
{ "gaudere.co.jp", true },
+ { "gaurl.ga", true },
{ "gaussianwaves.com", true },
- { "gautham.it", false },
{ "gauthier.dk", true },
{ "gautvedt.no", true },
+ { "gavin.sh", true },
{ "gavins.stream", true },
{ "gavinsblog.com", true },
- { "gay-jays.com", true },
- { "gay-sissies.com", true },
- { "gayforgenji.com", true },
- { "gayjays.com", true },
+ { "gawrimanecuta.com", true },
+ { "gaycc.cc", true },
+ { "gayhotti.es", true },
+ { "gaymerconnect.net", true },
+ { "gaymerx.com", true },
+ { "gaymerx.net", true },
+ { "gaymerx.org", true },
{ "gaysexpositions.guide", true },
- { "gaysfisting.com", true },
- { "gaytorrent.ru", true },
{ "gayukai.net", true },
- { "gayxsite.com", true },
{ "gazachallenge.org", true },
- { "gazee.net", true },
{ "gazellegames.net", false },
+ { "gazete.org", true },
{ "gazette.govt.nz", true },
{ "gbc-radio.nl", true },
{ "gbcsummercamps.com", true },
- { "gbit.xyz", true },
{ "gbl.selfip.net", true },
{ "gboys.net", true },
+ { "gbs-uk.com", true },
+ { "gc-mc.de", true },
{ "gc.gy", true },
+ { "gc.ru.net", true },
{ "gcbit.dk", true },
{ "gcfadvisors.com", true },
{ "gcgeeks.com.au", true },
@@ -13909,20 +15372,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gdax.com", true },
{ "gdb-tutorial.net", true },
{ "gdgrzeszow.pl", true },
+ { "gdhzcgs.com", true },
{ "gdiary.net", true },
+ { "gdngs.de", true },
+ { "gdoce.es", true },
{ "gdpr-pohotovost.cz", true },
- { "gdutnic.com", true },
{ "gdv.me", true },
{ "gdz-spishy.com", true },
{ "ge3k.net", false },
{ "gear4you.shop", true },
{ "gearallnews.com", true },
+ { "gearboxhero.com", true },
{ "gearev.net", true },
{ "gearfinder.nl", true },
- { "gearseo.com.br", true },
{ "gearset.com", true },
- { "geaskb.nl", true },
- { "geass.xyz", true },
{ "geba-online.de", true },
{ "gebn.co.uk", true },
{ "gebn.uk", true },
@@ -13932,39 +15395,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gecem.org", true },
{ "gechr.io", true },
{ "geckler-ee.de", true },
- { "gedankenworks.com", true },
{ "geder.at", true },
{ "gedlingcastlehire.co.uk", true },
+ { "gedlingtherapy.co.uk", true },
+ { "gee.is", true },
{ "geecrat.com", true },
{ "geek-hub.de", true },
- { "geek.ch", true },
- { "geek1.de", true },
{ "geekabit.nl", true },
{ "geekandi.com", true },
{ "geekariom.com", true },
- { "geekchimp.com", true },
{ "geekclubbooks.com", true },
{ "geeklair.net", true },
{ "geeklan.co.uk", true },
{ "geekles.net", true },
{ "geeknik.com", true },
{ "geekpad.com", true },
- { "geekseries.fr", true },
{ "geekshirts.cz", true },
{ "geektopia.es", true },
{ "geekwhack.org", true },
{ "geekwithabudget.com", true },
{ "geekwu.org", true },
- { "geeky.software", true },
- { "geekystudios.us", true },
{ "geekz.sk", true },
{ "geekzone.co.nz", true },
{ "geekzone.fr", true },
{ "geeq.ch", true },
{ "geerdsen.net", true },
+ { "geertdegraaf.nl", true },
{ "geertswei.nl", true },
{ "gegeco.ch", true },
{ "geh.li", true },
+ { "gehaowu.com", true },
+ { "gehas-wein-shop.de", true },
+ { "gehirn.co.jp", true },
+ { "gehirn.jp", true },
{ "gehopft.de", true },
{ "gehreslaw.com", true },
{ "gehrke.in", true },
@@ -13972,6 +15435,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geigenbauer.in", false },
{ "geiser-family.ch", true },
{ "geisser-elektronikdata.de", true },
+ { "geitenijs.com", true },
{ "gelb-computer.de", true },
{ "geld-im-blick.de", true },
{ "geld24.nl", true },
@@ -13981,12 +15445,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gelis.ch", true },
{ "gelodosul.com.br", true },
{ "gelog-software.de", false },
+ { "gelonghui.com", true },
{ "geloofindemocratie.nl", false },
{ "geluidsstudio.com", true },
+ { "geluk.io", true },
{ "gem-indonesia.net", false },
{ "gem-info.fr", true },
{ "gemeentemolenwaard.nl", true },
{ "gemeinsam-ideen-verwirklichen.de", true },
+ { "gemgroups.in", true },
{ "gemini.com", true },
{ "gemquery.com", true },
{ "genchev.io", true },
@@ -14000,6 +15467,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geneau.net", true },
{ "genehightower.com", true },
{ "genehome.com.au", true },
+ { "generace-id.org", true },
{ "generador-electrico.com", true },
{ "general-anaesthesia.com", true },
{ "general-anaesthetics.com", true },
@@ -14016,10 +15484,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "genesysmi.com", true },
{ "genetargetsolutions.com.au", true },
{ "genetidyne.com", true },
+ { "genevachauffeur.com", true },
{ "geneve-naturisme.ch", true },
{ "genevoise-entretien.ch", true },
{ "genfaerd.dk", true },
- { "genie-seiner-generation.de", true },
+ { "geniush.ovh", true },
+ { "geniushost.in", true },
{ "geniusteacher.in", true },
{ "geniuszone.biz", true },
{ "genocidediary.org", true },
@@ -14034,34 +15504,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gensicke.de", true },
{ "genslerapps.com", true },
{ "genslerwisp.com", true },
+ { "gensokyo.re", true },
{ "gensonline.eu", true },
{ "gentianes.ch", true },
{ "gentoo-blog.de", true },
{ "gentooblog.de", true },
{ "genusshotel-riegersburg.at", true },
- { "genuxtsg.com", true },
- { "genxnotes.com", true },
- { "geocommunicator.gov", true },
+ { "geocar.com", true },
{ "geocompass.at", true },
{ "geofox.org", true },
+ { "geography-schools.com", true },
+ { "geoinstinct.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 },
+ { "geomonkeys.com", true },
{ "geoponika.gr", true },
{ "geoport.al", true },
+ { "georadar-algerie.com", true },
{ "george-brighton.co.uk", true },
{ "george-orwell.com", true },
{ "georgebrighton.co.uk", true },
{ "georgecolgrove.com", true },
- { "georgehalachev.com", true },
+ { "georgedesign.ch", 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 },
+ { "georgiatransport.com", true },
+ { "georgiaurologist.com", true },
{ "georgioskontaxis.com", true },
{ "georgioskontaxis.net", true },
{ "georgioskontaxis.org", true },
@@ -14070,32 +15548,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geoscope.ch", true },
{ "geosphereservices.com", true },
{ "geotab.com", true },
- { "gepe.ch", true },
+ { "gepgroup.gr", true },
{ "gepps.de", true },
{ "geraintwhite.co.uk", true },
{ "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 },
{ "germandarknes.net", true },
- { "germansoldiers.net", true },
{ "germanssky.de", true },
+ { "germanticz.de", true },
{ "gernert-server.de", true },
{ "gero.io", true },
{ "gerritcodereview.com", true },
- { "gerum.dynv6.net", true },
{ "gerwinvanderkamp.nl", true },
{ "ges-bo.de", true },
{ "geschichtscheck.de", true },
{ "geschmacksache.online", true },
{ "geschwinder.net", true },
+ { "gesica.cloud", true },
+ { "gessettirotti.it", true },
{ "gestorehotel.com", true },
{ "gestormensajeria.com", true },
- { "gesundes-im-napf.de", true },
{ "gesundheitmassage.com", true },
{ "gesundheitswelt24.de", true },
+ { "gesundheitszentrum-am-reischberg.de", true },
{ "get-erp.ru", true },
{ "get-it-live.com", true },
- { "get-link.info", true },
+ { "get-it-live.de", true },
{ "get-on.bid", true },
{ "get-refer.com", true },
{ "get.how", true },
@@ -14106,27 +15590,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getbooks.co.il", true },
{ "getbox.me", true },
{ "getbreadcrumbs.com", true },
+ { "getbrowink.com", true },
{ "getbutterfly.com", true },
{ "getcloak.com", false },
{ "getcolq.com", true },
+ { "getcommande.com", true },
{ "getdash.io", true },
{ "getdeveloper.de", true },
{ "geteckeld.nl", true },
+ { "getenv.io", true },
{ "geterp.ru", true },
{ "getfedora.org", true },
{ "getfirstalert.com", true },
{ "getfittedstore.com", true },
{ "getflorence.co.uk", true },
+ { "getfoundquick.com", true },
{ "getgeek.es", true },
{ "gethow.org", true },
{ "gethttpsforfree.com", true },
{ "geti2p.com", true },
{ "getidmcc.com", true },
{ "getimgs.com", true },
+ { "getinphase.com", true },
+ { "getitlive.de", true },
{ "getitpeople.com", true },
{ "getmango.com", true },
{ "getmdl.io", true },
{ "getmerch.eu", true },
+ { "getmovil.com", true },
{ "getnib.com", true },
{ "getnikola.com", true },
{ "getoutofdebt.org", true },
@@ -14142,25 +15633,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getsecure.nl", true },
{ "getsensibill.com", true },
{ "getsetbounce.co.uk", true },
- { "getsetupfile.com", true },
{ "getsilknow.com", true },
- { "getsmartaboutdrugs.gov", true },
+ { "getsmartaboutdrugs.gov", false },
{ "getsport.mobi", true },
- { "getsubs.net", true },
{ "getswadeshi.com", true },
{ "getteamninja.com", true },
{ "getthefriendsyouwant.com", true },
{ "getticker.com", true },
+ { "gettodoing.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 },
{ "getyourlifestraight.com", true },
+ { "gevelreinigingtiel.nl", true },
{ "geyduschek.be", true },
{ "gf-franken.de", true },
+ { "gf5fcalc.com", true },
{ "gfahnen.de", true },
{ "gfast.ru", true },
{ "gfcleisure.co.uk", true },
@@ -14170,7 +15662,6 @@ 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 },
@@ -14182,17 +15673,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ggl-luzern.ch", true },
{ "ggma.co.uk", true },
{ "ggmmontascale.it", true },
- { "ggobbo.com", true },
{ "ggp2.com", true },
{ "ggs-marschallstrasse.de", true },
{ "ggs.jp", true },
{ "ggservers.com", true },
{ "ggx.us", true },
{ "gha.st", true },
+ { "ghaglund.se", true },
+ { "ghettonetflix.de", true },
+ { "ghfip.com.au", true },
{ "ghini.com", true },
{ "ghislainphu.fr", true },
{ "ghostblog.info", false },
{ "ghostcir.com", true },
+ { "ghou.me", true },
{ "ghrelinblocker.info", true },
{ "ghrelinblocker.org", true },
{ "ghuntley.com", false },
@@ -14200,6 +15694,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -14208,28 +15705,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "giardinaggio.napoli.it", true },
{ "giardiniere.bologna.it", true },
{ "giardiniere.milano.it", true },
- { "gibraltar.at", true },
{ "gichigamigames.com", true },
- { "gicl.dk", true },
- { "giddyaunt.net", true },
- { "giduv.com", true },
{ "giebel.it", true },
{ "gierds.de", true },
{ "giethoorn.com", true },
{ "gietvloergarant.nl", false },
{ "giftcard.net", true },
- { "giftedconsortium.com", true },
+ { "giftcardgranny.com", true },
{ "giftking.nl", false },
{ "giftmaniabrilhos.com.br", true },
+ { "gifts.best", true },
{ "gifts365.co.uk", true },
- { "giftservices.nl", true },
+ { "giftya.com", true },
+ { "gifudodo.com", true },
{ "gig-raiffeisen.de", true },
{ "giga.nl", true },
{ "gigabitz.pw", true },
{ "gigacog.com", true },
+ { "gigantar.com", true },
{ "gigantism.com", true },
{ "gigawa.lt", true },
- { "gigawattz.com", true },
{ "giggletotz.co.uk", true },
{ "gigime.com", true },
{ "gigin.eu", true },
@@ -14237,10 +15732,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gigis-pizzeria.de", true },
{ "gigis.cloud", true },
{ "giglink.club", true },
- { "gigolodavid.be", true },
{ "gigseekr.com", true },
{ "gigtroll.eu", true },
{ "gijsbertus.com", true },
+ { "gijswesterman.nl", true },
{ "gikovatelojavirtual.com.br", true },
{ "gilangcp.com", true },
{ "gileadpac.com", true },
@@ -14252,47 +15747,57 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gillmanandsoame.co.uk", true },
{ "gillyscastles.co.uk", true },
{ "gilmoreid.com.au", true },
+ { "gilmourluna.com", true },
{ "gilnet.be", true },
+ { "gimme.money", true },
{ "gina-architektur.design", true },
- { "ginie.de", true },
+ { "ginabaum.com", true },
+ { "ginacat.de", true },
+ { "gingersutton.com", true },
{ "ginionusedcars.be", true },
{ "ginja.co.th", true },
- { "ginnegappen.nl", true },
{ "ginniemae.gov", true },
+ { "gino-gelati.de", true },
{ "ginza-luce.net", true },
+ { "ginza-viola.com", true },
{ "ginzadelunch.jp", true },
+ { "ginzaj.com", true },
{ "giochi-online.ws", true },
{ "giochiecodici.it", true },
{ "gioielleriamolena.com", true },
{ "gippert-klein.de", true },
{ "giraffeduck.com", true },
- { "giraffeinflatables.co.uk", true },
{ "giraffenland.de", true },
{ "giraffes.org", true },
{ "giri.co", true },
{ "girlan.net", true },
{ "girlsforum.com", true },
{ "girlsgenerationgoods.com", true },
- { "girlsgonesporty.com", 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 },
+ { "git.sb", true },
{ "git.tt", true },
- { "gitar.io", true },
{ "gitep.org.uk", true },
{ "gites-alizea.com", true },
{ "gitesdeshautescourennes.com", true },
{ "github.com", true },
+ { "githubber.com", true },
+ { "githubber.tv", true },
{ "gitla.in", true },
{ "gitstuff.tk", true },
{ "gittigidiyor.com", true },
{ "gittr.ch", true },
{ "giuem.com", true },
+ { "giulianosdeli.com", true },
{ "giunchi.net", true },
{ "giuseppemacario.men", true },
{ "givastar.com", true },
@@ -14304,24 +15809,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "given2.com", true },
{ "givesunlight.com", true },
{ "givingnexus.org", false },
- { "givip.eu", true },
{ "gixtools.com", true },
{ "gixtools.net", true },
- { "gizmo.ovh", true },
{ "gj-bochum.de", true },
{ "gjcampbell.co.uk", true },
{ "gjengset.com", true },
{ "gjspunk.de", false },
- { "gkimanyar.org", true },
{ "gkoenig-innenausbau.de", true },
{ "gkralik.eu", true },
{ "gl.search.yahoo.com", false },
+ { "gla-hyperloop.com", false },
{ "glaciernursery.com", true },
+ { "gladiatorboost.com", true },
{ "gladwellentertainments.co.uk", true },
- { "glahcks.com", true },
{ "glamguru.co.il", true },
{ "glamguru.world", true },
{ "glamour4you.de", true },
+ { "glamourdaze.com", true },
+ { "glamouria.com.br", true },
{ "glasdon.com", true },
{ "glasen-hardt.de", true },
{ "glasfaser-im-hanseviertel.de", true },
@@ -14329,6 +15834,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glasner.photo", true },
{ "glass.google.com", true },
{ "glasschmuck-millefiori.de", true },
+ { "glassexpertswa.com", true },
+ { "glassrainbowtrust.org.je", true },
+ { "glassrom.pw", true },
+ { "glasweld.com", true },
{ "glavsudexpertiza.ru", true },
{ "glazedmag.fr", true },
{ "glcastlekings.co.uk", true },
@@ -14343,38 +15852,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glidingshop.cz", true },
{ "glidingshop.de", true },
{ "glidingshop.eu", true },
+ { "glitzerstuecke.de", true },
{ "glloq.org", true },
{ "glob-coin.com", true },
{ "global-adult-webcams.com", true },
{ "global-lights.ma", true },
{ "global-office.com", true },
{ "global-village.koeln", true },
- { "global.hr", true },
{ "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 },
+ { "glolighting.co.za", true },
{ "gloneta.com", false },
+ { "gloning.name", true },
+ { "glont.net", true },
+ { "gloria.tv", true },
+ { "glosiko.com", true },
+ { "glossopnorthendafc.co.uk", true },
{ "glotech.co.uk", true },
{ "glotechkitchens.co.uk", true },
{ "glotechrepairs.co.uk", true },
+ { "glu3cifer.rocks", true },
{ "glueck-im-norden.de", true },
{ "gluecksgriff-taschen.de", true },
{ "glueckskindter.de", true },
@@ -14383,20 +15897,25 @@ 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 },
{ "gmcd.co", true },
{ "gmdu.net", true },
+ { "gme.one", true },
{ "gmind.ovh", true },
{ "gmod.de", true },
{ "gmpark.dk", true },
{ "gmpartsdb.com", true },
+ { "gmslparking.co.uk", true },
{ "gmta.nl", true },
+ { "gmtplus.co.za", true },
{ "gmw-hannover.de", true },
{ "gmw-ingenieurbuero.de", true },
{ "gmx.at", true },
@@ -14407,21 +15926,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gmx.es", true },
{ "gmx.fr", true },
{ "gmx.net", true },
+ { "gn00.com", true },
{ "gnax.jp", false },
+ { "gndh.net", true },
{ "gnetion.com", true },
{ "gnetwork.eu", true },
+ { "gnfrazier.me", true },
{ "gnhub.org", true },
{ "gnilebein.de", true },
+ { "gnk.io", true },
{ "gnuand.me", true },
{ "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 },
{ "go.xero.com", false },
{ "go2ubl.nl", true },
{ "goa8.xyz", true },
@@ -14429,39 +15953,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goalongtravels.com", true },
{ "goanalyse.co.uk", true },
{ "goand.run", true },
+ { "goarmy.eu", true },
{ "goatbot.xyz", true },
{ "goatcloud.com", true },
{ "gobarrelroll.com", true },
{ "gobouncy.co.uk", true },
{ "gobouncy.com", true },
{ "gobranding.com.vn", true },
- { "gocardless.com", true },
+ { "gocher.me", true },
{ "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 },
- { "godruoyi.com", true },
{ "godsofhell.com", true },
{ "godsofhell.de", true },
{ "goededoelkerstkaarten.nl", true },
+ { "goedkoopstecartridges.nl", true },
+ { "goedkopecartridgeskopen.nl", true },
+ { "goedkopelaptopshardenberg.nl", true },
{ "goedkopeonesies.nl", true },
+ { "goedkopetonerkopen.nl", true },
{ "goedverzekerd.net", true },
{ "goemail.me", true },
{ "goerlitz-zgorzelec.org", true },
+ { "goerres2014.de", true },
{ "goetemp.de", true },
{ "goetic.space", true },
{ "goettinger-biergarten.de", true },
{ "goffrie.com", true },
{ "gofigure.fr", false },
+ { "goflipr.com", true },
{ "goflo.net", true },
{ "gofoiayourself.org", true },
{ "gogle-analytics.com", true },
@@ -14477,63 +16001,86 @@ 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 },
- { "goldclubcasino.com", true },
+ { "goldcoastasian.com", true },
{ "goldcoasthypnotherapyhypnosis.com.au", true },
+ { "goldcoastphotographycourses.com", true },
{ "goldcoaststumpbusters.com", true },
{ "goldegg-training.com", false },
{ "goldenbadger.de", true },
{ "goldendawnapersonalaffair.com", true },
{ "goldenhillsoftware.com", true },
{ "goldenhost.ca", true },
+ { "goldenmonrepos.com", true },
{ "goldenplate.com.sg", true },
+ { "goldenruleemail.com", true },
+ { "goldfmromania.ro", true },
{ "goldmark.com.au", true },
{ "goldpreisfinder.at", true },
{ "goldsecurity.com", true },
- { "goldsky.com.au", true },
+ { "goldsilver.org.ua", true },
{ "goldstein.tel", true },
+ { "goldytechspecialists.com", true },
{ "golf18network.com", true },
{ "golf18staging.com", true },
- { "golfburn.com", true },
{ "golfhausmallorca.com", true },
{ "golfmeile.de", true },
{ "golfpark-bostalsee.de", true },
{ "golfscape.com", true },
{ "golighthouse.com", true },
{ "golik.net.pl", false },
+ { "golser-schuh.at", true },
{ "golser.info", true },
{ "gomasy.jp", true },
+ { "gomel.chat", true },
{ "gomelchat.com", true },
+ { "gomena.io", true },
{ "gommista.roma.it", true },
{ "gondawa.com", true },
+ { "gondelvaartdwarsgracht.nl", true },
{ "gongjianwei.com", true },
{ "gongjuhao.com", true },
- { "gonkar.com", true },
{ "gonx.dk", true },
{ "goo.gl", true },
{ "gooby.co", false },
{ "good-tips.pro", true },
{ "gooday.life", true },
- { "gooddomainna.me", true },
- { "goodenough.nz", false },
- { "goodfeels.net", true },
- { "goodvibesblog.com", true },
+ { "goodenough.nz", true },
+ { "goodhealthtv.com", true },
+ { "goodquote.gq", true },
+ { "goodryb.top", true },
+ { "goodshepherdmv.com", true },
+ { "goodth.ink", true },
{ "google", true },
{ "google-analytics.com", true },
{ "googleandroid.cz", true },
+ { "googlehosts.org", true },
{ "googlemail.com", false },
{ "googleplex.com", true },
{ "googlesource.com", true },
{ "goombi.fr", true },
{ "goonersworld.co.uk", true },
+ { "goontopia.com", true },
+ { "goooo.info", true },
{ "gootlijsten.nl", true },
+ { "goover.de", true },
+ { "goow.in", true },
{ "goozp.com", true },
{ "gopher.tk", true },
+ { "gophoto.it", true },
+ { "goplex.com.au", true },
{ "goproallaccess.com", true },
+ { "goproinspectiongroup.com", true },
{ "goquiq.com", true },
- { "gorakukai.jp", true },
+ { "gordeijnsbouw.nl", true },
{ "gordonobrecht.com", true },
{ "gordonscouts.com.au", true },
+ { "gorealya.com", true },
+ { "gorf.chat", true },
+ { "gorf.club", true },
{ "gorgias.me", true },
{ "gorky.media", true },
{ "gorn.ch", true },
@@ -14543,11 +16090,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gosforthdentalsurgery.co.uk", true },
{ "goshawkdb.io", true },
{ "goshin-group.co.jp", true },
- { "goshow.tv", true },
+ { "gosolockpicks.com", true },
{ "gospelfollower.com", true },
+ { "gospelofmark.ch", true },
{ "gospelvestcination.de", true },
{ "gostaffer.com", true },
- { "gostest.org", true },
+ { "gostest.org", false },
+ { "gosu.pro", true },
{ "gosuland.org", true },
{ "got-tty.de", true },
{ "goteborgsklassikern.se", true },
@@ -14561,19 +16110,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goto.world", true },
{ "goto10.se", true },
{ "gotomi.info", true },
- { "gotowned.org", false },
{ "gotoxy.at", true },
{ "gotrail.fr", true },
{ "gottcode.org", false },
+ { "gottfridsberg.org", true },
{ "goudenharynck.be", true },
{ "gouforit.com", true },
- { "goujianwen.com", true },
- { "goukon.ru", true },
{ "gouldcooksey.com", true },
{ "goup.co", true },
{ "goup.com.tr", true },
{ "gouptime.ml", true },
{ "gourmetfestival.de", true },
+ { "gourmetspalencia.com", true },
{ "gov.tc", true },
{ "governmentjobs.gov", true },
{ "governorhub.com", true },
@@ -14582,41 +16130,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "govtjobs.blog", true },
{ "govtrack.us", true },
{ "govype.com", true },
+ { "gowancommunications.com", true },
{ "gowe.wang", false },
{ "gowildrodeo.co.uk", true },
- { "gowin9.com", true },
- { "gowin9.net", true },
{ "gowithflo.de", true },
{ "gozenhost.com", true },
- { "gpalabs.com", true },
{ "gpcsolutions.fr", true },
- { "gpdimaranathasiantar.org", true },
- { "gpfclan.de", true },
+ { "gpdimaranathasiantar.org", false },
{ "gpgscoins.com", true },
{ "gplans.us", true },
- { "gplintegratedit.com", 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 },
{ "grabacabpa.com", true },
- { "grabi.ga", true },
{ "grace-wan.com", true },
+ { "gracebaking.com", false },
{ "gracedays.org", true },
{ "gracethrufaith.com", true },
{ "gracetini.com", true },
{ "graciousmay.com", true },
- { "gradenotify.com", true },
+ { "gradecam.com", true },
{ "gradienthosting.co.uk", true },
{ "gradients.com", true },
+ { "gradingcontractornc.com", true },
{ "gradualgram.com", true },
{ "graeber.com", true },
{ "graecum.org", true },
@@ -14630,8 +16174,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grafoteka.pl", true },
{ "graft.community", true },
{ "graft.observer", true },
+ { "grahambaker.ca", true },
+ { "grahamcarruthers.co.za", true },
{ "grahamcluley.com", true },
- { "grahamofthewheels.com", true },
{ "grailians.com", true },
{ "grailify.com", true },
{ "graingert.co.uk", true },
@@ -14641,39 +16186,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grammysgrid.com", true },
{ "granary-demo.appspot.com", false },
{ "grancellconsulting.com", true },
+ { "grandcafecineac.nl", true },
{ "grandcafetwist.nl", true },
{ "grandcapital.cn", true },
{ "grandcapital.id", true },
+ { "grandcapital.net", true },
{ "grandcapital.ru", true },
{ "grandcastles.co.uk", true },
{ "grandchene.ch", true },
+ { "grande.coffee", true },
{ "grandefratellonews.com", true },
{ "grandeto.com", true },
{ "grandjunctionbrewing.com", true },
- { "grandmasfridge.org", true },
{ "grandmusiccentral.com.au", true },
{ "grandpadusercontent.com", true },
- { "grandwailea.com", true },
{ "granfort.es", false },
- { "granian.pro", true },
{ "granishe.com", true },
+ { "graniteind.com", true },
{ "grannys-stats.com", true },
{ "grannyshouse.de", true },
{ "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 },
+ { "grapevine.is", true },
{ "graphcommons.com", true },
{ "graphene.software", true },
+ { "graphic-schools.com", true },
{ "graphic-shot.com", true },
- { "graphire.io", true },
{ "grapholio.net", true },
{ "grasmark.com", true },
{ "grassenberg.de", true },
{ "grasshoppervape.com", true },
+ { "grasso.io", true },
{ "grassreinforcement.com.au", true },
{ "gratis-lovecheck.de", true },
{ "gratisgamecards.nl", true },
@@ -14691,25 +16241,29 @@ 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 },
{ "grayson.sh", true },
+ { "graz2020.com", true },
{ "grazieitalian.com", true },
{ "grc.com", false },
{ "greatagain.gov", true },
- { "greatergoodoffers.com", true },
{ "greatestwebsiteonearth.com", true },
{ "greatfire.org", true },
+ { "greathairtransplants.com", true },
+ { "greathosts.biz", 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 },
+ { "greekmusic.academy", true },
{ "green-attitude.be", true },
{ "green-care.nl", true },
{ "green-light.co.nz", true },
@@ -14717,29 +16271,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "greenapproach.ca", true },
{ "greencircleplantnursery.com.au", true },
{ "greencircleplantnursery.net.au", true },
- { "greenenergysolution.uk", true },
{ "greener.pl", true },
- { "greenglam.biz", true },
- { "greengoblindev.com", true },
{ "greenhats.de", true },
{ "greenliquidsystem.com", true },
+ { "greenliv.pl", true },
{ "greenlungs.net", true },
+ { "greenmachines.com", true },
{ "greenoutdoor.dk", false },
{ "greenpanda.de", true },
{ "greenpartyofnewmilford.org", true },
+ { "greenpaws.ee", true },
{ "greenpeace-magazin.de", true },
+ { "greenpeace.berlin", true },
{ "greenroach.ru", true },
{ "greenrushdaily.com", true },
+ { "greensborosecuritycameras.com", true },
{ "greensdictofslang.com", true },
{ "greensquare.tk", true },
{ "greenteamtwente.nl", true },
- { "greenville.ag", true },
+ { "greenwaylog.net", true },
{ "greenwithdecor.com", true },
{ "greer.ru", true },
{ "greg.red", true },
+ { "gregbrimble.com", true },
{ "greger.me", true },
+ { "gregmarziomedia-dev.com", true },
+ { "gregmarziomedia.co.za", true },
+ { "gregmarziomedia.com", true },
{ "gregmilton.com", true },
- { "gregmilton.org", true },
+ { "gregmote.com", true },
+ { "grego.pt", true },
{ "gregoirow.be", true },
{ "gregorians.org", true },
{ "gregorkofler.com", true },
@@ -14747,6 +16308,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 },
@@ -14763,13 +16325,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "greybeards.ca", true },
{ "greyhash.se", true },
{ "greymattertechs.com", true },
+ { "greysky.me", true },
{ "greyskymedia.com", true },
{ "greysolutions.it", true },
{ "greywizard.com", true },
+ { "greywolf.cz", true },
{ "grh.am", true },
{ "griassdi-reseller.de", true },
+ { "gricargo.com", true },
+ { "gridsmartercities.com", true },
{ "griechische-pfoetchen.de", true },
- { "griecopelino.com", true },
+ { "griefheart.com", true },
{ "grieg-gaarden.no", true },
{ "grieg.com", true },
{ "grieg.net", true },
@@ -14780,20 +16346,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "griegshipbrokers.com", true },
{ "griegshipbrokers.no", true },
{ "griesser2.de", true },
+ { "grillen-darf-nicht-gesund-sein.de", true },
{ "grillteller42.de", true },
{ "grimcalc.com", true },
{ "grimm-gastrobedarf.de", true },
{ "grimneko.de", true },
{ "grimstveit.no", true },
{ "grinnellplans.com", true },
- { "gripnijmegen.rip", true },
+ { "grippe-impftermin.de", true },
{ "gritte.ch", true },
{ "grizzlys.com", true },
{ "grmp.fr", true },
+ { "grocerybuild.com", true },
{ "grocock.me.uk", true },
{ "groenaquasolutions.nl", true },
{ "groenewoud.me", true },
{ "groentebesteld.nl", true },
+ { "groenteclub.nl", true },
{ "groepjam-usedcars.be", true },
{ "grog.pw", true },
{ "grokker.com", true },
@@ -14802,17 +16371,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gronau-it-cloud-computing.de", true },
{ "grondius.com", true },
{ "groomershop.ru", true },
+ { "groomscroft.co.uk", true },
+ { "groomscroft.com", true },
{ "grootinadvies.nl", true },
{ "groovydisk.com", true },
{ "groovygoldfish.org", true },
{ "gropp.org", true },
{ "gross.business", true },
- { "grossell.ru", true },
+ { "grossberger-ge.org", true },
{ "groszek.pl", true },
{ "groth.im", true },
{ "groth.xyz", true },
{ "grothoff.org", true },
- { "grouchysysadmin.com", true },
+ { "grottenthaler.eu", true },
+ { "groundlevelup.com", true },
{ "group4layers.net", true },
{ "groupe-neurologique-nord.lu", true },
{ "groupebaillargeon.com", true },
@@ -14820,15 +16392,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grouphomes.com.au", false },
{ "groupme.com", true },
{ "groups.google.com", true },
+ { "grove-archiv.de", true },
{ "growingallthings.co.uk", true },
{ "growit.events", true },
{ "growy.ch", true },
{ "grozter.se", true },
+ { "grrmmll.com", true },
{ "grsecurity.net", true },
{ "gruble.de", true },
{ "gruebebraeu.ch", true },
- { "gruelang.org", true },
{ "gruenderlehrstuhl.de", true },
+ { "gruenderwoche-dresden.de", true },
{ "gruene-im-rvr.de", true },
{ "gruene-wattenscheid.de", true },
{ "gruenes-wp.de", true },
@@ -14836,22 +16410,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gruenstreifen-ev.de", true },
{ "grumpy.fr", true },
{ "grumpygamers.com", true },
+ { "grundlage.com.ua", true },
{ "grunwaldzki.center", true },
{ "grunwasser.fr", true },
{ "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 },
+ { "gruver.de", true },
{ "gruwa.net", true },
- { "grytics.com", true },
{ "gs93.de", true },
{ "gsaj114.net", true },
{ "gscloud.xyz", true },
{ "gsi-network.com", true },
{ "gsimagebank.co.uk", true },
{ "gslink.me", true },
+ { "gsmbrick.com", true },
{ "gsmsecurity.net", true },
{ "gsoc.se", true },
{ "gsrc.io", true },
@@ -14861,61 +16438,65 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gt-network.de", true },
{ "gta-arabs.com", true },
{ "gtaforum.nl", true },
- { "gtalife.net", true },
{ "gtchipsi.org", true },
{ "gtcprojects.com", true },
- { "gtdgo.com", true },
{ "gtlaun.ch", true },
{ "gtlfsonlinepay.com", true },
{ "gtmasterclub.it", false },
{ "gtmetrix.com", true },
+ { "gtoepfer.de", true },
{ "gtopala.com", true },
+ { "gtopala.net", true },
{ "gtour.info", false },
{ "gtravers-basketmaker.co.uk", true },
- { "gts-dp.de", true },
- { "gtts.space", true },
+ { "gtxbbs.com", true },
+ { "gtxmail.de", true },
+ { "guajars.cl", true },
+ { "guannan.net.cn", true },
{ "guanyembadalona.org", true },
{ "guanzhong.ca", true },
{ "guardian360.nl", true },
+ { "guardianportal.us", true },
{ "guardianproject.info", true },
{ "guardiansoftheearth.org", true },
{ "gubagoo.com", true },
{ "gubagoo.io", true },
- { "gudangpangan.id", true },
{ "gudini.net", true },
- { "gudrun.ml", true },
+ { "gudrunfit.dk", true },
{ "guegan.de", true },
{ "guelo.ch", true },
{ "guenthereder.at", true },
+ { "guenthernoack.de", true },
+ { "guerard.info", true },
{ "guerrilla.technology", true },
{ "guesthouse-namaste.com", true },
{ "guevener.de", true },
{ "gueze-ardeche.fr", true },
{ "gueze-sas.fr", true },
- { "gufen.ga", true },
{ "guffr.it", true },
{ "guge.ch", true },
{ "gugert.net", true },
{ "guhei.net", true },
{ "guhenry3.tk", true },
{ "guiacidade.com.br", true },
+ { "guiaswow.com", true },
{ "guichet-entreprises.fr", true },
{ "guichet-qualifications.fr", true },
{ "guid2steamid.com", true },
{ "guid2steamid.pw", true },
+ { "guida.org", true },
{ "guide-peche-cantal.com", true },
{ "guidebook.co.tz", true },
{ "guidedselling.net", true },
+ { "guideline.gov", false },
+ { "guidelines.gov", false },
{ "guideo.ch", true },
{ "guidepointsecurity.com", true },
- { "guides-et-admin.com", true },
{ "guides-peche64.com", true },
- { "guidesetc.com", true },
{ "guidetoiceland.is", false },
{ "guildbase.de", true },
{ "guildofmusicsupervisors.co.uk", true },
{ "guillaume-briand.fr", true },
- { "guillaumecote.me", true },
{ "guillaumeperrin.io", true },
{ "guillemaud.me", true },
{ "guim.co.uk", true },
@@ -14925,14 +16506,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gulchuk.com", true },
{ "gulenbase.no", true },
{ "gulfstream.ru", true },
- { "gumballs.com", true },
{ "gume4you.com", true },
+ { "gumeyamall.jp", true },
{ "gumi.ca", true },
+ { "gunauc.net", true },
{ "gunceloyunhileleri.com", true },
+ { "gunn.ee", true },
+ { "gunsofshadowvalley.com", true },
{ "gunwatch.co.uk", true },
{ "gunworld.com.au", true },
{ "guochang.xyz", true },
+ { "guodong.net", true },
{ "guoke.com", true },
+ { "guolaw.ca", true },
{ "guoliang.me", true },
{ "guozeyu.com", true },
{ "gupfen.ch", true },
@@ -14941,52 +16527,57 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gurmel.ru", true },
{ "gurpusmaximus.com", true },
{ "guru-naradi.cz", true },
- { "gurubetng.com", true },
{ "gurucomi.com", true },
{ "gurueffect.com", true },
- { "gurugardener.co.nz", true },
+ { "gururi.com", true },
{ "gus.host", true },
{ "gustaff.de", true },
{ "gustiaux.com", true },
+ { "gustom.io", true },
{ "gut8er.com.de", true },
+ { "gutools.co.uk", true },
+ { "guts.me", true },
+ { "guts.moe", true },
{ "gutschein-spezialist.de", true },
{ "gutscheingeiz.de", true },
{ "gutuia.blue", true },
{ "guus-thijssen.nl", true },
{ "guusvandewal.nl", true },
- { "guvernalternativa.ro", true },
- { "guyot-tech.com", true },
+ { "guyeskens.be", true },
{ "gv-neumann.de", true },
+ { "gv-salto.nl", true },
{ "gvatas.in", true },
+ { "gvc-it.tk", true },
{ "gveh.de", true },
{ "gvi-timing.ch", true },
- { "gvi.be", true },
{ "gviedu.com", true },
{ "gvitiming.ch", true },
- { "gvm.io", true },
{ "gvobgyn.ca", true },
+ { "gvoetbaldagenalcides.nl", true },
{ "gvt2.com", true },
{ "gvt3.com", true },
{ "gvwgroup.com", true },
{ "gw2efficiency.com", true },
{ "gw2treasures.com", true },
{ "gw2zone.net", true },
- { "gwa-verwaltung.de", true },
{ "gwerder.net", true },
{ "gwhois.org", true },
{ "gwrtech.com", true },
{ "gwsec.co.uk", true },
{ "gxmyqy.net", true },
+ { "gyara.moe", true },
{ "gyas.nl", true },
- { "gycis.me", false },
{ "gymagine.ch", true },
+ { "gymbunny.de", true },
{ "gymhero.me", true },
+ { "gymjp.com", true },
{ "gymkirchenfeld.ch", true },
{ "gymnaserenens.ch", true },
{ "gymnasium-farmsen.de", true },
{ "gymnasium-hittfeld.de", true },
{ "gympap.de", true },
{ "gynaecology.co", true },
+ { "gynoguide.com", true },
{ "gypsyreel.com", true },
{ "gyre.ch", true },
{ "gyrenens.ch", true },
@@ -14996,13 +16587,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gz-benz.com", true },
{ "gz-bmw.com", true },
{ "gza.jp", true },
- { "gzitech.com", true },
{ "gzom.ru", true },
{ "h-jo.net", true },
{ "h-suppo.com", true },
{ "h001.ru", true },
{ "h09.eu", true },
{ "h0r.st", true },
+ { "h10l.com", true },
{ "h11.io", true },
{ "h11.moe", true },
{ "h1ctf.com", true },
@@ -15011,7 +16602,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "h2s-design.de", true },
{ "h2u.tv", true },
{ "h3artbl33d.nl", true },
- { "h3z.jp", false },
+ { "h3b.nl", true },
+ { "h3z.jp", true },
{ "h404bi.com", true },
{ "ha-kunamatata.de", true },
{ "ha3.eu", true },
@@ -15021,19 +16613,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "habtium.es", true },
{ "habview.net", true },
{ "hacc.top", true },
{ "haccp.bergamo.it", true },
{ "haccp.milano.it", true },
{ "haccp.roma.it", true },
+ { "hacertest.com", true },
{ "hacettepeteknokent.com.tr", true },
- { "hachre.de", true },
- { "hack.club", true },
+ { "hachre.de", false },
{ "hackademix.net", true },
{ "hackanders.com", true },
{ "hackattack.com", true },
@@ -15043,24 +16634,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
- { "hackerco.com", true },
+ { "hackerchai.com", true },
{ "hackereyes.com", true },
{ "hackergateway.com", true },
- { "hackerlite.xyz", true },
{ "hackernet.se", true },
{ "hackerone-ext-content.com", true },
{ "hackerone-user-content.com", true },
{ "hackerone.at", true },
{ "hackerone.com", true },
{ "hackerone.net", true },
+ { "hackerone.org", true },
{ "hackerschat.net", true },
- { "hackerstxt.org", true },
{ "hackettrecipes.com", true },
{ "hackgins.com", true },
{ "hackingand.coffee", false },
@@ -15073,39 +16663,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hackthissite.org", true },
{ "hacktic.info", true },
{ "hacktivis.me", true },
- { "hackyourfaceoff.com", true },
- { "hackzogtum-coburg.de", true },
+ { "hackworx.com", false },
{ "hadaly.fr", true },
{ "hadleighswimmingclub.co.uk", true },
{ "hadouk.in", true },
{ "hadrons.org", true },
+ { "hady.fr", 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 },
+ { "hagier.pl", true },
{ "hagueaustralia.com.au", true },
{ "haha-raku.com", true },
{ "hahay.es", true },
{ "haiboxu.com", true },
- { "hail2u.net", true },
{ "hailer.com", true },
+ { "hailstorm.nl", true },
+ { "haim.bio", true },
+ { "haimablog.ooo", true },
{ "hairbeautyartists.it", true },
{ "haircrazy.com", true },
- { "hairplaybychenellekay.com", true },
+ { "hairplaybychenellekay.com", false },
{ "hairraisingphotobooths.co.uk", true },
{ "hairtonic-lab.com", true },
{ "haixihui.cn", true },
- { "haizum.pro", true },
+ { "hajekdavid.cz", true },
+ { "hajekj.cz", true },
{ "hajekj.net", true },
+ { "hajnzic.at", true },
{ "hak5.org", true },
{ "hakaru.org", true },
{ "hakase.io", true },
+ { "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 },
@@ -15117,25 +16716,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "halkyon.net", true },
{ "hallelujahsoftware.com", true },
{ "halletienne.fr", true },
+ { "hallettxn.com", true },
{ "hallhuber.com", true },
{ "halliday.work", true },
{ "halligladen.de", true },
{ "hallmarkestates.ca", true },
{ "hallucinogen.com", true },
{ "hallucinogens.org", true },
+ { "hallumlaw.com", true },
{ "halo.fr", true },
+ { "halocredit.pl", true },
{ "halongbaybackpackertour.com", true },
{ "haloobaloo.com", true },
{ "haloria.com", true },
+ { "haltegame.com", true },
{ "hamacho-kyudo.com", true },
{ "hamali.bg", true },
+ { "hamburg40grad.de", true },
{ "hamburgerbesteld.nl", true },
{ "hamcocc.com", true },
{ "hamcram.io", true },
{ "hamiltonlinen.com", true },
{ "hamiltonmedical.nl", true },
- { "hamish.ca", true },
- { "hammer-corp.com", true },
{ "hammer-schnaps.com", true },
{ "hammer-sms.com", true },
{ "hampl.tv", true },
@@ -15143,33 +16745,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hamsters-uk.org", true },
{ "hana.ondemand.com", true },
{ "hanakaraku.com", true },
+ { "hanakatova.com", true },
{ "hanashi.eu", true },
{ "hanbing.it", true },
{ "handbrake.fr", true },
{ "handcraft.eu.org", true },
{ "handgelenkbandage-test.de", true },
+ { "handknit.com.np", true },
{ "handlecoin.com", true },
{ "handleidingkwijt.com", true },
{ "handmade-workshop.de", true },
- { "handmadegobelin.com", true },
- { "handmadeshoes.pe", true },
- { "handyglas.com", true },
+ { "handmadehechoamano.com", true },
+ { "handy-center.net", true },
{ "handymanlondonplease.co.uk", true },
- { "handynummer.online", true },
{ "handysex.live", true },
{ "handyticket.de", true },
{ "hanfox.co.uk", false },
{ "hanfverband-erfurt.de", true },
- { "hang333.moe", true },
{ "hangar.hosting", true },
{ "hangcapnach.com", true },
{ "hangouts.google.com", true },
{ "hangtenseo.com", true },
+ { "hankr.com", true },
+ { "hanksacservice.com", true },
{ "hannah.link", true },
+ { "hannahi.com", true },
+ { "hannasecret.de", true },
{ "hannoluteijn.nl", true },
+ { "hannover.de", true },
{ "hanoibuffet.com", true },
+ { "hanpenblog.com", true },
+ { "hansahome.ddns.net", true },
+ { "hansashop.eu", true },
{ "hansbijster.nl", true },
- { "hansch.ventures", true },
{ "hanschventures.com", true },
{ "hansen-kronshagen.de", true },
{ "hansen.hn", true },
@@ -15180,32 +16788,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hansvaneijsden.nl", true },
{ "hantse.com", true },
{ "hanu.la", true },
- { "hanxv.pw", true },
{ "hanyibo.com", true },
- { "hanys.xyz", true },
{ "hanzubon.jp", true },
{ "hao-zhang.com", true },
+ { "haocq3.com", true },
{ "haogoodair.ca", true },
{ "haoqi.men", true },
+ { "haorenka.cc", true },
{ "haotown.cn", true },
{ "haozhang.org", true },
+ { "haozhexie.com", true },
{ "haozi.me", true },
+ { "haozijing.com", 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 },
+ { "happybeerdaytome.com", 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 },
@@ -15215,11 +16826,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "haptemic.com", true },
{ "haraj.com.sa", true },
{ "harald-d.dyndns.org", true },
- { "harald-pfeiffer.de", true },
{ "harapecorita.com", true },
{ "harbor-light.net", true },
{ "hardeman.nu", true },
{ "hardenize.com", true },
+ { "hardergayporn.com", true },
{ "hardertimes.com", true },
{ "hardesec.com", true },
{ "hardez.de", true },
@@ -15229,12 +16840,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hardloopfysio.nl", true },
{ "hardrain980.com", true },
{ "hardtfrieden.de", true },
- { "hardtime.ru", 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 },
@@ -15246,10 +16857,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "harp.gov", true },
{ "harrcostl.com", true },
{ "harringtonca.com", true },
- { "harrisonsdirect.co.uk", true },
{ "harrisonswebsites.com", true },
{ "harrisonvillenaz.org", true },
- { "harry-baker.com", true },
{ "harrymclaren.co.uk", true },
{ "harryphoto.fr", true },
{ "harrysgardengamehire.co.uk", true },
@@ -15260,23 +16869,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hartlieb.me", true },
{ "hartzer.com", true },
{ "harukakikuchi.com", true },
+ { "harukawa.moe", true },
{ "haruue.moe", true },
+ { "harvarddharma.org", true },
{ "harvestapp.com", true },
{ "harvester.fr", true },
{ "harveyauzorst.com", true },
- { "harveymilton.com", true },
+ { "harveysautoservice.net", true },
{ "has-no-email-set.de", false },
- { "haschrebellen.de", true },
+ { "has.work", true },
{ "hasdf.de", true },
{ "hasecuritysolutions.com", true },
{ "haselsteiner.me", true },
{ "hash-archive.org", true },
+ { "hash.army", true },
{ "hash.works", true },
+ { "hashcashconsultants.com", 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 },
@@ -15284,52 +16899,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hashnode.com", true },
{ "hashru.nl", true },
{ "hashworks.net", true },
+ { "hashxp.org", true },
{ "hasilocke.de", true },
{ "haskovec.com", true },
{ "hasselbach-dellwig.de", true },
{ "hatarisecurity.co.ke", true },
- { "hatcherlawgroupnm.com", true },
+ { "hatpakha.com", true },
{ "hatul.info", true },
{ "haucke.xyz", true },
- { "hauntedfishtank.com", false },
{ "hauntedhouserecords.co.uk", true },
{ "haus-garten-test.de", true },
{ "haus-henne.de", true },
{ "haus-zeitlos.de", true },
{ "hausarztpraxis-linn.de", true },
{ "haushenne.de", true },
+ { "hausjugo.de", true },
{ "haustechnik-breu.de", true },
{ "hausundhof.com", true },
{ "hausverbrauch.de", true },
- { "hauswarteam.com", true },
{ "hautaka.com", true },
{ "hautarztzentrum.ch", true },
{ "hauteslatitudes.com", true },
+ { "havarijna-sluzba-bratislava.sk", true },
{ "havasuhomepage.com", true },
{ "havasuinsurance.com", true },
{ "havasutacohacienda.com", true },
+ { "have.jp", true },
{ "haveabounce.co.uk", true },
+ { "haveacry.com", true },
{ "haveforeningen-enghaven.dk", true },
{ "havefunbiking.com", true },
{ "haveibeenpwned.com", true },
{ "havellab.de", true },
{ "havelland-obstler.de", true },
- { "haven-moon.com", true },
+ { "havencyber.com", true },
{ "havenstrategies.com", true },
+ { "havernbenefits.com", true },
{ "haverstack.com", true },
{ "havetherelationshipyouwant.com", true },
{ "hawaar.com", true },
+ { "hawaiianchoice.com", true },
{ "hawaya.com", true },
{ "hawkeyeinsight.com", true },
{ "hawkinsonkiaparts.com", true },
{ "hawkofgeorgia.com", true },
+ { "hawkon.dk", true },
{ "hawksguild.com", true },
+ { "hawksracing.de", true },
+ { "hax.to", true },
{ "haxdroid.com", true },
{ "haxo.nl", false },
{ "hayai.space", true },
{ "hayashi-rin.net", true },
{ "hayden.one", false },
{ "haydenjames.io", true },
+ { "haydentomas.com", true },
{ "hayfordoleary.com", true },
{ "haynes-davis.com", true },
{ "hayvid.com", true },
@@ -15339,29 +16963,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hazloconlapix.com", true },
{ "hazukilab.com", true },
{ "hb8522.com", true },
+ { "hbcu-colleges.com", true },
{ "hbkonsult.com", true },
{ "hboeck.de", true },
{ "hbpowell.com", true },
{ "hcaz.io", true },
{ "hcbj.io", true },
- { "hcoe.fi", true },
+ { "hcie.pl", false },
+ { "hcscrusaders.com", true },
{ "hd-gaming.com", true },
{ "hd-offensive.at", false },
{ "hd-only.org", true },
{ "hd-outillage.com", true },
- { "hda.me", true },
+ { "hd1tj.org", true },
{ "hdc.cz", true },
+ { "hdcamvids.com", true },
{ "hdcenter.cc", true },
+ { "hddrecovery.net.au", true },
{ "hdeaves.uk", true },
{ "hdf.world", true },
{ "hdfgroup.org", true },
{ "hdguru.com", true },
{ "hdhoang.space", true },
+ { "hdkandsons.com", true },
{ "hdnastudio.com", true },
{ "hdrsource.com", true },
{ "hdrtranscon.com", true },
{ "hds-lan.de", true },
- { "hdwallpapers.net", true },
+ { "hdv.paris", true },
{ "heaaart.com", true },
{ "head.org", true },
{ "head.ru", true },
@@ -15370,22 +16999,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "headshopinternational.com", true },
{ "headshotharp.de", true },
{ "healey.io", true },
- { "health-match.com.au", true },
+ { "health-and-beauty-news.net", true },
+ { "health-booster.com", false },
{ "health-plan-news.com", true },
- { "health.gov", true },
{ "health.graphics", true },
+ { "healthand-beautynews.net", true },
+ { "healthandskinbeauty.com", true },
{ "healthcare.gov", false },
- { "healthcare6.com", true },
+ { "healthcultureexpo.com", true },
+ { "healthdata.gov", true },
{ "healtheals.com", true },
{ "healtheffectsofasbestos.com", true },
{ "healthery.com", true },
- { "healthfinder.gov", true },
{ "healthfoam.com", true },
{ "healthgames.co.uk", true },
{ "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 },
@@ -15394,9 +17024,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "healthybeterlife.click", true },
{ "healthyfitfood.com", true },
{ "healthypeople.gov", true },
+ { "healthyteame.com", true },
{ "heap.zone", true },
+ { "heapkeeper.org", true },
+ { "hearinghelpexpress.com", true },
{ "hearmeraw.uk", true },
- { "heart.taxi", true },
{ "heartbeat24.de", true },
{ "heartgames.pl", true },
{ "heartlandbiomed.com", true },
@@ -15407,7 +17039,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heartview.com.br", true },
{ "heartwoodart.com", true },
{ "hearty.blog", true },
- { "hearty.cf", true },
{ "hearty.ga", true },
{ "hearty.gq", true },
{ "hearty.me", true },
@@ -15415,38 +17046,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hearty.ooo", true },
{ "hearty.org.tw", true },
{ "hearty.taipei", true },
- { "hearty.us", true },
- { "heartyapp.com", true },
+ { "hearty.tw", true },
+ { "heartyapp.tw", 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 },
- { "heayao.com", true },
+ { "hebamme-cranio.ch", true },
{ "hebergeurssd.com", true },
{ "hebikhiv.nl", true },
{ "hebingying.cn", true },
{ "hebocon.nl", true },
- { "hebriff.com", true },
{ "hec-espace-entreprise.ch", true },
{ "hec.global", true },
- { "hechamano.es", true },
{ "heckelektro.de", true },
{ "heckerundknopp.de", true },
{ "heckticmedia.com", true },
- { "hectorj.net", true },
{ "hedgeschool.ie", true },
{ "hedonism.org", true },
{ "hedonistic-imperative.com", true },
{ "hedonistic.org", true },
{ "hedonium.com", true },
{ "hedweb.co.uk", true },
- { "hedweb.com", true },
{ "hedweb.net", true },
{ "hedweb.org", true },
- { "heeler.blue", true },
- { "heeler.red", true },
{ "heello.es", true },
{ "hefengautoparts.com", true },
{ "heftkaufen.de", true },
@@ -15461,6 +17087,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 },
@@ -15470,27 +17097,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heimonen.eu", true },
{ "heimprofis.de", true },
{ "heinemann.io", true },
+ { "heinemeier.dk", true },
{ "heinpost.nl", false },
{ "heinzelmann.co", true },
{ "heiraten-gardasee.de", true },
{ "heiraten-venedig.de", true },
+ { "heisenberg.co", true },
{ "heissluft-fritteuse.com", true },
{ "heistheguy.com", true },
{ "heitland-it.de", true },
{ "heiwa-valve.co.jp", true },
- { "hejahanif.se", true },
{ "hejianpeng.cn", true },
{ "heka.ai", true },
{ "helber-it-services.de", true },
{ "helden-spielen.de", true },
{ "heldenhalde.de", true },
+ { "heldtech.services", 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 },
+ { "helgaschultz.de", true },
{ "helichat.de", true },
{ "helikon.ro", true },
{ "helioanodyne.eu", true },
@@ -15498,40 +17128,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heliosnet.com", true },
{ "heliosvoting.org", true },
{ "helix.am", true },
+ { "hellenicagora.co.uk", true },
+ { "hellerarko.de", true },
{ "hellersgas.com", true },
{ "helles-koepfchen.de", true },
{ "helloacm.com", true },
+ { "hellobrian.me", true },
{ "hellomouse.net", true },
+ { "helloworldhost.com", false },
{ "hellsgamers.pw", true },
{ "hellsh.com", true },
{ "helmut-a-binser.de", true },
{ "help.simpletax.ca", true },
{ "helpconnect.com.au", true },
- { "helpdebit.com", true },
- { "helpfacile.com", true },
- { "helpfixe.com", true },
- { "helpflux.com", true },
{ "helpgoabroad.com", true },
{ "helpmij.cf", true },
{ "helpscoutdocs.com", true },
{ "helpstarloja.com.br", true },
+ { "helpwithmybank.gov", true },
{ "helsinki.dating", true },
- { "helup.com", true },
{ "helvella.de", true },
{ "hematoonkologia.pl", true },
{ "hemdal.se", true },
{ "hemnet.se", true },
+ { "hems.si", true },
+ { "hemtest.com", true },
{ "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 },
- { "henhenlu.com", true },
{ "henkboelman.com", true },
- { "henkbrink.com", true },
+ { "henke-home.eu", true },
{ "henker.net", true },
{ "henkverlinde.com", false },
{ "henley-computer-repairs.co.uk", true },
@@ -15539,23 +17170,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hennadesigns.org", true },
{ "hennecke-forstbetrieb.de", true },
{ "henneke.me", true },
+ { "hennies.org", true },
{ "henningkerstan.de", true },
{ "hennymerkel.com", true },
{ "henok.eu", true },
{ "henriksen.is", true },
{ "henrikwelk.de", true },
{ "henrilammers.nl", true },
- { "henrock.net", true },
{ "henry.gg", true },
{ "henryphan.com", false },
- { "hentaiz.net", true },
+ { "henrysautodetail.com", true },
+ { "hentaiworld.cc", true },
{ "hentschke-bau.de", true },
{ "hentschke-betonfertigteilwerk.de", true },
{ "hentschke-invest.de", true },
+ { "henzenhoning.nl", true },
{ "heppler.net", true },
{ "heptafrogs.de", true },
- { "herbal-id.com", true },
- { "herbandpat.org", true },
+ { "her25.com", false },
{ "herberichfamily.com", true },
{ "herbert.io", true },
{ "herbhuang.com", true },
@@ -15565,39 +17197,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "herds.eu", true },
{ "herdserv.de", true },
{ "herebedragons.io", true },
+ { "herecsrymy.cz", true },
+ { "heren.fashion", true },
{ "heritagebaptistchurch.com.ph", true },
{ "herkam.pl", true },
{ "hermanbrouwer.nl", true },
- { "hermann.in", true },
{ "hermes-net.de", true },
- { "hermes.cat", true },
{ "herminghaus24.de", true },
{ "herndl.org", true },
{ "herni-kupony.cz", true },
+ { "hernn.com", true },
{ "herocentral.de", true },
+ { "heroco.xyz", true },
{ "herofil.es", true },
{ "herohirehq.co.uk", true },
{ "heroiclove.com", true },
{ "heroicpixel.com", true },
{ "heroku.com", true },
+ { "heromuster.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 },
+ { "hervespanneut.com", true },
{ "herzbotschaft.de", true },
{ "herzfuersoziales.at", true },
{ "herzig.cc", true },
- { "hesa.com", true },
+ { "herzogglass.com", true },
{ "hesaplama.net", true },
{ "hessen-liebe.de", true },
+ { "hesslag.com", true },
{ "hestervanderheijden.nl", true },
{ "hestia-systeme.be", true },
{ "hestia-systeme.com", true },
@@ -15606,40 +17242,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hesyifei.com", true },
{ "hetene.nl", true },
{ "hethely.ch", true },
+ { "hetluisterbos.be", true },
{ "hetmer.cz", true },
{ "heute-kaufen.de", true },
{ "heute.training", true },
- { "heverhagen.rocks", true },
{ "hevertonfreitas.com.br", true },
- { "hex.bz", true },
{ "hex.nl", true },
{ "hexagon-e.com", true },
{ "hexapt.com", true },
{ "hexclock.io", true },
{ "hexcode.in", true },
{ "hexed.it", true },
+ { "hexiaohu.cn", true },
{ "hexicurity.com", true },
{ "hexid.me", true },
- { "hexieshe.com", true },
- { "hexo.io", 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 },
- { "hflsdev.org", false },
{ "hfox.org", true },
{ "hg.gg", true },
{ "hg.python.org", true },
- { "hg525.com", true },
{ "hgbet.com", true },
- { "hgfa.fi", true },
+ { "hgvnet.de", true },
{ "hgw168.com", true },
{ "hh-medic.com", true },
{ "hh-wolke.dedyn.io", true },
@@ -15654,6 +17285,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hicl.org", true },
{ "hicoria.com", true },
{ "hidbo.de", true },
+ { "hiddendepth.ie", true },
{ "hiddenhillselectric.com", true },
{ "hiddenhillselectrical.com", true },
{ "hiddenhillselectrician.com", true },
@@ -15668,26 +17300,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hieu.com.au", true },
{ "higgsboson.tk", true },
{ "higgstools.org", true },
+ { "highair.net", true },
{ "higherpress.org", true },
- { "highland-webcams.com", true },
- { "highlatitudestravel.com", true },
{ "highlegshop.com", true },
{ "highlevelwoodlands.com", true },
- { "highlightsfootball.com", false },
+ { "highlightsfootball.com", true },
{ "highlnk.com", true },
- { "highperformancehvac.com", true },
{ "highspeed-arnsberg.de", true },
{ "highspeedinternet.my", true },
- { "highspeedinternetservices.ca", true },
{ "hightechbasementsystems.com", true },
- { "hightimes.com", true },
{ "highwaytohoell.de", true },
{ "higilopocht.li", true },
+ { "hijackpost.com", true },
+ { "hikarukujo.com", true },
{ "hike.pics", true },
+ { "hikerone.com", true },
+ { "hikinggearlab.com", true },
{ "hikingguy.com", true },
{ "hilahdih.cz", true },
- { "hilaolu.studio", true },
- { "hilariousbeer.com.mx", true },
{ "hilaryhutler.com", true },
{ "hilchenba.ch", true },
{ "hilde.link", true },
@@ -15705,61 +17335,71 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "himecorazon.com", true },
{ "himekomi.com", true },
{ "himens.com", true },
+ { "himiku.com", true },
{ "hin10.com", true },
+ { "hinata-hidetoshi.com", true },
+ { "hindi-movie.org", true },
+ { "hindimoviedownload.net", true },
+ { "hindimovieonline.net", true },
{ "hintergrundbewegung.de", true },
{ "hinterhofbu.de", true },
{ "hinterposemuckel.de", true },
- { "hipi.jp", true },
+ { "hiparish.org", true },
+ { "hiphop.ren", true },
+ { "hipnos.net", true },
{ "hippies.com.br", true },
{ "hippo.ge", true },
{ "hippomovers.com", true },
{ "hippopotamuses.org", true },
{ "hips.com", true },
{ "hipstercat.fr", true },
- { "hiqfleet.co.uk", true },
{ "hiqfranchise.co.uk", true },
+ { "hiqhub.co.uk", false },
{ "hiqonline.co.uk", true },
+ { "hirakatakoyou.org", true },
{ "hirake55.com", true },
{ "hiratake.xyz", true },
{ "hire-a-coder.de", true },
{ "hireabouncycastle.net", true },
- { "hirefitness.co.uk", true },
- { "hireprofs.com", true },
{ "hiresteve.ca", true },
- { "hiretech.com", true },
- { "hirevets.gov", true },
+ { "hirevo.eu", true },
{ "hirezzportal.com", true },
{ "hiring-process.com", true },
{ "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 },
+ { "history.gov", true },
{ "hitandhealth.nl", true },
{ "hiteco.com", true },
+ { "hiteshbrahmbhatt.com", true },
{ "hititgunesi-tr.com", true },
{ "hitmanstat.us", true },
+ { "hitn.at", true },
{ "hitoapi.cc", true },
{ "hitocom.net.br", true },
{ "hitokoto-mania.com", true },
{ "hitokoto.cn", true },
{ "hitomecha.com", true },
+ { "hitrek.ml", true },
{ "hitter-lauzon.com", true },
{ "hitter.family", true },
{ "hitterfamily.com", true },
{ "hiv-symptome.de", true },
{ "hiv.com.tw", true },
{ "hiv.gov", true },
- { "hivatal-info.hu", true },
{ "hivatalinfo.hu", true },
- { "hiverlune.net", true },
+ { "hiverlune.net", false },
{ "hiwiki.tk", true },
{ "hiyacar.co.uk", true },
{ "hiyobi.me", true },
@@ -15767,18 +17407,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hizzacked.xxx", true },
{ "hj-mosaiques.be", true },
{ "hj.rs", true },
+ { "hj3455.com", true },
+ { "hj99vip.com", true },
{ "hjartasmarta.se", true },
- { "hjf-immobilien.de", true },
{ "hjkbm.cn", true },
- { "hjkhs.cn", true },
{ "hjort.land", true },
{ "hjortland.org", true },
{ "hjphoto.co.uk", true },
{ "hjtky.cn", true },
{ "hjw-kunstwerk.de", true },
+ { "hjyl9898.com", true },
{ "hk.search.yahoo.com", false },
+ { "hkbsurgery.com", true },
{ "hkdobrev.com", true },
+ { "hkr.at", true },
+ { "hks-projekt.at", true },
{ "hks.pw", true },
+ { "hktkl.com", true },
{ "hkustmbajp.com", true },
{ "hl7999.com", true },
{ "hl8999.com", true },
@@ -15788,9 +17433,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hledejpravnika.cz", true },
{ "hlfh.space", true },
{ "hlidacnajemneho.cz", true },
+ { "hlin.cloud", true },
{ "hlinformatics.nl", true },
{ "hlsmandarincentre.com", true },
{ "hlucas.de", true },
+ { "hm773.net", true },
+ { "hm773.org", true },
{ "hmcdj.cn", true },
{ "hmhotelec.com", false },
{ "hmoegirl.com", true },
@@ -15798,21 +17446,23 @@ 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 },
+ { "hnrk.io", true },
{ "hnyp.hu", true },
{ "hoaas.no", true },
{ "hoahau.org", true },
{ "hoarding.me", true },
{ "hobby-drechselei.de", true },
{ "hobbyspeed.com", true },
- { "hocassian.cn", true },
+ { "hochdorf-tennis.de", true },
+ { "hochhaus.us", true },
{ "hochoukikikiraku.com", true },
+ { "hochyi.com", true },
{ "hochzeit-dana-laurens.de", true },
{ "hochzeitsfotograf-deinfoto.ch", true },
{ "hochzeitsgezwitscher.de", true },
{ "hochzeitsplanerin-hamburg.de", true },
- { "hockey.academy", true },
{ "hockeyapp.ch", true },
{ "hockeymotion.ch", true },
{ "hodgephotography.com", true },
@@ -15820,28 +17470,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hoe.re", true },
{ "hoeft-autolackierung.de", true },
{ "hoekvanholland.eu", true },
- { "hoelty.network", true },
+ { "hoepli.it", true },
{ "hoeren.club", true },
{ "hoesnelwasik.nl", true },
- { "hoevenstein.nl", true },
+ { "hoeveiligismijn.nl", true },
+ { "hoevenstein.nl", false },
{ "hoewler.ch", true },
{ "hoezzi.nl", true },
{ "hof-mulin.ch", true },
{ "hofapp.de", true },
{ "hofauer.de", true },
{ "hoflerlawfirm.com", true },
+ { "hogarthdavieslloyd.com", true },
+ { "hoge.se", true },
+ { "hogepad.com", true },
{ "hogl.dk", true },
{ "hogrebe.de", true },
{ "hogwarts.io", true },
- { "hohm.in", true },
+ { "hohenleimbach.de", true },
+ { "hoikuen-now.top", true },
{ "hoiquanadida.com", true },
+ { "hoish.in", true },
{ "hoken-wakaru.jp", true },
- { "hokepon.com", true },
{ "hokieprivacy.org", true },
- { "hokify.at", true },
- { "hokify.ch", true },
- { "hokify.de", true },
+ { "hokioisecurity.com", true },
{ "holad.de", true },
+ { "holadinero.es", true },
+ { "holadinero.mx", true },
{ "holboxwhalesharktours.com", true },
{ "holebedeljek.hu", true },
{ "holidaysportugal.eu", true },
@@ -15849,7 +17504,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "holistichealer.in", true },
{ "holisticon.de", true },
{ "hollandsdiep.nl", true },
- { "hollerau.de", true },
{ "hollermann.eu", true },
{ "hollo.me", true },
{ "hollowpoint.xyz", true },
@@ -15861,16 +17515,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "holo.ovh", true },
{ "holodeck.us", true },
{ "holofono.com", true },
+ { "holofox.ru", true },
{ "holoxplor.space", true },
- { "holstphoto.com", true },
{ "holvonix.com", true },
- { "holy-hi.com", true },
+ { "holy-hi.com", false },
+ { "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 },
- { "holymolycasinos.com", true },
+ { "holymartyrschurch.org", true },
+ { "holyspiritpalmyra.com", true },
+ { "holyspiritweb.org", true },
+ { "holytransaction.com", true },
{ "holywhite.com", true },
{ "holz.nu", true },
+ { "holzed.com", true },
{ "holzheizer-forum.de", true },
{ "holzheizerforum.de", true },
{ "holzschutz-holzbearbeitung.de", true },
@@ -15879,46 +17542,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "holzundgarten.de", true },
{ "holzvergaser-forum.de", true },
{ "homatism.com", true },
- { "home-work-jobs.com", true },
+ { "hombresconestilo.com", true },
+ { "home-handymen.co.uk", true },
{ "homeautomated.com", true },
{ "homebasedsalons.com.au", true },
{ "homebodyalberta.com", true },
{ "homecareassociatespa.com", true },
- { "homecarpetcleaning.co.uk", true },
{ "homecheck.gr", true },
- { "homecoming.city", 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 },
+ { "homestay.id", true },
+ { "homesteadandprepper.com", true },
{ "homesteadfarm.org", true },
{ "homewatt.co.uk", true },
{ "homeyou.com", true },
{ "hommeatoutfaire.be", true },
{ "homophoni.com", true },
{ "hompus.nl", false },
+ { "homunyan.com", true },
{ "homyremedies.com", true },
{ "hon-matsuba.co.jp", true },
{ "honda-centrum.cz", true },
{ "hondart.cz", true },
{ "hondenoppasfraneker.nl", true },
+ { "honey.beer", true },
{ "honey.is", true },
{ "honeybadger.io", false },
- { "honeybeard.co.uk", true },
{ "honeycome.net", true },
{ "honeycreeper.com", true },
{ "honeyhaw.com", true },
{ "honeypot.net", true },
+ { "hong.io", true },
{ "hongoi.com", true },
{ "honkion.net", true },
{ "honovere.de", true },
@@ -15926,17 +17597,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hoodtrader.com", true },
{ "hoofddorp-centraal.nl", true },
{ "hookany.com", true },
+ { "hookbin.com", true },
+ { "hoooc.com", true },
{ "hooowl.com", true },
{ "hoop.la", true },
{ "hoopertechnicalsolutions.com", true },
{ "hooplessinseattle.com", true },
{ "hooray.beer", true },
{ "hoorr.com", true },
+ { "hoosa.de", true },
{ "hootworld.net", false },
+ { "hoovism.com", true },
+ { "hoowhen.cn", true },
{ "hopconseils.ch", true },
{ "hopconseils.com", true },
{ "hope-line-earth.jp", true },
- { "hopesb.org", true },
+ { "hopemeet.info", true },
+ { "hopemeet.me", true },
+ { "hopesanddreams.org.uk", true },
{ "hopla.sg", true },
{ "hoplongtech.com", true },
{ "hoponmedia.de", true },
@@ -15946,22 +17624,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
- { "horrendous-servers.com", true },
+ { "horror-forum.de", true },
+ { "horrormovies.gr", true },
{ "horsehunter.co.uk", true },
{ "horstmanshof.eu", true },
+ { "horton-brasses.com", true },
{ "hory.me", true },
{ "horza.org", true },
{ "hoshimaq.com.br", true },
@@ -15971,14 +17653,16 @@ 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 },
{ "hosteasy.nl", false },
{ "hostedcomments.com", true },
{ "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 },
@@ -15986,42 +17670,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hostinglogin.net", true },
{ "hostingphp.ch", true },
{ "hostingpunt.be", true },
+ { "hostingsams.com", true },
{ "hostingsolutions.cz", true },
{ "hostix.de", true },
{ "hostma.ma", true },
- { "hostme.co.il", false },
+ { "hostmark.pl", true },
+ { "hostme.co.il", true },
{ "hostmijnpagina.nl", true },
{ "hostmodern.com.au", true },
{ "hosts.cf", true },
- { "hostserv.org", true },
{ "hostworkz.com", true },
- { "hosyaku.gr.jp", true },
{ "hotcandlestick.com", true },
{ "hotchillibox.com", true },
+ { "hotcoin.io", true },
+ { "hotdoc.com.au", true },
+ { "hotel-alan.hr", true },
+ { "hotel-kontorhaus-stralsund.de", true },
+ { "hotel-kontorhaus.de", true },
{ "hotel-kronjuwel.de", true },
{ "hotel-le-vaisseau.ch", true },
{ "hotel-pension-sonnalp.eu", true },
+ { "hotel-rosner.at", true },
{ "hotelamgarnmarkt.at", false },
+ { "hotelarevalo.com", true },
+ { "hotelbonacabol.com", true },
+ { "hotelbretagne.dk", true },
{ "hotelcoliber.pl", true },
+ { "hotelelaphusabrac.com", true },
+ { "hoteles4you.com", true },
{ "hotelflow.com.br", true },
{ "hotelident.de", true },
- { "hotello.io", true },
+ { "hotelkaj.hr", true },
{ "hotelmap.com", true },
+ { "hotelmarinaadria.com", true },
+ { "hotelneptundalmatien.com", true },
+ { "hotelpostaorvieto.it", true },
+ { "hotelromacuernavaca.com.mx", true },
{ "hotels-insolites.com", true },
+ { "hotels3d.com", true },
{ "hotels4teams.com", true },
{ "hotelsinbuxton.com", true },
{ "hotelsinformer.com", true },
{ "hotelsinncoventry.com", true },
+ { "hotelsolinebrela.com", true },
{ "hotelvalena.com", true },
{ "hotelvillaluisa.de", true },
- { "hotesb.com", true },
- { "hotesb.net", true },
{ "hothbricks.com", true },
- { "hotjuice.com", true },
{ "hotnewhiphop.com", true },
{ "hoto.us", true },
{ "hoton.in", true },
- { "hotornot.com", true },
{ "hotplate.co.nz", true },
{ "hotplug.gr", true },
{ "hottaro.com", true },
@@ -16035,49 +17732,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "house-sparrow.com", true },
{ "houseboydesigns.com", true },
{ "housekeeperlondon.co.uk", true },
+ { "houselocal.co.uk", true },
{ "houseofherbs.gr", true },
{ "houseofhouston.com", true },
+ { "houseofyee.com", true },
{ "houser.lu", true },
{ "housese.at", true },
- { "housetalk.ru", true },
{ "houstonapartmentinsiders.com", true },
{ "houstonauthorizedrepair.com", true },
{ "houstoncreditlaw.com", true },
+ { "houstontxlocksmiths.com", true },
{ "houtinee.com", true },
+ { "hoverboardbarato.com", true },
{ "how2play.pl", true },
{ "howa-n.net", true },
{ "howardtyson.com", true },
{ "howbehealthy.com", true },
{ "howbigismybuilding.com", true },
+ { "howellaccounts.co.uk", true },
+ { "howesky.com", true },
{ "howgoodwasmysex.com", true },
+ { "howieisawesome.com", true },
{ "howlongtobeatsteam.com", true },
{ "howmanymilesfrom.com", true },
{ "howsecureismypassword.net", true },
{ "howsmyssl.com", true },
- { "howsmytls.com", true },
{ "howsyourhealth.org", true },
+ { "howtocommunicate.com.au", true },
{ "howtogeek.com", true },
{ "howtogeekpro.com", true },
{ "howtogosolar.org", true },
- { "howtoinstall.co", true },
{ "howtolaser.com", true },
+ { "howtomovetheneedle.com", true },
+ { "howtoteachviolin.com", true },
{ "howtotech.de", true },
{ "hozana.si", false },
{ "hp-work.net", true },
{ "hp42.de", true },
{ "hpac-portal.com", true },
+ { "hpage.com", true },
{ "hpbn.co", true },
- { "hpeditor.tk", true },
- { "hpepub.com", false },
{ "hpisavageforum.com", true },
{ "hpkp-faq.de", true },
- { "hpnow.com.br", true },
+ { "hps.digital", true },
{ "hps.hu", true },
- { "hqq.tv", true },
+ { "hpsdigital.hu", true },
+ { "hqhh.org", true },
{ "hquest.pro.br", true },
{ "hqwebhosting.tk", false },
+ { "hqy.moe", true },
{ "hr-tech.shop", true },
- { "hr98.xyz", true },
{ "hrabogados.com", true },
{ "hraesvelg.net", true },
{ "hranicka.cz", true },
@@ -16086,37 +17790,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hrdns.de", false },
{ "href.one", true },
{ "hreflang.info", true },
- { "hrjfeedstock.com", true },
{ "hrjfeedstock.org", true },
+ { "hrltech.com.br", true },
+ { "hro.to", 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 },
{ "hs-group.net", true },
{ "hs-umformtechnik.de", true },
+ { "hsappstatic.net", true },
{ "hscorp.de", true },
{ "hsivonen.com", true },
{ "hsivonen.fi", true },
{ "hsivonen.iki.fi", true },
{ "hsmr.cc", true },
- { "hsn.com", true },
- { "hsr.gov", true },
+ { "hsr.gov", false },
+ { "hsts.eu", true },
{ "hsts.me", true },
+ { "hsts.ovh", true },
{ "hstsfail.appspot.com", true },
{ "hstspreload.appspot.com", true },
{ "hstspreload.com", true },
{ "hstspreload.de", true },
{ "hstspreload.org", true },
- { "hsulei.com", true },
{ "hszemi.de", true },
+ { "ht.mk", true },
{ "htaccessbook.com", true },
{ "htaps.com", true },
{ "hte.ovh", true },
+ { "hti.digital", true },
{ "html.moe", true },
{ "html5.org", true },
{ "html5media.info", true },
@@ -16128,10 +17836,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "htsure.ma", true },
{ "http2.eu", true },
{ "http2.pro", true },
+ { "https-rulesets.org", true },
{ "https.dk", true },
{ "https.jetzt", true },
- { "https.ren", true },
{ "https4all.org", true },
+ { "httpsalarm.com", true },
{ "httpsecured.net", true },
{ "httpsecurityreport.com", true },
{ "httpsiseasy.com", true },
@@ -16148,23 +17857,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hu8777.com", true },
{ "hu8bet.com", true },
{ "hu8hu8.com", true },
- { "hua-in.com", true },
- { "hua-in.net", true },
- { "hua-li88.com", true },
- { "hua-li88.net", true },
{ "huagati.com", true },
{ "huahinpropertylisting.com", true },
- { "huang-haitao.com", true },
+ { "hualao.co", true },
+ { "huang.nu", true },
+ { "huangh.com", true },
+ { "huangjia71.com", true },
+ { "huangjia72.com", true },
+ { "huangjia73.com", true },
+ { "huangjia74.com", true },
+ { "huangjia75.com", true },
+ { "huangjia76.com", true },
+ { "huangjia77.com", true },
+ { "huangjia78.com", true },
+ { "huangjia79.com", true },
+ { "huangjia99.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 },
+ { "hubchain.com", true },
+ { "hubchain.com.br", true },
+ { "hubchain.fr", true },
+ { "hubchain.io", true },
+ { "hubchain.org", true },
+ { "huber-informatik.de", true },
{ "hubok.net", true },
- { "hubrecht.at", true },
- { "hubrick.com", true },
+ { "hubspot.com", true },
{ "huchet.me", true },
{ "hudebnibazarmixer.cz", true },
{ "hudrydum.cz", true },
@@ -16172,18 +17896,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "huduser.gov", true },
{ "huendeleskopfhuette.de", true },
{ "huersch.com", true },
+ { "hues-in-lee.de", true },
{ "huffduffer.com", true },
+ { "huffsinsurance.com", true },
{ "hughtodd.ink", true },
{ "hugi.is", true },
{ "hugizrecords.com", true },
{ "huglen.info", true },
+ { "hugo.pro", true },
+ { "hugo6.com", true },
+ { "hugofs.com", true },
{ "hugolynx.fr", true },
{ "huguesblanchard.paris", true },
{ "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 },
@@ -16198,13 +17929,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 },
{ "humans.io", true },
{ "humanzee.com", true },
+ { "humass.nl", true },
{ "humblebee.at", true },
{ "humblebee.be", true },
{ "humblebee.bg", true },
@@ -16215,7 +17946,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 },
@@ -16231,10 +17961,12 @@ 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", true },
{ "humpchies.com", true },
{ "humpen.se", true },
{ "humppakone.com", true },
@@ -16242,30 +17974,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hundeformel.de", true },
{ "hundesport-psvhalle.de", true },
{ "hundeverwaltung.de", true },
+ { "hundhausen.de", true },
{ "hundter.com", true },
- { "hunqz.com", true },
+ { "hunger.im", true },
{ "hunstoncanoeclub.co.uk", true },
+ { "hunter-read.com", true },
{ "hunter.io", true },
{ "hunterkehoe.com", true },
{ "huntexpired.com", true },
{ "huntingdonbouncers.co.uk", true },
{ "huntingdonlifesciences.com", true },
- { "huoduan.com", true },
+ { "huntshomeinspections.com", false },
+ { "huntsmansecurity.com", true },
+ { "huntsvillecottage.ca", true },
+ { "huonit.com.au", true },
{ "hup.hu", true },
{ "hupp.se", true },
{ "hurd.is", true },
{ "huren.nl", true },
- { "hurleyhomestead.com", true },
{ "huroji.com", true },
- { "hurricanelabs.com", false },
{ "hurtigtinternet.dk", true },
{ "husakbau.at", true },
{ "hushfile.it", true },
{ "husic.net", false },
+ { "huskyeye.de", true },
{ "huskyinc.us", true },
{ "hussam.eu.org", true },
- { "hustle.com", true },
- { "hustle.life", true },
{ "hustlehope.com", true },
{ "hustunique.com", true },
{ "huto.ml", true },
@@ -16273,10 +18007,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "huutonauru.net", true },
{ "huwcbjones.co.uk", true },
{ "huwcbjones.uk", true },
+ { "huxcoconstruction.com", true },
{ "huxley.net", true },
+ { "huynhviet.com", true },
{ "huyvu.nl", true },
{ "hvdbox.de", true },
- { "hveradistributions.com", true },
{ "hverdagogkink.no", true },
{ "hvh.no", true },
{ "hvmk.nl", true },
@@ -16284,13 +18019,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hvtuananh.com", true },
{ "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 },
- { "hybridiyhdistys.fi", true },
- { "hybridklubben.fi", true },
+ { "hy1.com", true },
{ "hybridworx.com", true },
{ "hybridworx.de", true },
{ "hybridworx.eu", true },
@@ -16300,7 +18034,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hycken.com", true },
{ "hyckenberg.com", true },
{ "hyderabadonlinegifts.com", true },
- { "hydrabit.nl", true },
{ "hydrasolutions.de", true },
{ "hydrazin.pw", true },
{ "hydro17.com", true },
@@ -16309,23 +18042,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hydroturbine.info", true },
{ "hydrozone.fr", true },
{ "hyec.jp", true },
- { "hyeok.org", true },
{ "hygo.com", true },
{ "hyk.me", true },
{ "hylemorphica.org", true },
- { "hylians.com", true },
{ "hynek.me", true },
+ { "hyparia.fr", true },
+ { "hyparia.org", true },
{ "hype.ru", true },
+ { "hypeitems.pl", true },
{ "hypemgmt.com", true },
{ "hyper-text.org", true },
+ { "hyperactive.am", true },
{ "hyperalgesia.com", true },
{ "hyperautomotive.com.au", true },
{ "hyperbolic-mayonnaise-interceptor.ovh", true },
{ "hyperion.io", true },
- { "hyperporn.net", true },
{ "hyperreal.biz", true },
- { "hyperreal.info", true },
{ "hypersomnia.com", true },
+ { "hyperstack.org", true },
{ "hyperthymia.com", true },
{ "hyphen.co.za", true },
{ "hyphenpda.co.za", true },
@@ -16334,8 +18068,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hypotheekbond.nl", true },
{ "hypothes.is", true },
{ "hypothyroidmom.com", true },
+ { "hyr.mn", true },
+ { "hysh.jp", true },
{ "hyundai.no", true },
+ { "hyvanilmankampaamo.fi", true },
+ { "hyvanolonterapia.fi", true },
{ "hyvinvointineuvoja.fi", true },
+ { "hztgzz.com", true },
+ { "i--b.com", true },
+ { "i-0v0.in", true },
+ { "i-aloks.ru", true },
{ "i-geld.de", true },
{ "i-hakul.net", true },
{ "i-logic.co.jp", false },
@@ -16351,45 +18093,53 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "i00.eu", true },
{ "i1314.gdn", true },
{ "i1place.com", true },
- { "i28s.com", true },
{ "i2b.ro", true },
+ { "i2gether.org.uk", true },
{ "i5y.co.uk", true },
{ "i5y.org", true },
{ "i66.me", true },
{ "i879.com", true },
+ { "i9s.in", true },
+ { "ia.cafe", true },
{ "ia.net", true },
- { "ia1000.com", true },
{ "iaco.li", true },
+ { "iacono.com.br", false },
{ "iactu.info", true },
{ "iaeste.no", true },
{ "iaeste.or.jp", true },
- { "iahemobile.net", true },
+ { "iaf.gov", true },
+ { "iahemobile.net", false },
{ "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 },
- { "iamle.com", true },
{ "iamtheib.me", true },
{ "iamtonyarthur.com", true },
- { "iamusingtheinter.net", true },
+ { "iamusingtheinter.net", false },
{ "iamwoodbeard.com", true },
- { "ian.sh", true },
+ { "ianbrault.com", true },
{ "iandouglasscott.com", true },
{ "iane-ccs.com", true },
{ "ianix.com", true },
{ "ianjmoriarty.com", true },
+ { "ianklug.com", true },
{ "iankmusic.com", true },
{ "ianmooreis.me", true },
{ "ianmoriarty.com.au", true },
- { "ianwalsh.org", true },
+ { "ianwalsh.org", false },
{ "iap.network", true },
{ "ias-gruppe.net", true },
+ { "iassess.eu", true },
{ "iatfei.com", true },
{ "iavian.com", true },
{ "iba.community", true },
@@ -16397,59 +18147,67 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ibaq.nl", true },
{ "ibauruapan.com.mx", true },
{ "ibcmed.org", true },
+ { "ibe.de", true },
+ { "ibeep.com", true },
{ "iberiaversicherungen.com", true },
{ "ibericaderedes.es", true },
{ "ibexcore.com", true },
+ { "ibigawamizueco.com", true },
{ "ibin.co", true },
{ "ibiz.mk", true },
- { "ibnw.de", true },
- { "ibpegasus.tk", true },
- { "ibpsrecruitment.co.in", true },
+ { "iblackfriday.ro", true },
+ { "ibodyiq.com", true },
+ { "ibps-recruitment.in", true },
{ "ibrainmedicine.org", true },
{ "ibrom.eu", true },
+ { "ibstyle.tk", true },
+ { "ibuki.run", true },
+ { "ibutikk.no", true },
{ "ibwc.gov", true },
+ { "ibykos.com", true },
{ "ic-lighting.com.au", true },
+ { "ic-spares.com", true },
{ "ic3.gov", true },
{ "icafecash.com", true },
- { "icake.life", true },
{ "icanhasht.ml", true },
{ "icarlos.net", true },
- { "icbemp.gov", true },
+ { "icasture.top", true },
+ { "iccpublisher.com", true },
+ { "ice.xyz", true },
{ "iceberg.academy", true },
{ "icebook.co.uk", true },
{ "icecars.net", true },
+ { "icecontrol.ro", true },
{ "icedream.tech", true },
+ { "icetiger.eu", true },
{ "ich-hab-die-schnauze-voll-von-der-suche-nach-ner-kurzen-domain.de", 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 },
- { "icmshoptrend.com", true },
- { "icnsoft.me", true },
- { "icnsoft.org", true },
- { "ico500.com", true },
+ { "icnsoft.cf", true },
+ { "icnsoft.ml", true },
+ { "icobench.com", true },
{ "icodeconnect.com", true },
{ "icoh.it", true },
- { "icondoom.nl", true },
{ "iconomi.net", true },
{ "icowhitepapers.co", true },
+ { "icpc.pp.ua", true },
{ "icq-project.net", true },
{ "icsadviseurs.nl", true },
{ "icsfinomornasco.gov.it", true },
{ "icsfinomornasco.it", true },
{ "ict-concept.nl", false },
{ "ict-crew.nl", true },
+ { "ict-helpteam.nl", true },
{ "ict-radar.com", true },
{ "ict-radar.nl", true },
{ "ictcareer.ch", true },
- { "ictinforensics.org", true },
{ "ictl.eu", true },
{ "ictradar.com", true },
{ "icyapril.com", true },
@@ -16469,72 +18227,87 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "idaspis.com", true },
{ "idatha.de", true },
{ "idc-business.be", true },
- { "idc.yn.cn", true },
{ "idconsult.nl", true },
+ { "idealimplant.com", true },
{ "idealinflatablehire.co.uk", true },
{ "idealninajemce.cz", false },
+ { "idealsegurancaeletronica.com.br", false },
{ "idealtruss.com", true },
{ "idealtruss.com.tw", true },
{ "idealwhite.space", true },
{ "ideaman924.com", true },
+ { "ideasenfoto.com", true },
{ "ideashop.com", true },
{ "ideaweb.de", true },
{ "idenamaislami.com", true },
- { "idensys.nl", false },
+ { "idensys.nl", true },
{ "ident-clinic.be", true },
+ { "identassist.com", true },
{ "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 },
{ "idgateway.co.uk", true },
{ "idhosts.co.id", true },
{ "idid.tk", true },
{ "idiotentruppe.de", true },
+ { "idisposable.co.uk", true },
{ "idlethoughtsandramblings.com", true },
{ "idmanagement.gov", true },
{ "idmobile.co.uk", true },
{ "idndx.com", true },
{ "idoc24.com", true },
+ { "idodiandina.com", true },
{ "idolf.dk", true },
- { "idolish7.fun", true },
+ { "idolish7.fun", false },
+ { "idolknow.com", true },
{ "idolshop.dk", true },
{ "idolshop.me", true },
{ "idontplaydarts.com", true },
+ { "idoparadoxon.hu", true },
{ "idranktoomuch.coffee", true },
+ { "idratherbequilting.com", true },
{ "idraulico-roma.it", true },
{ "idraulico-roma.org", true },
{ "idraulico.roma.it", true },
{ "idrinktoomuch.coffee", true },
{ "idrissi.eu", true },
+ { "idrottsnaprapaten.se", true },
{ "idrycleaningi.com", true },
+ { "idtheft.gov", true },
{ "idubaj.cz", true },
{ "idunno.org", true },
- { "idvl.de", true },
+ { "idxforza.com", true },
{ "ie.search.yahoo.com", false },
{ "iea-annex61.org", true },
- { "iec.pe", true },
{ "ieedes.com", true },
+ { "ieeedeis.org", true },
{ "ieeesb.nl", true },
{ "ieeesbe.nl", true },
{ "ieeespmb.org", true },
- { "ieji.de", false },
- { "iemas.azurewebsites.net", true },
+ { "ieffalot.me", true },
+ { "ieji.de", true },
{ "iemb.tk", true },
{ "ienakanote.com", false },
{ "ies-italia.it", true },
- { "ietsdoenofferte.nl", true },
+ { "iesonline.co.in", true },
{ "ieval.ro", true },
{ "iewar.com", true },
- { "ifamily.top", false },
{ "ifangpei.cn", true },
{ "ifangpei.com.cn", true },
- { "ifconfig.co", 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 },
@@ -16550,9 +18323,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iftarsaati.org", true },
{ "iftrue.de", true },
{ "ifttl.com", false },
+ { "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 },
@@ -16566,39 +18340,58 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "igmus.org", true },
{ "ignace72.eu", true },
{ "ignacjanskiednimlodziezy.pl", true },
+ { "ignat-mag.com", true },
{ "ignat.by", true },
+ { "ignatovich.by", true },
{ "ignatovich.me", true },
{ "ignet.gov", true },
{ "ignitedlocal.com", true },
{ "ignitedmindz.in", true },
+ { "ignitelocal.com", true },
+ { "igorrealestate.com", true },
{ "igorw.org", true },
{ "igotoffer.com", false },
{ "igrivi.com", true },
{ "igsmgmt.com", true },
{ "iguana.com.ec", false },
{ "ih8sn0w.com", true },
- { "iha6.com", true },
{ "ihacklabs.com", true },
- { "ihatethissh.it", true },
- { "ihc.im", false },
+ { "ihakkitekin.com", true },
+ { "ihcprofile.com", true },
+ { "iheartmary.org", true },
{ "ihkk.net", true },
+ { "ihls.stream", true },
+ { "ihls.world", true },
+ { "ihmphila.org", true },
+ { "ihoey.com", true },
{ "ihollaback.org", true },
{ "ihopeit.works", true },
{ "ihostup.net", true },
+ { "ihotel.io", false },
{ "ihrhost.com", true },
+ { "ihtdenisjaccard.com", true },
+ { "ihuan.me", true },
{ "ii74.com", true },
{ "iiit.pl", true },
+ { "iimarckus.org", true },
+ { "iiong.com", true },
{ "iirii.com", true },
{ "iix.se", true },
{ "ijm.io", true },
{ "ijohan.nl", true },
+ { "ijsbaanwitten.nl", true },
{ "ijsblokjesvormen.nl", true },
{ "ijsclubtilburg.nl", true },
+ { "ijsclubwanneperveen.nl", true },
{ "ijunohana.jp", true },
+ { "ik-life.com", true },
{ "ikachalife.com", true },
{ "ikarate.ru", true },
- { "ike.io", true },
+ { "ikarr.com", true },
{ "ikeacareers.co.uk", true },
+ { "ikebuku.ro", true },
+ { "ikebukuro-shame.com", true },
+ { "ikedaquotes.org", true },
{ "ikespta.com", true },
{ "ikeyless.com", true },
{ "ikigaiweb.com", true },
@@ -16607,12 +18400,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ikk.me", true },
{ "ikkatsu-satei.jp", true },
{ "ikkbb.de", true },
+ { "ikke-coach.nl", true },
{ "ikkev.de", true },
{ "ikkoku.de", true },
{ "iklive.org", false },
+ { "ikraenglish.com", false },
+ { "iktisatbank.com", true },
{ "ikulist.me", true },
+ { "ikumi.us", true },
{ "ikvts.de", true },
{ "ikwilthepiratebay.org", true },
+ { "ikxkx.com", true },
{ "ila.fi", true },
{ "ilamparas.at", true },
{ "ilamparas.co.uk", true },
@@ -16621,19 +18419,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ilamparas.com.ve", true },
{ "ilamparas.mx", true },
{ "ilard.fr", true },
- { "ilazycat.com", true },
{ "ile-kalorii.pl", true },
{ "ile-sapporo.jp", true },
{ "ileci.de", true },
{ "ilektronika-farmakeia-online.gr", true },
- { "ilemonrain.com", false },
+ { "ilemonrain.com", true },
+ { "ilformichiere.com", true },
{ "ilhan.name", true },
+ { "ilhansubasi.com", true },
{ "iliastsi.net", true },
{ "iligang.cn", true },
{ "iligang.com", true },
{ "iligang.link", true },
{ "iligang.xin", true },
+ { "ilkeakyildiz.com", true },
{ "illambias.ch", true },
+ { "illative.net", true },
{ "illegalpornography.com", true },
{ "illegalpornography.me", true },
{ "illerzell.de", true },
@@ -16645,33 +18446,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "illsley.org", true },
{ "illumed.net", true },
{ "illuminationis.com", true },
+ { "illuminatisofficial.org", 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 },
{ "iltec-prom.ru", true },
{ "iltec.ru", true },
- { "iltisim.ch", true },
+ { "iltuogiardino.org", 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 },
- { "imagecurl.com", true },
- { "imagecurl.org", true },
{ "imagefu.com", true },
{ "imageination.co", true },
- { "imagenesdedibujosalapizfacilesdehacer.com", true },
{ "imagerive.ch", true },
{ "imagescostumes.com", true },
{ "imaginair.es", true },
@@ -16683,28 +18490,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imanageproducts.co.uk", true },
{ "imanageproducts.uk", true },
{ "imanesdeviaje.com", true },
+ { "imanolbarba.net", true },
+ { "imap2imap.de", true },
{ "imarkethost.co.uk", true },
{ "imask.ml", true },
{ "imawhale.com", true },
{ "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 },
{ "imeds.pl", true },
{ "imefuniversitario.org", true },
- { "imeid.de", true },
+ { "imeid.de", false },
{ "imex-dtp.com", true },
{ "imforza.com", true },
{ "img.mg", true },
+ { "img.ovh", true },
{ "imga.ch", true },
{ "imgaa.com", true },
{ "imgbb.com", true },
{ "imgg.es", true },
- { "imguoguo.com", true },
+ { "imgup.co", true },
{ "imguploaden.nl", true },
+ { "imhua.com", true },
{ "imi-rhapsody.eu", true },
+ { "iminshell.com", true },
{ "imirhil.fr", true },
{ "imitza.com", true },
{ "imjad.cn", true },
@@ -16712,27 +18526,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imjustcreative.com", true },
{ "imkerei-freilinger.de", false },
{ "imkerverein-moenchswald.de", true },
- { "imlonghao.com", true },
+ { "immarypoppinsyall.tk", true },
{ "immaterium.de", true },
- { "immaternity.com", true },
{ "immatix.xyz", true },
+ { "immersa.co.uk", true },
{ "immersion-pictures.com", true },
- { "immersivewebportal.com", true },
+ { "immersionwealth.com", true },
+ { "immigrantdad.com", true },
{ "immigrationdirect.com.au", true },
- { "immo-agentur.com", true },
+ { "immo-agentur.com", false },
{ "immo-passion.net", true },
{ "immo-vk.de", true },
- { "immobiliarecapitani.com", true },
{ "immobilien-badlippspringe.de", true },
{ "immobilien-in-istanbul.de", true },
{ "immobilien-zirm.de", true },
+ { "immobiliengutachter-holland.de", true },
{ "immobilier-nice.fr", true },
{ "immobilier92.net", true },
{ "immobiza.com", false },
{ "immortal.run", true },
{ "imobile3.com", true },
{ "imokuri123.com", true },
- { "imoner.com", true },
{ "imouto.my", false },
{ "imouyang.com", true },
{ "impact.health.nz", true },
@@ -16742,14 +18556,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "impakho.com", true },
{ "impas.se", true },
{ "impelup.com", true },
- { "imperdin.com", true },
+ { "impendulo.org", true },
+ { "impera.at", 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 },
@@ -16758,25 +18575,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imppac.de", true },
{ "imprendo.co", true },
{ "imprendo.pro", true },
- { "imprenta-es.com", false },
{ "impresa-di-pulizie.org", true },
{ "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 },
{ "improved-madness.de", true },
{ "impulsionsa.com", true },
{ "impyus.com", true },
{ "imququ.com", true },
{ "imreh.net", true },
+ { "imrejonk.nl", true },
{ "imrunner.com", true },
{ "imrunner.ru", true },
{ "ims-sargans.ch", true },
{ "imscompany.com", true },
- { "imwnk.cn", false },
- { "imydl.com", true },
+ { "imtikai.ml", true },
+ { "imwalking.de", true },
+ { "imwnk.cn", true },
{ "imydl.tech", true },
+ { "imyrs.cn", true },
{ "imyunya.com", true },
{ "imyvm.com", true },
{ "imyz.tw", true },
@@ -16790,14 +18611,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inanyevent.london", true },
{ "inares.org", true },
{ "inbitcoin.it", true },
- { "inbounder.io", true },
+ { "inbounder.io", false },
{ "inbox-group.com", true },
{ "inbox.google.com", true },
{ "inbulgaria.info", true },
{ "incarna.co", true },
+ { "incco.ir", true },
+ { "incert.cn", true },
{ "incertint.com", true },
{ "inchcape-fleet-autobid.co.uk", true },
+ { "inche-ali.com", true },
{ "inchenaim.com", true },
+ { "inchidi.id", true },
{ "incigma.com", true },
{ "includesubdomains.preloaded.test", true },
{ "includesubdomains2.preloaded.test", true },
@@ -16806,9 +18631,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "incompliance.de", true },
{ "inconcerts.de", true },
{ "incontrixsingle.net", true },
+ { "incore.nl", true },
{ "incowrimo.org", true },
{ "incparadise.net", true },
{ "incubos.org", true },
+ { "incy.io", true },
{ "ind.ie", true },
{ "indarceky.sk", false },
{ "indecipherable.info", true },
@@ -16816,56 +18643,65 @@ 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 },
- { "indiawise.co.uk", true },
+ { "indianafoundationpros.com", true },
+ { "indianamoldrepairpros.com", true },
+ { "indianapolislocksmithinc.com", true },
+ { "indianawaterdamagerepairpros.com", true },
+ { "indiatrademarkwatch.com", 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 },
- { "indiroyunu.com", true },
+ { "indigotreeservice.com", true },
+ { "indika.pe", true },
+ { "indio.co.jp", true },
{ "inditip.com", true },
- { "indochina.io", true },
- { "indogerman.de", true },
{ "indogermanstartup.com", true },
- { "indogermantrade.de", true },
{ "indoorcomfortteam.com", true },
- { "indoorplantsexpert.com", true },
- { "indostar303.com", true },
{ "indovinabank.com.vn", true },
{ "indusap.com", true },
{ "indusfastremit-us.com", true },
- { "indusfastremit.com", true },
{ "indust.me", true },
+ { "industriafranchini.com", true },
{ "industrialstarter.com", true },
- { "industriasrenova.com", true },
+ { "industriemeister.io", true },
{ "indybay.org", true },
{ "ineardisplay.com", true },
{ "inebula.it", true },
{ "ineed.coffee", false },
{ "inertianetworks.com", true },
{ "inesfinc.es", true },
+ { "inessoftsec.be", true },
{ "inesta.nl", true },
{ "inet.se", true },
+ { "inethost.eu", true },
{ "inetserver.eu", true },
{ "inetsoftware.de", true },
- { "inevitavelbrasil.com.br", true },
{ "inf-fusion.ca", true },
+ { "inference.biz.tr", true },
{ "infermiere.roma.it", true },
+ { "inff.info", true },
+ { "inffin-portal.de", true },
+ { "inffin-tec.de", true },
{ "inficom.org", true },
{ "infinite.hosting", true },
{ "infinitegroup.info", true },
+ { "infinitescript.com", true },
{ "infinitiofallentownparts.com", true },
{ "infinitiofaugustaparts.com", true },
{ "infinitioflynnwoodparts.com", true },
- { "infinity.to", true },
+ { "infinitomaisum.com", true },
{ "infinitybas.com", true },
+ { "infinitybc.se", true },
{ "infinityengine.org", true },
{ "infinityepos.co.uk", true },
{ "infirmiere-canadienne.com", true },
@@ -16874,61 +18710,89 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inflatablesny.com", true },
{ "inflatadays.co.uk", true },
{ "inflatamania.com", true },
+ { "inflationstation.net", true },
{ "inflexsys.com", true },
{ "influencerchampions.com", true },
+ { "influo.com", true },
{ "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 },
- { "infoamin.com", true },
{ "infobae.com", true },
+ { "infobrain.net", true },
{ "infocity-tech.fr", true },
{ "infocommsociety.com", true },
{ "infocon.org", true },
{ "infocusvr.net", true },
+ { "infoduv.fr", true },
+ { "infogram.com", true },
{ "infogrfx.com", true },
{ "infomegastore.com", true },
+ { "infomir.eu", true },
{ "infomisto.com", true },
{ "infopier.sg", true },
{ "infopulsa.com", true },
+ { "infopuntzorg.nl", true },
{ "infor-allaitement.be", true },
+ { "inforaga.com", true },
{ "informaciondeciclismo.com", true },
{ "informatiebeveiliging.nl", true },
{ "informatik-handwerk.de", true },
{ "informationrx.org", true },
+ { "informations-echafaudages.com", true },
+ { "informhealth.com", true },
{ "informnapalm.org", true },
{ "infosec-handbook.eu", true },
- { "infosec.exchange", true },
+ { "infosec.exchange", false },
{ "infosec.pizza", true },
{ "infosec.wiki", true },
+ { "infosectalks.com", true },
{ "infosenior.ch", true },
- { "infosimmo.com", true },
{ "infotainworld.com", true },
- { "infotolium.com", true },
+ { "infotolium.com", false },
+ { "infotrac.net", true },
{ "infotune.nl", true },
{ "infovision-france.com", true },
{ "infoweb.ee", 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 },
+ { "infranoto.com", true },
+ { "infranox.com", true },
+ { "infrapass.com", true },
+ { "infrapeer.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 },
- { "ingalls.run", true },
{ "ingatlanjogaszok.hu", true },
{ "ingatlanneked.hu", true },
+ { "ingatlanrobot.hu", true },
{ "ingber.com", true },
{ "inge-r.nl", true },
{ "ingeeibach.de", true },
@@ -16937,8 +18801,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ingerhy.com", true },
{ "ingi.ga", true },
{ "ingjobs.ch", true },
+ { "inglebycakes.co.uk", true },
{ "inglesnarede.com.br", true },
{ "ingo-schlueter.de", true },
+ { "ingolonde.pw", true },
{ "ingoschlueter.de", true },
{ "ingredientdaddy.ro", true },
{ "inhaltsangabe.de", true },
@@ -16953,7 +18819,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inixal.com", true },
{ "ink.horse", true },
{ "inkable.com.au", true },
- { "inkbunny.net", false },
+ { "inkeliz.com", true },
{ "inkhor.se", true },
{ "inkontriamoci.com", true },
{ "inksay.com", true },
@@ -16965,41 +18831,49 @@ 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 },
{ "innerfence.com", true },
- { "innerform.com", true },
+ { "innerlightcrystals.co.uk", true },
{ "innermostparts.org", true },
{ "innersafe.com", true },
+ { "inno.ch", true },
+ { "innocenceseekers.net", true },
+ { "innogen.fr", true },
{ "innohb.com", true },
{ "innolabfribourg.ch", true },
{ "innoloop.com", true },
{ "innophate-security.com", true },
{ "innot.net", true },
+ { "innotas.com", true },
{ "innoteil.com", true },
+ { "innotel.com.au", true },
{ "innovaptor.at", true },
{ "innovaptor.com", true },
{ "innovate-indonesia.com", true },
{ "innovation-workshop.ro", true },
{ "innovation.gov", false },
- { "innoventure.de", true },
- { "innovum.cz", true },
+ { "innover.se", true },
+ { "innovum.cz", false },
{ "innsalzachsingles.de", true },
{ "innwan.com", true },
{ "inoa8.com", true },
- { "inorder.website", true },
+ { "inobun.jp", true },
{ "inovat.ma", true },
- { "inovatec.com", true },
{ "inovatecsystems.com", true },
{ "inpas.co.uk", true },
+ { "inputmag.com", true },
{ "inquant.de", true },
{ "ins-kreativ.de", true },
{ "ins.to", true },
{ "ins1gn1a.com", true },
{ "insblauehinein.nl", true },
{ "inscomers.net", true },
+ { "inscripcionessena.com", true },
+ { "insecret.co.ua", true },
+ { "insecret.com.ua", true },
+ { "insecret.trade", true },
{ "insecure.org.je", true },
{ "insertcoins.net", true },
{ "insgesamt.net", true },
@@ -17007,19 +18881,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "insighti.eu", true },
{ "insighti.org", true },
{ "insighti.sk", true },
+ { "insignificant.space", true },
{ "insinuator.net", true },
{ "insistel.com", true },
+ { "insofttransfer.com", true },
{ "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 },
@@ -17029,14 +18909,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "installatietechniekgresnigt.nl", true },
{ "installgentoo.net", true },
{ "instamojo.com", true },
- { "instant-hack.io", true },
{ "instant-thinking.de", true },
{ "instant.io", true },
{ "instantkhabar.com", true },
- { "instantsubs.de", true },
- { "instaquiz.ru", true },
+ { "instantluxe.cn", true },
+ { "instantluxe.co.uk", true },
+ { "instantluxe.com", true },
+ { "instantluxe.de", true },
+ { "instantluxe.it", true },
+ { "instantphotocamera.com", true },
+ { "instantphotoprinter.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 },
@@ -17044,98 +18929,109 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "instinctiveads.com", true },
{ "institut-confucius-montpellier.org", true },
{ "institutmaupertuis.hopto.org", true },
- { "institutolancaster.com", false },
+ { "institutogiuseppe.com", true },
+ { "institutogiuseppe.com.ar", true },
+ { "institutolancaster.com", true },
{ "instrumart.ru", false },
{ "insult.es", true },
{ "insurance321.com", true },
{ "insureon.com", true },
- { "insurethebox.tk", true },
{ "insurgentsmustdie.com", true },
- { "int-ma.in", true },
+ { "int64software.com", true },
{ "intae.it", true },
{ "intafe.co.jp", true },
{ "intal.info", true },
{ "intarweb.ca", true },
{ "intasky.cz", true },
{ "intasky.sk", true },
- { "integraelchen.de", true },
{ "integralblue.com", true },
{ "integralkk.com", true },
+ { "integratedintegrations.xyz", true },
{ "integratedmedicalonline.com", true },
- { "integraxor.com.tw", true },
+ { "integrateur-web-paris.com", true },
{ "integrity.gov", true },
+ { "integrityfortcollins.com", true },
+ { "integrityokc.com", true },
{ "integrityoklahoma.com", true },
{ "integrogroup.com", true },
{ "integromat.com", true },
+ { "integroof.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 },
{ "intelligence-explosion.com", true },
+ { "intelligenetics.com", true },
{ "intellinetixvibration.com", true },
+ { "intellitonic.com", true },
{ "intelly.nl", true },
{ "intelly365.nl", true },
{ "intencje.pl", true },
{ "intensifyrsvp.com.au", true },
{ "inter-corporate.com", true },
{ "inter-culinarium.com", true },
+ { "interabbit.co", 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 },
+ { "interguard.net", true },
{ "interiery-waters.cz", true },
{ "interimages.fr", true },
- { "interiorcheapo.com", true },
+ { "interior-design-colleges.com", true },
{ "interiordesignsconcept.com", true },
- { "interiortradingco.com.au", true },
+ { "interiorprofesional.com.ar", true },
{ "interisaudit.com", true },
+ { "interlijn.nl", true },
{ "interlingvo.biz", true },
{ "intermax.nl", true },
{ "intermedinet.nl", true },
- { "internacao.com", true },
+ { "intern.tax", true },
{ "internalkmc.com", true },
{ "internaluse.net", true },
{ "international-arbitration-attorney.com", true },
+ { "international-books.org", true },
{ "international-nash-day.com", true },
{ "internationalfashionjobs.com", true },
+ { "internationalschool.it", true },
{ "internationaltalento.it", true },
- { "internaut.co.za", true },
{ "internect.co.za", true },
+ { "internet-aukcion.info", true },
+ { "internet-pornografie.de", false },
{ "internet-software.eu", true },
{ "internetaanbieders.eu", true },
{ "internetbank.swedbank.se", true },
{ "internetbugbounty.com", true },
+ { "internetbusiness-howto.com", true },
{ "internetcom.jp", true },
{ "internetfonden.se", true },
{ "internethealthreport.org", true },
{ "internethering.de", true },
{ "internetinhetbuitengebied.nl", true },
- { "internetmarkets.net", true },
+ { "internetmedia.si", true },
{ "internetmuseum.se", true },
{ "internetofdon.gs", true },
{ "internetoffensive.fail", true },
{ "internetofinsecurethings.com", true },
{ "internetovehazardnihry.cz", true },
{ "internetpro.me", true },
+ { "internetstaff.com", true },
{ "internetzentrale.net", true },
+ { "interpol.gov", true },
{ "interracial.dating", true },
{ "interseller.io", true },
{ "interserved.com", false },
- { "interstellarhyperdrive.com", true },
+ { "interstateautomotiveinc.com", true },
{ "intertime.services", true },
{ "interview-suite.com", true },
{ "interways.de", true },
@@ -17147,68 +19043,79 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "intl-webs.com", true },
{ "intmissioncenter.org", true },
{ "into.technology", true },
+ { "intocities.de", false },
{ "inton.biz", true },
{ "intoparking.com", false },
{ "intpforum.com", true },
- { "intracom.com", true },
+ { "intr0.com", true },
{ "intradayseasonals.com", true },
{ "intramanager.dk", true },
{ "intranetsec-regionra.fr", true },
{ "intraobes.com", true },
{ "intrasoft.com.au", true },
{ "intraxia.com", true },
+ { "intrp.net", true },
+ { "intune.life", true },
{ "intvonline.com", true },
+ { "intxt.net", true },
+ { "inumcoeli.com.br", true },
{ "inup.jp", true },
{ "inusasha.de", true },
{ "inuyasha-petition.tk", true },
{ "invadelabs.com", true },
{ "invasion.com", true },
+ { "invasivespeciesinfo.gov", true },
{ "invasmani.com", true },
{ "inventaire.ch", true },
{ "inventionsteps.com.au", true },
{ "inventix.nl", true },
- { "inventoryexpress.xyz", true },
{ "inventoryimages.co.uk", true },
{ "inventoryimages.com", true },
{ "inventtatte.com", true },
{ "inventtheworld.com.au", true },
{ "inventum.cloud", true },
{ "inverselink-user-content.com", true },
+ { "inversioneseconomicas.com", true },
{ "investarholding.nl", true },
{ "investigatore.it", true },
{ "investigazionimoretti.it", true },
{ "investir.ch", true },
+ { "investor-academy.jp", true },
{ "investor.gov", true },
{ "investoren-beteiligung.de", true },
{ "investorforms.com", true },
- { "investorloanshub.com", true },
{ "investosure.com", true },
{ "investpay.ru", true },
- { "invidio.us", true },
+ { "invinoaustria.com", true },
+ { "invinoaustria.cz", true },
{ "invioinc.com", true },
{ "inviosolutions.com", true },
- { "invis.net", true },
{ "invisible-college.com", true },
{ "invisibles.ch", true },
{ "invisionita.com", true },
{ "invisiverse.com", true },
{ "invitacionesytarjetas.gratis", true },
+ { "invitemember.com", true },
{ "invitescene.com", true },
{ "invitethemhome.com", true },
{ "invkao.com", true },
{ "invoiced.com", true },
{ "invoicefinance.com", true },
{ "invoicefinance.nl", true },
+ { "invoicehippo.nl", true },
{ "invuite.com", true },
+ { "inwao.com", true },
{ "inwestcorp.se", true },
+ { "inxtravel.com.br", true },
{ "inzdr.com", true },
{ "inzelabs.com", true },
+ { "inzestfreunde.de", true },
+ { "ioactive.com", true },
{ "iobint.com", true },
{ "iocheck.com", false },
{ "iochen.com", true },
{ "iocurrents.com", true },
{ "iodine.com", true },
- { "ioerror.us", true },
{ "iofort.com", true },
{ "iojo.net", true },
{ "ioliver.co.uk", true },
@@ -17217,14 +19124,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iomstamps.com", true },
{ "ionlabs.kr", true },
{ "ionovia.de", true },
+ { "ionspin.com", 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 },
- { "iotfen.com", true },
+ { "iowaent.com", true },
{ "iowaschoolofbeauty.com", true },
{ "ip-blacklist.net", true },
{ "ip-hahn.de", true },
@@ -17232,39 +19142,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ip.sb", true },
{ "ip2country.info", true },
{ "ip3office.com", true },
- { "ip6.li", true },
+ { "ip6.li", false },
{ "ipad.li", true },
{ "ipadkaitori.jp", true },
- { "ipadportfolioapp.com", true },
{ "ipal.im", true },
{ "ipal.name", true },
{ "ipal.pl", true },
{ "ipal.tel", true },
- { "ipawind.com", true },
{ "ipcareers.net", true },
{ "ipconsulting.se", true },
{ "ipemcomodoro.com.ar", true },
+ { "ipfire.org", true },
{ "ipfirebox.de", true },
{ "ipfs.ink", true },
{ "ipfs.io", true },
{ "iphonekaitori.tokyo", true },
- { "iphoneportfolioapp.com", true },
{ "iphoneunlock.nu", true },
{ "iphonote.com", true },
{ "ipintel.io", true },
- { "iplabs.de", true },
{ "iplantom.com", true },
{ "iplayradio.net", false },
{ "ipleak.net", true },
{ "ipledgeonline.org", false },
+ { "iplog.info", false },
{ "ipmonitoring.hu", true },
{ "ipo-times.jp", true },
{ "ipokabu.net", true },
{ "ipomue.com", false },
+ { "ipop.gr", true },
+ { "iposm.net", true },
+ { "ipplans.com", true },
+ { "iprcenter.gov", true },
{ "ipresent.com", true },
{ "iprim.ru", true },
{ "iproducemusic.com", true },
- { "iprody.com", true },
{ "ipsec.pl", true },
{ "ipssl.li", true },
{ "ipstream.it", true },
@@ -17273,6 +19184,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 },
@@ -17280,48 +19192,53 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ipv6.jetzt", true },
{ "ipv6vpn.net", true },
{ "ipv6wallofshame.com", true },
- { "ipv8.net", true },
{ "iqboxy.com", true },
{ "iqsmn.org", true },
{ "ir1s.com", true },
{ "iramellor.com", true },
- { "iran-geo.com", true },
{ "iranian.lgbt", true },
{ "iranianholiday.com", true },
{ "iranjeunesse.com", true },
- { "irasandi.com", true },
{ "irayo.net", true },
{ "irc-results.com", true },
- { "iready.ro", true },
+ { "irdvb.com", true },
+ { "ireef.tv", true },
{ "iren.ch", true },
{ "irenekauer.com", true },
{ "irf2.pl", true },
{ "irfan.id", true },
{ "irgendeine.cloud", true },
{ "irgit.pl", true },
+ { "irgwebsites.com", true },
{ "iridiumbrowser.de", true },
{ "iridiumflare.de", true },
{ "iriomote.com", true },
{ "iris-design.info", true },
- { "iris-insa.com", false },
+ { "iris-insa.com", true },
+ { "irisdesideratum.com", true },
{ "irish.dating", true },
+ { "irish.radio", true },
+ { "irishradioplayer.radio", true },
{ "irisjieun.com", true },
+ { "irkfap.com", true },
{ "irland-firma.com", true },
+ { "irmag.ru", true },
{ "irmgard-woelfle.de", true },
{ "irmgardkoch.com", true },
{ "iro-iro.xyz", true },
{ "iroise.ch", true },
{ "ironbelly.pro", true },
{ "ironcarnival.com", true },
- { "irondaleirregulars.com", true },
{ "ironfistdesign.com", true },
{ "ironhide.de", true },
{ "ironpeak.be", true },
+ { "irrewilse.se", true },
{ "irritant.net", true },
{ "iruarts.ch", true },
{ "iruca.co", true },
{ "is-going-to-rickroll.me", true },
{ "is-sw.net", true },
+ { "isaac.world", true },
{ "isaacdgoodman.com", true },
{ "isaackhor.com", true },
{ "isaacman.tech", true },
@@ -17339,50 +19256,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isara.com", true },
{ "isarklinikum.de", true },
{ "isastylish.com", true },
+ { "isavings.com", true },
{ "isayoga.de", true },
+ { "isbaseballstillon.com", true },
{ "isbc-telecom.ru", true },
{ "isbengrumpy.com", true },
+ { "isc2chapter-cny.org", true },
{ "iscert.org", true },
{ "isdn.jp", true },
{ "isecrets.se", true },
{ "iservicio.mx", true },
- { "isfff.com", true },
+ { "iseulde.com", true },
+ { "isg-tech.com", true },
{ "isgp-studies.com", true },
{ "ishamf.com", true },
{ "ishangirdhar.com", true },
- { "ishet.al", true },
{ "ishiharaken.com", true },
+ { "ishome.org", true },
{ "ishtarfreya.com", true },
- { "isidom.fr", true },
{ "isil.fi", true },
{ "isimonbrown.co.uk", true },
{ "isincheck.com", true },
- { "isinolsun.com", false },
+ { "isinolsun.com", true },
+ { "isiso.com.tr", true },
{ "isistomie.com", true },
{ "isitchristmas.com", true },
{ "isitcoffeetime.com", true },
{ "isitdoneyet.gov", true },
+ { "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 },
- { "islazia.fr", true },
+ { "islavolcan.cl", true },
{ "isletech.net", true },
{ "isliada.org", true },
{ "islief.com", true },
+ { "islykaithecutest.cf", true },
+ { "islykaithecutest.ml", true },
+ { "ismailkarsli.com", true },
{ "ismat.com", true },
{ "ismena.bg", true },
{ "ismetroonfiretoday.com", true },
{ "ismywebsitepenalized.com", true },
{ "isn.cz", true },
+ { "iso27032.com", true },
+ { "isognattori.com", true },
{ "isolta.com", true },
{ "isolta.de", true },
{ "isolta.ee", true },
+ { "isolta.fi", true },
{ "isolta.lv", true },
{ "isolta.se", true },
{ "isondo.com", true },
@@ -17395,21 +19323,21 @@ 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 },
+ { "issue.watch", true },
{ "issues.email", true },
{ "issuesofconcern.in", true },
{ "ist-intim.de", true },
+ { "istanbul.systems", true },
{ "istdieweltschonuntergegangen.de", true },
{ "isteinbaby.de", true },
{ "istheapplestoredown.com", true },
@@ -17422,20 +19350,20 @@ 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 },
{ "istschonsolangeinrente.de", true },
{ "istsi.org", true },
{ "isuzupartscenter.com", true },
- { "isv.online", 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-boss.ro", true },
{ "it-faul.de", true },
{ "it-fernau.com", true },
{ "it-jobbank.dk", true },
@@ -17443,13 +19371,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "it-maker.eu", true },
{ "it-rotter.de", true },
{ "it-schamans.de", true },
+ { "it-seems-to.work", true },
{ "it-service24.at", true },
{ "it-service24.ch", true },
{ "it-service24.com", true },
{ "it-shamans.de", true },
{ "it-shamans.eu", true },
+ { "it-stack.de", true },
+ { "it-support-nu.se", true },
+ { "it-support-stockholm.se", true },
+ { "it-support.one", true },
+ { "it-supportistockholm.se", true },
+ { "it-supportnu.se", true },
{ "it-sysoft.com", true },
+ { "it-tekniker.nu", true },
{ "it-ti.me", true },
+ { "it-uws.com", true },
{ "it-world.eu", true },
{ "it.search.yahoo.com", false },
{ "it1b.com", true },
@@ -17460,22 +19397,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "italia-store.com", true },
{ "italiachegioca.com", true },
{ "italian.dating", true },
+ { "italianjourneys.com.au", true },
{ "italianshoemanufacturers.com", true },
{ "italieflydrive.nl", true },
{ "italserrande.it", true },
{ "italyinspires.com", true },
{ "itamservices.nl", true },
+ { "itap.gov", true },
{ "itb-online.co.uk", true },
- { "itblog.pp.ua", true },
- { "itbrief.co.nz", true },
- { "itbrief.com.au", true },
+ { "itbox.cl", true },
{ "itchy.nl", true },
- { "itchybrainscentral.com", 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 },
@@ -17483,46 +19416,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iteke.tk", true },
{ "iteli.eu", true },
{ "iterader.com", true },
- { "iterasoft.de", true },
{ "iterror.co", true },
{ "itesign.de", true },
{ "itfh.eu", true },
{ "itfix.cz", true },
- { "itforcc.com", true },
{ "itforge.nl", true },
{ "itgirls.rs", true },
- { "ithakama.com", true },
{ "ithakama.cz", true },
{ "ithenrik.com", true },
{ "ithinc.net", true },
+ { "ithink.cf", true },
+ { "ithjalpforetag.se", true },
+ { "itikon.com", true },
{ "itilo.de", true },
- { "itiomassagem.com.br", true },
+ { "itinthebubble.com", true },
{ "itis.gov", true },
{ "itis4u.ch", true },
+ { "itjob.ma", true },
{ "itkaufmann.at", true },
+ { "itkonsultstockholm.se", true },
{ "itlitera.com", true },
{ "itludens.com", true },
+ { "itm-c.de", true },
{ "itmindscape.com", true },
{ "itn.co.uk", true },
{ "itneeds.tech", true },
- { "itnews-bg.com", true },
{ "itnota.com", true },
{ "itochan.jp", true },
- { "itogoyomi.com", true },
{ "itooky.com", true },
+ { "itouriria.com", true },
{ "itpro.ua", true },
- { "itproject.guru", false },
- { "itrack.in.th", true },
{ "itraveille.fr", true },
+ { "itreallyaddsup.com", true },
{ "itring.pl", false },
{ "itruss.com.tw", true },
+ { "itruth.tk", true },
{ "its-future.com", true },
{ "its-gutachten.de", true },
- { "its4living.com", true },
{ "itsabouncything.com", true },
{ "itsanicedoor.co.uk", true },
{ "itsasaja.com", true },
{ "itsaw.de", true },
+ { "itsayardlife.com", true },
{ "itsblue.de", true },
{ "itsdcdn.com", true },
{ "itsecblog.de", true },
@@ -17530,21 +19465,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itsense.fr", true },
{ "itsevident.com", true },
{ "itsgoingdown.org", true },
- { "itshka.rv.ua", true },
{ "itskayla.com", true },
{ "itsmyparty.ie", true },
{ "itsnotquitethehilton.com", true },
{ "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 },
+ { "itsupportnacka.se", true },
+ { "itsv.at", true },
{ "itswincer.com", true },
- { "ittop-gabon.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 },
{ "ivanmeade.com", true },
{ "ivaoru.org", true },
@@ -17557,28 +19499,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ivi.mx", true },
{ "ivi.net.br", true },
{ "ivi.pt", true },
+ { "ivig.com.br", true },
{ "ivinet.cl", true },
{ "ivitalia.it", true },
{ "ivo.co.za", true },
+ { "ivopetkov.com", true },
{ "ivor.io", true },
{ "ivor.is", true },
{ "ivorvanhese.com", true },
{ "ivorvanhese.nl", true },
{ "ivpn.net", true },
{ "ivre.rocks", true },
+ { "ivsign.net", true },
{ "ivusn.cz", true },
{ "ivvl.ru", true },
- { "ivxv.ee", true },
+ { "ivy-league-colleges.com", true },
+ { "ivy.show", true },
{ "iwader.co.uk", true },
{ "iwalton.com", true },
+ { "iwantexchange.com", true },
+ { "iwantpayments.com", true },
{ "iwanttoliveinabunker.com", true },
+ { "iwanttrack.com", true },
+ { "iwascoding.com", true },
+ { "iwatchcops.com", true },
+ { "iwatchcops.org", 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 },
@@ -17589,17 +19542,14 @@ 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 },
{ "izaakbeekman.com", true },
- { "izevg.ru", true },
- { "izhaojie.com", true },
{ "izodiacsigns.com", true },
{ "izuba.info", true },
{ "izumi.tv", true },
- { "izxxs.com", true },
- { "izxxs.net", true },
- { "izxzw.net", true },
{ "izzys.casa", true },
{ "j-elliott.co.uk", true },
{ "j-navi.com", true },
@@ -17608,10 +19558,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "j0s.at", true },
{ "j0s.eu", true },
{ "j15h.nu", true },
- { "j2ee.cz", true },
{ "j2h.de", true },
{ "j3e.de", true },
- { "j8y.de", true },
{ "ja-dyck.de", true },
{ "ja-gps.com.au", true },
{ "ja.md", true },
@@ -17621,37 +19569,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jaba.hosting", true },
{ "jababu.cz", true },
{ "jabbari.io", true },
+ { "jabbas.eu", true },
{ "jabber.at", true },
{ "jabberfr.org", true },
{ "jabbers.one", true },
{ "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 },
- { "jaco.by", true },
{ "jacobamunch.com", true },
{ "jacobdevans.com", true },
{ "jacobhaug.com", false },
{ "jacobi-server.de", true },
{ "jacobian.org", true },
+ { "jacobjangles.com", true },
{ "jacobphono.com", true },
+ { "jacobsenarquitetura.com", true },
{ "jacuzziprozone.com", true },
{ "jadchaar.me", true },
{ "jadopado.com", true },
{ "jaegerlacke.de", true },
+ { "jaetech.org", true },
{ "jagbouncycastles.co.uk", true },
{ "jagerman.com", true },
{ "jaguarlandrover-asse.be", true },
@@ -17662,10 +19618,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jahner.xyz", true },
{ "jahofmann.de", false },
{ "jailbreakingisnotacrime.org", true },
- { "jaion.tech", true },
+ { "jaion.xyz", true },
{ "jaispirit.com", false },
{ "jaitnetworking.com", false },
- { "jak-na-les.cz", true },
+ { "jajsemjachym.cz", true },
{ "jakarta.dating", true },
{ "jakdelatseo.cz", true },
{ "jake.eu.org", true },
@@ -17673,11 +19629,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jake.nom.za", true },
{ "jakebeardsley.com", true },
{ "jakecurtis.de", true },
- { "jakenbake.com", true },
{ "jakereynolds.co", true },
{ "jakerullman.com", true },
- { "jakeslab.tech", true },
{ "jaketremper.com", true },
+ { "jakewestrip.com", true },
{ "jakob-server.tk", true },
{ "jakobejitblokaci.cz", true },
{ "jakobkrigovsky.com", true },
@@ -17685,8 +19640,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jakpremyslet.cz", true },
{ "jaksch.biz", true },
{ "jakub-boucek.cz", true },
- { "jakubarbet.eu", true },
{ "jakubboucek.cz", true },
+ { "jakubklimek.com", true },
{ "jakubtopic.cz", true },
{ "jakubvrba.cz", true },
{ "jala.co.jp", true },
@@ -17695,33 +19650,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jamaat.hk", true },
{ "jamacha.org", true },
{ "jamalfi.bio", true },
- { "jamaware.org", 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 },
- { "jamesbradach.com", false },
{ "jameschorlton.co.uk", true },
+ { "jamesclark.com", true },
{ "jamesdorf.com", true },
{ "jamesgreenfield.com", true },
{ "jameshemmings.co.uk", true },
{ "jameshost.net", true },
{ "jameshunt.us", false },
{ "jamesj.me", false },
- { "jamesl.ml", true },
+ { "jamesjboyer.com", true },
{ "jamesmarsh.net", true },
{ "jamesmilazzo.com", true },
{ "jamesmorrison.me", true },
- { "jamesrains.com", true },
+ { "jamesmurphy.com.au", true },
{ "jamesrobertson.io", true },
{ "jamesrobertson.net", true },
+ { "jamesross.name", true },
{ "jamesrussellward.co.uk", true },
{ "jamessmith.me.uk", true },
+ { "jamesturnerstickley.com", true },
{ "jamhost.org", true },
+ { "jamie-read-photography.com", true },
{ "jamie.ie", true },
{ "jamielarter.ca", true },
{ "jamielinux.com", true },
@@ -17730,90 +19687,107 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jamiepeters.nl", true },
{ "jamieweb.net", true },
{ "jamieweb.org", true },
+ { "jamiewebb.net", true },
{ "jamjestsimon.pl", true },
{ "jammucake.com", true },
{ "jammysplodgers.co.uk", true },
{ "jamon.ca", true },
{ "jamonsilva.com", true },
- { "jamstatic.fr", false },
+ { "jamstatic.fr", true },
{ "jan-and-maaret.de", true },
{ "jan-bucher.ch", true },
{ "jan-hill.com", true },
+ { "jan-reiss.de", true },
{ "jan-rieger.de", true },
{ "jan-roenspies.de", true },
{ "jan-von.de", true },
+ { "janada.cz", true },
{ "janaundgeorgsagenja.eu", true },
{ "janbrodda.de", true },
{ "jandev.de", true },
{ "janduchene.ch", true },
+ { "jane.com", true },
{ "janehamelgardendesign.co.uk", true },
+ { "janelauhomes.com", true },
{ "janhuelsmann.com", true },
{ "jani.media", true },
{ "janiat.com", true },
{ "janik.xyz", false },
{ "janikrabe.com", true },
{ "janjoris.nl", true },
+ { "jankamp.com", true },
+ { "janker.me", true },
{ "jankoepsel.com", true },
{ "jann.is", true },
+ { "jannekekaasjager.nl", true },
{ "jannisfink.de", true },
{ "jannyrijneveld.nl", true },
{ "janoberst.com", true },
{ "janokacer.sk", true },
{ "janschaumann.de", true },
- { "janssenwigman.nl", true },
+ { "jansen-schilders.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", true },
- { "japansm.com", true },
+ { "japanphilosophy.com", false },
{ "japanwatches.xyz", true },
- { "jape.today", true },
+ { "japon-japan.com", true },
+ { "jar.io", true },
{ "jardin-exotique-rennes.fr", true },
{ "jardinderline.ch", true },
+ { "jardineriaon.com", true },
{ "jardiniersduminotaure.fr", true },
{ "jaredeberle.org", false },
{ "jaredfernandez.com", true },
- { "jaredfraser.com", true },
- { "jarl.ninja", true },
+ { "jario.com.br", true },
{ "jarniashop.se", true },
{ "jaroku.com", true },
{ "jarondl.net", true },
{ "jarrettgraham.com", true },
{ "jarroba.com", true },
{ "jas-team.net", true },
- { "jasl.works", true },
+ { "jashvaidya.com", true },
{ "jasmijnwagenaar.nl", true },
{ "jasminefields.net", true },
+ { "jason.re", true },
+ { "jasonadam.de", true },
{ "jasonamorrow.com", true },
{ "jasongerber.ch", true },
- { "jasonian-photo.com", true },
{ "jasonmili.online", true },
- { "jasonsansone.com", true },
+ { "jasonsplecoscichlids.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 },
- { "javfree.me", true },
{ "javierburgos.net", true },
+ { "javierlorente.es", true },
+ { "jaxfstk.com", true },
+ { "jaxxnet.co.uk", true },
+ { "jaxxnet.org", true },
{ "jaycouture.com", true },
{ "jayf.de", true },
{ "jayfreestone.com", true },
{ "jaymecd.rocks", true },
+ { "jaypandit.me", true },
{ "jayrl.com", true },
{ "jaysaw.me", true },
{ "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 },
@@ -17825,9 +19799,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jcadg.com", true },
{ "jcai.dk", true },
{ "jcaicedo.com", true },
- { "jcaicedo.tk", true },
+ { "jcb.com", true },
+ { "jcbgolfandcountryclub.com", true },
{ "jci.cc", true },
+ { "jclynne.com", true },
{ "jcra.net", true },
+ { "jcsesecuneta.com", true },
{ "jctf.team", true },
{ "jcwodan.nl", true },
{ "jd-group.co.uk", true },
@@ -17839,6 +19816,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jdegbau.com", true },
{ "jdheysupplies.co.uk", true },
{ "jdjohnsonmedia.com", true },
+ { "jdjohnsonwaterproofing.com", true },
{ "jdm.elk.pl", true },
{ "jdncr.com", true },
{ "jdoi.pw", true },
@@ -17857,57 +19835,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeannelucienne.fr", true },
{ "jeanneret-combustibles.ch", true },
{ "jec-dekrone.be", true },
+ { "jecho.cn", true },
{ "jeda.ch", true },
- { "jedayoshi.me", true },
- { "jedayoshi.tk", true },
{ "jedepannetonordi.fr", true },
{ "jedidiah.eu", false },
{ "jedipedia.net", true },
{ "jediweb.com.au", true },
+ { "jedmud.com", true },
{ "jedwarddurrett.com", true },
{ "jeec.ist", true },
+ { "jeemain.org", true },
{ "jeepeg.com", true },
- { "jeepmafia.com", true },
- { "jeff.forsale", true },
+ { "jeeran.com", true },
+ { "jeeranservices.com", true },
{ "jeffcasavant.com", false },
{ "jeffcloninger.net", true },
{ "jeffersonregan.co.uk", true },
{ "jeffersonregan.com", true },
{ "jeffersonregan.net", true },
{ "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 },
+ { "jefsweden.eu", true },
+ { "jehovahsays.net", true },
+ { "jej.cz", true },
+ { "jej.sk", true },
{ "jekhar.com", true },
+ { "jekkt.com", false },
{ "jelena-adeli.com", true },
- { "jelewa.de", true },
+ { "jelenkovic.rs", true },
{ "jell.ie", true },
{ "jelle.pro", true },
- { "jelleglebbeek.com", true },
{ "jelleluteijn.com", true },
{ "jelleluteijn.eu", true },
{ "jelleluteijn.net", true },
{ "jelleluteijn.nl", true },
{ "jelleluteijn.pro", true },
{ "jelleraaijmakers.nl", true },
+ { "jelleschneiders.com", false },
{ "jelly.cz", true },
{ "jellybeanbooks.com.au", true },
{ "jelmer.co.uk", true },
{ "jelmer.uk", true },
+ { "jelmoli-shop.ch", true },
{ "jem.gov", true },
{ "jemangeducheval.com", true },
{ "jembatankarir.com", true },
- { "jena.space", true },
- { "jennedebleser.com", false },
- { "jenniferchan.id.au", true },
+ { "jemefaisdesamis.com", true },
+ { "jennierobinson.com", true },
{ "jenniferengerwingaantrouwen.nl", true },
{ "jennifermason.eu", true },
{ "jennifersauer.nl", true },
- { "jennybeaned.com", true },
{ "jennythebaker.com", true },
{ "jenolson.net", true },
{ "jenprace.cz", true },
@@ -17918,7 +19901,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeremy-chen.org", true },
{ "jeremy.hu", true },
{ "jeremybentham.com", true },
- { "jeremyc.ca", true },
+ { "jeremybloomfield.co.uk", true },
+ { "jeremyc.ca", false },
{ "jeremycantu.com", true },
{ "jeremycrews.com", true },
{ "jeremynally.com", true },
@@ -17926,10 +19910,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeremypaul.me", true },
{ "jeremytcd.com", true },
{ "jericamacmillan.com", true },
+ { "jering.tech", true },
{ "jeroendeneef.com", true },
- { "jeroenensanne.wedding", true },
- { "jeroenvanderwal.nl", true },
{ "jerret.de", true },
+ { "jerryweb.org", true },
{ "jerryyu.ca", true },
{ "jerseybikehire.co.uk", true },
{ "jerseyjumpingbeans.co.uk", true },
@@ -17941,27 +19925,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jessekaufman.com", true },
{ "jessesjumpingcastles.co.uk", true },
{ "jessevictors.com", true },
- { "jessgranger.com", true },
+ { "jessgranger.com", false },
{ "jessicabenedictus.nl", false },
{ "jessicahrehor.com", true },
{ "jesters-court.net", true },
{ "jesuisadmin.fr", true },
{ "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 },
{ "jetwhiz.com", true },
- { "jeugdkans.nl", true },
{ "jeuxetcodes.fr", true },
{ "jeweet.net", true },
{ "jewishboyscouts.com", true },
+ { "jewishquotations.com", true },
{ "jexler.net", true },
+ { "jf-fotos.de", true },
{ "jfbst.net", true },
{ "jfmhero.me", true },
{ "jfr.im", true },
@@ -17969,6 +19950,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -17977,67 +19961,77 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jhf.io", true },
{ "jhill.de", true },
{ "jhollandtranslations.com", true },
+ { "jhservicos.net.br", true },
{ "jhuang.me", true },
- { "jhw-profiles.de", true },
{ "jhwestover.com", true },
- { "jiacl.com", true },
{ "jiahao.codes", true },
+ { "jiangxu.site", true },
+ { "jianji.de", true },
+ { "jianny.me", true },
{ "jianshu.com", true },
{ "jianyuan.pro", true },
- { "jiazhao.ga", true },
+ { "jiatingtrading.com", true },
+ { "jicaivvip.com", true },
{ "jichi.io", true },
+ { "jichi000.win", true },
+ { "jieyang2016.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 },
- { "jimmycai.org", true },
- { "jimmycn.com", false },
- { "jimmynelson.com", true },
{ "jimmyroura.ch", true },
{ "jimshaver.net", true },
{ "jimslop.nl", 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 },
{ "jinkuru.net", true },
- { "jinliming.ml", true },
{ "jino-jossy.appspot.com", true },
{ "jinshuju.net", true },
{ "jintaiyang123.org", true },
{ "jiogo.com", true },
+ { "jiosongs.biz", true },
{ "jirav.com", true },
+ { "jiripudil.cz", true },
{ "jirosworld.com", true },
{ "jisai.net.cn", true },
{ "jisha.site", true },
- { "jiveiaktivno.bg", true },
+ { "jixun.moe", true },
+ { "jiyue.moe", true },
{ "jiyusu.com", true },
+ { "jiyuu-ni.com", true },
+ { "jiyuu-ni.net", true },
+ { "jjhampton.com", true },
{ "jjj.blog", true },
+ { "jjjconnection.com", true },
{ "jjlvk.nl", true },
+ { "jjmarketing.co.uk", true },
{ "jjspartyhire.co.uk", true },
{ "jjspartytime.co.uk", true },
+ { "jjsummerboatparty.co.uk", true },
{ "jjvanoorschot.nl", true },
{ "jk-entertainment.biz", true },
{ "jkchocolate.com", true },
- { "jkest.cc", true },
+ { "jki.io", true },
{ "jkinteriorspa.com", true },
{ "jkirsche.com", true },
{ "jkrippen.com", true },
- { "jkuvw.xyz", true },
{ "jl-dns.eu", true },
{ "jl-dns.nl", true },
{ "jl-exchange.nl", true },
{ "jl-mail.nl", true },
- { "jldp.org", true },
+ { "jlink.nl", true },
{ "jlkhosting.com", true },
- { "jlot.org", true },
+ { "jloh.codes", true },
+ { "jlpn.eu", true },
+ { "jlpn.nl", true },
{ "jlponsetto.com", true },
{ "jlr-luxembourg.com", true },
{ "jltctech.com", true },
@@ -18045,30 +20039,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jmalarcon.es", true },
{ "jmarciniak.it", true },
{ "jmatt.org", true },
+ { "jmbeautystudio.se", true },
{ "jmbelloteau.com", true },
{ "jmcashngold.com.au", true },
{ "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 },
- { "jncde.de", true },
- { "jncie.de", true },
- { "jncie.eu", true },
- { "jncip.de", 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 },
+ { "joaquimgoliveira.pt", true },
+ { "job-ofertas.info", true },
+ { "job-offer.de", true },
+ { "job.biz.tr", true },
+ { "jobatus.com.br", true },
+ { "jobatus.es", true },
+ { "jobatus.it", true },
+ { "jobatus.mx", true },
+ { "jobatus.pt", true },
{ "jobbkk.com", true },
{ "jobbsafari.no", true },
{ "jobbsafari.se", true },
@@ -18079,14 +20082,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joblife.co.za", true },
{ "jobmi.com", true },
{ "jobmiplayground.com", true },
- { "jobmob.co.il", true },
{ "jobs-in-tech.com", true },
{ "jobs.at", true },
{ "jobs.ch", true },
{ "jobs4sales.ch", true },
{ "jobseekeritalia.it", true },
{ "jobsisbrown.com", true },
- { "jobss.co.uk", true },
+ { "jobsnet.eu", true },
{ "jobsuchmaschine.ch", true },
{ "jobwinner.ch", true },
{ "jobzninja.com", true },
@@ -18094,6 +20096,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jockbusuttil.com", true },
{ "jockbusuttil.uk", true },
{ "jodaniels.photography", true },
+ { "jodbush.com", true },
{ "jodlajodla.si", true },
{ "joduska.me", true },
{ "jodyboucher.com", false },
@@ -18112,96 +20115,111 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joelle.me", true },
{ "joelleandpeter.co.uk", true },
{ "joellimberg.com", true },
+ { "joellombardo.com", false },
{ "joelmarkhamphotography.com.au", true },
{ "joelmunch.com", true },
{ "joelnichols.uk", true },
+ { "joelotu.com", true },
{ "joemotherfuckingjohnson.com", true },
{ "joepitt.co.uk", false },
+ { "joergschneider.com", true },
+ { "joerosca.com", true },
{ "joerss.at", true },
{ "joeskup.com", true },
{ "joespaintingpgh.com", true },
{ "joestead.codes", true },
{ "joetsutj.com", true },
{ "joetyson.me", true },
- { "joeyfelix.com", true },
{ "joeygitalian.com", true },
{ "joeyhoer.com", true },
{ "joeysmith.com", true },
- { "joeyvilaro.com", true },
+ { "joeyvanvenrooij.nl", 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 },
{ "johannes.io", true },
{ "johannes.wtf", true },
{ "johannesburg-escorts.co.za", true },
+ { "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 },
{ "johndball.com", true },
{ "johnfulgenzi.com", true },
{ "johngallias.com", true },
- { "johngo.tk", true },
{ "johnguant.com", true },
+ { "johnhgaunt.com", true },
{ "johnkastler.net", true },
+ { "johnmcc.net", true },
{ "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 },
{ "jokerice.co.uk", true },
+ { "jokesbykids.com", true },
{ "jokewignand.nl", true },
{ "joliettech.com", true },
{ "jollausers.de", true },
+ { "jolle.io", true },
{ "jollygoodspudz.ca", true },
{ "jollykidswobbleworld.co.uk", true },
{ "jolokia.ch", true },
{ "jomo.tv", true },
{ "jomofojo.co", true },
{ "jomofojo.com", true },
+ { "jonahperez.com", true },
+ { "jonale.net", 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", false },
+ { "jonathanscott.me", 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 },
{ "jongbloed.nl", true },
{ "jongcs.com", true },
+ { "jongpay.com", true },
{ "jonilar.com", true },
{ "jonincharacter.com", true },
{ "jonirrings.com", true },
@@ -18211,75 +20229,90 @@ 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 },
{ "jopsens.de", true },
{ "joran.org", true },
+ { "jorcus.com", true },
{ "jordan-jungk.de", true },
+ { "jordandevelopment.com", true },
{ "jordanhamilton.me", true },
- { "jordankirby.co.uk", true },
{ "jordankmportal.com", true },
{ "jordans.co.uk", true },
{ "jordanscorporatelaw.com", true },
{ "jordanstrustcompany.com", true },
{ "jordhy.com", true },
+ { "jorexenterprise.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 },
- { "josegerber.ch", true },
+ { "josefottosson.se", true },
+ { "joseitoda.org", true },
{ "josemikkola.fi", true },
{ "josepbel.com", true },
{ "josephbleroy.com", true },
+ { "josephgeorge.com.au", 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 },
+ { "joshruppe.com", true },
{ "joshschmelzle.com", true },
{ "joshtriplett.org", true },
{ "joshua-kuepper.de", true },
+ { "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 },
- { "joworld.net", true },
- { "joyceseamone.com", true },
{ "joyful.house", true },
{ "joyfulexpressions.gallery", true },
+ { "joynadvisors.com", true },
{ "joyofcookingandbaking.com", true },
+ { "joysinventingblog.com", true },
+ { "jpbe-network.de", true },
+ { "jpbe.de", true },
{ "jpdeharenne.be", true },
{ "jpeg.io", true },
- { "jpgangbang.com", true },
{ "jphandjob.com", true },
{ "jplesbian.com", true },
{ "jpmelos.com", true },
{ "jpmelos.com.br", true },
+ { "jpmguitarshop.com.br", true },
+ { "jpod.cc", true },
+ { "jpralves.net", true },
{ "jps-selection.co.uk", true },
{ "jps-selection.com", true },
{ "jps-selection.eu", true },
@@ -18292,53 +20325,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jr5proxdoug.xyz", true },
{ "jrabasco.me", true },
{ "jrc9.ca", true },
+ { "jrchaseify.xyz", true },
{ "jreb.nl", true },
{ "jreinert.com", true },
+ { "jrflorian.com", true },
+ { "jrlopezoficial.com", true },
{ "jross.me", true },
{ "jrtapsell.co.uk", true },
{ "jrxpress.com", true },
+ { "js-web.eu", true },
+ { "js8855.com", true },
{ "jschoi.org", true },
{ "jschumacher.info", true },
{ "jsd-cog.org", true },
+ { "jsdelivr.com", true },
{ "jselby.net", true },
{ "jsent.co.uk", true },
- { "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 },
+ { "jtconsultancy.sg", true },
{ "jthackery.com", false },
{ "jtl-software.com", true },
{ "jtmar.me", true },
{ "jtp.id", true },
{ "jts3servermod.com", true },
{ "jtslay.com", true },
+ { "ju.io", true },
{ "juan23.edu.uy", true },
{ "juanfrancisco.tech", true },
- { "juanhub.com", true },
+ { "juanjovega.com", true },
{ "juanmaguitar.com", true },
+ { "juanmazzetti.com", true },
{ "juanxt.ddns.net", 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", false },
+ { "judosaintdenis.fr", true },
+ { "judytka.cz", true },
{ "juef.space", true },
{ "juegosycodigos.es", true },
{ "juegosycodigos.mx", true },
+ { "juegosyolimpicos.com", true },
{ "juelda.com", true },
{ "juergen-elbert.de", true },
+ { "juergen-roehrig.de", true },
{ "juergenhecht.de", true },
{ "juergenklieber.de", true },
{ "juergenspecht.com", true },
@@ -18349,15 +20391,16 @@ 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", true },
{ "julian-uphoff.de", true },
{ "julian-weigle.de", true },
{ "juliangonggrijp.com", true },
{ "julianickel.de", true },
{ "julianmeyer.de", true },
+ { "julianmp.info", true },
{ "juliansimioni.com", true },
{ "julianskitchen.ch", true },
{ "julianvmodesto.com", true },
@@ -18374,9 +20417,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "juliemaurel.fr", true },
{ "julienc.io", true },
{ "julienpaterne.com", true },
+ { "julienschmidt.com", true },
{ "julientartarin.com", true },
- { "julio.jamil.nom.br", true },
- { "juliohernandezgt.com", true },
{ "julius-zoellner.de", true },
{ "jullensgroningen.com", true },
{ "juls.cloud", true },
@@ -18400,19 +20442,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jumpingjacksbouncycastles.co.uk", true },
{ "jumpinjaes.co.uk", true },
{ "jumpinmonkeys.co.uk", true },
+ { "jumpintogreenerpastures.com", true },
{ "jumpnplay.co.uk", true },
+ { "jundongwu.com", true },
{ "junespina.com", true },
{ "junethack.net", true },
{ "jungaa.fr", true },
{ "jungesforumkonstanz.de", true },
- { "jungleculture.co.za", true },
+ { "junggesellmuc.de", true },
{ "jungleducks.ca", true },
{ "junglejackscastles.co.uk", true },
{ "junglememories.co.uk", true },
{ "junglist.org", true },
- { "jungundwild-design.de", true },
+ { "jungundwild-design.de", false },
{ "juni.io", true },
- { "junias-fenske.de", true },
{ "juniperroots.ca", true },
{ "junjhome.com", true },
{ "junjun-web.net", true },
@@ -18424,11 +20467,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jurassicgolf.nl", true },
{ "juridoc.com.br", true },
{ "jurijbuga.de", true },
- { "jurisprudent.by", true },
{ "jurriaan.ninja", true },
{ "just-a-clanpage.de", true },
{ "just-vet-and-drive.fr", true },
- { "justbelieverecovery.com", true },
+ { "justanothercompany.name", true },
{ "justbelieverecoverypa.com", true },
{ "justbookexcursions.com", true },
{ "justbookhotels.com", true },
@@ -18440,76 +20482,91 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "justgalak.org", true },
{ "justice.gov", true },
{ "justice4assange.com", true },
- { "justinellingwood.com", true },
- { "justinharrison.ca", true },
+ { "justin-tech.com", true },
{ "justinho.com", true },
+ { "justinmuturifoundation.org", true },
+ { "justinribeiro.com", true },
{ "justinstandring.com", true },
+ { "justmensgloves.com", true },
+ { "justonce.net", true },
{ "justpaste.it", true },
+ { "justsmart.io", true },
{ "justsome.info", true },
- { "justthinktwice.gov", true },
+ { "justtalk.site", true },
+ { "justthinktwice.gov", false },
{ "justupdate.me", true },
{ "justyy.com", true },
{ "juszkiewicz.com.pl", true },
{ "jutlander-netbank.dk", true },
{ "jutlander.dk", true },
+ { "juttaheitland.com", true },
{ "juusujanar.eu", true },
{ "juvenex.co", true },
- { "juventusclublugano.ch", 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 },
- { "jwallet.cc", true },
{ "jwatt.org", true },
{ "jwe.nl", true },
{ "jwilsson.com", true },
{ "jwjwjw.com", true },
{ "jwmmarketing.com", true },
{ "jwnotifier.org", true },
+ { "jwod.gov", true },
+ { "jwplay.ml", true },
{ "jwschuepfheim.ch", true },
{ "jwsoft.nl", true },
{ "jxir.de", true },
+ { "jxltom.com", true },
+ { "jxm.in", true },
{ "jydemarked.dk", true },
{ "jyggen.com", true },
{ "jym.fit", true },
{ "jyoti-fairworks.org", true },
- { "jzachpearson.com", true },
{ "jzbk.org", 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 },
+ { "k1024.org", true },
{ "k258059.net", true },
{ "k2mts.org", true },
- { "k33k00.com", true },
- { "k3nny.fr", false },
+ { "k33k00.com", false },
+ { "k3nny.fr", true },
+ { "k4law.com", true },
{ "k4r.ru", true },
{ "k7azx.com", true },
{ "k82.org", true },
+ { "k8n.de", true },
{ "k8r.eu", true },
{ "k9swx.com", true },
{ "kaamoscreations.com", true },
{ "kaangenc.me", true },
{ "kaany.io", true },
- { "kaashosting.nl", true },
+ { "kaasbesteld.nl", true },
{ "kaatha-kamrater.se", true },
{ "kab-s.de", true },
- { "kabarlinux.id", true },
+ { "kabaca.design", true },
{ "kabashop.com.br", true },
- { "kabat-fans.cz", false },
+ { "kabat-fans.cz", true },
{ "kabeltv.co.nz", true },
{ "kabeuchi.com", true },
{ "kaboom.pw", true },
+ { "kabos.art", true },
{ "kabu-abc.com", true },
+ { "kabulpress.org", true },
{ "kabus.org", true },
+ { "kacgal.com", true },
{ "kachelfm.nl", true },
{ "kachlikova2.cz", true },
{ "kack.website", true },
@@ -18521,16 +20578,15 @@ 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 },
- { "kainetsoft.com", true },
{ "kairion.de", false },
{ "kaisakura.net", true },
- { "kaisev.net", true },
+ { "kaisev.net", false },
{ "kaitol.click", true },
{ "kaiusaltd.com", true },
+ { "kaivac-emea.com", true },
{ "kaizenreporting.com", true },
{ "kaizeronion.com", true },
{ "kajak.land", true },
@@ -18540,10 +20596,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "kalastus.com", true },
{ "kaleidoscope.co.uk", true },
@@ -18552,21 +20605,30 @@ 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 },
+ { "kalolina.com", true },
+ { "kalombo.ru", true },
{ "kalsbouncies.com", true },
{ "kaltenbrunner.it", true },
{ "kalterersee.ch", true },
{ "kalwestelectric.com", true },
+ { "kalyanmatka.guru", true },
{ "kam-serwis.pl", true },
- { "kamagra-italia.it", true },
- { "kamatajisyaku.tokyo.jp", true },
- { "kamikaichimaru.com", true },
+ { "kamata-shinkyu-seikotsu.jp", true },
+ { "kameari-za.space", true },
+ { "kamikaichimaru.com", false },
+ { "kamikatse.net", true },
+ { "kamilki.me", true },
{ "kaminbau-laub.de", true },
+ { "kamisato-ent.com", true },
{ "kamixa.se", true },
{ "kamppailusali.fi", true },
+ { "kamranmirhazar.com", true },
{ "kamui.co.uk", true },
+ { "kan3.de", true },
{ "kana-mono.biz", true },
{ "kana.me", true },
{ "kanaete-uranai.com", true },
@@ -18593,39 +20655,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kanna.cf", true },
{ "kannchen.de", true },
{ "kanobu.ru", true },
- { "kanotijd.nl", true },
{ "kansaiyamamoto.jp", true },
{ "kantankye.nl", true },
{ "kantanmt.com", true },
{ "kantorkita.net", true },
{ "kantorosobisty.pl", true },
- { "kantv1.com", true },
+ { "kanuvu.de", true },
{ "kany.me", false },
- { "kanzakiranko.jp", true },
+ { "kanzakiranko.jp", false },
{ "kanzashi.com", true },
+ { "kanzlei-gaengler.de", true },
{ "kanzlei-myca.de", true },
{ "kanzlei-oehler.com", true },
{ "kanzlei-sixt.de", true },
- { "kanzshop.com", true },
{ "kap-genial.de", true },
- { "kapiorr.duckdns.org", true },
+ { "kap.pe", true },
+ { "kapgy-moto.com", true },
+ { "kappenstein.org", false },
{ "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 },
- { "karanastic.com", true },
{ "karanjthakkar.com", true },
- { "karanlyons.com", true },
{ "karasik.by", true },
{ "karateka.org", true },
{ "karateka.ru", true },
{ "kardize24.pl", true },
- { "karenledger.ca", true },
+ { "kardolocksmith.com", true },
+ { "karewan.ovh", true },
{ "kargl.net", true },
{ "karguine.in", true },
{ "karhm.com", true },
@@ -18634,21 +20698,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "karlbowden.com", true },
{ "karlic.net", true },
{ "karlin.run", true },
- { "karlis-kavacis.id.lv", true },
{ "karlloch.de", true },
{ "karlsmithmn.org", true },
- { "karlstabo.se", true },
{ "karlzotter.com", true },
{ "karmaassurance.ca", true },
{ "karmabaker.com", true },
+ { "karmaflux.com", true },
{ "karmainsurance.ca", true },
{ "karmaplatform.com", true },
{ "karmaspa.se", true },
- { "karmic.com", true },
{ "karn.nu", true },
{ "karneid.info", true },
- { "karpanhellas.com", false },
- { "kars.ooo", true },
+ { "karoverwaltung.de", true },
{ "karsofsystems.com", true },
{ "karsten-voigt.de", true },
{ "karta-paliwowa.pl", true },
@@ -18660,8 +20721,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kartonmodellbau.org", true },
{ "karula.org", true },
{ "karupp-did.net", true },
- { "kasadara.com", true },
{ "kasei.im", true },
+ { "kashinavi.com", true },
{ "kashmirobserver.net", true },
{ "kasko.io", true },
{ "kasnoffskinclinic.com", true },
@@ -18670,56 +20731,63 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kastelruth.biz", true },
{ "kastemperaturen.ga", true },
{ "kastorsky.ru", true },
+ { "kat.marketing", true },
{ "katagena.com", true },
- { "katalogbutikker.dk", true },
+ { "katalogbajugamismu.com", true },
+ { "katarsisuib.no", true },
{ "katata-kango.ac.jp", true },
+ { "katcleaning.com.au", true },
{ "katedra.de", true },
+ { "kateduggan.net", true },
{ "katekligys.com", true },
{ "katemihalikova.cz", true },
{ "katericke.com", true },
+ { "katex.org", true },
{ "kathardt.de", true },
{ "kathegiraldo.com", true },
- { "kathrinbaumannphotography.com", true },
{ "kati-raumplaner.de", true },
{ "katiechai.xyz", true },
{ "katieskandy.co.uk", true },
{ "katieskastles.co.uk", true },
+ { "katja-und-ronny.de", true },
+ { "katjavoneysmondt.de", true },
{ "katka.info", true },
{ "katnunn.co.uk", true },
{ "kato-yane.com", true },
{ "katscastles.co.uk", true },
{ "kattelans.eu", true },
- { "katthewaffle.fr", true },
{ "katyl.info", false },
{ "katyusha.net", false },
{ "katzenbrunnen-test.de", true },
- { "katzspeech.com", true },
+ { "katzensklave.me", true },
+ { "katzrkool.xyz", true },
{ "kau-boys.com", true },
{ "kau-boys.de", true },
{ "kaufberatung.community", true },
- { "kausta.me", true },
- { "kavik.no", true },
+ { "kaufmanbankruptcylaw.com", true },
{ "kavovary-kava.cz", true },
- { "kawaii.io", true },
+ { "kawaiii.link", true },
{ "kaweus.de", true },
{ "kay.la", true },
{ "kayakabovegroundswimmingpools.com", true },
- { "kayleen.net", true },
- { "kaysis.gov.tr", true },
+ { "kayscs.com", true },
{ "kazakov.lt", true },
- { "kazamasion.com", true },
+ { "kazancci.com", true },
{ "kazand.lt", true },
{ "kazandaemon.ru", true },
+ { "kazek.com.pl", true },
+ { "kazekprzewozy.pl", true },
{ "kazu.click", true },
{ "kazuhirohigashi.com", true },
+ { "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 },
{ "kbcequitas.hu", true },
- { "kbfl.org", true },
{ "kbit.dk", true },
{ "kbjorklu.com", true },
{ "kbleventhire.co.uk", true },
@@ -18728,31 +20796,34 @@ 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 },
- { "kcore.org", true },
- { "kcptun.com", true },
{ "kcshipping.co.uk", true },
{ "kcsordparticipation.org", true },
{ "kd.net.nz", true },
{ "kdex.de", true },
+ { "kdfans.com", true },
{ "kdw.cloud", true },
{ "kdyby.org", true },
+ { "ke.fo", true },
{ "ke7tlf.us", true },
{ "keakon.net", true },
+ { "keane.space", true },
{ "keaneokelley.com", true },
{ "keaysmillwork.com", true },
{ "keb.com.au", true },
{ "keb.net.au", true },
{ "kebabbesteld.nl", true },
{ "kebabbruce.com", true },
+ { "kecht.at", true },
{ "kedarastudios.com", true },
{ "kedibizworx.com", true },
+ { "kediri.win", true },
{ "kedv.es", true },
{ "keeleysam.com", true },
{ "keelove.net", true },
- { "keematdekho.com", true },
{ "keengamer.com", true },
{ "keepa.com", true },
{ "keeperapp.com", true },
@@ -18760,13 +20831,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "keepersecurity.com", true },
{ "keepingtheplot.co.uk", true },
{ "keepiteasy.eu", true },
+ { "keepsight.org.au", true },
+ { "keevitaja.com", true },
{ "keeweb.info", true },
{ "keezin.ga", true },
{ "keganthorrez.com", true },
{ "kehlenbach.net", true },
{ "keifel.de", true },
{ "kein-design.de", true },
- { "kein-fidget-spinner-werden.de", true },
{ "keinanung.nl", true },
{ "keinefilterblase.de", true },
{ "keisaku.org", true },
@@ -18785,12 +20857,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kelheor.space", true },
{ "kellerlan.org", true },
{ "kelleymcchesney.us", true },
+ { "kellimacconnell.com", true },
{ "kellygrenard.com", true },
{ "kellyskastles.co.uk", true },
{ "kellyssportsbarandgrill.com", true },
- { "kelmarsafety.com", true },
- { "kelp.agency", true },
- { "kelvinfichter.com", true },
+ { "kelsa.io", true },
+ { "kelvinfichter.com", false },
{ "kemmerer-net.de", true },
{ "kempkens.io", true },
{ "kempo-sissach.ch", true },
@@ -18799,71 +20871,82 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kemptown.net", true },
{ "ken.fm", true },
{ "kenalsworld.com", true },
- { "kenbillionsyuan.tk", true },
{ "kenbonny.net", true },
- { "kenderhazmagyarorszag.hu", false },
{ "kengilmour.com", true },
{ "kenguntokku.jp", true },
{ "kenia-vakantie.nl", true },
- { "kennedy.ie", true },
{ "kenners.org", true },
{ "kennethaasan.no", true },
{ "kennethferguson.com", true },
{ "kennethlim.me", true },
{ "kenneths.org", true },
{ "kenny-peck.com", true },
+ { "kennynet.co.uk", true },
{ "keno.im", true },
{ "kenokallinger.at", true },
{ "kenoschwalb.com", false },
{ "kenrogers.co", false },
{ "kens.pics", true },
{ "kensbouncycastles.co.uk", true },
+ { "kenscustomfloors.com", true },
{ "kentec.net", true },
{ "kenterlis.gr", true },
- { "kenvix.com", false },
+ { "kenvix.com", true },
{ "kenx5.eu.org", true },
+ { "kenyons.info", true },
{ "keops-spine.fr", true },
{ "keops-spine.us", true },
{ "kepkonyvtar.hu", true },
+ { "keponews.com", true },
{ "keralit.nl", true },
{ "kerebro.com", true },
- { "kerem.xyz", true },
{ "kerforhome.com", true },
{ "kerijacoby.com", true },
+ { "kermadec.com", true },
+ { "kermadec.fr", true },
+ { "kermadec.net", true },
{ "kernel-error.de", true },
{ "kernelpanics.nl", true },
+ { "kernelprogrammer.com", true },
{ "kerrfrequencycombs.org", true },
+ { "kerrnel.com", true },
{ "kersbergen.nl", true },
{ "kerstkaart.nl", true },
{ "kersvers.agency", true },
- { "kerus.net", false },
+ { "kerus.net", true },
{ "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 },
+ { "kevin-ta.com", true },
{ "kevinapease.com", true },
+ { "kevinbowers.me", true },
{ "kevinbusse.de", true },
{ "kevincox.ca", false },
{ "kevinfoley.cc", true },
{ "kevinfoley.org", true },
+ { "kevingsky.com", true },
{ "kevinhill.nl", true },
{ "kevinhq.com", true },
{ "kevinkla.es", true },
{ "kevinlocke.name", true },
{ "kevinmeijer.nl", true },
- { "kevinmoreland.com", true },
{ "kevinmorssink.nl", true },
+ { "kevinpirnie.com", false },
{ "kevinrandles.com", true },
{ "kevinratcliff.com", true },
{ "kevyn.lu", true },
- { "kewego.co.uk", true },
+ { "kexueboy.com", true },
{ "keybase.io", true },
{ "keybored.co", true },
{ "keybored.me", true },
@@ -18871,25 +20954,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "keycenter.com.br", true },
{ "keycontainers.co.za", true },
{ "keyerror.com", true },
+ { "keygen.sh", true },
{ "keyholdingservices.co.uk", true },
+ { "keyhomechecker.com", true },
{ "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 },
+ { "keys247.co.uk", true },
{ "keystoneok.com", false },
{ "keysupport.org", true },
{ "keywebdesign.nl", true },
{ "kf7joz.com", true },
+ { "kfassessment.com", true },
{ "kffs.ru", true },
{ "kfirba.me", true },
{ "kforesund.se", true },
{ "kfv-kiel.de", false },
{ "kfz-hantschel.de", true },
+ { "kg7.pl", true },
{ "kgm-irm.be", true },
{ "kgnk.ru", true },
- { "khaledgarbaya.net", true },
+ { "kgv-schlauroth.de", true },
+ { "khaledgarbaya.net", false },
{ "khanovaskola.cz", true },
{ "khas.co.uk", true },
{ "khasiatmanfaat.com", true },
@@ -18897,11 +20986,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "khetzal.info", true },
{ "khipu.com", true },
{ "khlee.net", true },
- { "khmath.com", 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 },
@@ -18916,77 +21006,81 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kickedmycat.com", true },
{ "kickstart.com.pk", false },
{ "kicou.info", true },
- { "kiddies.academy", true },
+ { "kidaptive.com", true },
{ "kiddieschristian.academy", true },
- { "kiddieschristianacademy.co.za", true },
{ "kiddyboom.ua", true },
{ "kids-at-home.ch", true },
{ "kids-castles.com", true },
{ "kids-ok.com", true },
{ "kids2day.in", true },
{ "kidsareatrip.com", true },
+ { "kidsclub.photos", true },
{ "kidsforsavingearth.org", true },
{ "kidsinwoods-interfacesouth.org", true },
{ "kidsmark.net", true },
{ "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 },
- { "kieran.ie", true },
- { "kieranjones.uk", true },
- { "kiesuwcursus.nl", true },
{ "kiesuwkerstkaart.nl", true },
{ "kiffmarks.com", true },
{ "kigmbh.com", true },
+ { "kiisu.club", true },
{ "kikbb.com", true },
{ "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 },
{ "kilogram.nl", true },
{ "kilometertje.nl", true },
{ "kimamass.com", true },
+ { "kimbal.co.uk", true },
{ "kimdumaine.com", true },
{ "kimiris.com", true },
{ "kimis.gr", true },
{ "kimisia.net", true },
{ "kimmel.com", true },
{ "kimmel.in", true },
- { "kimo.se", true },
+ { "kimono-rental-one.com", true },
{ "kimotodental.com", true },
{ "kimsufi-jordi.tk", true },
{ "kimtran.kim", true },
+ { "kin.life", true },
{ "kin.pet", true },
{ "kinautas.com", true },
{ "kinderbasar-luhe.de", true },
{ "kinderchor-bayreuth.de", true },
- { "kinderopvangzevenbergen.nl", true },
+ { "kinderjugendfreizeitverein.de", true },
+ { "kinderkleding.news", true },
+ { "kinderpneumologie.ch", 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 },
+ { "kinerd.me", true },
+ { "kinesiomed-cryosauna.gr", true },
{ "kinetiq.com", true },
- { "king-henris-castles.co.uk", true },
{ "king-of-the-castles.com", true },
{ "kingant.net", true },
{ "kinganywhere.eu", true },
{ "kingbird.me", true },
- { "kingdomcrc.org", true },
{ "kingdoms.gg", true },
{ "kingiescastles.co.uk", true },
{ "kingofshooting.com", true },
@@ -18994,9 +21088,14 @@ 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 },
+ { "kingwoodtxlocksmith.com", true },
{ "kini24.ru", true },
+ { "kinkcafe.net", true },
{ "kinkenonline.com", true },
{ "kinnikinnick.com", true },
{ "kinniyaonlus.com", true },
@@ -19007,27 +21106,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kinos.nl", true },
{ "kinozal-tv.appspot.com", true },
{ "kinsights.com", false },
+ { "kintawifi.com", false },
{ "kintone.com", true },
{ "kintore.tv", true },
{ "kiocloud.com", true },
{ "kionetworks.es", true },
{ "kipa.at", true },
+ { "kipiradio.com", true },
{ "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 },
+ { "kirinuki.jp", true },
{ "kirkforcongress.com", true },
{ "kirkforillinois.com", true },
{ "kirkify.com", true },
@@ -19035,30 +21135,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kirrie.pe.kr", true },
{ "kirsch-gestaltung.de", true },
{ "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 },
+ { "kisel.org", true },
{ "kisiselveri.com", true },
+ { "kiskeedeesailing.com", true },
{ "kisma.de", true },
- { "kissesb.com", true },
- { "kissesb.net", true },
{ "kissflow.com", true },
{ "kissgyms.com", true },
- { "kisskiss.ch", true },
{ "kissmycreative.com", true },
- { "kisstube.tv", true },
{ "kitabnamabayi.com", true },
+ { "kitacoffee.com", true },
{ "kitbag.com.au", true },
{ "kitchen-profi.by", true },
{ "kitchen-profi.com.ua", true },
{ "kitchen-profi.kz", true },
- { "kitchenalley.ca", true },
- { "kitchenalley.com", true },
{ "kitchenpunx.com", false },
{ "kiteadventure.nl", true },
- { "kitegarage.eu", true },
{ "kiteschooledam.nl", true },
{ "kiteschoolijmuiden.nl", true },
{ "kiteschoolkatwijk.nl", true },
@@ -19071,48 +21168,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kittpress.com", true },
{ "kittyhacker101.tk", true },
{ "kivitelezesbiztositas.hu", true },
+ { "kiwi-bird.xyz", true },
+ { "kiwi.com", true },
{ "kiwi.digital", true },
- { "kiwi.global", true },
{ "kiwi.wiki", true },
- { "kiwico.com", true },
- { "kiwipayment.com", true },
- { "kiwipayments.com", true },
- { "kiwiplace.com", true },
{ "kiyotatsu.com", true },
{ "kj-prince.com", true },
- { "kj1391.com", true },
- { "kj1397.com", true },
{ "kjaer.io", true },
{ "kjarni.cc", true },
{ "kjarrval.is", true },
{ "kjchernov.info", true },
{ "kjellner.com", true },
- { "kjg-ummeln.de", true },
+ { "kjelltitulaer.com", true },
+ { "kjellvn.net", 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 },
{ "kkyy.me", true },
+ { "kkzxak47.com", true },
{ "kl-diaetist.dk", true },
+ { "klaasmeijerbodems.nl", true },
{ "klaim.us", true },
{ "klamathrestoration.gov", true },
{ "klanggut.at", true },
- { "klantenadvies.nl", true },
{ "klares-licht.de", true },
{ "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 },
{ "klaxon.me", true },
{ "klcreations.co.uk", true },
{ "kle.cz", true },
- { "klean-ritekc.com", true },
{ "kleaning.by", true },
{ "klebeband.eu", true },
{ "klebetape.de", true },
@@ -19120,12 +21214,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
- { "kleinserienproduktion.com", true },
{ "kleinsys.com", true },
+ { "kleintransporte.net", true },
+ { "klemkow.net", true },
+ { "klemkow.org", true },
+ { "kleppe.co", true },
{ "kleteckova.cz", true },
{ "klicke-gemeinsames.de", true },
{ "klickstdu.com", true },
@@ -19136,24 +21238,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "klimapartner.net", true },
{ "klimchuk.by", true },
{ "klimchuk.com", true },
+ { "klingenundmesser.com", true },
+ { "klinik-fuer-aesthetische-zahnheilkunde.de", true },
{ "klinikac.co.id", false },
{ "klinkenberg.ws", true },
- { "klinkerstreet.com.ua", false },
{ "klm-huisjes.nl", true },
{ "klmhouses.com", true },
{ "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 },
- { "km-net.pl", true },
+ { "klusweb-merenwijk.nl", true },
+ { "klva.cz", true },
+ { "klzwzhi.com", true },
{ "kmashworth.co.uk", true },
{ "kmkz.jp", true },
{ "kmsci.com.ph", true },
@@ -19165,33 +21271,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "knarcraft.net", true },
{ "kncg.pw", true },
{ "kndkv.com", true },
+ { "kndrd.io", true },
{ "kneblinghausen.de", true },
+ { "knechtology.com", true },
{ "knegten-agilis.com", true },
{ "knep.me", true },
{ "knetterbak.nl", true },
{ "kngk-group.ru", true },
{ "kngk-transavto.ru", true },
{ "kngk.org", true },
- { "kniga.market", false },
+ { "kngkng.com", true },
{ "knight-industries.org", true },
+ { "knightsblog.de", true },
{ "knightsbridge.net", true },
- { "knightsbridgegroup.org", true },
{ "knightsbridgewine.com", true },
+ { "knihovnajablonne.cz", true },
{ "knip.ch", true },
{ "knispel-online.de", true },
{ "knitfarious.com", true },
- { "kniwweler.com", true },
{ "knmv.nl", true },
+ { "knnet.ch", true },
{ "knockendarroch.co.uk", true },
{ "knop.info", true },
{ "knot-store.com", true },
{ "knowarth.com", true },
{ "knowledgeforce.com", true },
- { "knowledgehook.com", true },
{ "knowlevillagecc.co.uk", true },
+ { "knowyourday.ai", true },
{ "knthost.com", true },
- { "knuckles.tk", true },
{ "knurps.de", true },
+ { "knuthildebrandt.de", false },
{ "knutur.is", true },
{ "knygos.lt", true },
{ "ko-sys.com", true },
@@ -19201,11 +21310,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kobejet.com", true },
{ "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 },
@@ -19215,12 +21325,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koe.hn", true },
{ "koebbes.de", true },
{ "koecollege.com", true },
- { "koehn.com", true },
- { "koelbli.ch", true },
{ "koelnmafia.de", true },
- { "koenen-bau.de", true },
{ "koenigsbrunner-tafel.de", true },
- { "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 },
@@ -19228,6 +21337,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 },
@@ -19236,7 +21346,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 },
@@ -19245,31 +21357,37 @@ 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 },
- { "kolbeck.tk", true },
+ { "kolania.de", true },
+ { "kolania.net", true },
{ "kolbeinsson.se", true },
{ "kolcsey.eu", true },
{ "koldanews.com", true },
{ "kolin.org", true },
{ "kolizaskrap.bg", true },
{ "kolja-engelmann.de", true },
+ { "koljakrekow.de", true },
{ "kolkataflowermall.com", true },
{ "kollect.ie", true },
{ "kollega.it", true },
{ "kolmann.at", true },
{ "kolmann.eu", true },
{ "kolonie-am-stadtpark.de", true },
+ { "kolorbon.com", true },
{ "kolpingsfamilie-vechta-maria-frieden.de", true },
{ "koluke.co", true },
{ "koluke.com", true },
+ { "komall.net", true },
{ "komandakovalchuk.com", false },
{ "komelin.com", true },
+ { "komenamanda.de", true },
{ "komicloud.com", true },
{ "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 },
@@ -19278,13 +21396,14 @@ 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 },
+ { "kongsecuritydata.com", true },
{ "koniecfica.sk", true },
{ "konijntjes.nl", true },
- { "konings.it", true },
{ "koningskwartiertje.nl", true },
{ "koninkrijk.net", true },
{ "konklone.com", true },
@@ -19296,12 +21415,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "konst.se", true },
{ "kontaxis.org", true },
{ "kontorhaus-schlachte.de", true },
+ { "kontorhaus-stralsund.de", 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 },
@@ -19311,17 +21432,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-dpr.org", 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 },
@@ -19329,27 +21452,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kortgebyr.dk", true },
{ "kortic.com", true },
{ "koryfi.com", true },
+ { "kos4all.com", true },
{ "kosaki.moe", true },
{ "koscielniak-nieruchomosci.pl", true },
+ { "kosherjava.com", true },
{ "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 },
{ "kostya.ws", true },
- { "kotausaha.com", true },
- { "kotelezobiztositas.eu", true },
+ { "kosuzu.moe", true },
{ "kother.org", true },
{ "kotilinkki.fi", true },
{ "kotitesti.fi", true },
{ "kotly-marten.com.ua", true },
+ { "kotobox.net", true },
{ "kotois.com", true },
- { "kotomei.moe", true },
{ "kotonoha.cafe", true },
{ "kotori.love", true },
{ "kouki-food.com", true },
+ { "koumakan.cc", true },
{ "koumuwin.com", true },
{ "koushinjo.org", true },
{ "kouten-jp.com", true },
@@ -19358,9 +21483,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kovaldo.ru", true },
{ "kovals.sk", true },
{ "kovehitus.ee", true },
- { "kovnsk.net", true },
{ "kovspace.com", true },
- { "kovuthehusky.com", true },
{ "kowalmik.tk", true },
{ "kowalstwo.com.pl", true },
{ "kowarschick.de", true },
@@ -19373,8 +21496,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kpinvest.eu", true },
{ "kplasticsurgery.com", true },
{ "kplnet.net", true },
- { "kpmgpublications.ie", true },
{ "kpop.re", true },
+ { "kpopsource.com", true },
{ "kpumuk.info", true },
{ "kpx1.de", true },
{ "kr.search.yahoo.com", false },
@@ -19387,7 +21510,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kraftzeiten.de", true },
{ "krag.be", true },
{ "kraga.sk", true },
- { "kraiwan.com", true },
{ "kraiwon.com", true },
{ "kraken.io", true },
{ "kraken.site", true },
@@ -19396,51 +21518,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kralovstvimap.cz", true },
{ "kram.nz", true },
{ "krambeutel.de", true },
+ { "kramer-edelstahl.de", true },
{ "krampus-fischamend.at", true },
{ "kramsj.uk", true },
{ "krang.org.uk", true },
{ "krankenpflege-haushaltshilfe.de", true },
+ { "kranz.space", true },
{ "krasnodar-avia.ru", true },
{ "krasovsky.me", true },
- { "krausoft.hu", true },
{ "krautomat.com", true },
- { "kraynik.com", true },
+ { "krayx.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 },
{ "kredigram.com", true },
{ "kredit-abzocke.com", true },
+ { "kredita.dk", true },
{ "kreditkacs.cz", true },
+ { "kredytzen.pl", true },
{ "kreen.org", true },
{ "krehl.io", true },
{ "kremalicious.com", true },
{ "kretschmann.consulting", true },
{ "kreuzpfadfinder.de", true },
+ { "krey.is", true },
{ "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 },
+ { "kristall-energie.at", true },
+ { "kristenpaigejohnson.com", true },
{ "kristiehill.com", true },
{ "kristikala.nl", true },
- { "kristinbailey.com", true },
+ { "kristinbailey.com", false },
+ { "kristofba.ch", true },
{ "kristofdv.be", true },
+ { "kritikos.io", true },
{ "krizevci.info", true },
- { "krmeni.cz", true },
+ { "krmeni.cz", false },
{ "krokedil.se", true },
- { "krokodent.de", true },
{ "kromamoveis.com.br", true },
{ "kromonos.net", true },
- { "kronaw.it", true },
{ "krony.de", true },
{ "kroon.email", true },
{ "kropkait.pl", true },
@@ -19451,33 +21583,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kruin.net", true },
{ "kruisselbrink.com", true },
{ "kruk.co", true },
+ { "krukhmer.com", true },
{ "krumberconsulting.com", true },
{ "krupa.net.pl", false },
+ { "kruselegal.com.au", true },
+ { "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 },
- { "kryptomodkingz.com", true },
+ { "kryptomech.com", true },
+ { "krytykawszystkiego.com", true },
+ { "krytykawszystkiego.pl", true },
{ "kryx.de", true },
{ "ks-watch.de", true },
+ { "ks88.com", true },
{ "kschv-rdeck.de", true },
{ "kselenia.ee", true },
+ { "ksero.center", true },
{ "ksero.wroclaw.pl", true },
+ { "ksham.net", true },
{ "kshlm.in", true },
- { "kspg.tv", true },
+ { "ksmmmo.org.tr", true },
+ { "kssk.de", true },
{ "ksukelife.com", true },
{ "kt-zoe.com", true },
{ "ktbnetbank.com", true },
{ "kthnxbai.xyz", true },
+ { "ktm-troxler.de", true },
{ "kts-thueringen.de", true },
{ "ktsee.eu.org", true },
+ { "ktsofas.gr", true },
{ "ktw.lv", true },
{ "ku-7.club", true },
+ { "ku.io", false },
+ { "kuaimen.bid", true },
+ { "kuaitiyu.org", true },
{ "kualiti.net", true },
{ "kualo.co.uk", true },
{ "kualo.com", true },
@@ -19487,20 +21634,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kubica.ch", true },
{ "kubierecki.pl", true },
{ "kubik-rubik.de", false },
- { "kubiwa.net", true },
{ "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 },
@@ -19511,18 +21661,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kulde.net", true },
{ "kulickovy-pojezd.cz", true },
{ "kulivps.com", true },
- { "kum.com", true },
{ "kuma.es", true },
{ "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 },
- { "kunstschule-krabax.de", true },
{ "kunstundunrat.de", true },
{ "kuoruan.com", true },
+ { "kupaa.ink", true },
{ "kupferstichshop.com", true },
{ "kupid.com", true },
{ "kupiec.eu.org", true },
@@ -19531,13 +21680,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kuponrazzi.com", true },
{ "kuponydoher.cz", true },
{ "kupschke.net", true },
- { "kurashino-mall.com", true },
+ { "kurniadwin.to", true },
+ { "kuro.link", true },
{ "kurofuku.me", true },
+ { "kuroha.co.uk", true },
{ "kuroinu.jp", true },
{ "kurona.ga", true },
{ "kuronekogaro.com", true },
- { "kurrende.nrw", true },
- { "kurrietv.nl", true },
{ "kurschies.de", true },
{ "kurserne.dk", true },
{ "kurswahl-online.de", true },
@@ -19556,8 +21705,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kuzbass-pwl.ru", true },
{ "kvadratnimeter.si", true },
{ "kvalita-1a.cz", true },
+ { "kvalitetsaktiepodden.se", true },
{ "kvalitnitesneni.cz", true },
+ { "kvantel.no", true },
{ "kvcc.com.au", true },
+ { "kvestmaster.ru", true },
{ "kvetinymilt.cz", true },
{ "kvhile.com", true },
{ "kvilt.dk", true },
@@ -19569,30 +21721,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kwcolville.com", true },
{ "kwedo.com", true },
{ "kwench.com", true },
- { "kwidz.fr", true },
- { "kwmr.me", true },
{ "kwok.cc", true },
+ { "kwoll.de", true },
{ "kwyxz.org", true },
{ "kx197.com", true },
{ "kxah35.com", true },
- { "kxnrl.com", false },
+ { "kxline.com", true },
+ { "kxnrl.com", true },
+ { "kxway.com", true },
{ "kybi.sk", true },
{ "kydara.com", true },
{ "kyledrake.net", true },
{ "kylegutschow.com", true },
{ "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 },
- { "kyonagashima.com", true },
{ "kyosaku.org", true },
- { "kyoto-k9.com", true },
- { "kyoto-sake.net", true },
+ { "kyoto-k9.com", false },
+ { "kyoto-mic.com", true },
{ "kyoto-tomikawa.jp", true },
{ "kyoto-tomoshibi.jp", true },
{ "kyprexxo.com", true },
@@ -19603,28 +21752,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kz.search.yahoo.com", false },
{ "kzar.co.uk", true },
{ "kzsdabas.hu", true },
+ { "l-atelier-c.com", true },
{ "l-lab.org", true },
{ "l0re.com", true },
+ { "l17r.eu", true },
{ "l2guru.ru", true },
+ { "l3.ee", true },
{ "l33te.net", true },
{ "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", 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 },
{ "labande-annonce.fr", true },
+ { "labanochjonas.se", true },
+ { "labanskoller.se", true },
+ { "labanskollermark.se", true },
+ { "labcenter.com", true },
{ "labcoat.jp", true },
+ { "labeled.vn", true },
{ "labms.com.au", true },
{ "labobooks.com", true },
{ "laboitebio-logique.ca", true },
@@ -19634,8 +21793,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "laboutiquedejuliette.com", true },
{ "laboxfaitsoncinema.com", true },
{ "labradorpuppiesforsalebyregisteredlabradorbreeders.com", false },
- { "labrat.mobi", true },
+ { "labrat.mobi", false },
+ { "labspack.com", true },
{ "labtest.ltd", true },
+ { "lacaey.se", true },
{ "lacantine.xyz", true },
{ "lacaserita.org", true },
{ "lacaveducinquantenaire.com", true },
@@ -19645,8 +21806,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lachawoj.de", true },
{ "lachlan-harris.com", true },
{ "lachlan.com", true },
- { "lachlankidson.net", true },
{ "lachosetypo.com", true },
+ { "lachyoga-schwieberdingen.de", true },
{ "lacicloud.net", true },
{ "lacigf.org", true },
{ "laclaque.ch", true },
@@ -19656,47 +21817,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "laclefdor.ch", true },
{ "lacliniquefinanciere.com", true },
{ "lacoast.gov", true },
+ { "lacocinadelila.com", true },
{ "lacoquette.gr", true },
{ "lacyc3.eu", true },
- { "ladadate.com", true },
{ "ladbroke.net", true },
{ "ladenzeile.at", true },
- { "ladenzeile.de", true },
+ { "ladislavbrezovnik.com", true },
{ "ladraiglaan.com", true },
{ "lady-2.jp", true },
{ "ladyanna.de", true },
- { "ladybugjam.com", true },
+ { "ladyofhopeparish.org", true },
+ { "laermschmiede.de", 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 },
- { "lafka.org", true },
{ "lafkor.de", true },
{ "laflash.com", true },
- { "lafosseobservatoire.be", true },
- { "lag-gbr.gq", true },
{ "lagarderob.ru", false },
{ "lagazzettadigitale.it", true },
{ "lagerauftrag.info", true },
{ "lagit.in", true },
{ "laglab.org", false },
- { "lagodny.eu", false },
{ "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 },
+ { "laibcoms.com", true },
{ "lain.at", true },
+ { "lain.li", true },
{ "laindonleisure.co.uk", true },
{ "lak-berlin.de", true },
{ "lakarwebb.se", true },
- { "lakatrop.com", true },
{ "lakedavid.com.au", true },
{ "lakehavasucityhomebuyerscredit.com", true },
{ "lakehavasucitynews.com", true },
@@ -19714,48 +21874,70 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lakesherwoodlighting.com", true },
{ "lakesherwoodoutdoorlighting.com", true },
{ "lakeshowlife.com", true },
- { "lakewoodcomputerservices.com", true },
+ { "lakewoodcityglass.com", true },
+ { "lakhesis.net", true },
+ { "lakkt.de", true },
{ "lakonia.com.br", true },
{ "lalalab.com", true },
{ "lalaya.fr", true },
{ "laled.ch", true },
+ { "lalingua.ir", true },
{ "lalucioledigitale.com", true },
{ "lalunecreative.com", true },
{ "lalyre-corcelles.ch", true },
- { "lamaisondelatransformationculturelle.com", true },
{ "lamakat.de", true },
{ "lamapoll.de", true },
{ "lamarieealhonneur.com", false },
{ "lambauer.com", true },
+ { "lambdaof.xyz", true },
{ "lambertshealthcare.co.uk", true },
{ "lamboo.be", true },
{ "lamclam.site", true },
+ { "lamconnect.com", true },
{ "lame1337.xyz", true },
- { "lamiaposta.email", false },
+ { "lamed.se", true },
{ "lamikvah.org", true },
{ "laminine.info", true },
+ { "lammersmarketing.com", true },
+ { "lamontre.ru", true },
{ "lamp.re", false },
+ { "lamp24.se", true },
+ { "lampade.it", true },
+ { "lampara.es", true },
{ "lampegiganten.dk", true },
{ "lampegiganten.no", true },
{ "lampen24.be", true },
+ { "lampen24.nl", true },
{ "lampenwelt.at", true },
{ "lampenwelt.ch", true },
+ { "lampenwelt.de", true },
{ "lampposthomeschool.com", true },
- { "lan2k.org", true },
+ { "lampsh.ml", 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 },
{ "lancejames.com", true },
{ "lancelafontaine.com", true },
+ { "lancelhoff.com", true },
+ { "lancemanion.com", true },
{ "lanceyip.com", true },
- { "lancork.net", true },
{ "lancyvbc.ch", true },
{ "land.nrw", false },
+ { "landbetweenthelakes.us", true },
{ "landchecker.com.au", true },
{ "landflair-magazin.de", true },
{ "landhaus-christmann.de", true },
+ { "landhaus-havelse.de", true },
+ { "landinfo.no", true },
+ { "landingear.com", true },
+ { "landlordy.com", true },
{ "landofelves.net", true },
{ "landrovermerriamparts.com", true },
+ { "landscape-photography.org", true },
{ "landscapelightingagoura.com", true },
{ "landscapelightingagourahills.com", true },
{ "landscapelightingcalabasas.com", true },
@@ -19770,7 +21952,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "landscapelightingoakpark.com", true },
{ "landscapelightingpacificpalisades.com", true },
{ "landscapelightingsimivalley.com", true },
+ { "landscapelightingthousandoaks.com", true },
{ "landscapelightingwestlakevillage.com", true },
+ { "landscapephotography.org.au", true },
{ "landyparts.nl", true },
{ "lanetix.com", true },
{ "lanforalla.se", true },
@@ -19780,18 +21964,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "langguth.io", true },
{ "langkahteduh.com", true },
{ "langkawitrip.com", true },
+ { "langotie.com.br", true },
+ { "langsam-dator.se", true },
{ "langstreckensaufen.de", true },
+ { "languagecourse.net", true },
{ "languageterminal.com", true },
{ "langworth.com", true },
{ "langzijn.nl", true },
{ "lanna.io", true },
- { "lannainnovation.com", true },
{ "lanodan.eu", true },
{ "lanostrasalute.it", true },
{ "lanre.org", true },
{ "lanroamer.de", true },
{ "lansechensilu.com", true },
- { "lanseyujie.com", false },
{ "lanternalauth.com", true },
{ "lanternhealth.org", true },
{ "lantian.pub", true },
@@ -19804,8 +21989,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "laozhu.me", true },
{ "laparoscopia.com.mx", true },
{ "lapassiondutrading.com", true },
- { "laperfumista.es", true },
{ "lapetition.be", true },
+ { "lapicena.eu", true },
{ "lapidge.net", true },
{ "lapix.com.co", true },
{ "laplacesicherheit.de", true },
@@ -19813,12 +21998,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lapolla.com", true },
{ "lapotagere.ch", true },
{ "lapparente-aise.ch", true },
+ { "lappari.com", true },
+ { "lara.photography", true },
+ { "larabergmann.de", true },
{ "laracode.eu", true },
{ "laraeph.com", true },
{ "laraigneedusoir.com", true },
{ "laranara.se", true },
{ "laranjada.org", true },
{ "laraveldirectory.com", true },
+ { "laravelsaas.com", true },
{ "larbertbaptist.org", true },
{ "lareclame.fr", true },
{ "larepublicacultural.es", true },
@@ -19828,8 +22017,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lariscus.eu", true },
{ "larky.top", true },
{ "larondinedisinfestazione.com", true },
+ { "larotayogaming.com", true },
{ "larptreff.de", true },
{ "larraz.es", true },
+ { "larryli.cn", true },
{ "larrysalibra.com", true },
{ "lars-ewald.com", true },
{ "lars-mense.de", true },
@@ -19838,28 +22029,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "larsbauer.xyz", true },
{ "larsklene.nl", true },
{ "larsklint.com", true },
- { "larsmerke.de", 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 },
{ "laserpc.net", true },
{ "laserplaza.de", true },
{ "laserplaza.net", true },
{ "lasertechsolutions.com", true },
{ "lask.in", true },
{ "laskas.pl", true },
+ { "lasowy.com", true },
{ "laspequenassemillas.com", true },
+ { "lasrecetascocina.com", true },
{ "lasrecetasdeguada.com", true },
{ "lasse-it.dk", true },
{ "lasseleegaard.com", true },
{ "lasseleegaard.dk", true },
{ "lasseleegaard.net", true },
{ "lasseleegaard.org", true },
- { "lassesworld.com", true },
- { "lassesworld.se", true },
+ { "lastbutnotyeast.com", true },
{ "lastchancetraveler.com", true },
{ "lastharo.com", true },
{ "lastpass.com", false },
@@ -19867,48 +22059,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lastweekinaws.com", true },
{ "lasuzefc.fr", true },
{ "lat.sk", true },
- { "latabledebry.be", true },
{ "latabledemontebello.com", true },
{ "late.am", true },
{ "latecnosfera.com", true },
+ { "latedeals.co.uk", true },
{ "latemodern.com", true },
{ "latenitefilms.com", false },
{ "lateral.dog", true },
{ "lateralsecurity.com", true },
+ { "latestbuy.com.au", true },
{ "latestdeals.co.uk", true },
- { "lathen-wahn.de", true },
- { "latiendadelbebefeliz.com", true },
{ "latiendauno.com", true },
{ "latiendawapa.com", true },
+ { "latinmusicrecords.com", true },
{ "latino.dating", true },
- { "latinphone.com", true },
{ "latintoy.com", true },
{ "latitudesign.com", true },
- { "latour-managedcare.ch", true },
{ "latremebunda.com", true },
{ "latrine.cz", true },
- { "latterdaybride.com", true },
{ "lattyware.co.uk", true },
{ "lattyware.com", true },
{ "laubacher.io", true },
{ "lauchundei.at", true },
- { "lauensteiner.de", true },
- { "laufers.pl", true },
+ { "lauensteiner.de", false },
{ "laufpix.de", true },
{ "lauftreff-himmelgeist.de", true },
{ "laughinggrapepublishing.com", true },
{ "laukstein.com", true },
{ "launayflorian.net", true },
{ "launchkey.com", false },
+ { "launchmylifend.com", true },
{ "launchpad-app2.com", true },
{ "launchpadder2.com", true },
+ { "laupv.online", true },
{ "lauraandwill.wedding", false },
{ "lauraenvoyage.fr", true },
{ "laurakashiwase.com", true },
{ "lauraofrank.com", true },
{ "laurasplacefamilysupport.org.au", true },
{ "laurelblack.com", true },
+ { "laurenceplouffe.com", true },
{ "laurenlobue.com", true },
+ { "laurensvanderblom.nl", true },
{ "lauriemilne.com", true },
{ "lauriuc.sk", true },
{ "lausannedentiste.ch", true },
@@ -19926,31 +22118,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lavenderx.org", true },
{ "laviedalex.ovh", true },
{ "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 },
- { "lawrence-institute.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 },
- { "lazapateriahandmade.pe", 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 },
@@ -19958,24 +22154,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lbgconsultores.com", true },
{ "lbihrhelpdesk.com", true },
{ "lbls.me", true },
+ { "lbmblaasmuziek.nl", true },
{ "lbphacker.pw", true },
{ "lbs-logics.com", true },
{ "lbux.org", true },
- { "lc-cs.com", true },
+ { "lc-cs.com", false },
+ { "lc-promiss.de", true },
{ "lca-pv.de", true },
{ "lca.gov", true },
+ { "lcacommons.gov", true },
{ "lcars-sv.info", true },
{ "lce-events.com", true },
+ { "lcgaj.com", true },
{ "lcht.ch", false },
{ "lcrmscp.gov", true },
- { "lcy.cat", true },
- { "lcy.im", true },
+ { "lcy.im", false },
{ "lcy.moe", true },
- { "lcybox.com", true },
{ "ld-begunjscica.si", true },
{ "ldc.com.br", false },
- { "ldcraft.pw", true },
{ "ldjb.jp", true },
+ { "ldsun.com", true },
{ "le-bar.org", true },
{ "le-blog.ch", true },
{ "le-controle-parental.fr", true },
@@ -19988,38 +22186,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "le-palantir.com", true },
{ "le-traiteur-parisien.fr", true },
{ "le0.me", true },
+ { "le0yn.ml", true },
{ "le130rb.com", true },
{ "le23.fr", true },
{ "le42mars.fr", true },
{ "leadbox.cz", true },
{ "leaderoftheresistance.com", false },
{ "leaderoftheresistance.net", false },
+ { "leadership9.com", true },
{ "leadgenie.me", true },
{ "leadinfo.com", true },
{ "leadingsalons.com", true },
+ { "leadplan.ru", true },
{ "leadquest.nl", true },
+ { "leaf-consulting.de", 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 },
+ { "learndev.info", true },
{ "learnflakes.net", true },
{ "learnforestry.com", true },
{ "learning-id.com", true },
{ "learningis1.st", true },
{ "learninglaw.com", true },
{ "learningman.top", true },
+ { "learnlux.com", true },
{ "learnpianogreece.com", true },
{ "learnplayground.com", true },
{ "learntube.cz", true },
{ "leaseit24.com", true },
{ "leaseit24.de", true },
+ { "leaseplan.com", true },
{ "leasit.at", true },
{ "leasit.de", true },
{ "leastsignificantbit.de", true },
+ { "leatam.fr", true },
{ "leatherfurnitureexpo.com", true },
{ "leatherwood.nl", true },
{ "leavesofchangeweekly.org", true },
@@ -20030,29 +22238,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lebens-fluss.at", true },
{ "lebensraum-fitness-toenisvorst.de", true },
{ "lebensraum-im-garten.de", true },
+ { "lebensraum-kurse.ch", true },
{ "lebihan.pl", true },
{ "leblanc.io", true },
- { "lebosse.me", true },
{ "lebourgeo.is", true },
{ "lechaudrondupertuis.ch", true },
{ "leclaire.com.br", true },
{ "lecoinchocolat.com", true },
{ "lectricecorrectrice.com", true },
- { "led.xyz", true },
+ { "led-jihlava.cz", true },
{ "ledecologie.com.br", true },
{ "ledeguisement.com", true },
{ "lederer-it.com", true },
- { "ledlampor365.se", true },
+ { "ledlight.com", true },
{ "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", true },
- { "leeclemens.net", true },
+ { "leeclemens.net", false },
{ "leedev.org", true },
+ { "leekspin.ml", true },
{ "leelaylay.com", true },
{ "leere.me", true },
{ "leerliga.de", true },
@@ -20063,6 +22269,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leetcode.net", true },
{ "leetgamers.asia", true },
{ "leevealdc.com", true },
+ { "lefcoaching.nl", true },
{ "lefebvristes.com", true },
{ "lefebvristes.fr", true },
{ "leflibustier.ru", true },
@@ -20074,14 +22281,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "legadental.com", true },
{ "legaillart.fr", true },
{ "legalcontrol.info", true },
+ { "legaldesk.com", true },
{ "legalinmotion.es", true },
{ "legalrobot.com", true },
- { "legatofmrc.fr", true },
- { "legendarycamera.com", true },
{ "legendesdechine.ch", true },
{ "legendofkrystal.com", true },
{ "legends-game.ru", false },
{ "legible.es", true },
+ { "legilimens.de", true },
{ "legioniv.org", true },
{ "legiscontabilidade.com.br", true },
{ "legissa.ovh", true },
@@ -20089,47 +22296,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "legjobblogo.hu", true },
{ "legland.fr", true },
{ "legoutdesplantes.be", true },
- { "legumefederation.org", true },
+ { "legrandvtc.fr", true },
{ "legumeinfo.org", true },
{ "lehighmathcircle.org", true },
+ { "lehmitz-weinstuben.de", true },
{ "lehti-tarjous.net", true },
+ { "leibniz-gymnasium-altdorf.de", 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 },
- { "lelehei.com", true },
{ "lemarcheelagrandeguerra.it", true },
+ { "lemazol.fr", true },
{ "lemni.top", true },
{ "lemoine.at", true },
{ "lemondenumerique.com", true },
{ "lemondrops.xyz", true },
+ { "lemonlawnow.com", true },
{ "lemonop.com", true },
{ "lemonparty.co", true },
- { "lemonthy.ca", true },
+ { "lemonrockbiketours.com", true },
{ "lemonthy.com", true },
{ "lemouillour.fr", true },
{ "lemuslimpost.com", true },
{ "lenagroben.de", true },
{ "lenaneva.ru", true },
{ "lence.net", true },
- { "lenguajedeprogramacion.com", true },
+ { "lendahandmissionteams.org", true },
+ { "lendingclub.com", true },
+ { "lenget.com", true },
{ "lengzzz.com", true },
{ "lenidh.de", true },
{ "leninalbertop.com.ve", true },
{ "lennyobez.be", true },
+ { "lenou.nl", true },
{ "lenr-forum.com", true },
{ "lensdoctor.com", true },
{ "lenspirations.com", true },
@@ -20139,8 +22348,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 },
{ "leola.sk", true },
@@ -20148,19 +22355,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leominstercu.com", false },
{ "leon-tech.com", true },
{ "leon.net", true },
- { "leonauto.de", true },
{ "leonax.net", true },
+ { "leonbuitendam.nl", true },
{ "leondenard.com", true },
- { "leonhooijer.nl", false },
{ "leonklingele.de", true },
+ { "leonmahler.consulting", true },
+ { "leontiekoetter.de", true },
+ { "leopoldina.net", true },
+ { "leovanna.co.uk", true },
{ "leowkahman.com", true },
{ "lep.gov", true },
{ "lepenetapeti.com", true },
+ { "lepidum.jp", true },
{ "leponton-lorient.fr", true },
{ "leppis-it.de", true },
- { "leprado.com", true },
{ "lepsos.com", true },
{ "lequerceagriturismo.com", true },
+ { "lequest.dk", true },
{ "lereporter.ma", true },
{ "leretour.ch", true },
{ "lerku.com", true },
@@ -20172,17 +22383,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lernplattform-akademie.de", true },
{ "lerp.me", true },
{ "les-ateliers-de-melineo.be", true },
+ { "les-inoxydables.com", true },
{ "les-pingouins.com", true },
{ "lesaffre.es", true },
{ "lesancheslibres.fr", true },
{ "lesarts.com", true },
{ "lesberger.ch", true },
- { "lesbiansslaves.com", true },
- { "lesbofight.com", true },
+ { "lesbrillantsdaristide.com", true },
{ "leseditionsbraquage.com", true },
+ { "lesfilmsavivre.com", true },
{ "lesgoodnews.fr", true },
- { "lesharris.com", true },
- { "leshervelines.com", true },
{ "lesjardinsdemathieu.net", true },
{ "lesjardinsdubanchet.fr", true },
{ "lesmamy.ch", true },
@@ -20192,17 +22402,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lespecialiste-pradelexcellence.com", true },
{ "lesplatanes.ch", true },
{ "lespret.nl", true },
+ { "lesquerda.cat", false },
{ "lesscloud.com", true },
{ "lessets-graphiques.com", true },
- { "lessing.consulting", true },
{ "lessis.moe", true },
{ "lesterchan.net", true },
{ "lesterrassesdusoleil.ch", true },
{ "lesyndicat.info", true },
- { "let-go.cc", true },
{ "letemps.ch", true },
- { "letempsdunefleur.be", true },
- { "lethbridgecoffee.com", true },
+ { "letertrefleuri.com", true },
+ { "leto12.xyz", true },
+ { "letranif.net", true },
{ "lets-bounce.com", true },
{ "lets-go-acoustic.de", true },
{ "lets-ktai.jp", true },
@@ -20216,32 +22426,40 @@ 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 },
{ "leuthardtfamily.com", true },
{ "levans.fr", true },
{ "levanscatering.com", true },
+ { "level-10.de", true },
{ "levelaccordingly.com", true },
{ "levelcheat.com", true },
+ { "levelonetrainingandfitness.com", true },
+ { "leveluplv.com", true },
{ "leveluprails.com", true },
{ "levendwater.org", true },
{ "levensbron.nl", true },
{ "leverj.io", true },
{ "levermann.eu", true },
{ "leviaan.nl", true },
+ { "leviathan-studio.com", 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 },
@@ -20250,32 +22468,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lexicography.online", true },
{ "lexpierce.social", true },
{ "lexway.pk", true },
- { "lexxyn.nl", true },
{ "leymaritima.com", true },
{ "lezard-com.fr", true },
{ "lfashion.eu", true },
{ "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 },
- { "lgbtqventures.com", true },
- { "lgbtventures.com", true },
{ "lghfinancialstrategy.ch", true },
{ "lgpecasoriginais.com.br", true },
{ "lhajn.cz", true },
{ "lhakustik.se", true },
+ { "lhalbert.xyz", true },
+ { "lhamaths.online", false },
{ "lhconsult.tk", false },
- { "lheinrich.de", true },
+ { "lhero.org", true },
+ { "lhgavarain.com", true },
{ "lhost.su", true },
{ "li-ke.co.jp", true },
{ "li.search.yahoo.com", false },
+ { "lialion.de", true },
{ "liam-w.io", true },
- { "lian-in.com", true },
- { "lian-in.net", true },
- { "liang-li88.com", true },
- { "liang-li88.net", true },
- { "liangbp.com", true },
- { "lianwen.kim", true },
+ { "liamelliott.me", true },
+ { "liamlin.me", true },
{ "lianye1.cc", true },
{ "lianye2.cc", true },
{ "lianye3.cc", true },
@@ -20287,16 +22508,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "libbitcoin.org", true },
{ "libble.eu", true },
{ "liberapay.com", true },
+ { "liberation2020.com", true },
{ "liberdademg.com.br", true },
{ "libgame.com", true },
{ "libmpq.org", true },
{ "libnull.com", true },
+ { "libra.com", true },
{ "library-quest.com", true },
{ "libraryextension.com", true },
{ "libraryfreedomproject.org", false },
{ "librarytools.com", false },
{ "librazy.org", true },
{ "libre-service.de", true },
+ { "libre.cr", true },
{ "libre.university", true },
{ "libreboot.org", true },
{ "librebox.de", true },
@@ -20307,17 +22531,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "libreoffice-from-collabora.com", true },
{ "libreofficefromcollabora.com", true },
{ "librervac.org", true },
+ { "librosdescargas.club", true },
{ "libscode.com", false },
{ "libskia.so", true },
{ "libsodium.org", true },
{ "libstock.si", true },
- { "liceo.cn", true },
+ { "libzik.com", true },
{ "lichess.org", true },
{ "lichtmetzger.de", true },
{ "lichtspot.de", true },
{ "lichttechnik-tumler.com", true },
{ "lichttraeumer.de", true },
- { "lickmypussy.us", true },
{ "lickthesalt.com", true },
{ "lidavidm.me", true },
{ "lidel.org", true },
@@ -20333,34 +22557,48 @@ 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 },
+ { "life-like.com", true },
+ { "lifeartstudios.net", true },
{ "lifebetweenlives.com.au", true },
+ { "lifeboxhealthcare.co.uk", true },
{ "lifecism.com", true },
- { "lifecoach.tw", false },
+ { "lifeenrichmentnc.com", true },
+ { "lifefoto.de", true },
{ "lifegrip.com.au", true },
{ "lifeinhex.com", true },
{ "lifeinsurancepro.org", true },
+ { "lifeisabug.com", true },
{ "lifekiss.ru", true },
+ { "lifelenz.com", true },
{ "lifematenutrition.com", true },
{ "lifemstyle.com", true },
- { "lifenexto.com", true },
{ "lifeqa.net", true },
{ "lifequotes-uk.co.uk", true },
+ { "lifereset.it", true },
{ "lifesafety.com.br", true },
- { "lifestyle7788.com", true },
+ { "lifestylecent.com", true },
{ "lifestylefinancial.ca", true },
+ { "lifetree.network", true },
+ { "lifeupgame.fr", true },
{ "lifi.digital", true },
{ "lifi.is", true },
+ { "lift-wise.com", true },
{ "liftie.info", true },
+ { "ligadosgames.com", true },
{ "light-up.xyz", true },
{ "light.mail.ru", true },
{ "lightbox.co", true },
- { "lighthouseinstruments.com", true },
+ { "lightdream.tech", true },
{ "lighting-centres.co.uk", true },
{ "lightingagoura.com", true },
{ "lightingagourahills.com", true },
@@ -20382,112 +22620,129 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lightning.engineering", true },
{ "lightpics.net", true },
{ "lights.co.uk", true },
+ { "lights.ie", true },
+ { "lightscale.com", true },
+ { "lightsheep.no", true },
{ "lightspeed.com", false },
{ "lightspeedta.co", true },
{ "lightupcollective.co.uk", true },
+ { "lignite.com", true },
{ "lignoma.com", true },
{ "ligonier.com", true },
{ "lihaul.dnsalias.net", true },
- { "lijero.co", true },
{ "lijncoaching.nl", true },
- { "likc.me", true },
+ { "lijstje.be", true },
+ { "lijstje.nl", true },
{ "likeablehub.com", true },
{ "likeabox.de", true },
+ { "likebee.gr", true },
{ "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 },
+ { "lilliangray.co.za", 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 },
{ "limawi.io", true },
{ "limberg.me", true },
{ "limbo.services", true },
- { "limeburst.net", true },
+ { "limelabs.de", true },
+ { "limelabs.io", true },
{ "limeres.com", true },
{ "limereslaw.com", true },
{ "limitededitioncomputers.com", true },
{ "limitededitionsolutions.com", true },
- { "limitget.com", true },
{ "limitxyz.com", true },
- { "limn.me", true },
{ "limoairporttoronto.net", true },
{ "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 },
- { "lincsbouncycastlehire.co.uk", true },
{ "lindalap.fi", true },
+ { "lindaolsson.com", true },
{ "lindemann.space", true },
{ "linden.me", true },
{ "lindeskar.se", true },
+ { "lindholmen.club", true },
{ "lindnerhof-taktik.de", true },
{ "lindo.ru", true },
{ "lindon.pw", true },
{ "lindsayanderson.com", true },
+ { "lindsaygorski.com", true },
{ "lindskogen.se", true },
{ "lindy.co", false },
+ { "line-wise.com", true },
{ "line.biz", true },
{ "line.co.nz", true },
{ "lineageos.org", true },
{ "linearaudio.net", true },
{ "linearaudio.nl", true },
{ "linearmap.com", true },
- { "linernotekids.com", true },
{ "linfamilygc.com", true },
{ "lingerie.com.br", true },
{ "lingeriesilhouette.com", true },
{ "lingotaxi.com", true },
- { "lingting.vip", true },
{ "linguamilla.com", true },
+ { "linguatrip.com", false },
{ "lingvo-svoboda.ru", true },
{ "linherest.tk", true },
+ { "linhua.org", true },
{ "link-sanitizer.com", true },
{ "link2serve.com", true },
{ "linkat4.cz", true },
{ "linkdr.uk", true },
{ "linkedinbackground.com", true },
+ { "linkedpipes.com", true },
{ "linkenheil.org", true },
{ "linklocker.co", true },
{ "linkmaker.co.uk", true },
{ "linkmauve.fr", true },
- { "linkonaut.net", true },
+ { "linkopia.com", true },
+ { "linkstream.live", true },
{ "linkthis.me", true },
{ "linkthis.ml", true },
+ { "linkthisstatus.ml", true },
{ "linktio.com", true },
{ "linky.tk", true },
- { "linkybos.com", true },
{ "linkycat.com", true },
{ "linode.com", false },
{ "linost.com", true },
- { "linostassi.net", true },
+ { "linpx.com", true },
{ "linqhost.nl", true },
{ "linss.com", true },
+ { "lintellift.com", true },
{ "lintmx.com", true },
{ "linusdrop.tips", true },
+ { "linux-audit.com", true },
{ "linux-florida.com", true },
{ "linux-mint-czech.cz", true },
{ "linux-vme.org", true },
- { "linux.army", true },
{ "linux.cn", true },
{ "linux.conf.au", true },
{ "linux.fi", true },
- { "linux.im", true },
+ { "linux.pizza", true },
{ "linux3.org", true },
+ { "linuxadictos.com", true },
{ "linuxbabe.com", true },
{ "linuxbierwanderung.com", true },
{ "linuxchick.se", true },
@@ -20495,40 +22750,39 @@ 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 },
{ "linuxproperties.com", true },
+ { "linuxsecurity.expert", true },
{ "linx.li", true },
{ "linx.net", true },
- { "linxmind.eu", true },
{ "linzgau.de", true },
{ "linzyjx.com", true },
- { "lionhosting.nl", true },
{ "lionlyrics.com", true },
{ "lionsdeal.com", true },
{ "lipartydepot.com", true },
{ "lipex.com", true },
{ "lipoabaltimore.org", true },
+ { "lipthink.com", true },
{ "liqd.net", true },
{ "liquid.cz", true },
{ "liquidhost.co", true },
{ "liquidinternet.co", true },
{ "liquidradio.pro", true },
- { "liquidwarp.net", true },
- { "liquimoly.market", true },
+ { "liquipedia.net", true },
{ "lirion.de", true },
{ "liris-beautywelt.de", true },
{ "lirlandais.ch", true },
{ "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 },
- { "lisowski-development.com", true },
+ { "lisowski-development.com", false },
{ "listahu.org", true },
{ "listekdo.fr", true },
{ "listen.dk", true },
@@ -20538,9 +22792,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lists.stg.fedoraproject.org", true },
{ "litchidova.nl", true },
{ "litebit.eu", true },
+ { "litebitanalytics.eu", true },
{ "litebits.com", true },
{ "litemind.com", true },
{ "literarymachin.es", true },
+ { "literature-schools.com", true },
+ { "literaturpreis-bad-wurzach.de", true },
{ "litfin.name", true },
{ "lithan.com", true },
{ "lithesalar.se", true },
@@ -20548,6 +22805,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "litsovet.com", true },
{ "little-cake.com", true },
{ "littlebestfriend.de", true },
+ { "littleboutiqueshop.co.uk", true },
+ { "littleboutiqueshop.com", true },
+ { "littleboutiqueshop.uk", true },
+ { "littledev.nl", true },
{ "littlefairy.no", true },
{ "littlefamilyadventure.com", true },
{ "littlegreece.ae", true },
@@ -20556,10 +22817,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "littlepigcreek.com.au", true },
{ "littlepincha.fr", true },
{ "littleprincessandmascotparties.co.uk", true },
+ { "littleqiu.net", true },
+ { "littleredpenguin.com", true },
{ "littleredsbakeshop.com", true },
- { "littlericket.me", true },
+ { "littlericket.me", false },
{ "littlescallywagsplay.co.uk", true },
- { "littleservice.cn", true },
{ "littleskin.cn", true },
{ "littleswitch.co.jp", true },
{ "littlewatcher.com", true },
@@ -20569,9 +22831,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "liuboznaiko.eu", true },
{ "liudon.org", true },
{ "liufengyu.cn", true },
+ { "liul.in", true },
{ "liupeicheng.top", true },
{ "liv3d.stream", true },
+ { "livaniaccesorios.com", true },
{ "live4k.media", false },
+ { "livebandphotos.com", true },
{ "livebetterwith.com", true },
{ "livebythesun.de", true },
{ "livecards.co.uk", true },
@@ -20582,7 +22847,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "livedesign24.de", true },
{ "liveflightapp.com", true },
{ "liveforspeed.se", true },
- { "livejasmin.dk", true },
+ { "livehomecams.co.uk", true },
{ "livekaarten.be", true },
{ "livekaarten.nl", true },
{ "livekarten.at", true },
@@ -20600,60 +22865,83 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "livepath.ch", true },
{ "liveperformersmeeting.net", true },
{ "liveregistratie.nl", true },
- { "livesearch-fukuoka.com", true },
+ { "liverider.co.jp", true },
{ "livesheep.com", true },
{ "livesure.com", true },
+ { "livetoride.co.za", true },
{ "livetube.tv", true },
{ "livi.co", true },
+ { "livi.co.uk", true },
+ { "livi.fr", true },
{ "living-space.co.nz", true },
+ { "living.digital", true },
+ { "living.video", true },
{ "living24.de", true },
+ { "livingafrugallife.com", 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 },
- { "livroseuniformes.com.br", true },
- { "lixiaojiang.ga", true },
+ { "livres-et-stickers.com", true },
+ { "lixiaoyu.live", true },
{ "lixtick.com", true },
+ { "liyang.pro", false },
{ "liyin.date", true },
- { "liyinjia.com", true },
+ { "liyunbin.com", true },
{ "liz.ee", true },
{ "lizardsystems.com", true },
+ { "lizheng.de", true },
{ "lizhi.io", true },
{ "lizhi123.net", true },
+ { "lizmooredestinationweddings.com", true },
{ "lizzaran.io", true },
- { "lizzythepooch.com", true },
- { "ljason.cn", true },
+ { "lizzwood.com", true },
+ { "ljc.ro", true },
{ "ljs.io", true },
+ { "ljskool.com", true },
+ { "ljusdalsnaprapatklinik.se", true },
{ "lk-hardware.cz", true },
{ "lknw.de", true },
{ "lkp111138.me", true },
{ "llamacuba.com", true },
+ { "llamasweet.tech", 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 },
+ { "lmbyrne.co.uk", true },
+ { "lmbyrne.com", true },
{ "lmcm.io", true },
{ "lmddgtfy.net", true },
- { "lmerza.com", true },
{ "lmintlcx.com", true },
+ { "lmmi.nl", true },
{ "lmmtfy.io", true },
{ "lmsptfy.com", true },
{ "lmtls.me", true },
{ "lmtm.eu", true },
+ { "lmtravis.com", true },
+ { "lng-17.org", true },
{ "lnhequipmentltd.com", true },
{ "lntu.org", true },
{ "lnx.li", true },
+ { "lnyltx.cn", true },
{ "load-ev.de", true },
- { "loadingdeck.com", false },
{ "loadlow.me", true },
{ "loadwallet.com", true },
- { "loafhead.me", true },
{ "loanaway.ca", true },
{ "loancompare.co.za", true },
{ "loandolphin.com.au", true },
+ { "loanreadycredit.com", true },
{ "loanstreet.nl", true },
+ { "lob-assets-staging.com", true },
+ { "lob-assets.com", true },
{ "lob-staging.com", true },
{ "lob.com", true },
{ "lobivia.de", true },
@@ -20662,15 +22950,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "local360.net", true },
{ "localbandz.com", true },
{ "localbitcoins.com", true },
- { "localblitz.com", true },
{ "localblock.co.za", true },
{ "localbouncycastle.com", true },
- { "localdata.us", true },
{ "localdecor.com.br", true },
+ { "localea.com", true },
{ "localethereum.com", true },
{ "localhorst.duckdns.org", true },
- { "localhorst.xyz", false },
{ "localhost.ee", true },
+ { "localprideart.com", true },
+ { "localsource.eu", true },
{ "localspot.pl", true },
{ "locapos.com", true },
{ "location-fichier-email.com", true },
@@ -20678,26 +22966,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locationvoitureangleterre.com", true },
{ "locationvoitureaustralie.com", true },
{ "locationvoiturebelgique.com", true },
- { "locationvoiturecorse.net", true },
{ "locationvoitureespagne.com", true },
{ "locationvoitureitalie.com", true },
{ "locationvoitureportugal.com", true },
{ "locatorplus.gov", true },
{ "locauxrama.fr", true },
- { "locker.email", true },
{ "locker.plus", true },
- { "lockify.com", true },
+ { "locklock.com.br", true },
+ { "locklockbrasil.com.br", true },
+ { "locknlock.com.br", true },
+ { "locknlockbrasil.com.br", true },
{ "lockpick.nl", true },
{ "lockpicks.se", true },
{ "lockr.io", true },
+ { "locksmith-sanantonio-tx.com", true },
{ "locksmithbalchsprings.com", true },
+ { "locksmithballito.com", true },
+ { "locksmithbluff.co.za", true },
+ { "locksmithdearborn.com", true },
+ { "locksmithedmonds.com", true },
+ { "locksmithfriendswoodtexas.com", true },
{ "locksmithgarland-tx.com", true },
{ "locksmithgrapevinetx.com", true },
+ { "locksmithhumbletx.com", true },
+ { "locksmithindurban.co.za", true },
+ { "locksmithlivoniami.com", true },
+ { "locksmithmadisonheights.com", true },
{ "locksmithmesquitetx.com", true },
+ { "locksmithmissouricity.com", true },
+ { "locksmithopen.com", true },
+ { "locksmithsammamishwa.com", true },
+ { "locksmithsanantoniotexas.com", true },
+ { "locksmithscottsdaleaz.com", true },
+ { "locksmithseattleco.com", true },
+ { "locksmithservice-houston.com", true },
{ "locksmithspring.com", true },
+ { "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 },
{ "lodewijkict.nl", true },
@@ -20714,13 +23025,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "logement.com", true },
{ "logentries.com", false },
{ "logexplorer.net", true },
- { "logicchen.com", true },
+ { "logfile.at", 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 },
{ "login.launchpad.net", true },
@@ -20744,44 +23057,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "logue.be", true },
{ "logze.nl", true },
{ "lohanaflores.com.br", true },
+ { "lohmeier.it", true },
{ "loichot.ch", true },
+ { "loigiai.net", true },
+ { "loihay.net", true },
{ "lojadamimo.com.br", true },
{ "lojadanidrea.com.br", true },
{ "lojadarenda.com.br", true },
{ "lojadewhisky.com.br", true },
{ "lojadoarcomprimido.com.br", true },
- { "lojadoprazer.com.br", true },
{ "lojadosomautomotivo.com.br", true },
{ "lojafazendoarte.com.br", true },
{ "lojafilipaper.com.br", true },
- { "lojahunamarcenaria.com.br", true },
{ "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 },
- { "lojatema.com.br", true },
{ "lojaterrazul.com.br", true },
{ "lojavirtualfc.com.br", true },
- { "lojavirtualfct.com.br", true },
{ "lojavisamed.com.br", true },
{ "lojix.com", true },
{ "lojj.pt", true },
{ "lok.space", true },
{ "lokaal.org", true },
+ { "loker.id", true },
{ "loket.nl", true },
{ "lolcorp.pl", true },
{ "lolcow.farm", true },
+ { "lolhax.org", true },
+ { "loli.ee", 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 },
- { "lolis.stream", true },
{ "lolkot.ru", true },
+ { "lolly.cc", true },
{ "lolnames.gg", true },
{ "lolpatrol.de", true },
{ "lolpatrol.wtf", true },
@@ -20791,22 +23108,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lon-so.com", true },
{ "lona.io", true },
{ "lonal.com", true },
- { "lonasdigital.com", true },
{ "london-transfers.com", true },
{ "london.dating", true },
{ "londongallery.net", true },
{ "londongynaecologist.co", true },
{ "londonkan.jp", true },
{ "londonkeyholdingcompany.co.uk", true },
- { "londonseedcentre.co.uk", true },
{ "lonelytweets.com", true },
{ "lonesomecosmonaut.com", true },
+ { "lonestarlandandcommercial.com", true },
+ { "long-journey.com", true },
+ { "longboat.io", true },
{ "longhaircareforum.com", true },
{ "longhorn-imports.com", true },
{ "longhorn.id.au", true },
- { "longma.pw", true },
{ "longstride.net", true },
- { "longtaitouwang.com", true },
+ { "longtermcare.gov", true },
{ "lonniec.com", true },
{ "lonniemason.net", true },
{ "look.co.il", true },
@@ -20824,21 +23141,28 @@ 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 },
{ "loom.no", true },
- { "loony.info", true },
- { "loopower.com", true },
+ { "loopstart.org", true },
+ { "looseleafsecurity.com", true },
{ "loothole.com", true },
{ "loovto.net", true },
{ "loposchokk.com", true },
{ "loqu8.com", true },
+ { "loquo.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 },
{ "losreyesdeldescanso.com.ar", true },
@@ -20846,9 +23170,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lost.report", true },
{ "lostkeys.co.uk", true },
{ "lostserver.com", true },
- { "lostwithdan.com", true },
- { "loteks.de", true },
+ { "loteamentomontereiitu.com.br", true },
{ "lothlorien.ca", false },
+ { "lotl.ru", true },
{ "lotn.mobi", true },
{ "lotn.nl", true },
{ "lotnonline.com", true },
@@ -20861,35 +23185,40 @@ 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 },
+ { "loveai.org", true },
{ "loveandadoreboutique.com", true },
- { "lovebo9.com", true },
- { "lovebo9.net", true },
+ { "lovebigisland.com", 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 },
+ { "lovemiku.info", true },
{ "lovemomiji.com", true },
{ "lovenwishes.com", true },
{ "loveph.one", true },
{ "lover-bg.com", true },
- { "loveread-ec.appspot.com", true },
{ "loverepublic.ru", true },
{ "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 },
@@ -20897,57 +23226,65 @@ 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 },
- { "lpacademy.com.br", true },
+ { "lprcommunity.co.za", true },
{ "lpt-nebreziny.eu", true },
{ "lra-cloud.de", true },
- { "lrhstsa.com", true },
+ { "lrdo.net", true },
+ { "lriese.ch", true },
{ "lrssystems.com", true },
{ "ls-alarm.de", true },
{ "lsal.me", true },
{ "lsc-dillingen.de", true },
{ "lsc.gov", true },
- { "lshiy.com", true },
+ { "lsmpx.com", true },
{ "lsquo.com", true },
- { "lsws.de", true },
+ { "lsscreens.de", true },
+ { "lsys.ac", true },
{ "lt.search.yahoo.com", false },
{ "ltaake.com", true },
{ "ltecode.com", true },
{ "ltib.com.au", true },
{ "ltls.org", true },
{ "ltn-tom-morel.fr", true },
+ { "lty.space", true },
{ "lu.search.yahoo.com", false },
{ "luan.ma", true },
{ "luav.org", true },
{ "lubar.me", true },
{ "lubbockyounglawyers.org", true },
{ "lublin.toys", true },
- { "lubomirkazakov.com", true },
{ "luc-oberson.ch", true },
+ { "luca-steeb.com", true },
{ "luca.swiss", true },
- { "lucacastelnuovo.nl", true },
+ { "lucacastelnuovo.nl", false },
+ { "lucafontana.net", true },
{ "lucafrancesca.me", true },
- { "lucakrebs.de", true },
{ "lucasantarella.com", true },
- { "lucascantor.com", true },
+ { "lucasbergen.ca", true },
{ "lucasem.com", true },
+ { "lucasgaland.com", true },
{ "lucasgymnastics.com", true },
{ "lucaslarson.net", true },
- { "lucassoler.com.ar", true },
+ { "lucassoler.com.ar", false },
{ "luce.life", true },
+ { "luchscheider.de", false },
{ "lucid-light.de", true },
{ "lucidframeworks.com", true },
{ "lucidlight.de", true },
{ "lucidoccult.com", true },
+ { "lucie.jp", true },
{ "lucielavickova.com", true },
{ "luckycastles.co.uk", true },
- { "luckydog.pw", true },
{ "luckyfrog.hk", true },
- { "luckystarfishing.com", 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 },
@@ -20956,6 +23293,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ludwig.im", true },
{ "ludwiggrill.de", true },
{ "ludwigjohnson.se", true },
+ { "ludwigpro.net", true },
{ "luedeke-bremen.eu", true },
{ "luehne.de", true },
{ "luelistan.net", true },
@@ -20965,71 +23303,85 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luftbild-siegerland.de", true },
{ "luftreiniger.biz", true },
{ "lufu.io", true },
- { "luganskservers.net", true },
{ "lugbb.org", true },
+ { "lugimax.com", true },
{ "luginbuehl.be", true },
- { "luginbuehl.eu", true },
{ "lugui.in", true },
{ "lui.pink", true },
{ "luiscapelo.info", true },
{ "luismaier.de", true },
{ "luisyr.com", true },
- { "luizkowalski.net", true },
{ "luk.earth", true },
{ "lukas-gorr.de", true },
+ { "lukas-meixner.com", true },
{ "lukas-oppermann.de", true },
- { "lukas-schauer.de", true },
- { "lukas.im", true },
- { "lukas2511.de", true },
{ "lukasberan.com", true },
{ "lukasberan.cz", true },
{ "lukasfunk.com", true },
{ "lukasoppermann.com", true },
{ "lukasoppermann.de", true },
- { "lukasschauer.de", true },
{ "lukasschick.de", false },
{ "lukaszorn.de", true },
{ "lukaszwojcik.net", true },
{ "lukatz.de", true },
{ "luke.ch", true },
+ { "luke6887.me", true },
{ "lukeistschuld.de", true },
- { "lukem.eu", true },
{ "lukem.net", true },
{ "lukeng.net", true },
{ "lukesbouncycastlehire.com", true },
{ "lukestebbing.com", true },
+ { "lukesutton.info", true },
{ "lukmanulhakim.id", true },
{ "lukull-pizza.de", true },
+ { "luloboutique.com", true },
+ { "lumbercartel.ca", true },
+ { "lumen.sh", true },
{ "lumi.pw", true },
{ "lumiere.com", true },
+ { "luminaire.fr", true },
{ "luminaires-online.fr", true },
{ "lumitop.com", true },
+ { "lumminary.com", true },
{ "lunafag.ru", true },
{ "lunakit.org", true },
+ { "lunalove.de", true },
{ "lunanova.moe", true },
{ "lunapps.com", true },
{ "lunar6.ch", true },
+ { "lunarichter.de", true },
{ "lunarlog.com", true },
{ "lunarshark.com", true },
{ "lunarsoft.net", true },
{ "lunartail.nl", true },
{ "lunasqu.ee", true },
+ { "lunastrail.com", true },
+ { "lunazacharias.com", true },
+ { "lunchbunch.me", true },
{ "lune-indigo.ch", true },
{ "lungta.pro", true },
{ "lunidea.ch", true },
{ "lunidea.com", true },
{ "lunis.net", true },
- { "lunix.io", true },
- { "lunorian.is", false },
+ { "lunorian.is", true },
+ { "luodaoyi.com", true },
+ { "luody.info", true },
{ "luoe.me", true },
{ "luoh.cc", true },
{ "luoh.me", true },
{ "luohua.im", true },
{ "luongvu.com", true },
+ { "luoshifeng.com", true },
+ { "luowu.cc", true },
+ { "lupa.cz", true },
+ { "lupecode.com", true },
{ "lupinencyclopedia.com", true },
+ { "lupinenorthamerica.com", true },
+ { "luqsus.pl", true },
+ { "lusitom.com", true },
{ "luso-livros.net", true },
- { "lusteniny.cz", false },
- { "lustige-zitate.com", true },
+ { "lusoft.cz", true },
+ { "lusteniny.cz", true },
{ "lustin.fr", true },
{ "lustrum.ch", true },
{ "lusynth.com", true },
@@ -21041,10 +23393,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lutoma.org", true },
{ "luukdebruincv.nl", true },
{ "luukklene.nl", true },
+ { "luukuton.fi", true },
{ "luuppi.fi", true },
{ "luvare.com", true },
{ "luvbridal.com.au", true },
- { "luxescreenprotector.nl", true },
+ { "luxcraft.eng.br", true },
+ { "luxescreenprotector.nl", false },
+ { "luxfosdecoenterprise.com", true },
{ "luxsci.com", true },
{ "luxurynsight.net", true },
{ "luxurytimepieces.net", true },
@@ -21058,59 +23413,66 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luzfaltex.com", true },
{ "lv.search.yahoo.com", false },
{ "lv0.it", true },
+ { "lvftw.com", true },
+ { "lvguitars.com", true },
{ "lvmoo.com", true },
{ "lvrsystems.com", true },
{ "lw-addons.net", true },
- { "lwhate.com", true },
+ { "lwl.moe", true },
{ "lwl12.com", true },
{ "lxd.cc", true },
{ "lxd.pm", true },
+ { "lyam.fr", true },
{ "lycee-saintjoseph-mesnieres.fr", true },
{ "lychankiet.name.vn", false },
{ "lydudlejning.net", true },
- { "lyfbits.com", true },
{ "lyftrideestimate.com", true },
{ "lykai.ca", true },
{ "lymia.moe", true },
{ "lynero.dk", true },
{ "lyness.io", true },
{ "lyngvaer.no", true },
- { "lynkos.com", true },
{ "lynnlaytonnissanparts.com", true },
{ "lynnmosher.com", true },
+ { "lynsec.com", true },
{ "lynthium.com", true },
{ "lynx.nl", true },
{ "lynxbroker.de", true },
{ "lynxpro.nl", true },
{ "lyon-interactive.com", true },
{ "lyon-synergie.com", true },
- { "lyoness.digital", true },
{ "lyrical-nonsense.com", true },
{ "lyricfm.ie", true },
{ "lys.ch", true },
+ { "lysdeau.be", true },
{ "lyst.co.uk", true },
+ { "lyukaacom.ru", true },
{ "lyuly.com", true },
{ "lyx.dk", true },
- { "lz.sb", true },
+ { "lzcreation.com", true },
+ { "lzh.one", true },
+ { "lzwc.nl", 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-warrior.tk", true },
{ "m.facebook.com", true },
{ "m.mail.ru", true },
{ "m.me", true },
{ "m0t0k1ch1.com", true },
{ "m132.eu", true },
+ { "m134.eu", true },
{ "m2epro.com", true },
+ { "m2il.co", true },
{ "m2os.com", true },
+ { "m4g.ru", true },
{ "m4rcus.de", true },
{ "ma-eir.nl", true },
- { "ma-plancha.ch", true },
{ "ma2t.com", true },
{ "maartenderaedemaeker.be", true },
{ "maartenvandekamp.nl", true },
@@ -21121,27 +23483,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mabankonline.com", true },
{ "mabulledu.net", true },
{ "mac-i-tea.ch", true },
- { "mac-world.pl", true },
+ { "mac-service-stockholm.se", true },
+ { "mac-servicen.se", true },
+ { "mac-support.nu", true },
+ { "mac-support.se", true },
+ { "mac.biz.tr", true },
{ "mac1.net", true },
{ "macaw.nl", true },
{ "macaws.org", true },
+ { "macbook.es", true },
{ "maceinturecuir.com", true },
{ "maces-net.de", true },
+ { "macgeneral.de", true },
{ "macgenius.com", true },
{ "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 },
- { "maciespartyhire.co.uk", true },
{ "macil.tech", true },
{ "macinyasha.net", true },
{ "macker.io", true },
- { "mackey7.net", true },
{ "mackeysack.com", true },
{ "mackiehouse.ca", true },
{ "macksproductions.in", true },
@@ -21156,8 +23522,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "macosxfilerecovery.com", true },
{ "macoun.de", true },
{ "macros.co.jp", true },
- { "macstore.pe", true },
+ { "macsupportnacka.se", true },
+ { "macsupportstockholm.se", true },
{ "mactools.com.co", true },
+ { "mad.ninja", true },
{ "madae.nl", true },
{ "madandpissedoff.com", true },
{ "madars.org", false },
@@ -21171,34 +23539,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "made-in-earth.co.jp", true },
{ "madebydusk.com", true },
{ "madebyshore.com", true },
- { "madeglobal.com", true },
{ "madeinchezmoi.net", true },
{ "madeinstudio3.com", true },
{ "madeitwor.se", true },
{ "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 },
+ { "madmax-store.gr", true },
{ "madoka.nu", true },
- { "madokami.net", true },
- { "madpeople.net", true },
+ { "madokami.pw", true },
{ "madreacqua.org", true },
+ { "madrecha.com", true },
+ { "madreshoy.com", true },
{ "madridartcollection.com", true },
+ { "madscientistwebdesign.com", true },
{ "madtec.de", true },
{ "madusecurity.com", true },
{ "mae-berlinistanbul.com", true },
{ "maedchenflohmarkt.at", true },
{ "maedchenflohmarkt.de", true },
+ { "maeln.com", true },
{ "maelstrom-fury.eu", true },
{ "maelstrom.ninja", true },
{ "maeplasticsurgery.com", true },
- { "maerzpa.de", true },
{ "maestrano.com", true },
{ "maff.co.uk", true },
- { "maff.scot", false },
{ "mafia.network", true },
{ "mafiaforum.de", true },
{ "mafiapenguin.club", true },
@@ -21212,46 +23582,64 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magazin3513.com", true },
{ "magazinedotreino.com.br", true },
{ "magdic.eu", true },
+ { "magebit.com", true },
{ "magenda.sk", true },
{ "magentaize.net", true },
{ "magentapinkinteriors.co.uk", true },
{ "magentoeesti.eu", true },
+ { "magepro.fr", true },
{ "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 },
+ { "magicamulet.me", true },
+ { "magicball.co", true },
{ "magicbroccoli.de", true },
+ { "magiccards.info", true },
{ "magicdaysomagh.co.uk", true },
- { "magickmoments.co.uk", true },
+ { "magicdlp.com", true },
{ "magiclen.org", true },
{ "magicspaceninjapirates.de", true },
{ "magictable.com", true },
{ "magicvodi.at", true },
{ "magilio.com", true },
+ { "magnacarebroker.com", true },
+ { "magnate.co", true },
{ "magnatronic.com.br", true },
{ "magneticattraction.com.au", true },
{ "magnetpass.uk", true },
{ "magnets.jp", true },
{ "magnettracker.com", true },
+ { "magnificatwellnesscenter.com", true },
{ "magnificentdata.com", true },
{ "magnoliadoulas.com", true },
{ "magnoliastrong.com", true },
+ { "magnunbaterias.com.br", true },
+ { "magodaoferta.com.br", true },
{ "magonote-nk.com", true },
+ { "magravsitalia.com", true },
+ { "magu.kz", true },
{ "maguire.email", true },
{ "magwin.co.uk", true },
+ { "mah-nig.ga", true },
{ "mahai.me", true },
{ "mahatmayoga.org", true },
{ "mahefa.co.uk", true },
+ { "mahjong-navi.com", true },
{ "mahjong.org", true },
+ { "mahjongrush.com", true },
{ "mahrer.net", true },
{ "maiaimobiliare.ro", true },
{ "maidoty.net", true },
{ "maiebanatulfruncea.com", true },
{ "maijia800.com", true },
{ "maikolfish.it", true },
+ { "mail-de.jp", true },
{ "mail-rotter.de", true },
{ "mail-settings.google.com", true },
{ "mail.com", true },
@@ -21259,6 +23647,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 },
@@ -21269,50 +23658,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mailjet.tech", true },
{ "maillady-susume.com", true },
{ "mailmag.net", false },
- { "mailpenny.com", true },
+ { "mailnara.co.kr", true },
+ { "mailtelligent.com", true },
{ "mailto.space", true },
- { "mailum.org", true },
+ { "mailum.org", false },
{ "mainechiro.com", true },
{ "mainframeserver.space", true },
{ "mainlined.org", true },
- { "mainston.com", true },
{ "maintenance-traceur-hp.fr", true },
{ "mainzelmaennchen.net", true },
{ "maioresemelhores.com", true },
{ "maisgasolina.com", true },
+ { "maison-haimard.fr", true },
{ "maisondoree.be", true },
{ "maisonpaulmier.fr", true },
{ "maispa.com", true },
{ "maisretorno.com", true },
{ "maisvitaminas.com.br", true },
- { "maitrechaton.fr", true },
+ { "maitemerino.net", true },
+ { "maitheme.com", true },
{ "maitrise-orthopedique.com", true },
{ "majahoidja.ee", true },
{ "majaweb.cz", true },
- { "majemedia.com", true },
+ { "majemedia.com", false },
{ "majesnix.org", 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 },
+ { "makedonija.net.mk", true },
{ "makem-bounce.co.uk", true },
- { "makemejob.com", true },
{ "makenaiyo-fx.com", true },
{ "makera.ga", true },
{ "makersatwork.com", true },
{ "maketheneighborsjealous.com", true },
{ "makeurbiz.com", true },
- { "makeyourlaws.org", true },
+ { "maki-chan.de", true },
{ "makinen.ru", true },
{ "makkusu.photo", true },
+ { "makkyon.com", true },
+ { "makos.jp", true },
{ "makowitz.cz", true },
{ "maktoob.search.yahoo.com", false },
{ "maku.edu.tr", true },
@@ -21323,6 +23718,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "malaysian.dating", true },
{ "maldives.cx", true },
{ "malenyflorist.com.au", true },
+ { "maler-marschalleck.de", true },
{ "malermeister-haussmann.de", true },
{ "malesoowki.blog", true },
{ "malezan.com", true },
@@ -21330,6 +23726,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 },
@@ -21337,7 +23734,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "malinator.net", false },
{ "malinheadview.ie", true },
{ "maljaars-fotografie.nl", true },
- { "malkaso.com.ua", true },
{ "mall.cz", true },
{ "mall.hr", true },
{ "mall.hu", true },
@@ -21345,21 +23741,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mall.sk", true },
{ "mallach.net", true },
{ "mallhonda.com", true },
- { "mallner.me", true },
{ "mallonline.com.br", true },
{ "malmoesport.se", true },
{ "malnex.de", true },
{ "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 },
- { "malwareverse.us", true },
+ { "malwaretips.com", false },
{ "maly.cz", true },
- { "maly.io", false },
{ "malyshata.com", true },
{ "malysvet.net", true },
{ "mamaasia.info", true },
@@ -21368,42 +23761,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
- { "mamout.xyz", true },
{ "mamuko.nl", true },
- { "man3s.jp", true },
- { "manaboutahor.se", false },
+ { "man3s.jp", false },
+ { "mana.ee", true },
{ "manach.net", true },
{ "manage.cm", true },
{ "manage4all.de", true },
{ "manageathome.co.uk", true },
{ "management-companie.ro", true },
- { "management-ethics.com", true },
{ "managementboek.nl", true },
{ "managementfeedback.com", true },
+ { "managementforstartups.com", true },
{ "manageprojects.com", false },
{ "manager-efficacement.com", true },
{ "manager.linode.com", false },
{ "managewp.org", true },
+ { "manaonetrading.com", true },
+ { "manatees.com.au", true },
{ "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 },
{ "manfredi.io", true },
{ "manfredimatteo.com", true },
{ "manfredschafer.ch", true },
- { "mangapoi.com", true },
- { "mangaristica.com", true },
+ { "mangahigh.com", true },
+ { "mangaristica.com", false },
+ { "mangnhuapvc.com.vn", true },
+ { "mangotwoke.co.uk", true },
{ "manhattanchoralensemble.org", true },
{ "manhole.club", true },
{ "manhuagui.com", true },
@@ -21412,46 +23810,53 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maniorpedi.com", true },
{ "maniosglass.gr", true },
{ "manipil.ch", true },
+ { "maniw.com", true },
{ "manja-und-martin.de", true },
{ "manjaro.ru", true },
{ "mankans.com", true },
+ { "manmeetgill.com", true },
+ { "manneguiden.no", true },
{ "mannheimbloggt.tk", true },
{ "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 },
- { "mansiontech.cn", 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 },
{ "manuall.info.tr", true },
+ { "manuall.it", true },
{ "manuall.ro", true },
+ { "manuall.se", true },
{ "manualscollection.com", true },
{ "manuel-herrmann.de", true },
{ "manuel-schefczyk.de", true },
- { "manuel7espejo.com", true },
{ "manuelahidalgo.org", true },
{ "manueldopheide.com", true },
{ "manueli.de", true },
{ "manuelpinto.in", false },
{ "manufacturing.gov", true },
+ { "manufacturinginmexico.org", true },
{ "manufacturingusa.com", true },
- { "manuscript.com", true },
{ "manuscriptlink.com", true },
{ "manutd.org.np", true },
{ "manuth.life", true },
- { "manutrol.com.br", true },
{ "manwithavan.co.uk", true },
{ "manyetikboya.com", true },
{ "manyiu.com", true },
{ "manylots.ru", true },
{ "manyue.org", true },
{ "maoi.re", true },
- { "maomaobt.com", true },
{ "maomihz.com", true },
{ "maone.net", true },
{ "maorseo.com", true },
@@ -21460,23 +23865,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maozedong.red", true },
{ "map4erfurt.de", true },
{ "map4jena.de", true },
+ { "mapasmundi.com.br", true },
{ "mapblender.com", true },
+ { "mapchange.org", true },
{ "mapeo.io", true },
{ "maplanetebeaute.fr", true },
+ { "maplegate.info", true },
+ { "maplehome.tk", true },
{ "mapletime.com", true },
- { "mapservices.nl", true },
+ { "maps.net", true },
+ { "mapstack.org", true },
{ "maquettage.com", true },
- { "maquillage-permanent-tatoo.com", true },
{ "maquinariaspesadas.org", true },
+ { "maquinasdecoserplus.com", true },
{ "mar-eco.no", true },
{ "marabumadrid.com", false },
+ { "marabunta.io", true },
{ "marakovits.net", true },
{ "marble.com", true },
{ "marbogardenlidkoping.se", true },
+ { "marbree.eu", true },
{ "marc-hammer.de", true },
{ "marc-schlagenhauf.de", true },
{ "marcaixala.me", true },
- { "marcaudefroy.com", true },
+ { "marcbeije.com", true },
+ { "marcberndtgen.de", true },
+ { "marcceleiro.cat", true },
+ { "marcceleiro.com", true },
{ "marceau.ovh", true },
{ "marcel-preuss.de", true },
{ "marcel-veronetzki.de", true },
@@ -21486,75 +23901,92 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marcelinofranchini.info", true },
{ "marcelinofranchini.net", true },
{ "marcelinofranchini.org", true },
+ { "marcelkooiman.com", true },
{ "marcelpreuss.de", true },
+ { "marcelsiegert.com", true },
{ "marcelwaldvogel.ch", true },
{ "marcelwiedemeier.com", true },
{ "marcelwolf.coach", true },
- { "marcgoertz.de", false },
+ { "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-kretz.de", true },
{ "marco-polo-reisen.com", true },
{ "marcocasoni.com", true },
- { "marcohager.de", true },
{ "marcoherten.com", true },
+ { "marcoklomp.nl", true },
+ { "marcoslater.com", true },
+ { "marcusds.ca", true },
{ "marcuskoh.com", true },
- { "marcusserver.synology.me", true },
{ "marcusstafford.com", true },
{ "marechal-company.com", true },
+ { "marek.pro", true },
{ "marek.su", true },
- { "mareklecian.cz", true },
{ "marelijah.org", true },
{ "margagriesser.de", true },
- { "margan.ch", true },
+ { "margays.de", true },
{ "margecommunication.com", true },
{ "margo-co.ch", true },
- { "margo.ml", true },
{ "margotlondon.co.uk", true },
- { "mariacristinadoces.com.br", true },
+ { "margots.biz", true },
+ { "margots.life", true },
+ { "margots.tech", true },
+ { "marguerite-maison.fr", true },
{ "mariage-photo.ch", true },
+ { "mariaheidemann.nl", true },
{ "marianatherapy.com", true },
{ "marianelaisashi.com", true },
{ "marianhoenscheid.de", true },
{ "mariannenan.nl", true },
{ "mariannethijssen.nl", true },
- { "mariaolesen.dk", true },
{ "mariapietropola.com", true },
+ { "mariatash.com", true },
+ { "marie-elisabeth.dk", false },
{ "mariehane.com", true },
{ "mariemiramont.fr", true },
{ "mariereichl.cz", true },
+ { "marijnfidder.nl", true },
{ "marikafranke.de", true },
{ "marilsnijders.nl", true },
{ "marilynmartin.com.au", true },
{ "marilynstreats.com", true },
{ "marin-business-center.ch", true },
+ { "marin-dom.ru", true },
{ "marin-tullet.com", true },
{ "marinazarza.es", true },
{ "marinbusinesscenter.ch", true },
{ "marine.gov", true },
{ "marinekaplama.com", true },
+ { "marinela.com.mx", false },
+ { "marinelausa.com", false },
{ "marines-shop.com", true },
{ "mario.party", false },
- { "marioabela.com", true },
{ "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 },
+ { "mark-dietzer.de", true },
{ "mark-semmler.de", true },
+ { "mark1998.com", true },
{ "markaconnor.com", true },
+ { "markandrosalind.co.uk", true },
{ "markantoffice.com", true },
{ "markbiesheuvel.nl", true },
{ "markdain.net", true },
{ "markdescande.com", true },
+ { "markel.com.es", true },
{ "markepps.com", true },
{ "market.android.com", true },
{ "marketespace.fr", false },
@@ -21562,17 +23994,22 @@ 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 },
+ { "marketingeinnovacion.com", true },
+ { "marketingforfood.com", true },
{ "marketinggenerators.nl", true },
+ { "marketingtrendnews.com", true },
{ "marketingvirtuales.com", true },
- { "marketio.co", true },
{ "marketizare.ro", true },
- { "marketlinks.org", true },
{ "marketnsight.com", true },
+ { "markfordelegate.com", true },
{ "markhaehnel.de", true },
{ "markhenrick.site", true },
{ "markholden.guru", true },
+ { "markhoodphoto.com", true },
{ "markido.com", true },
{ "markitzeroday.com", true },
{ "markkirkforillinois.com", true },
@@ -21581,11 +24018,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "markoh.co.uk", true },
{ "markom.rs", true },
{ "markprof.ru", true },
- { "markri.nl", false },
+ { "markri.nl", true },
+ { "markridgwell.co.uk", true },
{ "markridgwell.com", true },
{ "markridgwellcom.appspot.com", true },
+ { "markrobin.de", true },
{ "markscastles.co.uk", true },
{ "marksm.it", true },
+ { "marksmanhomes.com", true },
{ "marksmit.co", true },
{ "marksouthall.com", true },
{ "markspres.org", true },
@@ -21593,20 +24033,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "markt-heiligenstadt.de", false },
{ "marktcontact.com", true },
{ "marktissink.nl", true },
+ { "marktplaatshelper.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 },
- { "markusueberallassetmanagement.de", true },
- { "markusueberallconsulting.de", true },
{ "marl.fr", true },
{ "marloncommunications.com", true },
{ "marlonlosurdopictures.com", true },
- { "marlonschultz.de", true },
{ "marlosoft.net", true },
{ "marmista.roma.it", true },
{ "marmolesromero.com", true },
@@ -21617,45 +24057,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marocmail.ma", true },
{ "marotero.com", true },
{ "marpa-wohnen.de", true },
- { "marqperso.ch", true },
- { "marquepersonnelle.ch", true },
{ "marqueswines.co.uk", true },
{ "marrai.de", true },
{ "marriage-shrine.jp", true },
{ "marrickvilleapartments.com.au", true },
{ "marsanvet.com", true },
- { "marsatapp.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 },
+ { "martel-innovate.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 },
{ "martijnhielema.nl", true },
+ { "martijnvanderzande.nl", true },
+ { "martin-loewer.de", true },
{ "martin-smith.info", true },
{ "martin.vet", true },
{ "martindimitrov.cz", true },
{ "martine.nu", true },
{ "martineweitweg.de", true },
- { "martingansler.de", true },
+ { "martinfranc.eu", true },
{ "martinkus.eu", true },
{ "martinmuc.de", true },
+ { "martinreed.net", true },
{ "martinvillalba.com", true },
{ "martinvillalba.com.ar", true },
{ "martinvillalba.info", true },
{ "martinvillalba.net", true },
{ "martinvillalba.org", true },
{ "martonmihaly.hu", true },
+ { "martynhare.co.uk", true },
+ { "martynhare.uk", true },
{ "maru-life.com", true },
{ "maruhoi.com", true },
{ "marustat.ru", true },
@@ -21664,13 +24108,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marycliffpress.com", true },
{ "maryeclark.com", true },
{ "maryeileen90.party", true },
+ { "maryhaze.net", true },
+ { "maryjaneroach.com", true },
{ "maryjruggles.com", true },
{ "marykatrinaphotography.com", true },
- { "masa-hou.com", true },
+ { "marylandbasementandcrawlspacewaterproofing.com", true },
+ { "marzio.co.za", true },
{ "masarik.sh", true },
{ "masatotaniguchi.jp", true },
+ { "masautonomo.com", true },
{ "masayahost.com", true },
- { "masaze-hanka.cz", true },
{ "mascosolutions.com", true },
{ "masdillah.com", true },
{ "maservant.net", true },
@@ -21678,12 +24125,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -21691,17 +24137,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "massdrop.com", true },
{ "masse.org", true },
{ "massflix.com", true },
+ { "massfone.com", true },
{ "masshiro.blog", true },
{ "massive.tk", true },
{ "massoni.pl", true },
{ "massotherapeutique.com", true },
+ { "massvow.com", true },
{ "masta.ch", true },
+ { "mastafu.info", true },
{ "mastah.fr", true },
{ "mastd.me", false },
{ "mastellone.us", true },
{ "mastepinnelaand.nl", true },
{ "master-net.org", true },
- { "masteragenasia.net", true },
{ "mastercardpac.com", true },
{ "masterdemolitioninc.com", true },
{ "masterdigitale.com", true },
@@ -21711,10 +24159,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "masterpc.co.uk", true },
{ "masterplc.com", true },
{ "masters.black", true },
- { "mastersquirrel.xyz", true },
- { "mastersthesiswriting.com", true },
{ "masterstuff.de", true },
- { "mastiffingles.com.br", true },
{ "mastodon.at", true },
{ "mastodon.host", true },
{ "mastodon.rocks", true },
@@ -21722,51 +24167,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "matchboxdesigngroup.com", true },
- { "matchneedle.com", true },
+ { "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 },
{ "mathembedded.com", true },
{ "matheo-schefczyk.de", true },
+ { "mathfinder.org", true },
{ "mathhire.org", true },
{ "mathias.is", true },
{ "mathiasbynens.be", true },
{ "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 },
- { "mathsweek.nz", true },
- { "mathsweek.org.nz", true },
- { "mathsweek.school.nz", true },
{ "mathys.io", true },
+ { "matijakolaric.com", true },
{ "matildajaneclothing.com", true },
{ "matjaz.it", true },
{ "matlss.com", true },
- { "matmessages.com", true },
+ { "matok.me.uk", true },
+ { "matome-surume.com", true },
{ "matomeathena.com", true },
{ "matoutepetiteboutique.com", true },
+ { "matratzentester.com", true },
{ "matridiana.com", true },
+ { "matrieux.dk", true },
{ "matrimoni.uk", true },
{ "matriterie-sdv.ro", true },
{ "matrixim.cc", true },
{ "matrixmedia.ro", true },
{ "matrixreq.com", true },
{ "matsu-semi.com", true },
+ { "matsu-walk.com", true },
{ "matt-brooks.com", true },
+ { "matt-royal.com.cy", true },
{ "matt-royal.gr", true },
{ "matt.re", true },
{ "mattandyana.com", true },
@@ -21778,14 +24233,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mattcoles.io", true },
{ "mattconstruction.com", true },
{ "mattcorp.com", true },
+ { "mattdbarton.com", true },
{ "matteomarescotti.it", true },
+ { "mattessons.co.uk", true },
{ "mattferderer.com", true },
{ "mattfin.ch", true },
{ "mattforster.ca", true },
{ "matthecat.com", true },
+ { "matthewchapman.co.uk", false },
{ "matthewfells.com", true },
{ "matthewgallagher.co.uk", true },
+ { "matthewgrow.com", true },
+ { "matthewj.ca", true },
{ "matthewkenny.co.uk", true },
+ { "matthewljiang.com", true },
{ "matthewohare.com", true },
{ "matthewsetter.com", true },
{ "matthey.nl", true },
@@ -21798,21 +24259,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matthiasschwab.de", true },
{ "matthieuschlosser.fr", true },
{ "matthijssen.info", true },
- { "mattia98.org", true },
{ "mattiascibien.net", true },
+ { "mattlaks.com", true },
{ "mattli.us", true },
{ "mattmccutchen.net", true },
{ "mattmcshane.com", true },
{ "mattonline.me", true },
+ { "mattprojects.com", true },
{ "mattwservices.co.uk", true },
{ "matviet.vn", true },
{ "matway.com", true },
+ { "matway.net", true },
{ "matze.co", true },
{ "mauerwerkstag.info", true },
+ { "mauiticketsforless.com", true },
{ "mauldincookfence.com", true },
{ "mauran.me", true },
- { "maurice-walker.com", true },
+ { "maurice-walker.com", false },
{ "mauricedb.nl", true },
+ { "maurovacca.com", true },
{ "maury-moteurs.com", true },
{ "mavenclinic.com", true },
{ "mavensecurity.com", true },
@@ -21828,19 +24293,17 @@ 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 },
{ "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 },
- { "maxicore.co.za", true },
{ "maximdeboiserie.be", true },
{ "maximdens.be", true },
{ "maximeferon.fr", true },
@@ -21849,12 +24312,18 @@ 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 },
+ { "maxlaumeister.com", true },
+ { "maxmatthe.ws", true },
{ "maxmilton.com", true },
+ { "maxmind.com", true },
+ { "maxmobiles.ru", true },
{ "maxp.info", true },
{ "maxpl0it.com", true },
+ { "maxr1998.de", true },
{ "maxrandolph.com", true },
{ "maxtruxa.com", true },
{ "maxundlara.at", true },
@@ -21863,49 +24332,59 @@ 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 },
{ "mayomarquees.com", true },
{ "mayopartyhire.com", true },
- { "mayoristassexshop.com", true },
{ "maypolevilla.co.uk", true },
- { "mayrhofer.eu.org", true },
+ { "mayrhofer.eu.org", false },
{ "mazda-mps.de", true },
{ "mazda-thermote.com", true },
{ "mazda626.net", true },
- { "maze.design", true },
+ { "mazdaofgermantown.com", true },
+ { "maze.design", false },
{ "maze.fr", true },
- { "mazternet.ru", true },
+ { "mazenjobs.com", true },
+ { "mazurlabs.tk", true },
{ "mazzotta.me", true },
{ "mb-is.info", true },
{ "mbaasy.com", true },
{ "mbaestlein.de", true },
{ "mbainflatables.co.uk", true },
+ { "mbanq.com", true },
{ "mbardot.com", true },
{ "mbasic.facebook.com", false },
{ "mbcars.be", true },
- { "mbda.gov", true },
+ { "mbda.gov", false },
{ "mbeo.ch", true },
{ "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 },
{ "mcdermottautomotive.com", true },
{ "mcdona1d.me", true },
{ "mcdonalds.be", true },
@@ -21916,55 +24395,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mcea-hld.jp", true },
{ "mceconferencecentre.eu", true },
{ "mcfedries.com", true },
+ { "mcfipvt.com", true },
{ "mcfx.us", true },
{ "mcgaccountancy.co.uk", true },
{ "mcgarderen.nl", true },
{ "mcgovernance.com", true },
- { "mchan.us", true },
+ { "mchel.net", true },
{ "mchristopher.com", true },
+ { "mchuiji.com", true },
{ "mcinterface.de", true },
+ { "mcit.gov.ws", 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 },
{ "mcnext.net", true },
+ { "mcon.se", true },
{ "mcpaoffice.com", true },
{ "mcpart.land", true },
{ "mcplayman.de", true },
{ "mcpro.games", true },
{ "mcprocdn.com", true },
- { "mcqyy.com", true },
{ "mcrn.jp", true },
{ "mcsinflatables.co.uk", true },
+ { "mcsports.es", true },
{ "mcsrvstat.us", true },
- { "mctherealm.net", true },
{ "mctools.org", true },
+ { "mcuuid.net", true },
+ { "mcversions.net", true },
{ "mcynews.com", true },
{ "mcyukon.com", true },
{ "md-clinica.com.ua", true },
{ "md5file.com", true },
{ "md5hashing.net", true },
- { "mdbouncycastlehirelondon.co.uk", true },
- { "mdcloudpracticesolutions.com", true },
+ { "mdazo.net", true },
{ "mdcloudps.com", true },
{ "mdek.at", true },
{ "mdewendt.de", true },
{ "mdf-bis.com", true },
{ "mdg-online.de", true },
{ "mdiv.pl", true },
+ { "mdkr.nl", true },
{ "mdlayher.com", true },
{ "mdma.net", true },
{ "mdmed.clinic", true },
{ "mdoering.de", true },
{ "mdosch.de", true },
{ "mdpraha.cz", true },
+ { "mdrthmcs.io", true },
+ { "mds-paris.com", true },
{ "mdsave.com", true },
{ "mdx.no", true },
{ "mdxdave.de", true },
@@ -21972,41 +24458,50 @@ 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 },
- { "meadowviewfarms.org", true },
+ { "meadowfenfarm.com", true },
{ "mealgoo.com", true },
{ "meamod.com", false },
- { "meanevo.com", true },
+ { "meangirl.club", true },
{ "meany.xyz", true },
{ "meap.xyz", true },
{ "measureyourpenis.today", true },
{ "meat.org.uk", true },
+ { "mebaneattorney.com", true },
+ { "mebanesteakhouse.com", true },
{ "mecanicoautomotriz.org", true },
+ { "mecaniquemondor.com", true },
+ { "mechanics-schools.com", true },
{ "mechanus.io", true },
+ { "mechaspartans6648.com", 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 },
+ { "medecine-esthetique-du-calaisis.fr", true },
{ "medeinos.lt", true },
+ { "medellinapartamentos.com", true },
{ "medexpress.co.uk", true },
{ "medhy.fr", true },
- { "medi-link.co.il", true },
{ "medi.com.br", true },
- { "media-courses.com", false },
{ "media-credit.eu", true },
{ "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 },
{ "mediablaster.com", true },
+ { "mediabogen.net", true },
{ "mediaburst.co.uk", true },
{ "mediadex.be", true },
{ "mediaexpert.fr", true },
@@ -22015,18 +24510,26 @@ 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 },
- { "mediarocks.de", true },
+ { "mediapath.gr", true },
+ { "mediarithmics.com", true },
+ { "mediarithmics.io", true },
{ "mediaselection.eu", true },
+ { "mediathekview.de", true },
{ "mediationculturelleclp.ch", true },
{ "mediatorzy.waw.pl", true },
+ { "mediaukkies.nl", true },
{ "mediavault.tech", true },
+ { "mediawijsheid.nl", true },
+ { "mediawijzer.net", true },
{ "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 },
@@ -22034,31 +24537,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medicareinfo.org", true },
{ "medicinesfast.com", false },
{ "medicinia.com.br", true },
+ { "medicm.jp", true },
{ "medicocompetente.it", true },
{ "medicoresponde.com.br", true },
{ "medienweite.de", true },
{ "medifi.com", true },
{ "medigap-quote.net", true },
+ { "medik8.com.cy", true },
+ { "medikalakademi.com.tr", true },
{ "medikuma.com", true },
+ { "medino.com", true },
{ "medinside.ch", true },
{ "medinside.li", true },
{ "medinsider.ch", true },
{ "medinsider.li", true },
{ "medireport.fr", true },
+ { "meditadvisors.com", true },
+ { "meditel.nl", true },
{ "medium.com", true },
- { "mediumraw.org", true },
+ { "medja.net", true },
{ "medlineplus.gov", true },
+ { "medmarkt24.com", true },
{ "medo64.com", true },
{ "medovea.ru", true },
+ { "medpeer.co.jp", true },
{ "medpeer.jp", true },
{ "medpics.com", true },
- { "medpot.net", true },
{ "medschat.com", true },
{ "medtalents.ch", true },
- { "medtankers.management", true },
{ "medtehnika.ua", true },
{ "medusa.wtf", true },
{ "meduza.io", true },
+ { "medvedikorenka.cz", true },
{ "medvet.com.es", true },
{ "medwaybouncycastlehire.co.uk", true },
{ "medyotan.ga", true },
@@ -22068,7 +24578,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 },
@@ -22077,7 +24590,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 },
@@ -22089,22 +24604,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "megabounce.co.uk", true },
{ "megabounceni.co.uk", true },
{ "megabouncingcastles.com", true },
- { "megaflix.nl", true },
+ { "megafilmesplay.net", true },
{ "megaflowers.ru", true },
{ "megagifs.de", true },
{ "megainflatables.co.uk", true },
- { "megamarkey.de", true },
+ { "megakoncert90.cz", true },
{ "megamisja.pl", true },
+ { "megamp3.eu", true },
{ "meganandmarc.us", true },
- { "meganreel.com", true },
+ { "meganreel.com", false },
{ "megapixel.cz", true },
{ "megaplan.cz", true },
{ "megaplan.ru", true },
{ "megaplonk.com", true },
{ "megarex.jp", true },
{ "megasslstore.com", true },
- { "megasystem.cl", true },
+ { "megauction.tk", true },
{ "megaxchange.com", true },
+ { "meggidesign.com", true },
+ { "mego.cloud", true },
{ "megumico.net", true },
{ "megustariasaber.com", true },
{ "megztosidejos.lt", true },
@@ -22117,28 +24635,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mehr-schulferien.de", true },
{ "mehrleben.at", true },
{ "mehrwert.de", true },
+ { "meia.ir", true },
{ "meierhofer.net", true },
{ "meikan.moe", true },
{ "meillard-auto-ecole.ch", true },
{ "meilleur.info", true },
+ { "meimeistartup.com", true },
{ "mein-kuechenhelfer.de", true },
{ "mein-muehlhausen.bayern", true },
{ "mein-webportal.de", true },
{ "meinbetriebsrat24.de", true },
{ "meincenter-meinemeinung.de", true },
{ "meincoach.at", true },
+ { "meine-cloud-online.de", true },
{ "meine-email-im.net", true },
{ "meine-finanzanalyse.de", true },
{ "meine-immofinanzierung.de", true },
- { "meine-plancha.ch", true },
{ "meinezwangsversteigerung.de", true },
{ "meinstartinsleben.com", true },
{ "meinstartinsleben.de", true },
{ "meintragebaby.de", true },
{ "meinv.asia", true },
+ { "meiodomato.com.br", true },
{ "meiqia.cn", true },
{ "meiqia.com", true },
+ { "meisterlabs.com", true },
+ { "meistertask.com", true },
{ "meitan.gz.cn", true },
+ { "meizitang.es", true },
+ { "mekatro.tech", true },
{ "mekatrotekno.com", true },
{ "mekesh.com", true },
{ "mekesh.net", true },
@@ -22160,9 +24685,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "melissaadkins.com", true },
{ "melissaauclaire.com", true },
{ "melissameuwszen.nl", true },
- { "melitopol.co.ua", true },
+ { "mellitus.org", true },
{ "melnessgroup.com", true },
{ "melnikov.ch", true },
+ { "melodicprogressivehouse.com", true },
{ "melodiouscode.co.uk", true },
{ "melodiouscode.com", true },
{ "melodiouscode.net", true },
@@ -22175,15 +24701,13 @@ 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 },
{ "memememememememe.me", true },
{ "memepasmal.net", true },
- { "memes.nz", true },
+ { "memesbee.com", true },
{ "memfrob.org", true },
- { "memind.net", true },
{ "memiux.com", true },
{ "memo-linux.com", true },
{ "memo.ee", true },
@@ -22196,11 +24720,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 },
{ "menole.net", true },
@@ -22209,50 +24731,58 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mensagensaniversario.com.br", true },
{ "mensagensdeconforto.com.br", true },
{ "mensagensperfeitas.com.br", true },
+ { "mensarena.gr", 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 },
- { "meo.de", true },
{ "mephedrone.org", true },
+ { "meps.net", true },
{ "mer.gd", true },
+ { "merakilp.com", true },
{ "meransuedtirol.com", true },
- { "meraseo.com", true },
{ "mercadobitcoin.com.br", true },
{ "mercadobitcoin.net", true },
{ "mercadoleal.com.br", true },
{ "mercadopago.com", true },
+ { "mercamaris.es", true },
{ "mercari.com", true },
{ "mercedes-benz.io", true },
{ "mercedes-ig.de", true },
{ "mercedespartscenter.com", true },
+ { "merchant-automotive.com", true },
+ { "merchcity.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 },
- { "merloat.club", true },
+ { "merlinsoap.com", true },
+ { "merloat.com", true },
{ "merojob.com", true },
{ "meronberry.jp", true },
- { "mertak.cz", true },
+ { "mers.one", true },
+ { "merson.org", true },
+ { "merson.tv", true },
{ "mertarauh.com", true },
{ "mertcangokgoz.com", true },
{ "meruri.com", true },
@@ -22262,9 +24792,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mesappros.com", true },
{ "mescaline.com", true },
{ "mescaline.org", true },
+ { "mesec.cz", true },
{ "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 },
@@ -22283,17 +24815,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "metasquare.com.au", true },
{ "metasquare.nyc", true },
+ { "metasysteminfo.com", true },
+ { "metaurl.io", true },
+ { "metavetted.com", true },
{ "metaword.com", true },
{ "metaword.net", true },
{ "metaword.org", true },
+ { "metebalci.com", false },
{ "meteenonline.nl", true },
{ "meteo-parc.com", true },
{ "meteo-r.ovh", true },
@@ -22305,84 +24842,100 @@ 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 },
+ { "meter.md", true },
{ "meterhost.com", true },
{ "methamphetamine.co.uk", true },
{ "methylone.com", true },
- { "metikam.pl", true },
- { "metin2sepeti.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 },
+ { "metron-online.com", true },
{ "metronaut.de", true },
{ "metropop.ch", true },
{ "metsasta.com", true },
{ "mettekopp.dk", true },
- { "meu-smartphone.com", true },
{ "meu-solutions.com", true },
- { "meujeitodigital.com.br", true },
+ { "meujeitodigital.com.br", false },
+ { "meupainel.me", true },
+ { "meurisse.org", true },
{ "mevo.xyz", true },
{ "mevs.cz", true },
{ "mexican.dating", true },
{ "mexicanjokes.net", true },
+ { "mexico.sh", true },
{ "mexicom.org", true },
{ "meyash.co", true },
{ "mf-fischer.de", true },
- { "mfacko.cz", true },
{ "mfen.de", true },
{ "mfgusa.com", true },
{ "mfits.co.uk", true },
{ "mflodin.se", true },
{ "mfxbe.de", true },
+ { "mfxxx.cn", true },
{ "mgi.gov", true },
{ "mgknet.com", true },
+ { "mglink.be", true },
{ "mgrossklaus.de", true },
{ "mgrt.net", true },
{ "mgsisk.com", true },
{ "mgtbaas.eu", true },
+ { "mhadot.com", true },
{ "mhalfter.de", true },
+ { "mhand.org", true },
+ { "mhatero.com", true },
{ "mhatlaw.com", true },
{ "mheistermann.de", true },
{ "mhermans.nl", true },
{ "mhi.web.id", true },
- { "mhjuma.com", true },
{ "mhmfoundationrepair.com", true },
{ "mi-beratung.de", true },
{ "mi-so-ji.com", true },
{ "mi80.com", true },
+ { "miadennees.com", true },
{ "miagexport.com", true },
- { "miamicityballet.org", true },
+ { "mialquilerdecoches.com", true },
{ "miaonagemi.com", true },
{ "miaoubox.com", true },
{ "miaowo.org", true },
{ "miasarafina.de", true },
- { "miboulot.com", true },
- { "micaiahparker.com", true },
+ { "miavierra.org", true },
+ { "mibuiin.com", true },
+ { "micado-software.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 },
{ "michaelband.co", true },
{ "michaelband.com", true },
{ "michaeleichorn.com", true },
{ "michaelhrehor.com", true },
{ "michaeliscorp.com", true },
- { "michaelizquierdo.com", true },
+ { "michaelismold.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 },
@@ -22392,6 +24945,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michal-s.net", true },
{ "michal-spacek.com", true },
{ "michal-spacek.cz", true },
+ { "michaldudek.it", true },
+ { "michalpodraza.pl", true },
{ "michalspacek.com", true },
{ "michalspacek.cz", true },
{ "michalwiglasz.cz", true },
@@ -22399,6 +24954,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michel-wein.de", true },
{ "michele.ml", true },
{ "michellavat.com", true },
+ { "michelskovbo.dk", true },
{ "michiganstateuniversityonline.com", true },
{ "michiganunionoptout.com", true },
{ "michmexguides.com.mx", true },
@@ -22406,33 +24962,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mickelvaessen.com", true },
{ "micomi.co", true },
{ "miconcinemas.com", true },
+ { "micopal.com", true },
{ "micr.io", true },
{ "micr0lab.org", true },
{ "microbiote-insectes-vecteurs.group", true },
{ "microco.sm", true },
{ "microcomploja.com.br", true },
{ "microdots.de", true },
+ { "microfonejts.com.br", true },
{ "microlinks.org", true },
{ "microlog.org", true },
+ { "micromata.de", true },
+ { "micromind.io", true },
+ { "microneedlingstudio.se", true },
{ "microsoftaffiliates.azurewebsites.net", true },
{ "microvb.com", true },
+ { "microwesen.de", true },
+ { "microzubr.com", true },
{ "midair.io", true },
{ "midasjewellery.com.au", true },
+ { "midcarolinaregionalairport.com", true },
+ { "midcarolinaregionalairport.org", true },
{ "midgawash.com", true },
+ { "midislandrealty.com", true },
+ { "midistop.org", 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 },
{ "midnight-visions.de", true },
+ { "midnightmango.co.uk", true },
+ { "midnightmango.de", true },
{ "midnightmechanism.com", true },
+ { "midrandplumber24-7.co.za", true },
+ { "midress.club", true },
{ "midstatebasement.com", true },
- { "midterm.us", true },
{ "midtowndentistry.com", true },
{ "midwestbloggers.org", true },
- { "midweststructuralrepair.com", true },
+ { "midwestplus.com", true },
{ "miegl.com", true },
+ { "miembarcacion.com", true },
{ "miemus.eu", true },
{ "mietwohnungen-vermietung.com", true },
{ "mieuxgrandir.ch", true },
@@ -22440,10 +25011,11 @@ 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 },
- { "miguelgfierro.com", true },
+ { "miguelgaton.es", true },
{ "miguelmartinez.ch", true },
{ "miguelmenendez.pro", true },
{ "miguelmoura.com", true },
@@ -22453,12 +25025,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mijcorijneveld.nl", true },
{ "mijn-financien.be", true },
{ "mijnavg.eu", true },
- { "mijndiad.nl", true },
- { "mijnetickets.nl", false },
{ "mijnetz.nl", true },
{ "mijnkerstkaarten.be", true },
+ { "mijnkinderkleding.com", true },
+ { "mijnpartijhandel.nl", true },
{ "mijnreisoverzicht.nl", true },
- { "mijnsite.ovh", true },
{ "mijnstembureau.nl", true },
{ "mijntransacties.nl", true },
{ "mika.moe", true },
@@ -22477,58 +25048,83 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mikeguy.co.uk", true },
{ "mikehamburg.com", true },
{ "mikehilldesign.co.uk", true },
+ { "mikekreuzer.com", true },
{ "mikerichards.photography", true },
{ "miketabor.com", true },
{ "miketheuer.com", true },
{ "mikevesch.com", true },
{ "mikewest.org", true },
+ { "mikewillia.ms", true },
+ { "mikewrites.online", true },
{ "mikewritesstuff.com", true },
{ "mikeybailey.org", true },
+ { "mikhirev.ru", true },
{ "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 },
+ { "milakirschner.de", true },
{ "milania.de", true },
{ "milanpala.cz", false },
{ "milanstephan.de", true },
{ "milcahsmusings.com", true },
+ { "milchbuchstabe.de", true },
{ "mileme.com", true },
{ "milenaria.es", true },
{ "milesapart.dating", true },
{ "milhoazul.com.br", true },
{ "milionshop.sk", true },
+ { "milkameglepetes.hu", true },
+ { "milkandcookies.ca", true },
{ "milkingit.co.uk", true },
+ { "milktea.info", true },
{ "millanova.wedding", false },
{ "milldyke.com", true },
{ "milldyke.nl", true },
{ "millefleurs.eu", true },
{ "millennium-thisiswhoweare.net", true },
+ { "millenniumstem.org", true },
+ { "millenniumweb.com", false },
+ { "millersminibarns.com", true },
+ { "millettable.com", true },
{ "millhousenchurch.com", true },
- { "millibitcoin.jp", true },
{ "millionairegames.com", true },
+ { "millions1.com", true },
+ { "millions32.com", true },
+ { "millions51.com", true },
+ { "millions52.com", true },
+ { "millions53.com", true },
+ { "millions57.com", true },
+ { "millions60.com", true },
+ { "millions77.com", true },
+ { "millions8.com", true },
{ "millistream.com", true },
- { "mim.properties", true },
+ { "milnes.org", true },
+ { "milsonhypnotherapyservices.com", true },
+ { "mim.am", true },
{ "mimemo.io", true },
+ { "mimemoriadepez.com", true },
{ "mimeo.digital", true },
{ "mimithedog.com", true },
+ { "mimmog.it", true },
{ "mimocad.io", true },
{ "mimovrste.com", true },
+ { "mimusic.cf", true },
+ { "min-datorsupport.se", true },
{ "min-sky.no", true },
- { "minacssas.com", true },
{ "minakov.pro", true },
{ "minakova.pro", true },
{ "minami.xyz", true },
@@ -22536,42 +25132,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "minaprine.com", true },
{ "mind-box.ch", true },
{ "mind-hochschul-netzwerk.de", true },
- { "mind-moves.es", true },
- { "mindbodytherapymn.com", true },
- { "mindcell.no", true },
+ { "mindatasupport.nu", true },
+ { "mindatasupport.se", true },
+ { "mindatorsupport.se", true },
{ "mindcoding.ro", true },
{ "mindercasso.nl", true },
{ "mindfactory.de", true },
{ "mindleaking.org", true },
+ { "mindmeister.com", true },
{ "mindoktor.se", false },
{ "mindorbs.com", true },
+ { "mindox.com.br", true },
{ "mindstretchers.co.uk", true },
- { "mindturbo.com", true },
- { "mindwork.space", true },
{ "mine-craftlife.com", true },
+ { "mine-pixl.de", true },
{ "mine260309.me", true },
{ "minebier.dk", true },
{ "minecraft-forum.eu", true },
{ "minecraft-server.eu", true },
{ "minecraftforum.de", true },
{ "minecraftforum.ovh", true },
- { "minecraftjson.com", true },
+ { "minecraftjson.com", false },
+ { "minecraftstal.com", true },
{ "minehattan.de", true },
{ "minehub.de", true },
- { "minei.me", true },
{ "minenash.com", true },
+ { "minepack.net", true },
{ "minepay.net", true },
{ "minepic.org", true },
{ "minepod.fr", true },
{ "minerstat.com", true },
{ "minerva2015.it", true },
{ "minesouls.fr", true },
+ { "minetracker.dk", true },
{ "minez-nightswatch.com", false },
{ "minf3-games.de", true },
+ { "minfin.gov.ua", true },
{ "mingky.net", true },
- { "mingkyaa.com", true },
{ "mingram.net", true },
+ { "mingtreerealty.com", true },
{ "mingwah.ch", true },
+ { "minh.at", false },
{ "mini2.fi", true },
{ "minigames.com", true },
{ "miniglueck.net", true },
@@ -22585,9 +25186,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "minimayhemsoftplay.co.uk", true },
{ "minimbah.com.au", true },
{ "minimvc.com", true },
+ { "miningtronics.com", true },
+ { "minisoft4u.ir", true },
{ "ministeriumfuerinternet.de", true },
{ "minitruckin.net", true },
{ "minitrucktalk.com", true },
+ { "minivaro.de", true },
{ "minkymoon.jp", true },
{ "minnesotakinkyyouth.org", true },
{ "minnesotamathcorps.org", true },
@@ -22598,38 +25202,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "minpingvin.dk", true },
{ "minschuns.ch", true },
{ "mintclass.com", true },
- { "mintea-noua.ro", true },
{ "mintosherbs.com", true },
{ "mintrak2.com", true },
- { "minu.link", true },
+ { "mintse.com", true },
{ "minube.co.cr", true },
+ { "minutashop.ru", true },
{ "minux.info", true },
{ "mipapo.de", true },
- { "mipla.ch", true },
{ "miproximopaso.org", true },
+ { "mipueblohoy.com", true },
{ "mipymesenlinea.com", true },
{ "mir.pe", true },
{ "mirabalphoto.es", true },
{ "miraheze.org", true },
{ "miraidenshi.com", true },
+ { "miraiex.com", true },
{ "mirch.com", true },
{ "mirco-grams.de", true },
{ "mireiaseuba.com", true },
{ "mirepublic.co.nz", true },
{ "mireservaonline.es", true },
{ "mirfire.com", true },
- { "mirjamderijk.nl", true },
+ { "mirjamderijk.nl", false },
{ "mirkofranz.de", true },
- { "mirodasilva.be", true },
{ "mironet.cz", true },
+ { "mirrorbot.ga", true },
{ "mirrorsedgearchive.de", true },
{ "mirshak.com", true },
{ "mirtes.cz", true },
{ "mirtouf.fr", true },
+ { "misakacloud.net", true },
{ "misakiya.co.jp", true },
{ "misanci.cz", true },
+ { "mischak.net", true },
{ "misclick.nl", true },
{ "mishkovskyi.net", true },
+ { "misinstrumentos.com", true },
{ "miskatonic.org", true },
{ "misoji-resist.com", true },
{ "misol.kr", true },
@@ -22639,23 +25247,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "miss.com.tw", true },
{ "missdream.org", true },
{ "misseguf.dk", true },
+ { "missevent.pl", true },
{ "missguidedus.com", true },
{ "mission-orange.de", true },
{ "missionsgemeinde.de", true },
{ "missip.nl", true },
{ "missjoias.com.br", true },
- { "misskey.xyz", false },
+ { "misskey.jp", true },
+ { "misskey.site", true },
+ { "misskey.xyz", true },
{ "missoy.me", true },
{ "misssex.de", true },
{ "missualready.com", true },
{ "missyou.link", true },
{ "mistacms.com", true },
- { "mister-cooks.fr", true },
+ { "mister-matthew.de", true },
{ "mistreaded.com", true },
{ "mistybox.com", true },
{ "misupport.dk", true },
{ "misura.re", true },
{ "misuzu.moe", true },
+ { "misxvenelantro.com", true },
+ { "mit-dem-rad-zur-arbeit.de", true },
+ { "mit-dem-rad-zur-uni.de", true },
{ "mit-uns.org", true },
{ "mita.me", true },
{ "mitabu.net", true },
@@ -22663,21 +25277,24 @@ 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 },
{ "mitnetz-strom.de", true },
{ "mitrax.com.br", true },
+ { "mitre10.com.au", true },
{ "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 },
+ { "mittbolan.se", true },
{ "mittelunsachlich.de", true },
{ "mittenofficesystems.com", true },
+ { "mitylite.com", true },
{ "mitzpettel.com", true },
{ "miui-germany.de", true },
{ "mivestuariolaboral.com", true },
@@ -22688,19 +25305,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mivzakim.net", true },
{ "mivzakim.org", true },
{ "mivzakim.tv", true },
+ { "mivzaklive.co.il", true },
{ "miweb.cr", false },
{ "mixinglight.com", true },
+ { "mixmister.com", true },
{ "mixnshake.com", true },
{ "mixposure.com", true },
+ { "mixrepairs.co.uk", true },
{ "mixtafrica.com", true },
{ "mixtape.moe", true },
+ { "mixx.com.hk", true },
{ "miyatore.com", true },
{ "miyoshi-kikaku.com", true },
{ "miyugirls.com", true },
{ "mizipack.com", true },
{ "mizque.ch", true },
+ { "mizu.coffee", true },
+ { "mizucoffee.net", true },
{ "mizuho-trade.net", true },
- { "mizumax.me", true },
+ { "mizuhobank.co.id", true },
{ "mj420.com", true },
{ "mjacobson.net", true },
{ "mjanja.ch", true },
@@ -22714,6 +25337,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mk89.de", true },
{ "mkaciuba.com", true },
{ "mkakh.com", true },
+ { "mkasu.org", false },
{ "mkbouncycastles.co.uk", true },
{ "mkbouncyhire.co.uk", true },
{ "mkcert.org", true },
@@ -22721,11 +25345,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mkd.mk", true },
{ "mkes.com", true },
{ "mkg-chirurgie-bruchsal.de", true },
- { "mkg-palais-hanau.de", true },
{ "mkg-scherer.de", true },
{ "mkg-wiebelskirchen.de", true },
{ "mkhsoft.eu", true },
+ { "mkie.cf", true },
{ "mkimage.com", true },
+ { "mkjl.ml", true },
{ "mkk.de", true },
{ "mkkkrc.ru", true },
{ "mklpedia.de", true },
@@ -22736,43 +25361,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mkse.com", true },
{ "mkset.ru", true },
{ "mktdigital.info", true },
+ { "mktemp.org", true },
{ "mkuznets.com", true },
{ "mlarte.com", true },
- { "mlcambiental.com.br", true },
{ "mlcnfriends.com", true },
{ "mlemay.com", true },
- { "mlm-worldwide.de", true },
{ "mlmjam.com", true },
{ "mlp.ee", true },
{ "mlpvector.club", true },
- { "mlsrv.de", true },
{ "mlundberg.se", true },
{ "mlvbphotography.com", true },
{ "mlytics.com", true },
- { "mm13.at", true },
{ "mm404.com", true },
{ "mma-acareporting.com", true },
{ "mmalisz.com", true },
- { "mmaps.ddns.net", true },
- { "mmarnitz.de", true },
+ { "mmaps.org", true },
{ "mmbb.org", true },
- { "mmcc.pe", true },
{ "mmin.us", false },
{ "mmmarco.com", true },
+ { "mmmaximaliselmeny.hu", true },
{ "mmogah.com", true },
{ "mmonit.com", true },
{ "mms.is", true },
{ "mmt.my", true },
{ "mmucha.de", true },
{ "mncloud.de", true },
- { "mncr.nl", true },
{ "mnd.sc", true },
{ "mne.moe", true },
{ "mnedc.org", true },
+ { "mneerup.dk", true },
{ "mnemonic.ninja", true },
{ "mnguyen.io", true },
{ "mnitro.com", true },
{ "mnium.de", true },
+ { "mnml.art", true },
+ { "mnml.jp", true },
{ "mnnknz.de", true },
{ "mnsure.org", true },
{ "mnt-tech.fr", true },
@@ -22780,12 +25403,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mo-journal.com", true },
{ "mo.nl", true },
{ "mo2021.de", true },
- { "mo3.club", true },
{ "moa.moe", true },
- { "moas.design", true },
- { "mobag.ru", true },
+ { "moabpapier.de", true },
+ { "moabygg.se", true },
+ { "moahmo.com", true },
+ { "mobag.ru", false },
{ "mobal.com", true },
+ { "mobi2go.com", true },
{ "mobidea.com", true },
+ { "mobifinans.ru", true },
{ "mobil-bei-uns.de", true },
{ "mobila-chisinau.md", true },
{ "mobilcom-debitel-empfehlen.de", true },
@@ -22796,6 +25422,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mobile360.ph", true },
{ "mobilebingoclub.co.uk", true },
{ "mobilecasinoclub.co.uk", true },
+ { "mobilecontractcomparison.com", true },
{ "mobilelooper.com", true },
{ "mobilemedics.com", true },
{ "mobileread.com", true },
@@ -22817,54 +25444,66 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moc.ac", true },
{ "mocarps.hk", true },
{ "mochanstore.com", true },
+ { "mochiyuki.net", true },
{ "mockerel.com", true },
{ "mococo.co.uk", true },
- { "mocurio.com", false },
{ "modaexecutiva.com.br", true },
{ "modafinil.com", true },
{ "modafinil.wiki", true },
{ "modafo.com", true },
{ "modalogi.com", true },
- { "modalrakyat.com", true },
- { "modalrakyat.id", true },
+ { "modav.org", true },
{ "modcasts.video", true },
- { "modcentral.pw", true },
{ "modding-forum.com", true },
{ "modding-welt.com", true },
{ "mode-hautnah.de", true },
{ "mode-individuell.de", true },
- { "modecaso.com", 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 },
- { "moderntld.net", true },
+ { "moderncommercialrealestate.com", true },
{ "modifiedmind.com", true },
{ "modistry.com", true },
{ "modistryusercontent.com", true },
{ "modmountain.com", true },
+ { "modnitsa.info", true },
{ "modosaude.com.br", true },
+ { "modul21.com", true },
+ { "modul21.eu", true },
{ "module.market", true },
+ { "modulex-gmbh.de", true },
+ { "moe-max.jp", true },
+ { "moebel-vergleichen.com", true },
{ "moechel.com", true },
+ { "moeclue.com", true },
{ "moefactory.com", true },
{ "moehrke.cc", true },
+ { "moekes.amsterdam", true },
{ "moeking.me", true },
{ "moellers.systems", true },
+ { "moenew.top", true },
+ { "moeqing.net", true },
{ "moetrack.com", true },
+ { "moeyoo.net", true },
+ { "mofidmed.com", true },
{ "mofohome.dyndns.org", true },
+ { "mogooin.com", true },
{ "moha-swiss.com", true },
{ "mohanmekap.com", true },
{ "mohela.com", true },
+ { "mohr-maschinenservice.de", true },
{ "moin.jp", true },
{ "moipourtoit.ch", true },
{ "moipourtoit.com", true },
@@ -22876,12 +25515,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mojeco2.cz", true },
{ "mojefedora.cz", true },
{ "mojilitygroup.com", true },
- { "mojnet.eu", true },
- { "mojnet.net", true },
+ { "mojizuri.com", true },
{ "mojoco.co.za", true },
{ "mojzis.com", true },
{ "mojzis.cz", true },
{ "mojzisova.com", true },
+ { "mok.pw", true },
{ "mokeedev.review", true },
{ "mokhtarmial.com", false },
{ "mokote.com", true },
@@ -22890,21 +25529,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "molecularbiosystems.org", true },
{ "molinero.xyz", true },
{ "mollaretsmeningitis.org", true },
+ { "mollie.com", true },
{ "molokai.org", true },
{ "molti.hu", true },
{ "molun.net", false },
{ "molunerfinn.com", true },
{ "molwick.com", true },
- { "momento.co.id", true },
+ { "momentsofimpact.info", true },
+ { "momentum.photos", true },
{ "momentumdash.com", true },
{ "momirfarooq.com", true },
- { "momjoyas.com", true },
+ { "momo0v0.club", true },
{ "momozeit.de", true },
{ "momstableonline.com", true },
{ "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 },
@@ -22912,17 +25553,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monaco-automaten.de", true },
{ "monad.io", true },
{ "monakasatmasr.com", true },
- { "monalisa.wtf", true },
{ "monalyse.com", true },
{ "monarchcleanersnc.com", true },
{ "monbudget.org", true },
{ "moncoach.ch", true },
- { "mondedesnovels.com", true },
{ "mondedie.fr", true },
{ "mondial-movers.nl", true },
{ "mondo-it.ch", true },
{ "moneni.com", true },
{ "moneybird.com", true },
+ { "moneybird.nl", true },
{ "moneychangersoftware.com", true },
{ "moneycredit.eu", true },
{ "moneygo.se", true },
@@ -22930,37 +25570,32 @@ 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 },
- { "monitorchain.com", true },
{ "monitoring.kalisz.pl", true },
{ "monitzer.com", true },
{ "monix.io", true },
{ "monkay.de", true },
{ "monkeybusiness.agency", true },
- { "monkeydust.net", true },
{ "monkeyhill.us", true },
{ "monkeytek.ca", true },
{ "monkieteel.com", true },
- { "monkieteel.nl", true },
{ "monlabs.com", true },
{ "monloyer.quebec", true },
{ "monnyonle.hu", true },
{ "mono.cafe", true },
{ "mono0x.net", true },
{ "monobank.no", true },
- { "monodukuri.cafe", true },
+ { "monobunt.at", true },
{ "monodukuri.com", true },
- { "monodzukuri.cafe", true },
{ "monokoo.com", true },
{ "monolithapps.com", true },
{ "monolithindustries.com", true },
{ "monolithinteractive.com", true },
{ "monothesis.com", true },
+ { "monotributo.online", true },
{ "monoworks.co.jp", true },
- { "monozukuri.cafe", true },
{ "monpc-pro.fr", true },
{ "monpermismoto.com", true },
{ "monpermisvoiture.com", true },
@@ -22969,10 +25604,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monsieurbureau.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 },
- { "montand.com", true },
+ { "montanteaesthetics.com", true },
{ "montanwerk.de", true },
{ "montarfotoaki.com", true },
{ "montas.io", true },
@@ -22980,6 +25616,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "montemanik.com", true },
{ "montenero.pl", true },
{ "montessori.edu.vn", true },
+ { "montgomeryfirm.com", true },
+ { "montgomerysoccer.net", true },
{ "montopolis.com", true },
{ "montpreveyres.ch", true },
{ "montredeal.fr", true },
@@ -22996,14 +25634,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moolah.rocks", true },
{ "moon.fish", true },
{ "moonagic.com", 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", true },
{ "moonrhythm.io", true },
{ "moonshyne.org", true },
{ "moontaj.com", true },
@@ -23019,41 +25657,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mooselook.de", true },
{ "moosmann-moehrle.de", true },
{ "moot-info.co.za", true },
+ { "moovablestorage.com", true },
+ { "mop321.com", true },
{ "moparcraft.net", true },
{ "moparisthebest.com", true },
{ "moparisthebest.net", true },
{ "moparisthebest.org", true },
{ "moparscape.net", true },
{ "mopedreifen.de", false },
+ { "mopie.de", true },
{ "mople71.cz", true },
+ { "moplx.com", true },
{ "moppeleinhorn.de", true },
{ "moppy.org", true },
{ "morbatex.com", true },
{ "morbiceramicindustry.com", true },
{ "morbitzer.de", true },
+ { "morbius.cz", true },
{ "morbotron.com", true },
{ "morchino.ch", true },
{ "morchstore.com", true },
+ { "mordrum.com", true },
{ "more-hikkoshi.com", true },
{ "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 },
{ "moritz-baestlein.de", true },
{ "moritztremmel.de", true },
{ "moriz.de", true },
{ "moriz.net", true },
+ { "mormon-colleges.com", true },
{ "mormonleaks.io", true },
{ "morningcurve.com", true },
{ "morningstar.moe", true },
@@ -23065,6 +25708,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mortis.eu", true },
{ "mosaic-design.ru", true },
{ "mosaicadvisors.com", true },
+ { "mosaicmarble.com", true },
{ "moscatalogue.net", true },
{ "moscow.dating", true },
{ "mosfet.cz", true },
@@ -23072,10 +25716,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mosin.org", true },
{ "moskeedieren.nl", true },
{ "mosos.de", true },
+ { "mosquitojoe.com", true },
{ "mosscade.com", true },
{ "mosshi.be", true },
{ "mosstier.com", true },
- { "mostlyinfinite.com", true },
+ { "mostholynameofjesus.org", true },
{ "mostlyoverhead.com", true },
{ "motd.ch", true },
{ "motd.today", true },
@@ -23086,17 +25731,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "motekmedical.com", true },
{ "motekmedical.eu", true },
{ "motekmedical.nl", true },
+ { "motekrysen.com", true },
{ "moteksystems.com", true },
{ "motezazer.fr", true },
{ "mothereff.in", false },
{ "motifstudio.com.ua", true },
{ "motionless.nl", true },
+ { "motionvideos.uk", true },
{ "motiweb.fr", true },
+ { "motocollection.pl", true },
{ "motohell.com", true },
{ "motojato.com.br", true },
{ "motonauticaibiza.com", true },
{ "motoreflex.com", true },
- { "motornomaslo.bg", true },
{ "motorpointarenacardiff.co.uk", true },
{ "motorring.ru", true },
{ "motorsplus.com", false },
@@ -23104,85 +25751,72 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "motosikletevi.com", true },
{ "motostorie.blog", false },
{ "motovated.co.nz", true },
- { "motovio.de", true },
{ "motowilliams.com", true },
+ { "motransportinfo.com", true },
{ "motstats.co.uk", true },
- { "mottomortgage.com", true },
- { "moube.fr", true },
- { "moucloud.cn", true },
{ "moulinaparoles.ca", true },
{ "mountain-rock.ru", true },
{ "mountainactivitysection.org.uk", true },
+ { "mountainchalet.blue", true },
{ "mountainroseherbs.com", true },
+ { "mountainspringsrentals.ca", true },
{ "mountfarmer.de", true },
- { "mousemessages.com", true },
+ { "mousepotato.uk", true },
{ "moutiezhaller.com", true },
- { "moveek.com", true },
- { "moveisfit.com.br", true },
+ { "movacare.de", true },
+ { "move.mil", true },
{ "moveltix.net", true },
{ "movember.com", false },
{ "movewellnesslab.com", true },
{ "movie-cross.net", true },
{ "movie-infos.net", true },
{ "movie1000.com", true },
- { "movie4kto.site", true },
{ "movie4kto.stream", true },
{ "movieboost.nl", true },
{ "moviedeposit.com", true },
{ "moviefreeze.com", true },
{ "movieguys.org", true },
- { "movienang.com", true },
- { "movienized.de", true },
{ "moviepilot.com", true },
{ "moviesetc.net", true },
{ "moviko.nz", true },
{ "movil.uno", true },
+ { "moviltronix.com", true },
{ "movimento-terra.it", true },
{ "movinglogistics.nl", false },
{ "movingtohttps.com", true },
+ { "movingtojapan.life", true },
{ "movlib.org", true },
{ "moy.cat", true },
{ "moyer.pub", true },
{ "moylen.eu", true },
- { "moyoo.net", true },
- { "moysovet.info", true },
+ { "moysovet.info", false },
{ "mozartgroup.hu", true },
{ "mozektevidi.net", true },
- { "mozgb.ru", true },
{ "mozilla.cz", true },
{ "mozzez.de", true },
- { "mp3gratuiti.com", true },
{ "mpa-pro.fr", true },
{ "mpac.ca", false },
{ "mpc-hc.org", true },
{ "mpcompliance.com", true },
- { "mpe.org", true },
{ "mpetroff.net", true },
{ "mpg-universal.com", true },
- { "mpg.ovh", true },
{ "mpgaming.pro", true },
- { "mpintaamalabanna.it", true },
+ { "mphwinkel.nl", true },
{ "mpkrachtig.nl", true },
+ { "mpkshop.com.br", true },
{ "mplanetphl.fr", true },
{ "mplant.io", true },
{ "mplicka.cz", true },
{ "mplusm.eu", true },
- { "mpn.poker", true },
{ "mpnpokertour.com", true },
- { "mpodraza.pl", true },
- { "mpreserver.com", true },
{ "mprsco.eu", true },
{ "mpsgarage.com.au", true },
{ "mpsoundcraft.com", true },
- { "mpy.ovh", true },
- { "mqas.net", true },
+ { "mpu-vorbereitung.com", true },
{ "mr-anderson.org", true },
{ "mr-designer-oman.com", true },
- { "mr-labo.jp", true },
{ "mr-nachhilfe.de", true },
- { "mr-wolf.nl", true },
- { "mr3.io", true },
- { "mrazek.biz", true },
+ { "mr-wolf.nl", false },
{ "mrbmafrica.com", true },
{ "mrbounce.com", true },
{ "mrbouncescrazycastles.co.uk", true },
@@ -23194,23 +25828,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mrdayman.com", true },
{ "mremallin.ca", true },
{ "mrevolution.eu", true },
+ { "mrgasfires.co.uk", true },
+ { "mrgiveaways.com", true },
+ { "mrhc.ru", true },
+ { "mrhookupsd.com", true },
{ "mrinalpurohit.in", true },
+ { "mrjhnsn.com", true },
{ "mrjooz.com", true },
{ "mrkapowski.com", true },
+ { "mrketolocksmith.com", true },
{ "mrknee.gr", true },
{ "mrkrabat.de", true },
- { "mrksk.com", true },
- { "mrmoregame.de", true },
{ "mrnh.de", true },
- { "mrpropop.com", 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 },
- { "ms-alternativ.de", true },
{ "ms-ch.ch", true },
{ "ms-host.fr", true },
{ "msa-aesch.ch", true },
@@ -23224,29 +25866,37 @@ 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 },
- { "msopopop.cn", true },
- { "msp66.de", false },
{ "mspsocial.net", true },
{ "msquadrat.de", true },
{ "msroot.de", true },
+ { "mssora.com", true },
{ "mssys.de", true },
{ "mstdn.blue", true },
{ "mstdn.club", true },
{ "mstdn.fr", true },
+ { "mstdn.io", true },
{ "mstdn.onl", false },
{ "msuna.net", true },
{ "msv-limpezas.pt", true },
{ "msx.org", true },
{ "mszavodumiru.cz", true },
+ { "mt-bank.jp", true },
{ "mt.search.yahoo.com", false },
{ "mt2414.com", true },
+ { "mta.fail", true },
+ { "mta.org.ua", true },
{ "mtane0412.com", true },
{ "mtasa.com", true },
{ "mtasa.hu", true },
+ { "mtauburnassociates.com", true },
{ "mtb.wtf", true },
- { "mtcq.jp", true },
+ { "mtd.org", true },
+ { "mteleport.net", true },
+ { "mtg-tutor.de", true },
{ "mtgeni.us", true },
{ "mtgenius.com", true },
{ "mtgsuomi.fi", true },
@@ -23255,44 +25905,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mthrbrd.net", true },
{ "mths.be", false },
{ "mticareportal.com", true },
+ { "mtiryaki.com", true },
{ "mtlconcerts.com", true },
{ "mtltransport.com", true },
{ "mtnz.co.za", true },
{ "mtouch.facebook.com", false },
- { "mtr.md", true },
+ { "mtravelers.net", true },
+ { "mtrip.com", true },
{ "mtrock.ru", true },
{ "mts-energia.eu", true },
{ "mts-server.com", true },
{ "mtsolar.es", true },
{ "mu.search.yahoo.com", false },
{ "muabannhanh.com", false },
- { "muahahahaha.co.uk", true },
{ "mubiflex.nl", true },
- { "muchohentai.com", true },
{ "muckingabout.eu", true },
{ "muckrack.com", true },
{ "mucmail.de", true },
{ "muctool.de", true },
{ "mud-status.de", true },
+ { "mudbenesov.cz", true },
{ "mudcrab.us", false },
- { "mudgezero.one", true },
{ "muehlemann.net", true },
{ "muel.io", true },
+ { "muelhau.pt", true },
{ "muell-weg.de", true },
{ "muellapp.com", true },
{ "muenchberger.com", true },
- { "muenzubi.de", true },
- { "muffet.pw", true },
{ "mufibot.net", true },
{ "muguayuan.com", true },
{ "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 },
- { "mulheres18.com", true },
{ "muling.lu", true },
{ "mullens-usedcars.be", true },
+ { "mullerimoveisrj.com.br", true },
{ "multi-vpn.biz", true },
{ "multibit.org", true },
{ "multibomasm.com.br", true },
@@ -23301,12 +25955,11 @@ 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 },
{ "multipleservers.com", true },
- { "multiplexcy.com", true },
{ "multirep.ch", true },
{ "multiroom-streaming.de", true },
{ "multisite.ovh", true },
@@ -23314,20 +25967,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "multitek.no", true },
{ "multitenantlaravel.com", true },
{ "multitheftauto.com", true },
- { "multiworldsoftware.com", true },
- { "multizone.games", true },
{ "multrier.fr", true },
+ { "mum.ceo", true },
{ "mumakil.fi", true },
{ "mumbaionlinegifts.com", true },
{ "muminkoykiran.com", true },
{ "mumolabs.com", true },
{ "munch.me", true },
{ "munchcorp.com", true },
- { "mundoadulto.com.br", true },
{ "mundoarabe.com.br", true },
+ { "mundoconejos.com", true },
+ { "mundodapoesia.com", true },
{ "mundodasmensagens.com", true },
+ { "mundogamers.top", true },
{ "mundokinderland.com.br", true },
{ "mundolarraz.es", true },
+ { "mundomagicotv.com", true },
+ { "mundoperros.es", true },
+ { "mundotortugas.com", true },
{ "mundschenk.at", true },
{ "mundtec.com.br", true },
{ "munduch.cz", true },
@@ -23342,15 +25999,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "murashun.jp", true },
{ "muratore-roma.it", true },
{ "murfy.nz", true },
- { "murgi.de", true },
{ "murmel.it", false },
{ "murof.com.br", true },
+ { "murray.xyz", true },
+ { "murraya.cn", true },
{ "murzik.space", true },
+ { "musa.gallery", true },
+ { "musaccostore.com", true },
{ "muscle-tg.com", true },
- { "muscleangels.com", true },
{ "musclecarresearch.com", true },
{ "muscolinomusic.com", true },
- { "musearchengine.com", true },
{ "musehelix.com", true },
{ "muses-success.info", true },
{ "musettishop.com", true },
@@ -23359,30 +26017,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mushikabu.net", true },
{ "music-is-my-life.de", true },
{ "music-project.eu", true },
+ { "music-world.pl", true },
{ "music.amazon.com", true },
- { "musicaconleali.it", true },
+ { "musica.com", 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 },
+ { "musicfromgod.com", true },
{ "musicgamegalaxy.de", true },
{ "musician.dating", true },
{ "musickhouseleveling.com", true },
{ "musicompare.com", true },
{ "musicschoolonline.com", true },
+ { "musicstudio.pro", true },
{ "musicwear.cz", true },
{ "musicworkout.de", true },
{ "musik-mentaltraining.ch", true },
+ { "musikholics.com", true },
{ "musikverein-elten.de", true },
{ "musikzentrale.net", true },
{ "musketonhaken.nl", false },
{ "muslim.singles", true },
+ { "musmann.io", true },
{ "muspla.com", true },
{ "muspla.com.br", true },
{ "musselsblog.com", true },
- { "mustafa.space", true },
{ "mustafaturhan.com", true },
{ "mustard.co.uk", true },
{ "mustardking.me", true },
@@ -23398,32 +26061,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "muthai.in.th", true },
{ "mutuals.cool", true },
{ "mutuelle.fr", true },
+ { "muunnin.net", true },
+ { "muurlingoogzorg.nl", true },
{ "muusikoiden.net", true },
{ "muwatenraqamy.org", true },
+ { "muz2u.ru", true },
{ "muzeumkomiksu.eu", true },
{ "muzhijy.com", true },
- { "muzi.cz", true },
{ "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 },
{ "mwainc.org", true },
+ { "mwalz.com", true },
+ { "mwamitours.com", true },
{ "mware-staging.azurewebsites.net", true },
{ "mwavuli.co.ke", true },
{ "mwba.org", true },
{ "mwe.st", true },
- { "mwohlfarth.de", true },
+ { "mwezi-foundation.org", true },
+ { "mwezi.org", true },
{ "mwtdev.se", true },
{ "mww.moe", true },
+ { "mx-quad.fr", true },
+ { "mx.org.ua", true },
{ "mx.search.yahoo.com", false },
{ "mx5international.com", true },
+ { "mxdanggui.org", true },
{ "mxihan.xyz", true },
{ "mxn8.com", true },
- { "mxp.tw", true },
{ "my-aftershave-store.co.uk", true },
+ { "my-best-wishes.com", true },
{ "my-cdn.de", true },
{ "my-contract.ch", true },
{ "my-contract.info", true },
@@ -23431,14 +26105,12 @@ 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 },
{ "my-new-bikini.de", true },
{ "my-nextcloud.at", true },
- { "my-plancha.ch", true },
- { "my-static-demo-808795.c.cdn77.org", true },
- { "my-static-live-808795.c.cdn77.org", true },
{ "my-stuff-online.com", true },
{ "my.onlime.ch", false },
{ "my.usa.gov", false },
@@ -23448,22 +26120,22 @@ 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 },
{ "myalliancechurch.com", true },
{ "myamend.com", true },
+ { "myamihealth.com", true },
{ "myamity.info", true },
{ "myammo.ru", true },
{ "myanimelist.net", true },
{ "myapexcard.com", true },
- { "myappliancerepairhouston.com", true },
- { "myartsway.com", true },
+ { "myaspenheights.com", true },
{ "mybagofcoffee.com", true },
+ { "mybasementdoctor.com", true },
{ "mybb.com", true },
{ "mybb.de", true },
- { "mybboard.pl", true },
{ "mybeautyjobs.de", true },
{ "mybicc.org", true },
{ "myblockchain.cloud", true },
@@ -23471,27 +26143,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mybodylife.com", true },
{ "mybon.at", false },
{ "mybonfire.com", true },
+ { "myboothang.com", true },
+ { "mybreastcancerjourney.com", true },
+ { "mybus.ro", true },
+ { "mybusiness.wien", true },
+ { "mycamda.com", true },
{ "mycard.moe", true },
{ "mycareersfuture.sg", true },
+ { "mycarwashers.com", true },
+ { "mycc.be", true },
{ "mycieokien.info", false },
{ "mycinema.pro", true },
{ "mycircleworks.com", true },
+ { "myclasscam.com", true },
+ { "myclasscam.org", true },
{ "myclinicalstudybuddy.com", true },
{ "mycloud-system.com", true },
{ "mycofairtrade.com", true },
{ "mycompanion.cz", true },
{ "myconan.net", true },
+ { "myconnect.cn", true },
{ "myconsulting.ch", true },
+ { "mycookrecetas.com", true },
+ { "mycoupons.com", true },
{ "mycr.eu", true },
- { "mycreativeartsconsulting.com", true },
{ "mycreativenook.com", true },
{ "mycreditcardcenter.com", true },
{ "mycrypnet.io", true },
- { "mycrypto.com", true },
+ { "mycrypto.com", false },
{ "mycrystalgrove.com", true },
{ "mycuco.it", true },
{ "mycustomwriting.com", true },
{ "mydarkstar.net", true },
+ { "mydatadoneright.eu", true },
{ "mydaywebapp.com", true },
{ "mydebian.in.ua", true },
{ "mydentalplan.gr", true },
@@ -23500,49 +26184,54 @@ 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 },
{ "mydreamshaadi.in", true },
- { "mydrone.services", true },
{ "mydroneservices.ca", true },
{ "mydroneservices.com", true },
+ { "myduffyfamily.com", true },
{ "myeberspaecher.com", true },
{ "myeffect.today", true },
{ "myeisenbahn.de", true },
- { "myeml.net", true },
- { "myessaygeek.com", true },
{ "myetherwallet.com", true },
{ "myf.cloud", true },
+ { "myfae.eu", true },
{ "myfantasysportstalk.com", true },
{ "myfedloan.org", true },
{ "myfirenet.com", true },
- { "myfishpalace.at", true },
{ "myfloridadeferredcomp.com", true },
{ "myforfaitmobile.com", true },
{ "myfreemp3.click", true },
{ "myfrenchtattoo.fr", true },
{ "myg21.com", true },
{ "mygadgetguardian.lookout.com", false },
- { "mygalgame.com", true },
{ "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 },
- { "mygreenrecipes.com", true },
{ "mygretchen.de", true },
{ "mygrotto.org", true },
{ "mygymer.ch", true },
{ "myhatsuden.jp", true },
{ "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 },
@@ -23550,13 +26239,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "myloan.hk", true },
{ "mylookout.com", false },
{ "mylstrom.com", true },
+ { "mylucknursinghome.com", true },
{ "mymadina.com", true },
{ "mymall.co.jp", true },
{ "mymarketingcourses.com", true },
@@ -23564,47 +26258,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mymed.de", true },
{ "mymed.eu", true },
{ "mymedz.nl", true },
+ { "mymixtapez.com", true },
{ "mymommyworld.com", true },
{ "mymotor.nl", true },
{ "myms.eu", true },
+ { "mymun.com", true },
{ "mymun.net", true },
{ "mymusiclist.alwaysdata.net", true },
{ "mymx.lu", true },
{ "myna.go.jp", true },
{ "mynameistavis.com", true },
+ { "myndcoin.com", true },
{ "mynetworkingbuddy.com", true },
{ "mynext.events", true },
{ "mynextmove.org", true },
{ "mynn.io", true },
- { "mynook.info", true },
+ { "mynook.info", false },
{ "mynortherngarden.com", true },
{ "myonline.hu", true },
+ { "myonline.store", true },
+ { "myonlinevehicleinsurance.com", true },
{ "myoptumhealthcomplexmedical.com", true },
{ "myoptumhealthparentsteps.com", true },
{ "myotopie.de", true },
{ "myoueb.fr", true },
{ "myoukochou.com", true },
+ { "myownconference.cloud", true },
{ "myownconference.com", true },
{ "myownconference.com.ua", true },
- { "myownconference.es", true },
{ "myownconference.pl", true },
- { "myownconference.pt", true },
{ "myownconference.ru", true },
{ "myowndisk.com", true },
{ "myowndisk.net", true },
- { "myownwebinar.com", true },
{ "mypaperdone.com", true },
- { "mypaperwriter.com", true },
+ { "mypartnernews.com", true },
+ { "mypartybynoelia.es", true },
+ { "mypay.fr", 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 },
@@ -23612,6 +26314,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 },
@@ -23644,6 +26347,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myrepublic.nz", true },
{ "myrepublic.ph", true },
{ "myrepublic.rocks", true },
+ { "myrepublic.run", true },
{ "myrepublic.tk", true },
{ "myrepublic.tv", true },
{ "myrepublic.tw", true },
@@ -23662,12 +26366,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myrepublictelecom.com", true },
{ "myrepubllc.net", true },
{ "myresearchapp.com", true },
+ { "myrevery.com", true },
{ "myrewardspoints.com", true },
{ "myriadof.com", true },
{ "myrig.com", true },
- { "myrig.com.ua", true },
- { "myrig.ru", true },
+ { "myrig.net", true },
+ { "myrnabiondo.com.br", true },
{ "myrotvorets.center", true },
+ { "myrotvorets.news", true },
{ "myrp.co", true },
{ "mysber.ru", true },
{ "myschoolphoto.org", true },
@@ -23675,7 +26381,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mysecretcase.com", false },
{ "mysectools.org", true },
{ "myself5.de", true },
- { "myseo.ga", true },
+ { "myservicearl.com", true },
{ "myseu.cn", true },
{ "mysexydate24.com", true },
{ "myshirtsize.com", true },
@@ -23686,28 +26392,26 @@ 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 },
{ "myssl.com", true },
- { "mystatus24.com", false },
{ "mysteriouscode.io", true },
+ { "mysterydata.com", true },
{ "mysterymind.ch", true },
{ "mysterysear.ch", true },
{ "mystic-welten.de", true },
{ "mystickphysick.com", true },
{ "mysticplumes.com", true },
{ "mystorymonster.com", true },
- { "mystown.org", true },
{ "mystudycart.com", true },
- { "mysupboard.de", true },
{ "myswissmailaddress.com", true },
{ "mytfg.de", true },
- { "mythemeshop.com", true },
+ { "mythemeshop.com", false },
{ "mythengay.ch", true },
{ "mythicdelirium.com", true },
{ "myting.net", true },
+ { "mytraiteurs.com", true },
{ "mytripcar.co.uk", true },
{ "mytripcar.com", true },
{ "mytripcar.de", true },
@@ -23715,9 +26419,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mytripcar.fr", true },
{ "mytruecare.org", true },
{ "mytty.net", true },
- { "mytuleap.com", true },
+ { "mytuleap.com", false },
{ "mytun.com", true },
- { "mytweeps.com", true },
{ "myulog.net", true },
{ "myunox.com", true },
{ "myupdatestar.com", true },
@@ -23730,22 +26433,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myvitalhealthsolutions.com.au", true },
{ "myvoipnews.com", true },
{ "myvpl.com", true },
- { "mywallets.io", 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-kanazawa.jp", true },
+ { "n-linear.org", true },
{ "n-m.lu", true },
{ "n-man.info", true },
{ "n-pix.com", false },
@@ -23754,27 +26465,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "n0paste.tk", false },
{ "n0psled.nl", true },
{ "n26.com", true },
- { "n2host.eu", true },
- { "n3twork.net", true },
+ { "n2diving.net", true },
+ { "n2servers.com", true },
{ "n4v.eu", true },
{ "n5118.com", true },
{ "n6a.net", true },
{ "n7.education", true },
+ { "n8ch.net", true },
+ { "n8mgt.com", true },
+ { "n8nvi.com", true },
+ { "n8solutions.net", true },
+ { "n8solutions.us", true },
{ "na-school.nl", true },
+ { "naahgluck.de", true },
{ "naam.me", true },
{ "nabaleka.com", true },
{ "nabankco.com", true },
{ "nabidkamajetku.cz", true },
+ { "nabidkydnes.cz", true },
{ "nabytek-valmo.cz", true },
+ { "nacfit.com", true },
{ "nachsendeauftrag.net", true },
{ "nachsenden.info", true },
{ "nachtmuziek.info", true },
{ "nacin.com", true },
- { "nacktwanderfreunde.de", true },
+ { "nacktetatsachen.at", false },
{ "nacyklo.cz", true },
{ "nadejeproninu.cz", true },
{ "nadelholzkulturen.de", true },
+ { "naders.com", true },
+ { "nadiafourcade-photographie.fr", true },
{ "nadine-chaudier.net", true },
+ { "nadsandgams.com", true },
{ "nadyaolcer.fr", true },
{ "nafod.net", true },
{ "naga-semi.com", true },
@@ -23788,21 +26510,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nah.nz", true },
{ "nah.re", true },
{ "nahura.com", true },
+ { "nai-job.jp", true },
{ "nailattitude.ch", true },
{ "nailchiodo.com", true },
- { "nailedithomebuilders.com", true },
{ "nailsalon-aztplus.com", true },
+ { "nailtodayminneapolis.com", true },
{ "nairobibusinessreview.com", true },
+ { "naive.network", true },
{ "najany.de", true },
{ "najany.dk", true },
{ "najany.fr", true },
{ "najany.nl", true },
{ "najany.se", true },
+ { "najedlo.sk", true },
+ { "naji-astier.com", true },
{ "nakada4610.com", true },
+ { "nakalabo.jp", true },
{ "nakama.tv", true },
{ "nakandya.com", true },
+ { "nakayama.systems", true },
{ "nakedalarmclock.me", true },
{ "nakedtruthbeauty.com", true },
+ { "nakene.com", true },
+ { "nakladki.su", true },
+ { "nakliyat.name.tr", true },
{ "nakliyatsirketi.biz.tr", true },
{ "nako.no", true },
{ "nalepky-na-zed.cz", true },
@@ -23816,10 +26547,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nameid.org", true },
{ "namepros.com", true },
{ "namereel.com", true },
- { "namethatporn.com", true },
+ { "namethissymbol.com", true },
{ "nametiles.co", true },
{ "nami.bo", true },
- { "nami.exchange", true },
{ "nami.trade", true },
{ "naminam.de", true },
{ "namrs.net", true },
@@ -23827,16 +26557,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "namu.live", true },
{ "namu.moe", true },
{ "namu.wiki", true },
- { "namuwikiusercontent.com", true },
- { "nanami.moe", true },
{ "nanarose.ch", true },
{ "nanch.com", true },
+ { "nancytelford.com", true },
{ "nandex.org", true },
+ { "nange.cn", true },
{ "nange.co", true },
{ "nankiseamansclub.com", true },
+ { "nannytax.ca", true },
+ { "nano.voting", true },
{ "nanofy.org", true },
{ "nanogi.ga", true },
+ { "nanogramme.fr", true },
+ { "nanollet.org", true },
{ "nanotechnologist.com", true },
+ { "nanotechnologysolutions.com.au", true },
{ "nanotechtorsion.com", true },
{ "nanovolt.nl", true },
{ "nanowallet.io", true },
@@ -23851,15 +26586,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "naphogar.com", true },
{ "napisdata.us", true },
{ "napolinissanctparts.com", true },
+ { "nappynko.com", true },
{ "narada.com.ua", true },
{ "narakenkoland.net", true },
{ "naralogics.com", true },
{ "narardetval.se", true },
- { "narazaka.net", true },
{ "narduin.xyz", true },
{ "narenderchopra.com", true },
{ "narfation.org", true },
{ "nargileh.nl", true },
+ { "naric.com", true },
{ "narindal.ch", true },
{ "narmos.ch", true },
{ "naro.se", true },
@@ -23873,20 +26609,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nasbi.pl", true },
{ "nasbnation.com", false },
{ "nascio.org", true },
- { "naseco.se", true },
+ { "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 },
- { "natecraun.net", true },
+ { "natgeofreshwater.com", true },
{ "nathaliebaron.ch", true },
{ "nathaliebaroncoaching.ch", true },
{ "nathaliedijkxhoorn.com", true },
@@ -23894,8 +26630,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nathan.io", true },
{ "nathanaeldawe.com", true },
{ "nathancheek.com", false },
+ { "nathankonopinski.com", true },
+ { "nathanmfarrugia.com", true },
{ "nathansmetana.com", true },
{ "nathumarket.com.br", true },
+ { "nation-contracting.com.hk", true },
{ "nationalbank.gov", true },
{ "nationalbanknet.gov", true },
{ "nationalcentereg.org", true },
@@ -23903,19 +26642,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nationalcrimecheck.com.au", true },
{ "nationalhomequotes.com", true },
{ "nationalmap.gov", true },
+ { "nationalpassportservice.info", true },
{ "nationalpriorities.org", true },
{ "nationaltaxprep.com", true },
{ "nationaltrails.ru", true },
+ { "nationwiderealtyinvestors.com", true },
{ "natives-team.ch", true },
+ { "nativitynj.org", true },
{ "nativs.ch", true },
{ "natlec.com", true },
- { "natropie.pl", true },
{ "natsumihoshino.com", true },
+ { "natuerlichabnehmen.ch", true },
+ { "natur.com", true },
+ { "natura-sense.com", true },
+ { "naturalezafengshui.com", true },
+ { "naturalfit.co.uk", true },
+ { "naturalhealthcures.net", false },
{ "naturalkitchen.co.uk", true },
{ "naturalspacesdomes.com", true },
{ "naturaum.de", true },
{ "nature-et-bio.fr", true },
- { "nature-shots.net", true },
+ { "natureclaim.com", true },
{ "natureflo.net", true },
{ "naturesbest.co.uk", true },
{ "naturesorganichaven.com", true },
@@ -23925,26 +26672,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "naturline.com", true },
{ "naturtint.co.uk", true },
{ "natusvita.com.br", true },
+ { "natverkstekniker.se", true },
{ "naude.co", true },
{ "naughty.audio", true },
+ { "naughtytoy.co.uk", true },
{ "nausicaahotel.it", true },
+ { "naut.ca", true },
{ "nautiljon.com", true },
{ "nautsch.de", true },
+ { "navarralanparty.org", true },
{ "navdeep.ca", true },
- { "navenlle.com", false },
{ "navienna.com", true },
{ "navient.com", true },
{ "navigate-it-services.de", false },
- { "navitime.me", true },
{ "navstevnik.sk", true },
{ "navycs.com", true },
{ "nawir.de", true },
{ "nayahe.ru", true },
+ { "nayami64.xyz", true },
{ "nayanaas.com", true },
+ { "nayr.us", true },
{ "nazevfirmy.cz", true },
- { "nazigol.com", true },
+ { "nazukebanashi.com", true },
{ "nazuna.blue", true },
{ "nb.zone", true },
+ { "nb01.com", true },
{ "nb6.de", true },
{ "nba-2k.com", true },
{ "nba.christmas", true },
@@ -23981,8 +26733,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 },
@@ -24003,86 +26753,96 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nbgrooves.de", true },
{ "nbhorsetraining.com", true },
{ "nbib.gov", true },
- { "nbl.org.tw", true },
- { "nbp.com.pk", true },
+ { "nbnnetwork.com", true },
{ "nbrain.de", true },
{ "nbrii.com", true },
{ "nbriresearch.com", true },
- { "nbtparse.org", true },
+ { "nbrown.us", true },
{ "nbur.co.uk", true },
{ "nc-beautypro.fr", true },
{ "nc-formation.fr", true },
{ "nc-network.io", true },
+ { "nc99.co", true },
+ { "nca.ink", true },
{ "ncamarquee.co.uk", true },
{ "ncands.net", true },
- { "ncaq.net", true },
{ "ncc-efm.com", true },
{ "ncc-efm.org", true },
{ "ncc-qualityandsafety.org", true },
{ "nccemail.net", true },
{ "ncdc.pt", true },
{ "ncea.net.au", true },
+ { "ncgt.se", true },
{ "nchangfong.com", true },
{ "nchponline.org", true },
{ "ncic.gg", true },
- { "nclvle.co.uk", true },
+ { "ncloud.freeddns.org", true },
{ "ncm-malerbetrieb.de", true },
{ "ncsc.gov.uk", true },
{ "ncsccs.com", true },
{ "ncstep.org", true },
+ { "nctx.co.uk", true },
{ "ndarville.com", true },
{ "ndbt.com", true },
{ "ndcpolipak.com", true },
{ "ndeoffshore.com", true },
{ "nder.be", true },
+ { "ndfa.net", true },
+ { "ndfirefighter.com", true },
{ "ndhlink.com", true },
- { "ndmath.club", true },
{ "ndpbrn-research.org", true },
+ { "ndphp.org", true },
+ { "ndpigskin.com", true },
{ "nds-helicopter.de", true },
+ { "ndum.ch", true },
{ "ndy.sex", true },
{ "ne-on.org", true },
{ "nea.gov", true },
- { "nearbi.com.mx", true },
{ "nearby.in.th", true },
{ "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 },
+ { "nebula.exchange", true },
{ "nebulae.co", true },
{ "nebuluxcapital.com", true },
{ "necessaryandproportionate.net", true },
{ "necessaryandproportionate.org", true },
+ { "nechiactua.com", true },
{ "necormansir.com", true },
{ "nectarleaf.com", true },
{ "nedcdata.org", true },
+ { "nederland.media", true },
+ { "nederlands-vastgoedfonds.nl", true },
{ "nedim-accueil.fr", true },
{ "nedlinin.com", true },
{ "nedraconsult.ru", true },
- { "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 },
@@ -24091,8 +26851,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neillans.com", true },
{ "neilshealthymeals.com", true },
{ "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 },
@@ -24105,55 +26865,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nekowa.moe", true },
{ "nekusoul.de", true },
{ "nelhage.com", true },
- { "nella-project.org", true },
- { "nella.io", true },
- { "nellacms.com", true },
- { "nellacms.org", true },
- { "nellafw.org", true },
- { "nemanja.top", true },
{ "nemcd.com", true },
- { "nemecl.eu", true },
{ "nemez.net", true },
{ "nemo.run", true },
{ "nemopan.com", true },
- { "nemplex.win", true },
+ { "nemopret.dk", true },
+ { "nemplex.com", 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 },
+ { "neodigital.bg", true },
{ "neoedresources.org", true },
- { "neoeliteconsulting.com", true },
- { "neojames.me", true },
+ { "neohu.com", true },
{ "neojo.org", true },
- { "neokobe.city", true },
{ "neolaudia.es", true },
- { "neolink.dk", true },
{ "neonataleducationalresources.org", true },
{ "neonatalgoldenhours.org", true },
{ "neonknight.ch", true },
{ "neons.org", true },
{ "neophilus.net", true },
+ { "neos.co.jp", true },
{ "neosdesignstudio.co.uk", true },
{ "neostralis.com", true },
+ { "neotiv.com", true },
+ { "neowin.net", true },
{ "neowlan.net", true },
{ "neoxcrf.com", true },
{ "neoz.com.br", true },
{ "nepageeks.com", true },
{ "nepal-evolution.org", true },
+ { "nepezzano13.com", true },
{ "nephelion.org", true },
- { "nephos.xyz", true },
{ "nephy.jp", true },
{ "nepovolenainternetovahazardnihra.cz", true },
{ "nepremicninar.com", true },
{ "nepremicnine.click", true },
{ "nepremicnine.net", true },
{ "nepustil.net", false },
- { "nerdbox.cc", true },
+ { "nerdca.st", true },
{ "nerdhouse.io", true },
{ "nerdmind.de", true },
{ "nerdoutstudios.tv", true },
@@ -24163,13 +26919,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nerdwallet.com", true },
{ "nerdydev.net", true },
{ "nerot.eu", true },
+ { "nerpa-club.ru", true },
{ "nerull7.info", true },
- { "nerven.se", false },
+ { "nerven.se", true },
{ "nesbase.com", true },
{ "nesolabs.com", true },
{ "nesolabs.de", true },
- { "nestedquotes.ca", true },
- { "nesterov.pw", true },
{ "nestor.nu", true },
{ "neswec.org.uk", true },
{ "net-masters.pl", true },
@@ -24179,7 +26934,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 },
@@ -24188,26 +26942,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "netbox.org", true },
{ "netbrewventures.com", true },
{ "netbulls.io", true },
+ { "netbuzz.ru", true },
{ "netconnect.at", true },
{ "netcoolusers.org", true },
+ { "netd.at", true },
{ "netdex.co", true },
- { "netducks.com", true },
- { "netducks.space", true },
{ "netera.se", true },
+ { "neteraser.de", true },
+ { "netexem.com", true },
{ "netfabb.com", true },
{ "netflixlife.com", true },
{ "netfog.de", true },
{ "netfuture.ch", true },
{ "netfxharmonics.com", true },
- { "netguide.co.nz", true },
{ "nethackwiki.com", true },
{ "nethask.ru", true },
+ { "nethostingtalk.com", true },
{ "nethruster.com", true },
{ "nethunter.top", true },
{ "netki.com", true },
{ "netlentes.com.br", true },
+ { "netlocal.ru", true },
{ "netmagicas.com.br", true },
{ "netmeister.org", true },
+ { "netnea.com", true },
{ "netnik.de", true },
{ "netnodes.net", true },
{ "netraising.com", false },
@@ -24216,7 +26974,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "netrider.net.au", false },
{ "netrogue.ninja", true },
{ "netronix.be", true },
- { "netronome.com", true },
+ { "netsec.cloud", true },
{ "netsigna.de", true },
{ "netsite.dk", true },
{ "netsoins.org", true },
@@ -24224,15 +26982,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "netsparker.com.tr", true },
{ "netspeedia.net", true },
{ "netsphere.cz", true },
+ { "nettacompany.com.tr", true },
{ "nettamente.com", true },
{ "nette.org", true },
{ "nettegeschenke.de", true },
{ "nettia.fi", true },
+ { "nettilamppu.fi", true },
{ "netto-service.ch", true },
{ "nettools.link", true },
- { "nettopower.dk", true },
- { "nettoyage.email", true },
- { "nettplusultra-rhone.fr", true },
{ "nettx.co.uk", true },
{ "netulo.com", true },
{ "netvizura.co.uk", true },
@@ -24240,32 +26997,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "netwarc.eu", true },
{ "netwarc.nl", true },
{ "netweaver.uk", true },
+ { "network-midlands.co.uk", true },
+ { "network-midlands.uk", true },
{ "network-notes.com", true },
{ "network23.nl", true },
{ "networkersdiary.com", true },
+ { "networking-groups.co.uk", true },
{ "networking4all.com", true },
- { "networking4all.net", true },
{ "networkingnexus.net", true },
{ "networkingphoenix.com", true },
+ { "networkmidlands.co.uk", true },
+ { "networkmidlands.uk", 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 },
{ "neurexcellence.com", true },
{ "neurobiology.com", true },
{ "neurochip.com", true },
{ "neurocny.cloud", true },
{ "neuroethics.com", true },
- { "neurogroove.info", true },
{ "neurolab.no", true },
- { "neuronasdigitales.com", true },
{ "neuropharmacology.com", true },
+ { "neurostimtms.com", true },
{ "neurotransmitter.net", true },
{ "neurozentrum-zentralschweiz.ch", true },
+ { "neutein.com", true },
{ "neutralox.com", false },
{ "neuwal.com", true },
{ "neva.li", true },
@@ -24283,11 +27045,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "new-process.com", true },
{ "new-process.de", true },
{ "new-process.eu", true },
+ { "new-web-studio.com", true },
{ "new.travel.pl", true },
{ "newaccess.ch", true },
- { "newbieboss.com", false },
{ "newbietech.cn", false },
- { "newborncryptocoin.com", false },
+ { "newborncryptocoin.com", true },
{ "newburybouncycastles.co.uk", true },
{ "newburyparkelectric.com", true },
{ "newburyparkelectrical.com", true },
@@ -24295,14 +27057,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "newburyparkexteriorlighting.com", true },
{ "newburyparklandscapelighting.com", true },
{ "newburyparkoutdoorlighting.com", true },
+ { "newcab.de", true },
{ "newcitygas.ca", true },
{ "newcityinfo.ch", true },
{ "newcitystudio.ch", true },
{ "newcloudwhodis.com", true },
- { "newcreamforface.com", true },
{ "newday.host", true },
- { "newdeveloper.download", true },
{ "newearth.press", true },
+ { "newfangledscoop.com", true },
{ "newfiepedia.ca", true },
{ "newgrowbook.com", true },
{ "newguidance.ch", true },
@@ -24311,29 +27073,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "newjianzhi.com", true },
{ "newkaliningrad.ru", true },
{ "newknd.com", true },
+ { "newlifeband.de", true },
{ "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 },
- { "newpoke.net", true },
+ { "newposts.ru", true },
{ "newreleases.io", true },
- { "news47ell.com", true },
- { "newsa2.com", true },
- { "newsaboutgames.de", true },
- { "newserumforskin.com", true },
+ { "newsgroups.io", true },
+ { "newsletteralerts.com", true },
{ "newsmotor.info", true },
{ "newspsychology.com", true },
{ "newstone-tech.com", true },
+ { "newsyslog.org", true },
{ "newtonproject.org", true },
{ "newtrackon.com", true },
{ "newvehicle.com", true },
+ { "nex.li", true },
{ "nex.sx", true },
- { "nexgeneration-solutions.com", true },
+ { "nexd.com", true },
{ "nexicafiles.com", true },
- { "nexril.net", true },
{ "next-web.ad.jp", true },
+ { "next176.sk", true },
{ "next24.io", true },
{ "nextads.ch", true },
{ "nextbranders.com", true },
@@ -24341,12 +27105,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nextcasino.com", true },
{ "nextcloud.co.za", true },
{ "nextcloud.com", true },
- { "nextend.net", true },
- { "nextend.org", true },
+ { "nextcloud.li", true },
+ { "nextclouddarwinkel.nl", true },
{ "nextevolution.co.uk", true },
+ { "nextgen.sk", true },
{ "nextgencel.com", true },
+ { "nextgenthemes.com", true },
{ "nextgreatmess.com", true },
- { "nexthop.jp", true },
+ { "nextiot.de", true },
{ "nextmbta.com", true },
{ "nextme.se", true },
{ "nextnely.com", true },
@@ -24354,41 +27120,48 @@ 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 },
{ "nexwebsites.com", true },
{ "nexxus-sistemas.net.br", true },
{ "neyer-lorenz.de", true },
{ "nezrouge-est-vaudois.ch", true },
{ "nezrouge-geneve.ch", true },
+ { "nezvestice.cz", true },
{ "nf4.net", true },
{ "nf9q.com", true },
+ { "nfam.de", true },
{ "nfe-elektro.de", true },
- { "nfhome.be", true },
{ "nfir.nl", true },
{ "nfl.dedyn.io", true },
{ "nfl.duckdns.org", true },
+ { "nflchan.org", true },
{ "nflmocks.com", true },
{ "nfls.io", true },
- { "nfluence.org", true },
+ { "nflsic.org", true },
+ { "nfpors.gov", true },
{ "nframe.io", true },
- { "nfrost.me", true },
{ "nfsec.pl", true },
{ "nfz.moe", true },
{ "ng-musique.com", true },
{ "ngasembaru.com", true },
+ { "ngc.gov", false },
{ "nghe.net", true },
+ { "ngi.eu", true },
{ "nginxconfig.com", true },
{ "nginxconfig.io", true },
{ "ngndn.jp", true },
+ { "ngt.gr", true },
+ { "nguyenminhhung.com", 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 },
- { "nhliberty.org", true },
{ "nhome.ba", true },
{ "nhsolutions.be", true },
{ "nhw.ovh", true },
@@ -24409,6 +27182,7 @@ 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 },
@@ -24418,42 +27192,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nichteinschalten.de", false },
{ "nichthelfer.de", true },
{ "nicic.gov", true },
- { "nickcleans.co.uk", true },
{ "nickcraver.com", true },
{ "nickdekruijk.nl", true },
{ "nickguyver.com", true },
+ { "nickhitch.co.uk", true },
{ "nickloose.de", true },
{ "nicklord.com", true },
+ { "nickmertin.ca", true },
{ "nickmorri.com", true },
{ "nickplotnek.co.uk", true },
{ "nickrickard.co.uk", true },
+ { "nicks-autos.com", true },
{ "nickscomputers.nl", true },
{ "nickserve.com", true },
{ "nickstories.de", true },
{ "niclasreich.de", true },
{ "nicn.me", true },
{ "nico.st", true },
+ { "nicochinese.com", 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 },
{ "nicolaw.uk", true },
- { "nicoleoquendo.com", true },
+ { "nicolemathew.com", true },
{ "niconico.ooo", true },
{ "niconode.com", false },
{ "nicoobook.com", true },
+ { "nicoobook.net", true },
{ "nicsezcheckfbi.gov", true },
{ "nicul.in", true },
{ "nidro.de", true },
{ "nidsuber.ch", true },
{ "niederohmig.de", true },
- { "niedersetz.de", true },
{ "niehage.name", true },
{ "nielshoogenhout.be", true },
{ "nielshoogenhout.eu", true },
@@ -24474,8 +27253,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "niess.space", true },
{ "niesstar.com", true },
{ "nietzsche.com", true },
+ { "nieuwsberichten.eu", true },
{ "nieuwslagmaat.nl", true },
- { "niffler.software", true },
+ { "nifc.gov", true },
{ "niftiestsoftware.com", true },
{ "nigelwakefield.com", true },
{ "nigensha.co.jp", true },
@@ -24493,29 +27273,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nightmoose.org", true },
{ "nightsi.de", true },
{ "nightstand.io", true },
- { "nightwinds.tk", 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.host", true },
{ "niklas.pw", true },
- { "niklasanderson.com", true },
{ "niklasbabel.com", true },
- { "nikolasgrottendieck.com", true },
+ { "nikolainevalainen.fi", true },
{ "nikomo.fi", false },
{ "nikoninframe.co.uk", true },
+ { "nikonlibrary.co.uk", true },
+ { "nikonnps.co.uk", true },
{ "nikonpromotions.co.uk", true },
{ "nikonschool.co.uk", true },
- { "nikz.in", true },
+ { "niktok.com", true },
{ "nil.gs", true },
{ "nil.mx", true },
{ "niles.xyz", true },
@@ -24531,10 +27312,13 @@ 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 },
{ "ninja-galerie.de", true },
+ { "ninja-skillz.com", true },
+ { "ninjan.co", true },
{ "ninjaworld.co.uk", true },
{ "ninjio.com", true },
{ "ninov.de", true },
@@ -24544,54 +27328,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ninverse.com", true },
{ "nipax.cz", true },
{ "nipe-systems.de", true },
+ { "nipit.biz", true },
{ "nippon-oku.com", true },
{ "nippon.fr", true },
{ "niqex.com", true },
- { "nirjharstudio.com", true },
{ "nirjonmela.com", true },
{ "nirjonmela.net", true },
{ "nirudo.me", true },
- { "nirvanashop.com", true },
+ { "niscats.com", true },
{ "nissanofbismarckparts.com", true },
- { "nitaonline.org", true },
{ "nitifilter.com", true },
+ { "nitix.games", true },
{ "nitrix.me", true },
- { "nitrohorse.com", true },
+ { "nitrohorse.com", false },
{ "nitrokey.com", true },
{ "nitropanel.com", true },
{ "nitropur.com", true },
{ "nitropur.de", true },
{ "nitrous-networks.com", true },
+ { "nitschinger.at", true },
{ "niu.moe", true },
- { "niva.synology.me", true },
- { "nivi.ca", true },
{ "nix.black", true },
- { "nixne.st", true },
{ "nixonlibrary.gov", true },
+ { "nixtest.net", true },
+ { "nixx-gel.cz", true },
{ "niyawe.de", true },
+ { "niyazpoyilan.com", false },
{ "nja.id.au", true },
{ "njast.net", true },
{ "njguardtraining.com", true },
{ "njilc.com", true },
{ "njpjanssen.nl", true },
{ "nkapliev.org", true },
+ { "nkforum.pl", true },
{ "nkinka.de", true },
{ "nkp-media.de", true },
{ "nl-ix.net", true },
{ "nl.search.yahoo.com", false },
+ { "nl3ehv.nl", true },
{ "nlap.ca", false },
{ "nlbewustgezond.nl", true },
+ { "nlegall.fr", true },
{ "nlfant.eu", true },
{ "nllboard.co.uk", true },
{ "nlleisure.co.uk", true },
{ "nlm.gov", true },
- { "nlrb.gov", true },
{ "nlt.by", false },
- { "nmd.so", true },
- { "nmgb.ga", true },
- { "nmgb.ml", true },
+ { "nmmlp.org", true },
{ "nmnd.de", true },
{ "nmontag.com", true },
+ { "nmsinusdoc.com", true },
{ "nn.cz", true },
{ "nna774.net", true },
{ "nnqc.nl", true },
@@ -24599,41 +27385,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "no-xice.com", true },
{ "no.search.yahoo.com", false },
{ "noagendahr.org", true },
+ { "noah-witt.com", true },
+ { "noahjacobson.com", true },
{ "noahmodas.com.br", true },
{ "noahsaso.com", true },
+ { "noahwitt.me", true },
{ "nobitakun.com", true },
{ "nobledust.com", true },
{ "nobleparkapartments.com.au", true },
{ "nobly.de", true },
{ "noc.org", true },
- { "noc.wang", true },
{ "nocit.dk", true },
{ "nocks.com", true },
- { "nocmd.com", true },
{ "nocs.cn", true },
- { "nodalr.com", true },
{ "nodari.com.ar", true },
{ "nodariweb.com.ar", true },
- { "nodecompat.com", true },
+ { "nodecdn.net", true },
{ "nodecraft.com", true },
- { "nodefoo.com", true },
{ "nodejs.de", true },
- { "nodelab-it.de", true },
{ "nodelia.com", true },
- { "nodepositcasinouk.com", true },
{ "nodesec.cc", true },
- { "nodesturut.cl", true },
- { "nodum.io", true },
+ { "nodesonic.com", true },
+ { "nodespin.com", true },
+ { "nodevops.com", true },
+ { "nodist.club", true },
{ "noeatnosleep.me", true },
{ "noedidacticos.com", true },
{ "noelclaremont.com", true },
{ "noellabo.jp", true },
+ { "noellimpag.me", true },
{ "noematic.space", true },
{ "noemax.com", true },
{ "noexec.org", true },
{ "noez.de", true },
{ "nofrillsdns.com", true },
{ "nogerondier.eu", true },
+ { "nogetime.com", true },
{ "noglobalwarrants.org", true },
{ "nohats.ca", true },
{ "nohkan.fr", true },
@@ -24641,6 +27428,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nohttps.org", true },
{ "nohup.se", true },
{ "nohup.xyz", true },
+ { "noima.com", true },
{ "noincludesubdomains.preloaded.test", false },
{ "noise.agency", true },
{ "noisetor.net", true },
@@ -24648,86 +27436,100 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "noisky.cn", true },
{ "noisyfox.cn", true },
{ "nojestorget.se", true },
- { "nojok.es", true },
{ "nokia.la", true },
{ "nokono.com", true },
{ "nolaviz.org", true },
{ "noleggio-bagni-chimici.it", true },
{ "noma-film.com", true },
{ "nomadproject.io", true },
+ { "nomagic.software", true },
{ "nomenclator.org", true },
{ "nomesbiblicos.com", true },
{ "nomial.co.uk", true },
{ "nomifensine.com", true },
{ "nomsy.net", true },
+ { "nonabytes.xyz", false },
{ "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 },
- { "noodleyum.com", true },
{ "noodplan.co.za", true },
{ "noodweer.be", true },
{ "noofficewalls.com", true },
+ { "noomist.com", true },
{ "noon-entertainments.com", true },
{ "noop.ch", true },
+ { "nooranevalainen.fi", true },
{ "noordsee.de", true },
+ { "noordwesthoekrit.nl", true },
{ "noorsolidarity.com", true },
+ { "noortronic.com", true },
{ "nootronerd.com", true },
{ "nootropic.com", true },
- { "nootropicpedia.com", true },
{ "noovell.com", true },
{ "nopaste.xyz", true },
{ "nopaynocure.com", true },
+ { "norad.sytes.net", true },
{ "norbertschneider-music.com", true },
+ { "nord-restaurant-bar.de", true },
{ "nord-sud.be", true },
{ "nordakademie.de", true },
+ { "norden.eu.org", true },
{ "nordicirc.com", true },
{ "nordinfo.fi", true },
{ "nordlichter-brv.de", true },
{ "nordmoregatebilklubb.com", true },
{ "nordnetz-hamburg.de", true },
{ "nordseeblicke.de", true },
+ { "nordwal.de", true },
{ "nordwaldzendo.de", true },
- { "noref.tk", true },
- { "noreply.mx", true },
+ { "norestfortheweekend.com", true },
+ { "noret.com", true },
{ "norichanmama.com", true },
{ "noriel.ro", true },
{ "normaculta.com.br", true },
- { "normalady.com", true },
{ "norman-preusser-gmbh.de", true },
{ "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 },
+ { "northcreekresortblue.ca", true },
+ { "northdakotahealthnetwork.com", true },
{ "northdevonbouncycastles.co.uk", true },
{ "northeastcdc.org", true },
{ "northeastrodeo.co.uk", true },
{ "northern-lakes.com", true },
{ "northerngate.net", true },
{ "northernhamsterclub.com", true },
- { "northernmuscle.ca", true },
+ { "northernpage.com", true },
+ { "northernpowertrain.com", true },
{ "northernselfstorage.co.za", true },
{ "northfieldyarn.com", true },
{ "northokanaganbookkeeping.com", true },
+ { "northpointoutdoors.com", true },
{ "northpole.dance", true },
+ { "northpost.is", 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 },
{ "noscript.net", true },
+ { "noscura.nl", true },
{ "nosecrets.ch", true },
- { "nosfermiers.com", true },
{ "noslite.nl", true },
{ "nospoint.cz", true },
{ "nosqlzoo.net", true },
@@ -24736,46 +27538,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nostosh.eu.org", true },
{ "nostraforma.com", false },
{ "noswap.com", true },
- { "nosx.tk", true },
{ "nosyu.pe.kr", true },
- { "nota-web.com", true },
{ "nota.moe", true },
{ "notabug.org", true },
+ { "notacooldomain.com", true },
{ "notadd.com", true },
- { "notadd.store", true },
{ "notallmine.net", true },
- { "notalone.gov", true },
{ "notar-glagowski.com", true },
{ "notar-glagowski.de", true },
{ "notar-peikert.com", true },
{ "notare-marktplatz24.info", true },
+ { "notarkrauss.de", true },
{ "notarvysocina.cz", true },
{ "notcompletelycorrect.com", true },
{ "notepad.nz", true },
{ "noteskeeper.ru", true },
+ { "noticaballos.com", true },
{ "noticiasdehumor.com", true },
- { "notificami.com", true },
{ "notify.moe", true },
+ { "notigatos.es", true },
+ { "notilus.fr", true },
{ "notinglife.com", true },
{ "notjustvacs.com", true },
+ { "notmybox.com", true },
{ "notnize.net", true },
{ "notnl.com", true },
{ "notofilia.com", true },
{ "notora.tech", true },
{ "notoriousdev.com", true },
- { "notrecourrier.net", true },
+ { "nototema.com", true },
{ "notsafefor.work", true },
- { "nottori.com", true },
{ "nottres.com", true },
{ "noudjalink.nl", true },
{ "noustique.com", true },
{ "nova-dess.ch", true },
+ { "nova-it.pl", true },
+ { "nova-kultura.org", true },
{ "nova-wd.org.uk", true },
{ "nova.live", true },
{ "novabench.com", true },
{ "novacoast.com", false },
{ "novadermis.es", true },
{ "novafreixo.pt", true },
+ { "novascan.net", true },
{ "novawave.ca", true },
{ "nove.city", true },
{ "noveciti.com", true },
@@ -24791,60 +27596,67 @@ 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 },
- { "nowcost.com", true },
+ { "nowall.online", true },
{ "nowhere.dk", true },
{ "nowitzki.me", true },
{ "nowlas.org", true },
{ "nowloading.co", true },
- { "nowremindme.com", true },
{ "noxlogic.nl", true },
+ { "noydeen.com", true },
{ "noyocenter.org", true },
{ "np-edv.at", true },
{ "np.search.yahoo.com", false },
{ "npath.de", true },
{ "npcrcss.org", true },
+ { "nphrm.com", true },
{ "npmcdn.com", true },
+ { "npregion.org", true },
+ { "npsas.org", true },
{ "npw.net", true },
- { "nqesh.com", true },
- { "nqeshreviewer.com", true },
- { "nrc-gateway.gov", true },
{ "nrd.li", true },
{ "nrdstd.io", true },
{ "nrev.ch", true },
{ "nrkn.fr", true },
{ "nrsweb.org", true },
- { "nrvn.cc", true },
+ { "nrvn.cc", false },
{ "ns-frontier.com", true },
{ "ns2servers.pw", true },
{ "nsa.lol", true },
- { "nsa.ovh", true },
- { "nsa.wtf", true },
{ "nsapwn.com", true },
{ "nsboston.org", true },
{ "nsboutique.com", true },
{ "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 },
{ "nsworks.com", true },
{ "ntags.org", true },
{ "ntcoss.org.au", true },
{ "nte.email", true },
- { "nth.sh", true },
{ "nti.de", true },
+ { "ntia.gov", true },
+ { "ntlabs.org", true },
{ "ntotten.com", true },
- { "ntppool.org", true },
+ { "ntppool.org", false },
+ { "ntsb.gov", true },
{ "ntwt.us", true },
{ "ntx360grad-fallakte.de", true },
{ "ntzwrk.org", true },
@@ -24852,21 +27664,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nu3tion.cz", true },
{ "nuacht.ie", true },
{ "nuamooreaindonesia.com", true },
- { "nubella.com.au", true },
- { "nubeslayer.com", true },
{ "nubu.at", true },
- { "nuclear-crimes.com", true },
+ { "nuclea.id", true },
+ { "nuclea.site", true },
{ "nuclearcat.com", true },
- { "nuclearcrimes.com", true },
- { "nuclearcrimes1.com", true },
{ "nucleuscore.org", true },
- { "nudestpics.com", true },
+ { "nudevotion.com", true },
{ "nuel.cl", true },
{ "nuevaimagenpublicidad.es", true },
{ "nuffield.nl", true },
{ "nugdev.co", true },
+ { "nukleosome.com", true },
{ "null-life.com", true },
{ "nullday.de", true },
+ { "nulle-part.org", true },
{ "nullonerror.org", true },
{ "nullpointer.io", true },
{ "nullroute.com", true },
@@ -24883,10 +27694,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "numero1.ch", true },
{ "numerologist.com", true },
{ "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 },
@@ -24894,81 +27704,99 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nuovaelle.it", true },
{ "nuquery.com", true },
{ "nur.berlin", true },
+ { "nureg.club", true },
+ { "nureg.net", true },
+ { "nureg.xyz", true },
{ "nuriacamaras.com", true },
{ "nursejj.com", true },
{ "nurseone.ca", true },
{ "nurses.dating", true },
{ "nursingschool.network", true },
{ "nuryahan.com.br", true },
- { "nusku.biz", true },
{ "nussadoclub.org", true },
+ { "nut.services", true },
{ "nutikell.com", true },
{ "nutleyeducationalfoundation.org", true },
{ "nutleyef.org", true },
{ "nutonic-sports.com", true },
{ "nutpanda.com", true },
+ { "nutra-creations.com", true },
+ { "nutrafitsuplementos.com.br", true },
{ "nutri-spec.me", true },
- { "nutricaovegana.com", true },
{ "nutriciametabolics-shop.de", true },
- { "nutrifyyourself.com", true },
+ { "nutridieta.com", true },
{ "nutripedia.gr", true },
{ "nutrishop.com", true },
+ { "nutrition.gov", true },
{ "nutrivisa.com.br", true },
{ "nuvechtdal.nl", true },
{ "nuvini.com", true },
+ { "nuvospineandsports.com", true },
{ "nuxer.fr", true },
{ "nv.gw", true },
{ "nve-qatar.com", true },
{ "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 },
+ { "nwitt.us", true },
+ { "nwk1.com", true },
+ { "nwperformanceandoffroad.com", true },
{ "nwr-waffenbuch.de", true },
{ "nwra.com", true },
{ "nwuss.okinawa", true },
{ "nwwc.dk", true },
{ "nwwnetwork.net", true },
{ "nxinfo.ch", true },
+ { "nxit.ca", true },
+ { "nxth.io", true },
{ "nya.as", true },
+ { "nyadora.com", true },
+ { "nyadora.moe", true },
{ "nyan.it", true },
{ "nyan.stream", true },
- { "nyanco.space", true },
+ { "nyansparkle.com", true },
{ "nyantec.com", true },
{ "nybiz.nyc", true },
{ "nycoyote.org", true },
- { "nyffo.com", true },
+ { "nydig.com", true },
+ { "nyghtus.net", false },
{ "nyhaoyuan.net", true },
{ "nyiad.edu", true },
{ "nyip.co.uk", true },
{ "nyip.edu", true },
{ "nylevemusic.com", true },
{ "nyloc.de", true },
- { "nylonfeetporn.com", true },
{ "nymphetomania.net", true },
{ "nynex.net", true },
{ "nyoronfansubs.org", true },
{ "nyphox.ovh", true },
{ "nys-hk.com", false },
- { "nystudio107.com", true },
+ { "nysteak5.com", true },
{ "nytrafficticket.com", true },
- { "nyuusannkinn.com", true },
{ "nyxi.eu", true },
{ "nyyu.tk", true },
{ "nzb.cat", false },
- { "nzdmo.govt.nz", true },
+ { "nzbr.de", true },
{ "nzstudy.ac.nz", true },
{ "nzws.me", true },
- { "o-loska.cz", true },
+ { "o-results.ch", true },
{ "o-sp.com", true },
{ "o2careers.co.uk", true },
{ "o3.wf", true },
{ "o3wallet.com", true },
+ { "o5.cx", true },
{ "o6asan.com", true },
{ "o8b.club", true },
{ "oaic.gov.au", true },
- { "oakesfam.net", true },
- { "oakington.info", true },
+ { "oakandresin.co", true },
+ { "oakington.info", false },
{ "oaklands.co.za", true },
{ "oakparkelectrical.com", true },
{ "oakparkexteriorlighting.com", true },
@@ -24976,38 +27804,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oakparklighting.com", true },
{ "oakparkoutdoorlighting.com", true },
{ "oakslighting.co.uk", true },
+ { "oaktree-realtors.com", true },
{ "oanalista.com.br", true },
{ "oasisdabeleza.com.br", true },
+ { "oasisim.net", false },
+ { "oatmealdome.me", true },
+ { "oatycloud.spdns.de", true },
{ "oauth-dropins.appspot.com", false },
{ "obamalibrary.gov", true },
+ { "obamawhitehouse.gov", true },
{ "oberhofdrinks.com", true },
{ "obermeiers.eu", 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 },
- { "obscur.us", true },
+ { "obrienswine.ie", true },
+ { "obs.group", 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 },
- { "ocad.com.au", true },
+ { "ocalaflwomenshealth.com", true },
+ { "ocarupo.com", true },
+ { "occ.gov", 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 },
+ { "oceanlord.me", true },
{ "oceanvisuals.com", true },
{ "ocelot.help", true },
{ "ocenovani-inspekce.cz", true },
@@ -25020,18 +27865,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ocim.ch", true },
{ "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 },
+ { "octobered.com", true },
+ { "octocaptcha.com", true },
+ { "octofox.de", true },
{ "octohedralpvp.tk", true },
- { "octohost.net", true },
{ "octolopagon.games", true },
+ { "octopus-agents.com", true },
{ "octosniff.net", true },
{ "octosys.net", true },
{ "octosys.org", true },
@@ -25045,13 +27894,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oddsandevensbookkeeping.ca", true },
{ "oddtime.net", true },
{ "odensc.me", true },
+ { "odense3dprint.dk", 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 },
+ { "oe-boston.com", true },
{ "oec-music.com", true },
{ "oeh.ac.at", true },
{ "oeko-bundesfreiwilligendienst-sh.de", true },
@@ -25063,14 +27917,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oemspace.net", true },
{ "oemspace.nl", true },
{ "oemwolf.com", true },
+ { "oenings.eu", true },
+ { "oessi.eu", true },
+ { "of2m.fr", true },
{ "ofcampuslausanne.ch", true },
+ { "ofda.gov", true },
+ { "ofertasadsl.com", true },
+ { "ofertino.es", true },
+ { "ofertolino.fr", true },
{ "offandonagain.org", true },
{ "offbyinfinity.com", true },
{ "offenekommune.de", true },
{ "offenes-deutschland.de", true },
- { "offerstone.cl", true },
+ { "offertegiuste.com", true },
{ "offfbynight.be", true },
{ "offgames.io", true },
+ { "offgridauto.com", true },
+ { "offgridhub.com", true },
{ "office-discount.at", true },
{ "office-discount.de", true },
{ "office-furniture-direct.co.uk", true },
@@ -25078,18 +27941,20 @@ 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.ie", 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 },
- { "ogis.gov", true },
+ { "ogkw.de", true },
{ "oglen.ca", true },
{ "ogocare.com", true },
{ "oguya.ch", true },
@@ -25097,29 +27962,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oh14.de", true },
{ "ohadsoft.com", true },
{ "ohai.su", true },
+ { "ohartl.de", true },
{ "ohchouette.com", true },
{ "ohd.dk", true },
{ "oheila.com", true },
- { "ohhdeertrade.com", true },
{ "ohhere.xyz", true },
{ "ohiohealthfortune100.com", true },
{ "ohling.org", true },
+ { "ohmayonnaise.com", true },
{ "ohne-name.de", true },
- { "ohreally.de", true },
+ { "ohnonotme.com", true },
+ { "ohol.se", true },
{ "ohsohairy.co.uk", true },
{ "ohyooo.com", true },
- { "oiaio.cn", true },
+ { "oi-wiki.org", true },
+ { "oil-ecn.ru", true },
{ "oilpaintingsonly.com", true },
{ "oirealtor.com", true },
{ "oisd.nl", true },
{ "oita-homes.com", true },
{ "ojaioliveoil.com", true },
- { "ojanaho.com", true },
{ "ojdip.net", true },
{ "ojomovies.com", true },
{ "ojp.gov", true },
+ { "okaidi.fr", true },
{ "okakuro.org", true },
{ "okanaganrailtrail.ca", true },
+ { "okashi.me", true },
{ "okay.cf", true },
{ "okay.coffee", true },
{ "okburrito.com", true },
@@ -25130,6 +27999,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "okib.ca", true },
{ "okin-jp.net", true },
{ "okinawa-mag.net", true },
+ { "okmx.cloud", true },
{ "okmx.de", true },
{ "okna-tm.kz", true },
{ "okonetwork.org.uk", true },
@@ -25139,48 +28009,61 @@ 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 },
- { "oldbrookinflatables.co.uk", true },
+ { "olcbrookhaven.org", true },
{ "oldbrookmarqueehire.co.uk", true },
{ "oldchaphome.nl", true },
- { "oldenglishsheepdog.com.br", true },
+ { "older-racer.com", true },
+ { "oldita.ru", true },
{ "oldking.net", true },
{ "oldnews.news", true },
+ { "oldno07.com", true },
{ "oldoakflorist.com", true },
{ "oldprop.com", true },
+ { "oldroutetwo.com", true },
+ { "oldsticker.com", true },
+ { "oldstmary.com", true },
{ "oldtimerreifen-moeller.de", true },
+ { "olecoin.io", true },
{ "olegon.ru", true },
{ "olegs.be", true },
{ "oleksii.name", true },
{ "oleodecopayba.com.br", true },
+ { "oles-hundehaus.de", true },
+ { "olfnewcastle.com", true },
+ { "olfsecane.org", true },
{ "olgiati.org", true },
{ "olgui.net", true },
{ "olgun.eu", true },
- { "olightstore.com", true },
+ { "olhcparish.net", true },
+ { "olifant.fr", true },
{ "olightstore.ro", true },
- { "oliode.tk", true },
{ "oliveoil.bot", true },
{ "oliveoilschool.org", true },
{ "oliveoiltest.com", true },
{ "oliveoiltimes.com", true },
{ "oliveraiedelabastideblanche.fr", true },
{ "oliverclausen.com", true },
+ { "oliverdunk.com", false },
{ "oliverfaircliff.com", true },
{ "olivernaraki.com", true },
{ "oliverniebuhr.de", true },
+ { "oliverschmid.space", 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 },
{ "ollies.cloud", true },
{ "ollies.cz", true },
{ "olliespage.com", true },
@@ -25189,47 +28072,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ollning.com", true },
{ "olltechjob.com", true },
{ "olmari.fi", true },
+ { "olmc-nutley.org", true },
+ { "olmcnewark.com", true },
{ "olmsted.io", true },
- { "ols.io", true },
+ { "olomercy.com", true },
+ { "olphseaside.org", true },
+ { "olqoa.org", true },
+ { "olsh-hilltown.com", true },
+ { "olsonproperties.com", true },
{ "olygazoo.com", true },
{ "olymp-arts.world", true },
+ { "olympeakgaming.tv", true },
{ "olympiads.ca", true },
{ "olympic-research.com", true },
+ { "om.yoga", true },
{ "om1.com", true },
{ "omanko.porn", 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 },
- { "omeuanimal.com", true },
{ "omf.link", true },
{ "omfg.exposed", true },
{ "omgbouncycastlehire.co.uk", true },
{ "omi-news.fr", true },
- { "omifind.com", true },
- { "omise.co", true },
+ { "omicron3069.com", true },
{ "omitech.co.uk", true },
{ "omlmetal.co.jp", true },
+ { "omniaclubs.com", true },
{ "omniasig.ro", true },
{ "omniasl.com", true },
{ "omniatv.com", true },
{ "omnibot.tv", true },
- { "omnisafira.com", true },
{ "omniscimus.net", false },
{ "omnisiens.se", true },
{ "omnisky.dk", true },
{ "omnitrack.org", true },
{ "omniverse.ru", true },
- { "omorashi.org", true },
+ { "omoide-hitokoto.com", true },
{ "omori.ch", true },
{ "omoteura.com", true },
{ "omranic.com", true },
{ "omronwellness.com", true },
{ "omsdieppe.fr", true },
{ "on-tech.co.uk", true },
+ { "on.tax", true },
{ "ona.io", true },
{ "onaboat.se", true },
{ "onahonavi.com", true },
@@ -25240,10 +28131,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oncf.asso.fr", true },
{ "oncodedesign.com", true },
{ "ond-inc.com", true },
+ { "ond-inc.jp", true },
{ "ondcp.gov", true },
{ "onderwijstransparant.nl", true },
+ { "ondevamosjantar.com", true },
{ "ondrej.org", true },
- { "ondrejhoralek.cz", true },
+ { "ondrejbudin.cz", true },
{ "one---line.com", true },
{ "one-resource.com", true },
{ "one-s.co.jp", true },
@@ -25253,6 +28146,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onebigcow.com", true },
{ "oneclic.ch", true },
{ "oneclickonejob.com", true },
+ { "onedegreehealth.com", true },
{ "onedot.nl", true },
{ "onedottwelve.co.jp", true },
{ "onedottwelve.com", true },
@@ -25261,85 +28155,88 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onee3.org", true },
{ "onefour.ga", false },
{ "oneheartbali.church", true },
+ { "oneidentity.me", true },
{ "oneiroi.co.uk", true },
{ "onemid.net", true },
- { "oneminute.io", false },
{ "onemoonmedia.de", true },
- { "onemusou.com", true },
{ "oneononeonone.de", true },
{ "oneononeonone.tv", true },
- { "onepointsafeband.ca", true },
- { "onepointsafeband.com", true },
+ { "onepercentrentals.com", true },
{ "onepointzero.com", true },
{ "oneprediction.com", true },
+ { "onesnzeroes.com", true },
{ "onesports.cz", true },
{ "onestepfootcare.com", true },
{ "onestopcastles.co.uk", true },
{ "onetcenter.org", true },
{ "onetcodeconnector.org", true },
+ { "onetech.it", true },
{ "onetime.info", true },
{ "onetonline.org", true },
+ { "onetouchrevealplus.com", true },
+ { "onetwentyseven001.com", true },
{ "oneway.ga", true },
{ "onewaymail.com", true },
{ "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 },
- { "onionplay.live", true },
+ { "onionbot.me", true },
+ { "onionplay.net", true },
{ "onionplay.org", true },
{ "onionscan.org", true },
+ { "onionyst.com", true },
{ "oniria.ch", true },
{ "onix.eu.com", true },
{ "onixcco.com.br", true },
+ { "onkentessegertdij.hu", true },
{ "onlfait.ch", true },
+ { "online-backup.se", true },
{ "online-bouwmaterialen.nl", true },
{ "online-calculator.com", true },
{ "online-consulting-corp.com", true },
{ "online-consulting-corp.fr", true },
{ "online-eikaiwa-guide.com", true },
{ "online-health-insurance.com", true },
- { "online-horoskop.ch", true },
{ "online-lernprogramme.de", true },
{ "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 },
- { "onlinecasinobluebook.com", true },
{ "onlinecensorship.org", true },
{ "onlinecollegeessay.com", true },
{ "onlinefashion.it", true },
- { "onlineinfographic.com", true },
+ { "onlinehashfollow.com", true },
{ "onlinekmc.com", true },
{ "onlinelegalmarketing.com", true },
{ "onlinelegalmedia.com", true },
{ "onlinelighting.com.au", true },
+ { "onlinemarketingmuscle.com", true },
{ "onlinemarketingtraining.co.uk", true },
{ "onlinepokerspelen.be", true },
- { "onlineporno.tv", 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 },
- { "onnee.ch", true },
- { "onnext.cc", true },
- { "ono.es", true },
- { "onoranze-funebri.biz", true },
+ { "onnaguse.com", true },
{ "onpay.io", true },
- { "onpermit.net", true },
{ "onqproductions.com", true },
{ "onrr.gov", true },
{ "ons.ca", true },
@@ -25349,13 +28246,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 },
@@ -25365,7 +28267,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ooharttemplates.com", true },
{ "ooonja.de", true },
{ "oopsis.com", true },
- { "oosoo.org", true },
{ "ooyo.be", true },
{ "op11.co.uk", false },
{ "opalesurfcasting.net", true },
@@ -25375,27 +28276,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "open-banking-access.uk", true },
{ "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 },
{ "open-letters.de", true },
{ "open-mesh.org", true },
{ "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 },
- { "openbsd.id", true },
{ "opencad.io", true },
{ "opencircuit.nl", true },
{ "openclima.com", true },
{ "opencluster.at", true },
{ "opencrm.co.uk", true },
+ { "opendata.cz", true },
{ "opendataincubator.eu", true },
{ "opendecide.com", true },
{ "openfir.st", true },
@@ -25404,11 +28303,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "opengovpartnership.de", true },
{ "openings.ninja", true },
{ "openintelligence.uk", true },
- { "openiocdb.com", true },
{ "openitforum.pl", true },
+ { "openjur.de", true },
{ "openkim.org", true },
{ "openkvk.nl", true },
- { "openmirrors.cf", true },
+ { "openmirrors.ml", true },
{ "openmtbmap.org", true },
{ "opennippon.com", true },
{ "opennippon.ru", true },
@@ -25420,10 +28319,12 @@ 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 },
{ "opensource-training.de", true },
+ { "opensourcesurvey.org", true },
{ "openspa.webhop.info", true },
{ "openssl.org", true },
{ "openstem.com.au", true },
@@ -25438,42 +28339,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "openwaveguide.de", true },
{ "openwifi.gr", true },
{ "openwireless.org", true },
- { "operad.fr", 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.com", true },
{ "opioids.gov", true },
{ "opium.io", true },
{ "oplop.appspot.com", true },
{ "opoleo.com", false },
{ "oportho.com.br", true },
- { "opp.ag", true },
- { "oppag.com.br", true },
+ { "oposiciones.com.es", true },
+ { "oposicionesapolicialocal.es", true },
+ { "oposicionescorreos.com.es", true },
+ { "oposicionescorreos.es", true },
+ { "oposicionescorreos.info", true },
+ { "oposicionesdejusticia.org", true },
+ { "oposicionesertzaintza.com.es", true },
+ { "oposicionesycursos.com", true },
+ { "oppada.com", true },
{ "oppaiti.me", true },
{ "oppejoud.ee", true },
{ "opportunis.me", true },
- { "opposer.me", true },
+ { "opportunity.de", true },
+ { "oppositionsecurity.com", true },
+ { "oppwa.com", true },
{ "opq.pw", true },
+ { "oprbox.com", true },
{ "oprechtgezegd.nl", true },
{ "oprueba.com", true },
{ "opryshok.com", true },
+ { "ops-com.com", true },
{ "opsmate.com", false },
- { "opsnotepad.com", true },
{ "opti-net.at", true },
{ "opticaltest.com", true },
- { "optiekzien.nl", true },
{ "optik-trosdorff.de", true },
{ "optimalsetup.com", true },
+ { "optimisedlabs.co.uk", true },
{ "optimisedlabs.com", true },
{ "optimist.bg", true },
- { "optimize-jpg.com", true },
{ "optimumwebdesigns.com", true },
{ "optimus.io", true },
{ "optimuscrime.net", true },
- { "optisure.de", true },
{ "optm.us", true },
{ "optmos.at", true },
{ "optometryscotland.org.uk", true },
@@ -25487,11 +28397,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orangejetpack.com", true },
{ "orangenbaum.at", true },
{ "orangenuts.in", true },
- { "oranges.tokyo", true },
{ "orangetravel.eu", true },
{ "orangutan-appeal.org.uk", true },
+ { "oranjee.net", true },
+ { "orbital3.com", true },
{ "orbu.net", true },
- { "orcahq.com", true },
+ { "orca.pet", true },
{ "orcamoney.com", true },
{ "orchideenettoyage.com", true },
{ "orchidlive.com", true },
@@ -25501,6 +28412,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orderessay.net", true },
{ "ordernow.at", true },
{ "orderswift.com", true },
+ { "ordoro.com", true },
{ "ordr.mobi", true },
{ "oreshinya.xyz", true },
{ "oreskylaw.com", true },
@@ -25508,7 +28420,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orf-digitalsatkarte.at", false },
{ "orf-kartentausch.at", false },
{ "organica.co.za", true },
- { "organicae.com", true },
{ "organisatieteam.nl", true },
{ "organisationsberatung-jacobi.de", true },
{ "organix.ma", true },
@@ -25519,60 +28430,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orians.eu", true },
{ "oribia.net", true },
{ "orientalart.nl", true },
- { "orientravelmacas.com", true },
+ { "oriflameszepsegkozpont.hu", true },
{ "origami.to", true },
{ "origamika.com", true },
+ { "original-christstollen.com", true },
+ { "original-christstollen.de", true },
{ "originalniknihy.cz", true },
{ "origincoffee.com", true },
{ "origincoffee.nz", true },
+ { "originpc.com", false },
{ "orikadabra.nl", true },
{ "orikum.org", true },
{ "orimex-mebel.ru", true },
{ "orion-universe.com", true },
{ "orioncokolada.cz", true },
+ { "oriondynamic.be", true },
+ { "orionfinancialservices.com", true },
{ "oriongames.eu", true },
{ "orkestar-krizevci.hr", true },
{ "orkiv.com", true },
+ { "orlandobalbas.com", true },
{ "orlandoprojects.com", true },
{ "orleika.io", true },
{ "orlives.de", false },
{ "ormer.nl", true },
- { "orovillelaw.com", true },
- { "orro.ro", true },
+ { "orocojuco.com", 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 },
- { "orui.com.br", true },
+ { "oruggt.is", true },
{ "orwell1984.today", true },
{ "oryva.com", true },
- { "orz.uno", true },
{ "os-chrome.ru", true },
{ "os-s.net", true },
{ "os-t.de", true },
{ "os24.cz", true },
{ "osacrypt.studio", true },
- { "osaka-fukushi.jp", true },
- { "osaka-jusan.jp", true },
- { "osaka-onakura.com", true },
{ "osakeannit.fi", true },
{ "osao.org", true },
{ "osbi.pl", true },
{ "osborn.io", true },
{ "osborneinn.com", true },
{ "osburn.com", true },
- { "oscamp.eu", true },
{ "oscarvk.ch", 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 },
+ { "osirium.com", true },
{ "oskrba.net", true },
{ "oskuro.net", true },
{ "osla.org", true },
@@ -25581,12 +28494,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "osmanlitorunu.com", true },
{ "osmosis.org", true },
{ "osmre.gov", true },
+ { "osnova.cz", true },
+ { "osobliwydom.pl", true },
+ { "osomjournal.org", true },
+ { "ospf.sk", true },
+ { "osprecos.com.br", true },
+ { "osprecos.pt", true },
{ "ospree.me", true },
- { "osquery.io", true },
{ "ostan-collections.net", true },
{ "osterkraenzchen.de", true },
+ { "ostgotamusiken.se", true },
+ { "osti.gov", true },
{ "ostimwebyazilim.com", true },
{ "ostr.io", true },
+ { "ostrov8.com", true },
{ "osusume-houhou.com", true },
{ "oswalds.co.uk", true },
{ "oswaldsmillaudio.com", true },
@@ -25595,18 +28516,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 },
- { "otchecker.com", true },
+ { "otakuyun.com", true },
{ "otellio.com", true },
{ "otellio.de", true },
{ "otellio.it", true },
- { "otherkinforum.com", true },
+ { "other98.com", true },
{ "oticasaopaulo.com.br", true },
{ "oticasvisao.net.br", true },
- { "otmns.net", true },
+ { "otokiralama.name.tr", true },
{ "otorrino.pt", true },
{ "otoy.com", true },
{ "otoya.space", true },
@@ -25614,8 +28534,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "otr.ie", true },
{ "otrm.de", true },
{ "otsfreestyle.jp", true },
- { "otsu.beer", true },
- { "ottoproject.io", true },
+ { "ottoproject.io", false },
+ { "ottoversand.at", true },
{ "otus-magnum.com", true },
{ "otvaracie-hodiny.sk", true },
{ "otya.me", true },
@@ -25623,16 +28543,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ouattara.ch", true },
{ "ouestsolutions.com", true },
{ "ouglor.com", true },
- { "ouimoove.com", true },
+ { "ouin.land", true },
{ "oulunjujutsu.com", true },
- { "ouowo.gq", true },
+ { "our-box.net", true },
{ "ourai.ws", true },
{ "ourcloud.at", true },
+ { "ourdocuments.gov", true },
{ "ourevents.net", true },
+ { "ourladymountcarmel.net", true },
+ { "ourladyofcalvary.org", true },
+ { "ourladyoftheassumptionchurch.org", true },
+ { "ourladyqueenofmartyrs.org", true },
{ "ourls.win", true },
- { "ouruglyfood.com", true },
+ { "ourmaster.org", true },
{ "ourwedding.xyz", true },
{ "ourworldindata.org", true },
+ { "out-of-scope.de", true },
{ "outdoorfurniture.ie", true },
{ "outdoorimagingportal.com", true },
{ "outdoorlightingagoura.com", true },
@@ -25656,26 +28582,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "outline.ski", true },
{ "outlines.xyz", true },
{ "outlookonthedesktop.com", true },
+ { "outplnr.fr", true },
{ "outpostinfo.com", true },
{ "outsideconnections.com", true },
+ { "outsiders.paris", true },
{ "ovelhaostra.com", true },
{ "overalglas.nl", true },
{ "overamsteluitgevers.nl", true },
+ { "overclockers.ge", true },
{ "overdrive-usedcars.be", true },
{ "overkillshop.com", true },
{ "overseamusic.de", true },
{ "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 },
@@ -25683,25 +28611,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ovvy.net", false },
{ "owapi.net", true },
{ "owennelson.co.uk", true },
+ { "owensordinarymd.com", true },
{ "owid.cloud", true },
- { "owl-hakkei.com", true },
{ "owl-square.com", true },
{ "owl-stat.ch", true },
{ "owl.net", true },
+ { "owlandrabbitgallery.com", true },
{ "owlishmedia.com", true },
{ "own3d.ch", true },
- { "ownc.at", true },
+ { "owncloud.ch", true },
{ "ownmay.com", true },
- { "owothisdiz.pw", true },
- { "oxanababy.com", true },
{ "oxborrow.ca", true },
{ "oxelie.com", true },
+ { "oxia.me", true },
+ { "oxiame.eu", 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 },
@@ -25715,14 +28646,17 @@ 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 },
{ "pa-w.de", true },
{ "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 },
@@ -25744,16 +28678,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pabloarteaga.tech", true },
{ "pabloarteaga.uk", true },
{ "pabloarteaga.xyz", 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 },
- { "pachaiyappas.org", true },
+ { "pacifco.com", true },
+ { "pacificcashforcars.com.au", true },
{ "pacificpalisadeselectric.com", true },
{ "pacificpalisadeselectrical.com", true },
- { "pacificpalisadeselectrician.com", true },
{ "pacificpalisadeslandscapelighting.com", true },
{ "pacificpalisadeslighting.com", true },
{ "pacifictilkin-occasions.be", true },
@@ -25761,17 +28698,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pack-haus.de", true },
{ "packagefactory.dk", true },
{ "packagingproject.management", true },
+ { "packagist.jp", true },
{ "packagist.org", false },
{ "packaware.com", true },
- { "packer.io", true },
{ "packetdigital.com", true },
{ "packetlinux.com", true },
+ { "pact2017.nl", true },
{ "pactf.com", true },
{ "padam-group.com", true },
{ "padberx-marketing-consultants.de", true },
{ "paddy.rocks", true },
- { "padeoe.com", true },
{ "padianda.com", true },
+ { "padkit.org", true },
{ "padovani.de", true },
{ "padpilot.co", true },
{ "padrepio.in", true },
@@ -25783,56 +28721,66 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pagalworld.co", true },
{ "pagalworld.com", true },
{ "pagalworld.info", true },
+ { "pagalworld.io", true },
{ "pagalworld.la", true },
{ "pagalworld.me", true },
+ { "pagalworld.org", true },
{ "page-builders.com", true },
{ "pageantsnews.com", false },
{ "pagedesignhub.com", true },
{ "pagedesignpro.com", true },
- { "pagedesignshop.com", true },
{ "pagedesignweb.com", true },
+ { "pagefulloflies.io", true },
{ "pagewizz.com", true },
{ "pagiamtzis.com", true },
{ "pagina.com.mx", true },
+ { "pagina394.com.br", true },
+ { "paginaweb4u.com", true },
{ "pagure.io", true },
- { "pagure.org", true },
{ "pahae.de", true },
{ "pahealthbilling.com", true },
+ { "pahlawanpulsa.com", true },
{ "paichai.space", false },
{ "paincareehr.com", true },
{ "paindata.dk", true },
{ "painefamily.co.uk", true },
{ "painlessproperty.co.uk", true },
{ "paint-it.pink", true },
+ { "paintball-ljubljana.si", true },
{ "paintball-shop.sk", true },
{ "paintcolorsbysue.com", true },
{ "paintingindurban.co.za", true },
+ { "paintsealdirect.com", true },
{ "paipuman.jp", true },
- { "paizinhovirgula.com", true },
{ "pajadam.me", true },
{ "pajuvuo.fi", true },
- { "paketkreditsuzuki.com", true },
{ "paketo.cz", true },
- { "paketwatch.de", true },
+ { "paketo.sk", true },
+ { "paketwatch.de", false },
{ "pakho.xyz", true },
+ { "pakingas.lt", true },
{ "pakistani.dating", true },
{ "pakitow.fr", true },
{ "pakke.de", true },
+ { "pakroyalpress.com", true },
{ "paktolos.net", true },
{ "palabr.as", true },
{ "palapadev.com", true },
+ { "palariviera.com", true },
+ { "palary.work", true },
{ "palatin.at", true },
{ "palava.tv", true },
{ "palavatv.com", true },
- { "palawan.jp", false },
{ "palazzo.link", true },
{ "palazzo.work", true },
- { "paleolowcarb.de", true },
+ { "paleoself.com", 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 },
@@ -25847,30 +28795,32 @@ 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 },
- { "panlex.org", true },
+ { "panjiva.com", true },
{ "panmetro.com", true },
- { "panoma.de", true },
{ "panomizer.de", true },
{ "panopy.co", true },
{ "panopy.me", true },
- { "panoti.com", false },
{ "panoxadrez.com.br", true },
{ "panpa.ca", true },
{ "panpsychism.com", true },
@@ -25882,8 +28832,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "panthur.com.au", false },
{ "pantographe.info", true },
{ "pantou.org", false },
+ { "pants-off.xyz", true },
{ "panzer72.ru", true },
- { "paolo565.org", true },
+ { "panzerscreen.dk", true },
+ { "pao.ge", true },
{ "pap.la", false },
{ "papa-webzeit.de", true },
{ "papadopoulos.me", true },
@@ -25895,57 +28847,64 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "papelcraft.co.uk", true },
{ "paper-driver.biz", true },
{ "paper-republic.org", true },
- { "paperhaven.com.au", true },
+ { "paper.sc", true },
{ "paperhoney.by", true },
- { "papermasters.com", true },
- { "papersmart.net", true },
+ { "paperlesssolutionsltd.com.ng", true },
{ "papertracker.net", true },
{ "paperturn.com", true },
- { "paperwallets.io", true },
- { "paperwork.co.za", true },
+ { "paperworld.online", 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 },
+ { "paracomer.es", true },
{ "paradais-sphynx.com", true },
{ "paradependentesquimicos.com.br", true },
- { "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 },
+ { "paragonremodeling.com", true },
{ "paragreen.net", true },
+ { "paranoidcrypto.com", true },
{ "paranoidmode.com", true },
{ "paranoidpenguin.net", true },
+ { "paranormalweirdo.com", true },
{ "paranoxer.hu", true },
{ "parasitologyclub.org", true },
+ { "parasosto.fi", true },
{ "paratlan.hu", true },
{ "paratxt.org", true },
- { "parav.xyz", true },
- { "parcelbroker.co.uk", true },
+ { "parcelbroker.co.uk", false },
{ "parchcraftaustralia.com", true },
{ "parckwart.de", true },
{ "parcon.it", true },
+ { "parcoursup.fr", true },
+ { "parentelement.com", true },
{ "parentheseardenne.be", true },
{ "parentinterview.com", true },
{ "parentsintouch.co.uk", true },
- { "pariga.co.uk", true },
{ "paris-store.com", true },
+ { "parisackerman.com", true },
+ { "parisbloom.com", true },
{ "parisderriere.fr", true },
{ "parisescortgirls.com", true },
{ "parisfranceparking.com", true },
{ "parisfranceparking.de", true },
{ "parisfranceparking.fr", true },
{ "parisfranceparking.nl", true },
- { "parisprovincedemenagements.fr", true },
{ "parkeren.in", true },
+ { "parkfans.net", true },
+ { "parkhost.eu", true },
{ "parkinginparis.fr", true },
+ { "parkingparisnord.fr", true },
{ "parkingpoint.co.uk", true },
{ "parkrunstats.servehttp.com", true },
{ "parkviewmotorcompany.com", true },
@@ -25959,22 +28918,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "parolu.io", true },
{ "parquettista.milano.it", true },
{ "parquettista.roma.it", true },
+ { "parroquiasanrafaeldegramalote.com", true },
{ "parry.org", true },
{ "parsemail.org", true },
{ "parser.nu", true },
{ "parsonsfamilyhomes.com", true },
- { "partage.ovh", true },
{ "parteaga.com", true },
{ "parteaga.net", true },
{ "partecipa.tn.it", true },
{ "parthkolekar.me", true },
- { "participatorybudgeting.de", true },
- { "participatorybudgeting.info", true },
+ { "partijhandel.website", true },
{ "partijtjevoordevrijheid.nl", false },
- { "partiwatch.com", true },
+ { "partiono.com", true },
{ "partner.sh", true },
- { "partnerbeam.com", true },
- { "partnersfcu.org", true },
+ { "partnercardservices.com", true },
+ { "partnermobil.de", true },
{ "partou.de", true },
{ "partridge.tech", true },
{ "parts4phone.com", true },
@@ -25991,16 +28949,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "partyhireliverpool.co.uk", true },
{ "partypearl.de", true },
{ "partyrocksbounce.co.uk", true },
- { "partyschnaps.com", true },
{ "partyspaces.co.uk", true },
{ "partytime-uk.co.uk", true },
{ "partytimeltd.ie", true },
{ "partytownireland.co.uk", true },
{ "partytownmarquees.co.uk", true },
{ "partyvan.io", true },
+ { "partyyy.io", true },
{ "partyzone.ie", true },
+ { "parvaneh.fr", true },
{ "pasadenapooch.org", true },
{ "pasadenasandwich.co", true },
+ { "pasadenasandwich.com", true },
{ "pasadenasandwichcompany.com", true },
{ "pasalt.com", true },
{ "pasarella.eu", true },
@@ -26013,22 +28973,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pascalmathis.com", true },
{ "pascalmathis.me", true },
{ "pascalmathis.net", true },
- { "pascalspoerri.ch", false },
{ "pascualinmuebles.com", true },
{ "pasearch.nl", true },
{ "pashminacachemire.com", true },
- { "pasportaservo.org", true },
{ "pass.org.my", true },
{ "passabook.com", true },
{ "passcod.name", true },
- { "passendonderwijs.nl", true },
{ "passfilesafe.com", true },
{ "passfoto-deinfoto.ch", true },
{ "passieposse.nl", true },
+ { "passionandbalance.com", true },
{ "passionatefoodie.co.uk", true },
{ "passionatehorsemanship.com", true },
+ { "passionatelife.com.au", true },
+ { "passionbyd.com", true },
{ "passionpictures.eu", true },
{ "passions-art.com", true },
+ { "passover-fun.com", true },
{ "passphrase.today", true },
{ "passport.yandex.by", true },
{ "passport.yandex.com", true },
@@ -26040,6 +29001,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 },
@@ -26060,17 +29022,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paste.gg", true },
{ "paste.to", true },
{ "pastebin.co.za", true },
+ { "pastebin.tw", true },
{ "pasteblin.com", true },
{ "pasternok.org", true },
{ "pasticcerialorenzetti.com", true },
{ "pastoral-verbund.de", true },
- { "pastorbelgagroenendael.com.br", true },
{ "pastordocaucaso.com.br", true },
- { "pastormaremanoabruzes.com.br", true },
- { "pastorsuico.com.br", true },
{ "pasztor.at", true },
+ { "patapwn.com", true },
{ "patatbesteld.nl", true },
{ "pataterosviajeros.com", true },
+ { "patbatesremodeling.com", false },
{ "patdorf.com", true },
{ "patechmasters.com", true },
{ "patentados.com", true },
@@ -26080,21 +29042,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pathwaystoresilience.org", true },
{ "patika-biztositas.hu", true },
{ "patikabiztositas.hu", true },
- { "patouille-et-gribouille.fr", true },
- { "patric-lenhart.de", true },
+ { "patineteselectricosbaratos.net", true },
{ "patrick-othmer.de", true },
{ "patrick-robrecht.de", true },
+ { "patrick.my-gateway.de", true },
+ { "patrick21.ch", true },
{ "patrickaudley.ca", true },
{ "patrickaudley.com", true },
{ "patrickbrosi.de", true },
+ { "patrickhoefler.net", true },
{ "patricklynch.xyz", true },
- { "patrickmcnamara.xyz", true },
- { "patrickschneider.me", 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 },
{ "patsytoforyou.ch", true },
{ "pattonfanatic.com", true },
@@ -26103,55 +29067,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paudley.ca", true },
{ "paudley.com", true },
{ "paudley.org", true },
+ { "paul-barton.co.uk", true },
{ "paul-bronski.de", true },
- { "paul-schmidt.de", true },
{ "paul.reviews", true },
{ "pauladamsmith.com", true },
{ "paulbakaus.com", true },
{ "paulbdelaat.nl", true },
{ "paulbramhall.uk", true },
- { "paulewen.ca", true },
+ { "paulchen.at", true },
+ { "paulcooper.me.uk", true },
+ { "pauldev.co", true },
+ { "paulerhof.com", true },
+ { "paulgerberrealtors.com", true },
{ "paulinewesterman.nl", true },
{ "paulmeier.com", false },
{ "paulomonteiro.pt", true },
{ "paulov.com", true },
{ "paulov.info", true },
{ "paulov.ru", true },
- { "paulpetersen.dk", true },
{ "paulrobertlloyd.com", true },
{ "paulrotter.de", true },
{ "paulschreiber.com", true },
{ "paulscustomauto.com", true },
+ { "paulshir.com", true },
+ { "paulshir.is", true },
+ { "paulsnar.lv", true },
{ "paulswartz.net", true },
- { "paultibbetts.uk", false },
{ "paulus-foto.pl", true },
{ "paulward.net", true },
{ "paulwatabe.com", true },
{ "paulwendelboe.com", true },
+ { "pauly-stahlhandel.com", true },
+ { "pauly-stahlhandel.de", true },
{ "pauspam.net", true },
{ "pautadiaria.com", true },
+ { "pavamtio.cz", true },
{ "pavando.com", true },
{ "pavelfojt.cz", true },
{ "pavelrebrov.com", true },
- { "pavelstriz.cz", true },
{ "pavio.org", true },
{ "paw.cloud", true },
{ "paw.pt", true },
{ "pawel-international.com", true },
{ "pawelnazaruk.com", true },
{ "pawelurbanek.com", true },
+ { "pawfriends.org.za", true },
{ "pawsomebox.co.uk", true },
{ "pawsr.us", true },
- { "pawsru.org", true },
{ "paxerahealth.com", true },
+ { "pay-online.in", true },
{ "pay.gov", true },
- { "pay8522.com", true },
{ "paybook.co.tz", true },
{ "payboy.biz", true },
{ "payboy.rocks", true },
{ "paybro.eu", true },
+ { "payexpresse.com", true },
{ "payfazz.com", true },
- { "paykings.com", true },
{ "paylike.io", true },
{ "payloc.io", true },
{ "payme.uz", true },
@@ -26161,32 +29132,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paymerang.com", true },
{ "paymill.com", true },
{ "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 },
+ { "payssaintgilles.fr", false },
{ "paystack.com", true },
{ "paytm.in", true },
{ "paytonmoledor.com", true },
{ "payupay.ru", true },
{ "payzang.com", true },
- { "payzwin.com", true },
{ "pback.se", true },
{ "pbosquet.com", true },
{ "pbourhis.me", true },
{ "pbr.so", true },
{ "pbraunschdash.com", true },
- { "pbreen.co.uk", true },
{ "pbrumby.com", true },
{ "pbz.im", true },
{ "pc-rescue.me", false },
- { "pc-tablet.com", true },
- { "pcbricole.fr", true },
+ { "pc-servis-brno.com", true },
{ "pccentral.nl", true },
{ "pcdocjim.com", true },
{ "pcel.com", true },
@@ -26203,29 +29173,35 @@ 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 },
+ { "pculiar.com", true },
{ "pdf-archive.com", true },
{ "pdfconvert.me", true },
{ "pdfmint.com", true },
{ "pdfpassword.org", true },
{ "pdfpasswort.de", true },
{ "pdfresizer.com", true },
- { "pdomo.me", true },
+ { "pdfsearch.org", true },
+ { "pdfsearches.com", true },
+ { "pdkrawczyk.com", true },
{ "pdox.net", true },
{ "pdragt.com", true },
{ "pdthings.net", true },
{ "pdxtowncar.net", true },
{ "pe.search.yahoo.com", false },
+ { "peacedivorce.com", true },
{ "peaceispossible.cc", true },
{ "peaceloveandlabor.com", true },
{ "peak-careers.com", true },
+ { "peakhomeloan.com", true },
{ "peaksloth.com", true },
{ "peanutbase.org", true },
{ "peanutproductionsnyc.com", true },
@@ -26235,20 +29211,25 @@ 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 },
+ { "pedidosfarma.com.br", true },
{ "pedikura-vitu.cz", true },
+ { "pedimanie.cz", true },
{ "pedimoda.com.br", true },
{ "pedro.com.es", true },
+ { "pedrosaurus.com", true },
{ "pedrosluiter.nl", true },
{ "pedroventura.com", false },
{ "peeekaaabooo.com", true },
{ "peekier.com", true },
- { "peen.ch", true },
{ "peep.gq", true },
{ "peercraft.at", true },
{ "peercraft.be", true },
@@ -26274,6 +29255,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 },
@@ -26282,18 +29264,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pegas-studio.net", true },
{ "pehapkari.cz", true },
{ "peifi.de", false },
- { "peinard.net", true },
{ "peippo.at", true },
+ { "peka.pw", true },
+ { "pekarstvivetvrzi.cz", true },
{ "pekkapleppanen.fi", true },
{ "pekoe.se", true },
{ "pelanucto.cz", true },
{ "pelican.ie", true },
- { "peliseries24.com", true },
+ { "peliculator.com", true },
+ { "pellet.pordenone.it", true },
{ "pelletizermill.com", true },
{ "pelletsprice.com", true },
{ "pelopogrund.com", true },
{ "pelopoplot.com", true },
{ "pelotonimports.com", true },
+ { "pemborongbangunan.id", true },
+ { "pems.gov.au", true },
{ "penaugustin.com", true },
{ "pencepay.com", true },
{ "pencillab.cn", true },
@@ -26301,10 +29287,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "penetrationstest.se", true },
{ "penfold.fr", true },
{ "pengi.me", true },
+ { "penguinbits.net", true },
{ "penguindrum.moe", true },
{ "penguinprotocols.com", true },
{ "penispumpen.se", true },
{ "pennergold.net", true },
+ { "pennington.io", true },
{ "pennyparkerpaper.com", true },
{ "penrithapartments.com.au", true },
{ "pens.com", true },
@@ -26312,7 +29300,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pensador.com", true },
{ "pensador.info", true },
{ "pensioenfonds-ey.nl", true },
- { "pension-veldzigt.nl", true },
+ { "pension-am-alten-waschhaus.de", true },
{ "pensionpilot.ca", true },
{ "penslabyrinth.com", true },
{ "pentandra.com", true },
@@ -26324,46 +29312,51 @@ 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 },
+ { "pepgrid.net", true },
{ "peplog.nl", true },
+ { "pepme.net", true },
+ { "pepstaff.net", true },
{ "pepwaterproofing.com", true },
+ { "pequenosfavoritos.com.br", false },
+ { "per-olsson.se", true },
{ "pera.gs", true },
{ "perala.me", true },
{ "peraparker.cz", true },
{ "percolate.com", true },
{ "percraft.com", true },
{ "percy.io", true },
+ { "percyflix.com", true },
{ "perd.re", true },
{ "perecraft.com", true },
- { "perez-marrero.com", true },
{ "perezdecastro.org", true },
+ { "perfect-carstyle.de", true },
{ "perfect.in.th", true },
{ "perfectbalance.tech", true },
{ "perfectcloud.org", true },
+ { "perfectfocuseyecare.com", true },
+ { "perfectgift.com", true },
{ "perfectoparty.co.uk", true },
{ "perfectsnap.co.uk", true },
+ { "perfectstreaming.systems", true },
{ "perfektesgewicht.com", true },
{ "perfektesgewicht.de", true },
- { "performancehealth.com", true },
- { "performancesantafe.org", true },
- { "performaride.com.au", true },
+ { "perfmatters.io", true },
+ { "performancehealth.com", false },
+ { "performing-art-schools.com", true },
{ "perfumeaz.com", true },
{ "perfumes.com.br", true },
- { "periodismoactual.com", true },
+ { "periodic-drinking.com", true },
{ "periscope.tv", true },
{ "perishablepress.com", true },
{ "perm-avia.ru", true },
- { "perm-jur.ch", true },
- { "perm-juridique.ch", true },
{ "perm4.com", true },
{ "permajackofstlouis.com", true },
- { "permanence-juridique.com", true },
- { "permanencejuridique-ge.ch", true },
- { "permanencejuridique.com", true },
{ "permeance108.com", true },
- { "permiscoderoute.fr", true },
{ "permistheorique.be", true },
{ "permistheoriqueenligne.be", true },
{ "perniciousgames.com", true },
@@ -26372,9 +29365,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "perrau.lt", true },
{ "perroquet-passion.ch", true },
{ "persephone.gr", true },
+ { "persocloud.org", true },
{ "personal-genome.com", true },
{ "personaltrainer-senti.de", true },
- { "personcar.com.br", true },
{ "perspectivum.com", true },
{ "perspektivwechsel-coaching.de", true },
{ "persson.me", true },
@@ -26389,26 +29382,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pestici.de", true },
{ "pestkill.info", true },
{ "pet-hotel-mura.net", true },
+ { "pet-life.top", true },
+ { "pet-tekk.co.uk", true },
{ "petabits.de", true },
- { "petangen.se", 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 },
{ "peterandjoelle.co.uk", true },
+ { "peterbarrett.ca", true },
+ { "peterboers.info", true },
{ "peterborgapps.com", true },
{ "peterbruceharvey.com", true },
{ "peterdavehello.org", true },
{ "peterfiorella.com", true },
- { "peterfolta.net", true },
+ { "peterhons.com.au", true },
{ "peterhuetz.at", true },
{ "peterhuetz.com", true },
+ { "peterjin.org", true },
{ "peterjohnson.io", true },
{ "peterlew.is", true },
- { "petermazur.com", true },
- { "peters.consulting", true },
+ { "petermaar.com", true },
{ "petersontoscano.com", true },
{ "petervanleeuwentweewielers.nl", true },
{ "petfa.ga", true },
@@ -26419,32 +29416,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "petko.me", true },
{ "petlife.vet", true },
{ "petmall.bg", true },
+ { "peto.nl", true },
{ "petofiprogram.hu", true },
{ "petplus.com", true },
{ "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 },
{ "petrpikora.com", true },
{ "petrucciresidential.com", true },
- { "petruzz.net", true },
+ { "pets4life.com.au", true },
{ "petschnighof.at", true },
{ "pettitcoat.com", true },
{ "petwall.info", true },
{ "pew.ninja", true },
+ { "pewnews.org", true },
{ "pex.digital", true },
{ "peyote.com", true },
- { "peyote.org", true },
- { "pf.dk", true },
{ "pfa.or.jp", true },
{ "pfadfinder-aurich.de", true },
{ "pfadfinder-grossauheim.de", true },
{ "pfarchimedes-pensioen123.nl", true },
+ { "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 },
@@ -26453,20 +29456,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pflanzen-shop.ch", true },
{ "pflanzenshop-emsland.de", true },
{ "pflegesalon-siebke.de", true },
+ { "pflug.email", true },
{ "pfmeasure.com", true },
- { "pfo.io", true },
{ "pfotentour-berlin.de", true },
+ { "pfrost.me", true },
{ "pfudor.tk", true },
{ "pg-forum.de", true },
{ "pg-mana.net", true },
+ { "pgh-art.com", true },
+ { "pglandscapingpaving.com", true },
{ "pgmann.cf", true },
+ { "pgnetwork.net", true },
{ "pgp.guru", true },
{ "pgp.network", true },
{ "pgpmail.cc", true },
+ { "pgregg.com", true },
{ "ph-blog.de", true },
{ "ph.search.yahoo.com", false },
{ "ph3r3tz.net", true },
- { "phantasie.cc", true },
{ "phantastikon.de", true },
{ "pharma-display.com", true },
{ "pharmaabsoluta.com.br", true },
@@ -26480,25 +29487,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pharmasana.de", true },
{ "pharmica.co.uk", true },
{ "pharmica.uk", true },
+ { "pharside.dyndns.org", true },
{ "pharynks.com", true },
{ "pharynx.nl", true },
{ "phasersec.com", false },
{ "phasme-2016.com", true },
- { "phaux.uno", true },
+ { "phattea.tk", true },
{ "phcimages.com", true },
+ { "phcnetworks.net", true },
{ "phcorner.net", true },
{ "phdhub.it", true },
+ { "phellowseven.com", true },
{ "phelx.de", true },
+ { "phen-garcinia.info", true },
{ "phenixairsoft.com", true },
+ { "phenq.com", true },
{ "phget.com", true },
+ { "phhtc.ir", true },
{ "phi-works.com", true },
{ "phialo.de", true },
+ { "phil-dirt.com", true },
{ "phil-phillies.com", true },
+ { "phil.red", true },
+ { "phil.tw", true },
{ "philadelphia.com.mx", true },
{ "phileas-psychiatrie.be", true },
{ "philia-sa.com", true },
{ "philipdb.com", true },
- { "philipkohn.com", true },
+ { "philipdb.nl", true },
+ { "philipkobelt.ch", true },
{ "philipp-trulson.de", true },
{ "philipp-winkler.de", true },
{ "philipp1994.de", true },
@@ -26508,33 +29525,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "philippebonnard.fr", true },
{ "philipperoose.be", true },
{ "philippheenen.de", true },
- { "philippinedroneassociation.org", true },
{ "philippkeschl.at", true },
+ { "philipssupportforum.com", true },
+ { "philipzhan.tk", true },
{ "phillipgoldfarb.com", true },
- { "phillipsuk.com", true },
+ { "phillipsdistribution.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 },
- { "phippsreporting.com", true },
{ "phishing-studie.org", true },
- { "phishing.rs", true },
{ "phishingusertraining.com", true },
{ "phligence.com", true },
{ "phocean.net", true },
+ { "phoenixlogan.com", true },
+ { "phoenixurbanspaces.com", true },
+ { "pholder.com", true },
{ "phone-service-center.de", true },
+ { "phonix-company.fr", true },
{ "phormance.com", true },
{ "phosagro.biz", false },
{ "phosagro.com", false },
{ "phosagro.ru", false },
{ "phosphene.io", true },
- { "photek.fm", true },
{ "photistic.org", true },
{ "photo-livesearch.com", true },
{ "photo-paysage.com", true },
@@ -26542,41 +29564,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "photoancestry.com", true },
{ "photoartelle.com", true },
{ "photodeal.fr", true },
+ { "photofilmcamera.com", true },
{ "photographe-reims.com", true },
{ "photographersdaydream.com", true },
- { "photolium.net", true },
+ { "photography-workshops.net", true },
+ { "photolium.net", false },
{ "photomodelcasting.com", true },
- { "photon.sh", true },
{ "phototravel.uk", true },
{ "phototrio.com", true },
+ { "phoxden.net", true },
{ "phoxmeh.com", true },
{ "php-developer.org", true },
{ "php-tuning.de", true },
+ { "php.watch", true },
{ "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 },
+ { "phpstan.org", 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 },
{ "phurl.de", true },
{ "phurl.io", true },
{ "phus.lu", true },
+ { "phyley.com", true },
{ "physicalism.com", true },
{ "physicalist.com", true },
- { "physicpezeshki.com", true },
+ { "physicaltherapist.com", false },
+ { "physics-schools.com", true },
{ "physiotherapie-seiwald.de", true },
{ "physiovesenaz.ch", true },
{ "pi-box.ml", true },
@@ -26587,11 +29611,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pianetaottica.com", true },
{ "pianetaottica.it", true },
{ "pianetatatuaggi.it", true },
+ { "pianomover.co.uk", true },
{ "pianyigou.com", true },
{ "piatabrasil.com.br", true },
- { "piatanoua.md", true },
{ "piboubes.me", true },
- { "pic.gov", true },
+ { "pic.gov", false },
{ "pic.sr", true },
{ "pic2map.com", true },
{ "picchietti.io", true },
@@ -26608,7 +29632,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "picoauto.com", true },
{ "piconepress.com", true },
{ "picotech.com", true },
- { "picotronic.de", true },
{ "picster.at", true },
{ "picsto.re", true },
{ "pictorial.com.sg", true },
@@ -26619,16 +29642,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "picturingjordan.com", true },
{ "pidginhost.com", true },
{ "pidjipi.com", true },
+ { "pie-express.xxx", true },
{ "pieces-or.com", true },
- { "piedfeed.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 },
+ { "piepermail.nl", true },
{ "pieq.eu", true },
{ "pieq.eu.org", true },
{ "pier28.com", true },
@@ -26636,69 +29658,71 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "piercraft.com", true },
{ "pierre-denoblens.net", true },
{ "pierre-schmitz.com", true },
+ { "pierreblake.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 },
- { "piils.fr", true },
+ { "pigs.pictures", true },
{ "pijuice.com", true },
+ { "pijusmagnificus.com", true },
{ "pik.bzh", true },
- { "pikeitservices.com.au", true },
{ "pikimusic.moe", true },
{ "pilani.ch", true },
{ "pilarguineagil.com", true },
+ { "pilatescenteraz.com", true },
{ "pildat.org", true },
{ "pileofgarbage.net", true },
{ "piliszek.net", true },
{ "pill.id", true },
+ { "pillowfort.pub", true },
+ { "pilot-colleges.com", true },
{ "pilot.co", true },
- { "pilotandy.com", true },
{ "pilotgrowth.com", true },
{ "pilsoncontracting.com", true },
{ "pilvin.pl", true },
{ "pimhaarsma.nl", true },
{ "pimhaarsmamedia.nl", true },
- { "pimpmypaper.com", true },
{ "pimpmyperf.fr", true },
{ "pinceaux.org", true },
{ "pincha.com.tw", false },
{ "pincodeit.com", true },
{ "pindanutjes.be", false },
- { "pineapplesapp.com", true },
{ "pinemountainnursery.com.au", true },
{ "pinemountbaptistchurch.org", true },
- { "pinesandneedles.com", 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", true },
+ { "pinkyf.com", false },
+ { "pinkylam.me", true },
+ { "pinnacle-tex.com", true },
+ { "pinnacleallergy.net", true },
{ "pinnaclelife.co.nz", true },
{ "pinnaclelife.nz", true },
{ "pinnacles.com", true },
{ "pinner.io", true },
+ { "pinot.it", true },
{ "pinoydailytvshow.net", true },
- { "pinoylinux.org", true },
+ { "pinoyonlinetv.com", true },
{ "pinoytech.ph", true },
{ "pinpayments.com", true },
{ "pinpointengineer.co.uk", true },
- { "pinscher.com.br", true },
{ "pinskupakki.fi", true },
{ "pinterest.at", true },
{ "pinterest.co.uk", true },
@@ -26708,18 +29732,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pinterest.ie", true },
{ "pinterest.info", true },
{ "pinterest.jp", true },
- { "pintoselectrician.co.za", true },
+ { "pinterjann.is", true },
+ { "pintosbeeremovals.co.za", true },
+ { "pintosplumbing.co.za", true },
{ "pioneer-car.eu", true },
{ "pioneer-rus.ru", true },
+ { "pipenny.net", true },
+ { "pipfrosch.com", true },
{ "pipocao.com", true },
- { "piranil.com", true },
{ "pirate.trade", true },
{ "piratebayproxy.tf", true },
{ "piraten-basel.ch", true },
{ "piraten-bv-nord.de", true },
+ { "pirateparty.org.uk", true },
{ "pirateproxy.cam", true },
{ "pirateproxy.cat", true },
{ "pirateproxy.cc", true },
+ { "pirateproxy.gdn", true },
{ "pirateproxy.ist", true },
{ "pirateproxy.la", true },
{ "pirateproxy.one", true },
@@ -26730,10 +29759,12 @@ 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 },
{ "pirman.es", true },
+ { "piroleikki.co.jp", true },
{ "piruchita.com", true },
{ "pirxpilot.me", true },
{ "piscine.roma.it", true },
@@ -26742,70 +29773,67 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pissblau.com", true },
{ "pissflaps.co.uk", true },
{ "pisupp.ly", true },
+ { "pitaiabank.com", true },
+ { "pitaiatrade.com", true },
+ { "pitbullsecuritysolutions.ca", true },
{ "pitchpinecapital.com", true },
{ "pitchupp.com", true },
{ "pitfire.io", true },
{ "pitot-rs.org", true },
{ "pittmantraffic.co.uk", true },
+ { "piubip.com.br", 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 },
- { "pixelesque.uk", true },
+ { "pixelcubed.com", true },
{ "pixelfou.com", true },
{ "pixelminers.net", true },
{ "pixelpirat.ch", true },
- { "pixelpoint.io", true },
- { "pixelrain.info", true },
{ "pixelsquared.us", true },
{ "pixelurbia.com", true },
{ "pixelution.at", true },
+ { "pixelz.cc", true },
{ "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 },
- { "pizzacook.ch", true },
{ "pizzafest.ddns.net", true },
- { "pizzafunny.com.br", true },
{ "pizzagigant.hu", true },
{ "pizzahut.ru", true },
{ "pizzalongaway.it", true },
{ "pizzeria-mehrhoog.de", true },
{ "pizzeriaamadeus.hr", true },
{ "pizzeriacolore.com", true },
- { "pj00100.com", true },
- { "pj00200.com", true },
- { "pj00300.com", true },
- { "pj00400.com", true },
- { "pj00600.com", true },
- { "pj00700.com", true },
- { "pj00800.com", true },
- { "pj00900.com", true },
{ "pj539999.com", true },
{ "pjentertainments.co.uk", true },
- { "pjili.com", true },
{ "pjleisure.co.uk", true },
{ "pjo.no", true },
{ "pjuu.com", false },
{ "pk.search.yahoo.com", false },
{ "pkbjateng.com", true },
{ "pkbjateng.or.id", true },
+ { "pkeus.de", true },
{ "pkgt.de", false },
{ "pkirwan.com", true },
- { "pko.ch", true },
+ { "pkisolutions.com", true },
{ "pkov.cz", true },
{ "pkphotobooths.co.uk", true },
+ { "pkrank.com", true },
{ "pksps.com", true },
{ "pl-cours.ch", true },
{ "pl.search.yahoo.com", false },
{ "placasonline.com.br", true },
- { "placassinal.com.br", true },
{ "placebet.pro", true },
{ "placedaffiliate.com", true },
{ "placedapps.com", true },
@@ -26818,18 +29846,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
- { "planeexplanation.com", true },
{ "planer.me", true },
+ { "planespotterblog.de", true },
{ "planet-laas.de", true },
{ "planet-work.com", true },
{ "planetanim.fr", true },
{ "planetasuboficial.com.br", true },
{ "planetau2.com", true },
- { "planetbeauty.com", true },
{ "planetbreath.ch", true },
{ "planete-cocoon.com", false },
{ "planete-lira.fr", true },
@@ -26837,9 +29865,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "planeteroliste.fr", true },
{ "planetknauer.net", true },
{ "planetofthegames.tv", true },
- { "planetromeo.com", true },
{ "planetromeofoundation.org", true },
- { "planformation.com", true },
+ { "planetsoftware.com.au", true },
{ "planify.io", true },
{ "planitz.com", true },
{ "planitz.net", true },
@@ -26849,71 +29876,79 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "planmemberpartners.com", true },
{ "plannedlink.com", true },
{ "planningexcellence.com.au", true },
+ { "planolowcarb.com", true },
{ "plant-gift.jp", true },
{ "plantarum.com.br", true },
{ "plantastique.ch", true },
+ { "plantastique.com", true },
{ "planteforum.no", true },
+ { "plantekno.com", true },
{ "plantes.ch", true },
{ "plantezcheznous.com", true },
{ "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 },
{ "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 },
{ "platterlauncher.com", true },
- { "plattner.club", true },
{ "play-casino-japan.com", true },
{ "play-charades.com", true },
{ "play.cash", true },
{ "play.google.com", true },
{ "playanka.com", true },
{ "playawaycastles.co.uk", true },
+ { "playcollect.net", true },
{ "playdaysparties.co.uk", true },
+ { "playerdb.co", true },
+ { "players2gather.com", true },
{ "playerscout.net", true },
{ "playform.cloud", true },
- { "playhappywheelsunblocked.com", true },
- { "playkh.com", true },
- { "playkinder.com", true },
+ { "playnation.io", true },
{ "playocean.net", true },
{ "playpirates.com", true },
{ "playreal.city", true },
{ "playsharp.com", true },
{ "playsnake.org", true },
- { "playsoundevents.be", true },
{ "playtictactoe.org", true },
{ "playtimebouncycastles.co.uk", true },
- { "playyou.be", true },
+ { "playupnow.com", true },
+ { "playviolinmusic.com", true },
{ "playzonecastles.co.uk", true },
+ { "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 },
{ "pleier.it", false },
{ "pleine-conscience.ch", true },
{ "plenigo.com", true },
+ { "plentybetter.com", true },
+ { "plentybetter.org", true },
{ "plesse.pl", true },
{ "plexa.de", true },
{ "plexhome13.ddns.net", true },
- { "plexi.dyndns.tv", true },
- { "plextv.de", true },
+ { "plexmark.tk", true },
+ { "plicca.com", true },
{ "pliosoft.com", true },
{ "plissee-experte.de", true },
{ "plitu.de", true },
{ "plixer.com", true },
+ { "plny.eu", true },
{ "plob.org", true },
{ "plochka.bg", true },
+ { "plokko.com", true },
{ "plongee-phuket.fr", true },
{ "ploofer.com", true },
{ "plot.ly", true },
@@ -26930,29 +29965,28 @@ 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 },
- { "plumbingman.com.au", true },
{ "plumlocosoft.com", true },
- { "plumnet.ch", true },
{ "plumpie.net", false },
{ "plumplat.com", true },
{ "plur.com.au", true },
{ "plural.cafe", true },
+ { "plurr.me", true },
{ "plus-5.com", true },
{ "plus.google.com", false },
{ "plus.sandbox.google.com", true },
- { "pluscbdoil.com", false },
- { "plushev.com", true },
+ { "pluscbdoil.com", true },
{ "pluslink.co.jp", true },
{ "plusstreamfeed.appspot.com", true },
- { "pluta.net", true },
+ { "pluta.net", false },
+ { "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 },
@@ -26976,9 +30010,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pmg-purchase.net", true },
{ "pmgnet.de", true },
{ "pmklaassen.com", true },
+ { "pmnaish.co.uk", true },
{ "pmoreau.org", true },
{ "pmp-art.com", true },
- { "pmponline.de", true },
{ "pmsacorp.com", true },
{ "pmsf.eu", true },
{ "pmsfdev.com", true },
@@ -26989,71 +30023,155 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pneu01.fr", true },
{ "pneu74.fr", true },
{ "pneuhaus-lemp.ch", true },
- { "pneumonline.be", true },
{ "pnimmobilier.ch", true },
{ "pnmhomecheckup.com", true },
+ { "pnoec.org.do", true },
{ "pnona.cz", true },
{ "pnsc.is", true },
{ "pnut.io", false },
{ "po.net", true },
{ "poba.fr", true },
- { "pocakking.tk", true },
+ { "poc.xn--fiqs8s", true },
+ { "poc060.com", true },
+ { "poc080.com", true },
+ { "poc100.com", true },
+ { "poc109.com", true },
+ { "poc11.com", true },
+ { "poc116.com", true },
+ { "poc118.com", true },
+ { "poc119.com", true },
+ { "poc120.com", true },
+ { "poc128.com", true },
+ { "poc13.com", true },
+ { "poc15.com", true },
+ { "poc16.com", true },
+ { "poc18.com", true },
+ { "poc19.com", true },
+ { "poc21.com", true },
+ { "poc211.com", true },
+ { "poc22.com", true },
+ { "poc226.com", true },
+ { "poc228.com", true },
+ { "poc23.com", true },
+ { "poc25.com", true },
+ { "poc26.com", true },
+ { "poc261.com", true },
+ { "poc262.com", true },
+ { "poc27.com", true },
+ { "poc290.com", true },
+ { "poc298.com", true },
+ { "poc31.com", true },
+ { "poc32.com", true },
+ { "poc33.com", true },
+ { "poc35.com", true },
+ { "poc36.com", true },
+ { "poc37.com", true },
+ { "poc38.com", true },
+ { "poc51.com", true },
+ { "poc518.com", true },
+ { "poc52.com", true },
+ { "poc53.com", true },
+ { "poc55.com", true },
+ { "poc56.com", true },
+ { "poc568.com", true },
+ { "poc57.com", true },
+ { "poc58.com", true },
+ { "poc586.com", true },
+ { "poc588.com", true },
+ { "poc59.com", true },
+ { "poc601.com", true },
+ { "poc618.com", true },
+ { "poc63.com", true },
+ { "poc65.com", true },
+ { "poc66.com", true },
+ { "poc67.com", true },
+ { "poc68.com", true },
+ { "poc69.com", true },
+ { "poc699.com", true },
+ { "poc7.com", true },
+ { "poc718.com", true },
+ { "poc72.com", true },
+ { "poc75.com", true },
+ { "poc76.com", true },
+ { "poc77.com", true },
+ { "poc78.com", true },
+ { "poc79.com", true },
+ { "poc8.com", true },
+ { "poc816.com", true },
+ { "poc86.com", true },
+ { "poc88.com", true },
+ { "poc88.vip", true },
+ { "poc888.com", true },
+ { "poc89.com", true },
+ { "poc899.com", true },
+ { "poc916.com", true },
+ { "poc918.com", true },
+ { "poc98.com", true },
+ { "poc99.com", true },
{ "pocatellonissanparts.com", true },
{ "pochaneko.com", true },
{ "pocitacezababku.cz", true },
{ "pocketfruity.com", true },
- { "pocketfullofapps.com", true },
+ { "pocketinsure.com", true },
+ { "pocpok.com", true },
+ { "pocqipai.com", true },
{ "podemos.info", true },
{ "podia.com.gr", false },
+ { "podo-podo.com", true },
{ "podroof.com", true },
{ "podroof.com.au", true },
{ "podshrink.de", true },
{ "poe.digital", true },
- { "poed.com.au", true },
{ "poed.net.au", true },
{ "poedgirl.com", true },
- { "poeg.cz", true },
+ { "poemlife.com", true },
{ "poezja.com.pl", true },
{ "poezjagala.pl", true },
{ "poffenhouse.ddns.net", true },
- { "pogoswine.com", true },
+ { "pogera.com", true },
+ { "pogetback.pl", true },
{ "pogrebisky.net", true },
+ { "pohlednice-tap.cz", true },
{ "pohlmann.io", true },
{ "poinsot.info", true },
{ "pointaction.com", true },
{ "pointhost.de", true },
- { "points4unitedway.com", true },
{ "pointsgame.net", true },
{ "pointsixtyfive.com", true },
{ "pointum.com", true },
{ "poiru.net", true },
{ "poitiers-ttacc-86.eu.org", true },
{ "pojer.me", true },
- { "pokalsocial.de", true },
+ { "pokazy-iluzji.pl", true },
{ "pokefarm.com", true },
{ "pokeinthe.io", true },
{ "pokemondb.net", true },
+ { "pokemonlab.com", true },
+ { "pokemonsimulator.com", true },
{ "pokemontabletopadventures.com", true },
{ "pokemori.jp", true },
{ "pokepon.center", true },
{ "pokl.cz", true },
+ { "pokrowcecardo.pl", true },
{ "polaire.org", true },
{ "polanda.com", true },
+ { "polar-baer.com", true },
{ "polar.uk.com", true },
{ "pole-emotion.ch", true },
- { "pole.net.nz", true },
{ "poleacademie.com", true },
{ "poles4pilots.com", true },
+ { "police-schools.com", true },
{ "policedriver.com", true },
{ "policereferencecheck.com", true },
{ "policesromandesrecrutement.ch", true },
{ "policyreporter.com", true },
{ "policyreporter.us", true },
+ { "polinet.de", true },
{ "polis.or.at", true },
{ "polis.to", false },
+ { "polis812.ru", true },
{ "polish-dictionary.com", true },
{ "polish-flag.com", true },
- { "polish-translations.com", true },
{ "polish-translator.com", true },
{ "polish-translator.net", true },
{ "polish-translators.net", true },
@@ -27063,6 +30181,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "polishwomen.com", true },
{ "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 },
@@ -27073,25 +30193,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "polletmera.com", true },
{ "polleverywhere.com", true },
{ "pollingplace.uk", true },
+ { "polly.spdns.org", true },
+ { "polomack.eu", true },
{ "poloniainfo.com", true },
- { "poloniex.co.za", true },
+ { "polska-robota.com.ua", true },
{ "polskiemalzenstwo.org", true },
{ "poly-fast.com", true },
{ "polycraftual.co.uk", true },
- { "polyfill.io", true },
- { "polyfluoroltd.com", true },
+ { "polyfluoroltd.com", false },
{ "polygamer.net", true },
+ { "polygraphi.ae", true },
{ "polymake.org", true },
{ "polymathematician.com", true },
{ "polynomapp.com", true },
{ "polypane.rocks", true },
{ "polypet.com.sg", true },
+ { "polyr.xyz", true },
{ "polytarian.com", true },
- { "polytechecosystem.vc", true },
{ "polytekniskforening.dk", true },
{ "pomar.club", false },
- { "pomardaserra.com", true },
{ "pomelo-paradigm.com", true },
+ { "pomfe.co", true },
{ "pomfeed.fr", true },
{ "pommedepain.fr", true },
{ "pomockypredeti.sk", true },
@@ -27102,31 +30224,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "poncho-bedrucken.de", true },
{ "ponere.dz", true },
{ "poneypourtous.com", true },
+ { "poneytelecom.org", true },
{ "ponga.se", true },
+ { "ponio.xyz", true },
{ "pony-cl.co.jp", true },
{ "pony.tf", true },
{ "ponychan.net", true },
{ "ponycyclepals.co.uk", true },
{ "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 },
{ "popcornpalacefundraising.com", true },
- { "popcultureshack.com", true },
{ "popeyes.com", true },
{ "popinga.it", true },
{ "popmagz.com", true },
{ "popoway.cloud", true },
{ "popoway.me", true },
{ "poppetsphere.de", true },
+ { "poptimize.net", true },
{ "population-ethics.com", true },
{ "popvitrin.com", true },
{ "poquvi.net", true },
@@ -27134,52 +30263,58 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "porg.es", true },
{ "pork.org.uk", true },
{ "porkel.de", true },
- { "porn77.info", true },
- { "pornbay.org", true },
- { "porncandi.com", true },
- { "pornfacefinder.com", true },
+ { "pornagent.de", true },
+ { "pornbay.eu", true },
+ { "porndragon.net", true },
+ { "pornfacefinder.com", false },
+ { "pornflare.net", true },
+ { "porngay.co", true },
{ "pornhubhd.biz", true },
{ "porniwi.com", true },
{ "pornloupe.com", true },
- { "porno-gif.ru", true },
- { "pornohub.su", true },
- { "pornolab-net.appspot.com", false },
+ { "pornmega.net", true },
+ { "pornofilmovi.us", true },
{ "pornomens.be", true },
- { "pornoserver.eu", 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 },
{ "port443.hamburg", true },
{ "port443.se", true },
{ "port67.org", true },
{ "port80.hamburg", true },
{ "portablebuildingsales.co.uk", true },
{ "portablespeakersfinder.com", true },
+ { "portailevangelique.ca", true },
{ "portal.tirol.gv.at", true },
{ "portalcarriers.com", true },
{ "portalcentric.net", true },
- { "portalhubnuti.cz", false },
{ "portalkla.com.br", true },
- { "portalzine.de", true },
{ "portamiinpista.it", true },
+ { "portatiles-baratos.net", true },
{ "porte.roma.it", true },
{ "portercup.com", true },
{ "porterranchelectrical.com", true },
{ "portofacil.com", true },
{ "portofala.pt", true },
+ { "portofrotterdam.com", false },
{ "portosonline.pl", true },
- { "portraitsystem.biz", true },
{ "portsdebalears.gob.es", true },
{ "portsmouthbouncycastles.co.uk", true },
{ "portsmoutheic.com", true },
{ "portugal-a-programar.pt", true },
{ "portugalsko.net", true },
+ { "portvincentcaravanpark.com.au", true },
{ "porybox.com", true },
{ "pos.co.tz", true },
{ "posalji.me", true },
{ "posaunenchor-senden.de", true },
{ "posbank.co.uk", true },
+ { "poschtiliste.ch", true },
{ "poseidonwaterproofing.com", true },
{ "poshcastles.co.uk", true },
{ "poshlashes.se", true },
@@ -27187,13 +30322,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "posijson.stream", true },
{ "positionus.io", true },
{ "positive.com.cy", true },
- { "positivesobrietyinstitute.com", true },
+ { "positivenames.net", true },
{ "posobota.cz", true },
- { "posoiu.net", true },
{ "post-darwinian.com", true },
{ "post-darwinism.com", true },
{ "post.com.ar", true },
{ "post.io", true },
+ { "post.we.bs", true },
+ { "post4me.at", true },
{ "postal.dk", true },
{ "postal3.es", true },
{ "postblue.info", true },
@@ -27211,65 +30347,71 @@ 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 },
- { "potenzmittel-levitra.com", true },
- { "potenzmittel-webshop.com", true },
- { "potenzmittelblog.info", true },
- { "potenzpillen-kaufen.biz", true },
- { "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", false },
{ "pottshome.co.uk", true },
{ "potworowski.de", true },
+ { "potzwonen.nl", true },
{ "poudlard.fr", true },
- { "pour-la-culture-aulnay.fr", true },
+ { "poundwholesale.co.uk", true },
{ "pourlesenfants.info", true },
{ "pouwels-oss.nl", true },
{ "povareschka.ru", true },
+ { "povertymind.com", 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 },
{ "power-flowengineer.com", true },
{ "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 },
+ { "powerplaywashers.com", true },
{ "powerpointschool.com", true },
{ "powerserg.org", true },
{ "powersergdatasystems.com", true },
{ "powersergholdings.com", true },
- { "powersergusercontent.com", true },
- { "powertothebuilder.com", true },
+ { "powersergthisisthetunnelfuckyouscott.com", true },
+ { "powersergthisisthewebsitefuckyouchris.com", true },
+ { "powersergthisisthewebsitefuckyouscott.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 },
- { "ppembed.com", true },
{ "ppipe.net", true },
+ { "pplsoft.nl", true },
{ "pplsvc.com", true },
{ "ppmathis.ch", true },
{ "ppmathis.com", true },
{ "ppmoon.com", true },
+ { "ppoozl.com", true },
{ "ppro.com", true },
{ "pptavmdata.org", true },
{ "ppy.la", true },
@@ -27278,43 +30420,60 @@ 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 },
{ "praerien-racing.com", true },
+ { "praetzlich-hamburg.de", true },
{ "prague-swim.cz", true },
{ "praguepsychology.com", true },
{ "praguepsychology.cz", true },
{ "pragueswim.cz", true },
- { "prajwalkoirala.com", true },
+ { "praha-9.eu", true },
{ "prakhar.uk", true },
{ "prakharprasad.com", true },
{ "praktijkdevecht.nl", true },
+ { "praktijkpassepartout.nl", true },
+ { "prashchar.uk", true },
+ { "prateep.io", 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 },
+ { "pre-lean-consulting.de", true },
{ "precept.uk.com", true },
+ { "preciosde.es", true },
{ "preciouslife.fr", true },
{ "preciscx.com", true },
{ "preciseassemblies.com", true },
{ "precision.st", true },
+ { "precisiondigital-llc.com", true },
+ { "precisionmachineservice.com", true },
+ { "precisionventures.com", true },
{ "precode.eu", true },
{ "predoiu.ro", true },
+ { "preferredreverse.com", true },
{ "prefix.eu", true },
- { "pregono.com", true },
{ "pregunteleakaren.gov", true },
{ "preigu.de", true },
{ "preis-alarm.info", true },
{ "preis-alarm.org", true },
+ { "preisser-it.de", true },
+ { "preisser.it", true },
+ { "preissler.co.uk", true },
+ { "preload.link", true },
{ "preloaded-hsts.badssl.com", true },
{ "prelogica.com.br", true },
{ "preludes.org", true },
@@ -27326,37 +30485,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prelved.nl", true },
{ "prelved.pl", true },
{ "prelved.se", true },
- { "premaritalsex.info", true },
{ "prematureacceleration.club", true },
+ { "preme.name", true },
{ "premierbouncycastles.co.uk", true },
{ "premieresloges.ca", false },
{ "premierevents.ie", true },
{ "premierheart.com", true },
{ "premierjewelersjax.com", true },
{ "premiership-predictors.co.uk", true },
+ { "premiumcredit.am", true },
{ "premiumweb.co.id", true },
{ "premiumwebdesign.it", true },
+ { "premtech.nl", true },
{ "prenatalgeboortekaartjes.nl", true },
+ { "prepadefi.fr", true },
{ "prepaid-cards.xyz", true },
{ "prepaid-voip.nl", true },
- { "prepaidgirl.com", true },
{ "prepaidkredietkaart.be", true },
{ "prepare-job-hunting.com", true },
- { "presbee.com", true },
+ { "prepavesale.fr", true },
+ { "presbvm.org", true },
+ { "presbyterian-colleges.com", true },
{ "prescotonline.co.uk", true },
- { "prescriptionrex.com", 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 },
{ "presscenter.jp", true },
+ { "presscuozzo.com", true },
{ "pressertech.com", true },
{ "presses.ch", true },
+ { "presskr.com", true },
{ "pressography.org", true },
{ "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 },
@@ -27366,30 +30532,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prestonbrant.com", true },
{ "pretachique.com.br", true },
{ "pretix.eu", true },
+ { "pretor.com.pl", true },
+ { "pretor.eu", true },
+ { "pretor.pl", true },
+ { "pretorcup.pl", true },
{ "pretrialservices.gov", true },
{ "pretty.hu", true },
- { "prettynode.com", true },
+ { "prettygirlcheats.com", true },
+ { "prettynode.com", false },
{ "pretwolk.nl", true },
{ "pretzelx.com", true },
{ "prevenir.ch", true },
+ { "preventshare.com", true },
{ "preview-it-now.com", true },
{ "priceremoval.net", true },
{ "pricesniffer.co", true },
{ "prideindomination.com", true },
- { "pridetechdesign.com", true },
+ { "pridetechdesign.com", false },
{ "prielwurmjaeger.de", true },
+ { "prihatno.my.id", true },
{ "primaconsulting.net", true },
{ "primalbase.com", true },
{ "primalinea.pro", true },
+ { "primalshop.dk", true },
+ { "primananda.com", true },
{ "primates.com", true },
- { "primewho.org", true },
- { "primordialsnooze.com", true },
+ { "primeequityproperties.com", true },
+ { "primoloyalty.com", true },
{ "primorus.lt", true },
- { "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 },
@@ -27400,9 +30574,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "princovi.cz", true },
{ "prinice.org", true },
{ "printeknologies.com", true },
+ { "printerinktoutlet.nl", true },
{ "printerleasing.be", true },
- { "printexpress.cloud", true },
+ { "printertonerkopen.nl", true },
{ "printf.de", true },
+ { "printfn.com", false },
{ "printler.com", true },
{ "printmet.com", true },
{ "printus.de", true },
@@ -27430,15 +30606,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prioritynissannewportnewsparts.com", true },
{ "prismacloud.com", true },
{ "prismacloud.green", true },
+ { "prismacloud.xyz", true },
+ { "prismapayments.com", true },
{ "pristal.eu", true },
{ "pristinegreenlandscaping.com", true },
+ { "pritalk.com", true },
{ "priv.im", true },
{ "privacy-week-vienna.at", true },
{ "privacy-week.at", true },
{ "privacy.com", true },
{ "privacybadger.org", true },
+ { "privacychick.com", true },
+ { "privacychick.io", true },
{ "privacyforjournalists.org.au", true },
{ "privacyinternational.org", true },
+ { "privacynow.eu", true },
{ "privacyscore.org", true },
{ "privacyweek.at", true },
{ "privacyweek.de", true },
@@ -27449,19 +30631,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "privatebanks.uk", true },
{ "privatebin.info", true },
{ "privatecapsecurity.org", true },
- { "privategiant.com", true },
{ "privateideas.de", true },
{ "privateimarketing.com", true },
- { "privatepokertour.com", true },
{ "privatepropertymallorca.com", true },
{ "privatestatic.com", false },
+ { "privatevoid.net", true },
{ "privatewolke.com", true },
{ "privatfrei.de", true },
{ "privatpatient-krankenhaus.de", true },
{ "privea.fr", true },
{ "privelust.nl", true },
{ "priverify.com", true },
- { "privu.me", true },
{ "privy-staging.com", true },
{ "privy.com", true },
{ "prjktruby.com", false },
@@ -27469,26 +30649,32 @@ 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 },
{ "probely.com", true },
{ "probiv.biz", true },
{ "probiv.cc", true },
- { "procens.us", true },
+ { "procar-rheinland.de", true },
+ { "procarservices.com", true },
{ "procensus.com", true },
{ "procert.ch", true },
{ "processesinmotion.com", true },
{ "procharter.com", true },
{ "procinorte.net", true },
{ "proclib.org", true },
+ { "procrastinatingengineer.uk", true },
{ "procrastinationland.com", true },
+ { "procreditbank-kos.com", true },
{ "procreditbank.com.al", true },
{ "proctorio.com", true },
{ "prodct.info", true },
@@ -27503,20 +30689,16 @@ 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 },
{ "products4more.at", true },
- { "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 },
@@ -27533,6 +30715,7 @@ 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 },
@@ -27540,60 +30723,74 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "programistka.com", true },
{ "programlama.tk", true },
{ "programmaticmagic.com", true },
+ { "programsareproofs.com", true },
{ "programsupport300procent.com", true },
{ "progreso.pl", true },
{ "progress-linux.org", true },
{ "progress.photos", true },
{ "progressive.work", true },
{ "progressiveplanning.com", true },
+ { "progressnet.nl", true },
+ { "progresswww.nl", true },
{ "prohrcloud.com", true },
- { "proimpact.it", true },
- { "project-rune.tech", true },
- { "project-splash.com", true },
{ "project.supply", true },
+ { "project86fashion.com", true },
{ "projectarmy.net", false },
{ "projectblackbook.us", true },
- { "projectcastle.tech", true },
+ { "projectborealisgitlab.site", true },
{ "projectforge.org", true },
+ { "projectgrimoire.com", true },
+ { "projectlinuseasttn.org", true },
{ "projectnom.com", true },
+ { "projectsafechildhood.gov", true },
{ "projectsecretidentity.com", true },
{ "projectsecretidentity.org", true },
{ "projectunity.io", true },
+ { "projectxyz.eu", true },
{ "projektarbeit-projektplanung.de", true },
{ "projektzentrisch.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 },
+ { "promiflash.de", true },
{ "promisesaplus.com", true },
+ { "promo-brille.at", true },
+ { "promo-brille.ch", true },
+ { "promo-brille.de", true },
{ "promo-computers.nl", true },
{ "promo-matelas.com", true },
+ { "promods.cn", true },
{ "promods.net", true },
{ "promohulp.nl", true },
{ "promolover.com", true },
{ "promopony.com", true },
+ { "promorder.ru", true },
{ "promoscuola.net", true },
+ { "promoteiq.com", true },
{ "promoterms.com.au", true },
{ "promotioncentre.co.uk", true },
{ "promozione.info", true },
- { "pronostic-king.fr", true },
{ "pronto-intervento.net", true },
+ { "prontointerventoimmediato.it", true },
{ "prontossl.com", true },
- { "proobec.cz", true },
{ "proofwiki.org", true },
{ "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 },
+ { "propertyinside.id", true },
{ "propertyone.mk", true },
- { "prophiler.de", true },
+ { "propertysales-almeria.com", true },
{ "propipesystem.com", true },
{ "proposalonline.com", true },
{ "propr.no", true },
@@ -27601,19 +30798,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "propseller.com", true },
{ "proseandleprechauns.com", true },
{ "prospanek.cz", true },
+ { "prospecto.com.au", true },
+ { "prospecto.ee", true },
+ { "prospecto.hr", true },
+ { "prospecto.lt", true },
+ { "prosperfit.com", true },
{ "prosperontheweb.com", true },
{ "prospo.co", true },
- { "prostohobby.ru", true },
- { "prostoporno.net", true },
- { "prostoporno.sexy", true },
+ { "prostoporno.vip", true },
{ "prostye-recepty.com", true },
{ "prosurveillancegear.com", true },
{ "prot.ch", true },
+ { "protech.ge", true },
+ { "protectedreport.com", true },
{ "protectem.de", true },
{ "protectoraanimalesalicante.org", true },
+ { "protectr.de", true },
{ "protege.moi", true },
{ "protegetudescanso.com", true },
{ "protein-riegel-test.de", true },
+ { "proteinnuts.sk", false },
{ "protempore.fr", true },
{ "proteogenix-products.com", true },
{ "proteogenix.science", true },
@@ -27632,16 +30836,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "provectus.de", true },
{ "proveits.me", false },
{ "provence-appartements.com", true },
+ { "providencecmc.com", true },
{ "providerlijst.com", true },
+ { "providerlijst.ml", true },
{ "providerlijst.nl", true },
{ "provision-isr.nl", true },
- { "provisionircd.tk", true },
{ "provitec.com", true },
{ "provitec.de", true },
{ "provokator.co.il", true },
{ "prowebcenter.com", true },
{ "prowise.com", true },
+ { "prowise.me", true },
{ "proximityradio.fr", true },
+ { "proxybay.bet", true },
{ "proxybay.bz", true },
{ "proxybay.co", true },
{ "proxybay.eu.org", true },
@@ -27649,11 +30856,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "proxybay.one", true },
{ "proxybay.tv", true },
{ "proxyportal.eu", true },
- { "proxyportal.net", true },
- { "proymaganadera.com", true },
+ { "proyectafengshui.com", true },
{ "prpferrara.it", true },
{ "prplz.io", true },
- { "prpr.cloud", true },
{ "prt.in.th", true },
{ "prtimes.com", true },
{ "prtpe.com", true },
@@ -27662,6 +30867,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pruma.com.br", true },
{ "prvikvadrat.hr", true },
{ "prylarprylar.se", true },
+ { "prynhawn.com", true },
+ { "prynhawn.net", true },
+ { "prynhawn.org", true },
{ "pryspry.com", true },
{ "prytkov.com", true },
{ "przemas.pl", true },
@@ -27677,16 +30885,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psbarrett.com", true },
{ "psc.gov", true },
{ "pschierl.com", true },
+ { "pscp.tv", true },
{ "pscr.gov", true },
{ "psdreams.com", true },
{ "psdsfn.com", true },
{ "psdsuc.com", true },
{ "pself.net", true },
{ "pseta.ru", true },
- { "pseudo.coffee", 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 },
@@ -27700,7 +30914,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psw-consulting.de", true },
{ "psw-group.de", true },
{ "psw.net", true },
- { "psxtr.com", true },
{ "psyao.ch", true },
{ "psychedelia.com", true },
{ "psychedelics.org", true },
@@ -27710,27 +30923,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psycho-lobby.com", true },
{ "psycho.space", true },
{ "psychoactive.com", true },
+ { "psychoco.net", false },
+ { "psychotechnique.be", true },
+ { "psychotechnique.ch", true },
+ { "psychotechniquetest.fr", 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 },
{ "ptal.eu", true },
{ "ptbi.org.pl", true },
{ "ptbx.co", true },
{ "pterodactylus.cz", true },
+ { "ptfiber.com", true },
+ { "ptfiber.ru", true },
+ { "ptfiber.spb.ru", true },
{ "ptgoldensun.com", true },
{ "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 },
- { "pub-online.ro", true },
+ { "pubclub.com", true },
{ "pubean.com", true },
- { "pubi.me", true },
+ { "pubi.me", false },
{ "publanda.nl", true },
{ "public-g.de", true },
{ "public-projects.com", true },
@@ -27740,26 +30965,36 @@ 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 },
- { "publishingshack.com", true },
+ { "pubmire.com", false },
{ "pubreview.com.au", true },
{ "pubreviews.com", true },
{ "pucchi.net", true },
{ "pucssa.org", true },
{ "puddis.de", true },
+ { "puestifiestas.mx", true },
+ { "puestosdeferia.mx", true },
+ { "puggan.se", true },
{ "pugovka72.ru", true },
- { "puhka.me", true },
{ "puissancemac.ch", true },
{ "pukfalkenberg.dk", true },
- { "puli.com.br", true },
{ "pulizieuffici.milano.it", true },
{ "pulpproject.org", true },
+ { "pulsarsecurity.com", true },
{ "pulser.stream", true },
+ { "pulsnitzer-lebkuchen-shop.de", true },
+ { "pulsnitzer-lebkuchen.de", true },
+ { "pulsnitzer-lebkuchen.shop", true },
+ { "pulsnitzer-pfefferkuchen-shop.de", true },
+ { "pulsnitzer-pfefferkuchen.shop", true },
+ { "pumpandcash.com", true },
{ "pumperszene.com", true },
+ { "punchlinetheatre.co.uk", true },
+ { "punchunique.com", true },
{ "puneflowermall.com", true },
+ { "punematka.com", true },
{ "punikonta.de", true },
{ "punitsheth.com", true },
{ "punkapoule.fr", true },
@@ -27769,20 +31004,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pupboss.com", true },
{ "puppet.pl", true },
{ "puq.moe", true },
+ { "puralps.ch", true },
{ "puravida-estate.com", true },
{ "pure-gmbh.com", true },
{ "purecabo.com", true },
- { "pureessentialoil.biz", true },
- { "pureholisticliving.me", true },
+ { "purefkh.xyz", true },
+ { "purefreefrom.co.uk", true },
{ "pureitsolutionsllp.com", true },
- { "purelunch.co.uk", true },
+ { "pureluxemedical.com", true },
+ { "purenvi.ca", 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 },
{ "purplebricksplc.com", true },
+ { "purplegrapegames.com", true },
{ "purplemet.com", true },
{ "purplemoon.ch", true },
{ "purplemoon.mobi", true },
@@ -27794,17 +31031,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "purplewindows.net", true },
{ "purrfect-box.co.uk", true },
{ "purrfectboudoir.com", true },
+ { "purrfectcams.com", true },
{ "purrfectmembersclub.com", true },
+ { "purrfectswingers.com", true },
+ { "pursuedtirol.com", true },
{ "puryearlaw.com", true },
{ "pusatinkubatorbayi.com", true },
{ "pushers.com.mx", true },
+ { "pushoflove.com", true },
{ "pushrax.com", true },
+ { "pusichatka.ddns.net", true },
+ { "pussr.com", true },
{ "put.moe", true },
{ "put.re", true },
{ "putatara.net", true },
+ { "putin.red", true },
{ "putman-it.nl", true },
{ "putney.io", true },
{ "putomani.rs", true },
+ { "putrock.be", true },
{ "puurwonengeldrop.nl", false },
{ "puxlit.net", true },
{ "puyallupnissanparts.com", true },
@@ -27814,19 +31059,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "puzzle-welt.ch", true },
{ "puzzlepoint.ch", true },
{ "pv-paderborn-now.de", true },
+ { "pvamg.org", true },
{ "pvcvoordeel.nl", false },
{ "pvda.nl", true },
{ "pvmotorco.com", true },
{ "pvpcraft.ca", true },
{ "pvpctutorials.de", true },
+ { "pvphs98.com", true },
{ "pvtschlag.com", true },
+ { "pwaresume.com", true },
{ "pwdsafe.com", true },
{ "pwe.vision", true },
+ { "pwnedpass.tk", true },
{ "pwnies.dk", true },
{ "pwolk.com", true },
+ { "pxgamer.xyz", true },
+ { "pxl-mailtracker.com", true },
+ { "pxl.cl", true },
{ "pxx.io", true },
{ "py-amf.org", true },
{ "py.search.yahoo.com", false },
+ { "pycoder.org", true },
{ "pycrc.org", true },
{ "pycrypto.org", true },
{ "pycycle.info", true },
@@ -27836,17 +31089,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pypi.io", true },
{ "pypi.org", true },
{ "pypi.python.org", true },
+ { "pyramidsofchi.com", true },
+ { "pyrenees.io", true },
+ { "pyrios.pro", true },
{ "pyrotechnologie.de", true },
{ "pysays.net", true },
{ "pyspace.org", true },
{ "python-hyper.org", true },
{ "python.org", false },
+ { "pyxo.net", true },
{ "pyzlnar.com", true },
+ { "pzpittsburgh.com", true },
{ "pzsearch.nl", true },
{ "q-inn.com", true },
{ "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 },
@@ -27856,10 +31115,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qaconstrucciones.com", true },
{ "qadmium.com", true },
{ "qambarraza.com", true },
- { "qamrulhaque.com", true },
- { "qapital.com", true },
+ { "qani.me", true },
+ { "qaq.sh", true },
+ { "qarea.com", true },
+ { "qaz.cloud", true },
{ "qbeing.info", true },
{ "qbiju.com.br", true },
+ { "qbiltrade.com", true },
{ "qbus.pl", true },
{ "qc.immo", true },
{ "qc.search.yahoo.com", false },
@@ -27873,53 +31135,65 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qcstudentcenter.com", true },
{ "qcstyleacademy.com", true },
{ "qctravelschool.com", true },
- { "qdon.space", true },
+ { "qdabogados.com", true },
+ { "qdon.space", false },
+ { "qe-lab.at", true },
{ "qedcon.org", false },
{ "qelectrotech.org", true },
{ "qetesh.de", true },
{ "qetic.co.jp", true },
{ "qewc.com", true },
+ { "qgblog.org", true },
{ "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 },
- { "qifu.org.cn", true },
{ "qiliang.wang", true },
- { "qingpat.com", true },
+ { "qingcao.org", true },
{ "qingpei.me", true },
{ "qionouu.cn", true },
+ { "qipl.org", true },
{ "qis.fr", true },
{ "qitarabutrans.com", true },
- { "qiuri.org", true },
- { "qiuxian.ddns.net", true },
+ { "qiu521119.host", true },
+ { "qiukong.com", true },
+ { "qiuri.org", false },
{ "qivonline.pt", true },
{ "qiwi.be", true },
{ "qixi.biz", true },
- { "qkka.org", true },
+ { "qkmortgage.com", true },
+ { "qlcvea.com", true },
{ "qldconservation.org.au", true },
{ "qldformulaford.org", true },
+ { "qledtech.com", false },
+ { "qlix.pl", true },
{ "qlrace.com", false },
{ "qm-marzahnnordwest.de", true },
+ { "qnq.moe", true },
{ "qochealth.com", true },
{ "qoml.net", true },
{ "qonto.eu", true },
{ "qoor.io", true },
{ "qotw.net", true },
+ { "qpcna.org", true },
{ "qponverzum.hu", true },
{ "qq-navi.com", true },
{ "qq52o.me", true },
{ "qqrss.com", true },
- { "qqvips.com", true },
- { "qqvrsmart.cn", true },
{ "qr-city.org", true },
+ { "qr.cl", true },
+ { "qrbird.com", true },
{ "qrcontagion.com", true },
{ "qrpth.eu", true },
{ "qruiser.com", true },
{ "qscloud.de", true },
{ "qtacairsoft.com", true },
{ "qtl.me", true },
+ { "qtmsheep.com", true },
{ "qtn.net", true },
{ "qto.com", true },
{ "qto.net", true },
@@ -27928,20 +31202,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qtpower.net", true },
{ "qtpower.org", true },
{ "qtvr.com", true },
- { "qtxh.net", false },
+ { "qtxh.net", true },
{ "quackerswaterproofing.com", true },
- { "quaedam.org", true },
+ { "quadra.srl", true },
{ "quaggan.co", true },
{ "quai10.org", false },
{ "qualite-ecole-et-formation.ch", true },
{ "quality-life.gr", true },
{ "qualityedgarsolutions.com", true },
{ "qualityhomesystems.com", true },
+ { "qualityhvacservices.com", true },
{ "qualityofcourse.com", true },
{ "qualitypropertycare.co.uk", true },
+ { "qualpay.biz", true },
{ "qualtrics.com", true },
{ "quant-labs.de", true },
- { "quantaloupe.tech", true },
{ "quanterra.ch", true },
{ "quantolytic.de", true },
{ "quantoras.com", true },
@@ -27950,8 +31225,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quantumfurball.net", true },
{ "quantumpair.net", true },
{ "quantumwebs.co", true },
- { "quanwuji.com", true },
- { "quanyin.eu.org", true },
{ "quareal.ru", true },
{ "quarkdose.de", true },
{ "quarterfull.com", true },
@@ -27965,89 +31238,106 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qubes-os.org", true },
{ "qubyte.codes", true },
{ "quchao.com", true },
+ { "queencomplex.net", true },
+ { "queene.eu", true },
+ { "queens.lgbt", true },
{ "queensrdapartments.com.au", true },
{ "queer.party", true },
- { "queercinema.ch", true },
{ "queercoders.com", false },
+ { "queextensiones.com", true },
{ "quehacerencusco.com", true },
+ { "quelle.at", true },
+ { "quelle.ch", true },
+ { "quelle.de", true },
{ "quelleformation.net", true },
{ "quemeloquitan.com", true },
{ "queminventou.com.br", true },
{ "quemmeliga.com", true },
{ "quenotejodan.cl", true },
{ "quentinchevre.ch", true },
+ { "queo.com.co", true },
{ "quera.ir", true },
- { "querkommentar.de", true },
+ { "quermail.com", true },
{ "query-massage.com", true },
{ "question.com", true },
- { "questionable.host", true },
- { "questionyu.com", true },
{ "questsocial.it", true },
{ "quevisiongrafica.com", true },
{ "quic.stream", true },
{ "quickboysvrouwen2.nl", true },
{ "quickinfosystem.com", true },
+ { "quickrelations.de", true },
+ { "quieroserbombero.org", true },
{ "quiet-waters.org", true },
{ "quietapple.org", true },
+ { "quietboy.net", true },
{ "quikchange.net", true },
{ "quikpay.com.au", true },
- { "quikrmovies.to", true },
- { "quilmo.com", true },
{ "quimatic.com.br", true },
{ "quinnlabs.com", true },
{ "quinoa24.com", true },
{ "quintessa.org", true },
{ "quintype.com", true },
+ { "quiq-api.com", true },
+ { "quiq-cdn.com", true },
+ { "quiq.us", true },
{ "quire.io", true },
{ "quisido.com", true },
{ "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 },
{ "quppa.net", true },
{ "quuz.org", true },
+ { "qvg.company", true },
{ "qvggroup.com", true },
{ "qvi.st", true },
{ "qvitoo.com", true },
- { "qwallet.ca", true },
{ "qwans.nl", true },
{ "qwant.com", true },
{ "qwant.fr", true },
- { "qwaser.fr", true },
{ "qwdqwd.de", true },
{ "qwe7002.com", true },
- { "qweepi.de", false },
{ "qwertee.com", true },
{ "qwerty.work", true },
- { "qwertyatom100.me", true },
{ "qwikdash.com", true },
{ "qwq.moe", true },
{ "qx.fi", true },
{ "qx.se", true },
{ "qxy.ch", true },
+ { "r-ay.cn", true },
{ "r-rwebdesign.com", true },
{ "r-t-b.fr", true },
- { "r0t.co", true },
- { "r0uzic.net", true },
+ { "r1a.eu", true },
{ "r1ch.net", true },
{ "r2d2pc.com", true },
{ "r33.space", true },
+ { "r3bl.blog", true },
+ { "r3bl.me", true },
{ "r3nt3r.com", true },
{ "r3s1stanc3.me", true },
{ "r40.us", true },
{ "r6-team.ru", true },
+ { "r7.com.au", true },
{ "r7h.at", true },
{ "r811.de", true },
+ { "ra-joergensen.de", true },
{ "ra-micro-koeln.de", true },
+ { "ra-schaal.de", false },
{ "ra.co.ke", true },
{ "ra.vc", true },
{ "ra4wvpn.com", true },
{ "raah.co", true },
{ "rabbit.wales", false },
{ "rabbitfinance.com", true },
+ { "rabbitinternet.com", true },
{ "rabica.de", true },
{ "rabotaescort.com", true },
{ "rabynska.eu", true },
@@ -28056,92 +31346,113 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "racesport.nl", false },
{ "raceviewcycles.com", true },
{ "raceviewequestrian.com", true },
- { "rachaelrussell.com", true },
{ "rachelchen.me", true },
{ "racheldiensthuette.de", true },
{ "rachelmoorelaw.com", true },
{ "rachelreagan.com", true },
{ "rachelsbouncycastles.co.uk", true },
{ "rachida-dati.eu", true },
+ { "rachurch.net", true },
{ "racius.com", true },
{ "rackerlab.com", false },
{ "raclet.co.uk", true },
{ "raconconsulting.co.uk", true },
{ "racoo.net", true },
+ { "racozo.com", true },
{ "racunovodstvo-prina.si", true },
{ "radar.sx", true },
{ "radaravia.ru", true },
+ { "radarbanyumas.co.id", 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 },
+ { "radiobox.net", true },
+ { "radiocommg.com.br", true },
{ "radiocomsaocarlos.com.br", 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 },
{ "radiormi.com", true },
- { "radiorsvp.com", true },
+ { "radiorsvp.com", false },
+ { "radiosendungen.com", true },
{ "radis-adopt.com", true },
+ { "radiumone.io", true },
{ "radiumtree.com", true },
{ "radondetectionandcontrol.com", true },
{ "radreisetraumtreibstoff.de", true },
- { "radtke.bayern", true },
{ "radyabkhodro.net", true },
{ "radyn.com", true },
{ "raeu.me", true },
{ "raeven.nl", true },
+ { "raevinnd.com", true },
{ "rafaelmagalhaesweb.com", true },
{ "rafey.xyz", true },
{ "raffaellaosti.com", true },
+ { "rafleatherdesign.com", true },
{ "rafting-japan.com", true },
{ "ragasto.nl", true },
{ "rage-overload.ch", true },
{ "rage.rip", true },
{ "rage4.com", true },
- { "raghavdua.in", true },
{ "rahulpnath.com", true },
- { "rai-co.net", true },
{ "raidensnakesden.co.uk", true },
{ "raidensnakesden.com", true },
{ "raidensnakesden.net", true },
+ { "raidstone.net", true },
{ "raiffeisen-kosovo.com", 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 },
+ { "railvideo.co.uk", true },
+ { "railvideo.net", true },
+ { "railvideo.nl", true },
{ "railwaytech.net", true },
- { "railyardurgentcare.com", 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 },
+ { "raisecorp.com", 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 },
- { "rakugaki.cn", 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 },
{ "rally-base.eu", true },
@@ -28155,15 +31466,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "raltha.com", true },
{ "ram-it.nl", true },
{ "ram.nl", true },
- { "ramatola.uk", true },
- { "rambii.de", true },
- { "ramblingrf.tech", true },
+ { "ramarka.de", true },
{ "rambo.codes", true },
- { "ramezanloo.com", false },
{ "rammstein-portugal.com", true },
- { "ramrecha.com", true },
+ { "ramrecha.com", false },
{ "ramsor-gaming.de", true },
{ "randc.org", true },
+ { "randolf.ca", true },
{ "random-samplings.org", true },
{ "randomadversary.com", true },
{ "randombit.eu", false },
@@ -28172,24 +31481,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "randomkoalafacts.com", true },
{ "randomprecision.co.uk", true },
{ "randomquotesapp.com", true },
+ { "randomrepo.com", true },
+ { "randomserver.pw", true },
+ { "ranfurlychambers.co.nz", true },
{ "rangde.org", true },
{ "rangercollege.edu", true },
{ "rangsmo.se", true },
{ "rank-net.de", true },
{ "ranking-deli.jp", true },
+ { "ranktopay.com", true },
{ "ranson.com.au", true },
- { "rantanda.com", true },
{ "rante.com", true },
- { "ranyeh.co", true },
{ "ranyeh.com", true },
{ "ranzbak.nl", true },
{ "raoul-kieffer.net", true },
- { "rapdogg.com", true },
{ "rapenroer.com", true },
{ "rapenroer.nl", true },
{ "raphael.li", true },
{ "raphaeladdile.com", true },
{ "raphaelcasazza.ch", true },
+ { "raphaelschmid.eu", true },
{ "raphrfg.com", true },
{ "rapidapp.io", true },
{ "rapidhubs.com", true },
@@ -28205,112 +31516,129 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rascals-castles.co.uk", true },
{ "rascalscastles.co.uk", true },
{ "rascalscastlesdoncaster.co.uk", true },
- { "rasebo.ro", true },
- { "rastreie.net", true },
+ { "raspii.tech", true },
{ "rasty.cz", true },
{ "ratd.net", true },
{ "ratebridge.com", true },
+ { "ratelsec.com", true },
{ "rathbonesonline.com", true },
{ "rathgeb.org", true },
+ { "ratinq.co", true },
{ "rationalcreation.com", true },
{ "rationalism.com", true },
{ "rationalops.com", true },
{ "rattenkot.io", true },
{ "raulrivero.es", true },
- { "raum4224.de", true },
+ { "rault.io", true },
{ "rauros.net", true },
{ "rautelow.de", true },
- { "rautermods.net", true },
+ { "ravada-vdi.com", true },
+ { "ravanalk.com", true },
{ "ravchat.com", true },
{ "raven.dog", true },
{ "ravenger.net", true },
{ "ravensbuch.de", true },
{ "ravhaaglanden.org", true },
{ "ravindran.me", true },
- { "raviparekh.co.uk", true },
{ "ravis.org", true },
+ { "ravkr.duckdns.org", true },
{ "rawdutch.nl", true },
+ { "rawinfosec.com", true },
{ "rawsec.net", true },
{ "raxion.cf", true },
{ "raxion.tk", true },
{ "ray-home.de", true },
{ "ray-works.de", true },
+ { "rayan-it.ir", true },
{ "rayiris.com", true },
{ "raykitchenware.com", true },
{ "raymcbride.com", true },
{ "raymd.de", true },
{ "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 },
{ "rbensch.com", true },
{ "rbflote.lv", true },
{ "rbltracker.com", true },
- { "rbmafrica.co.za", true },
+ { "rbmland.com", 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 },
- { "rc7.ch", true },
{ "rca.fr", true },
{ "rcd.cz", true },
{ "rcdocuments.com", true },
+ { "rcgoncalves.pt", true },
+ { "rchavez.site", true },
{ "rchrdsn.uk", true },
+ { "rcifsgapinsurance.co.uk", true },
{ "rclsm.net", true },
+ { "rcmlinx.com", true },
+ { "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 },
+ { "rdv-cni.fr", true },
{ "rdv-prefecture.com", true },
{ "rdwh.tech", true },
{ "re-curi.com", true },
{ "re-engines.com", true },
{ "reachhead.com", true },
+ { "reachonline.org", true },
{ "reachrss.com", true },
{ "reaconverter.com", true },
{ "react-db.com", true },
+ { "reactions.studio", true },
{ "reactivarte.es", true },
{ "reactive-press.com", true },
+ { "reactpwa.com", true },
{ "read.sc", true },
{ "reades.co.uk", true },
+ { "reades.uk", true },
{ "readheadcopywriting.com", true },
- { "readify.com.au", true },
{ "readingandmath.org", true },
{ "readingrats.de", true },
+ { "readmusiccoleman.com", true },
{ "readonly.de", true },
{ "readouble.com", false },
- { "readtldr.com", true },
+ { "reads.wang", true },
+ { "readybetwin.com", true },
+ { "readyrowan.com", true },
+ { "readyrowan.org", true },
{ "readysell.net", true },
+ { "readytobattle.net", true },
{ "readytongue.com", true },
{ "readytowear.es", true },
{ "reaganlibrary.gov", true },
{ "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 },
- { "realfamilyincest.com", true },
+ { "realfood.space", true },
{ "realfreedom.city", true },
- { "realgarant-shop.de", false },
{ "realhorsegirls.net", true },
{ "realhypnosistraining.com.au", true },
{ "realitea.co.uk", true },
@@ -28322,10 +31650,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
- { "realraghavgupta.com", true },
+ { "realpropertyprofile.gov", true },
+ { "realtygroup-virginia.com", true },
+ { "realtyink.net", true },
{ "realum.com", true },
{ "realum.de", true },
{ "realum.eu", true },
@@ -28337,24 +31668,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reancos.report", true },
{ "reanimated.eu", true },
{ "reath.me", true },
+ { "reath.xyz", true },
{ "reaven.nl", true },
{ "rebane2001.com", true },
+ { "rebeagle.com", true },
{ "rebelessex.com", true },
+ { "rebelonline.nl", true },
{ "rebelrebel.com.au", true },
{ "rebelz.se", true },
{ "rebirthia.me", true },
{ "reboxetine.com", true },
{ "reboxonline.com", true },
- { "rebtoor.com", true },
+ { "recalls.gov", true },
{ "recantoshop.com", true },
{ "recantoshop.com.br", true },
{ "recapp.ch", true },
+ { "recaptcha-demo.appspot.com", true },
+ { "recard.vn", true },
{ "receiliart.com", true },
- { "receptionsbook.com", true },
- { "recepty.eu", false },
+ { "receptionpoint.com", true },
+ { "recepty.eu", true },
+ { "recetasdecocinaideal.com", true },
+ { "recetin.com", true },
{ "rechenknaecht.de", true },
- { "recht-freundlich.de", true },
- { "rechtenliteratuurleiden.nl", false },
{ "rechtsanwaeltin-vollmer.de", true },
{ "rechtsanwalt-koeppen-feucht.de", true },
{ "rechtschreibpruefung24.de", true },
@@ -28362,27 +31698,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "recipex.ru", true },
{ "recipeyak.com", true },
{ "reckontalk.com", true },
- { "reclamebureau-ultrax.nl", true },
{ "reclametoolz.nl", true },
{ "reclusiam.net", true },
{ "recmon.hu", true },
{ "reco-studio.de", true },
{ "recolic.net", true },
{ "recommended.reviews", true },
+ { "recompiled.org", 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 },
{ "recuerdafilms.com", true },
{ "recuperodatiraidfastec.it", true },
{ "recurly.com", true },
+ { "recurrentmeningitis.org", true },
+ { "recursosdeautoayuda.com", true },
{ "recyclingpromotions.us", true },
{ "red-t-shirt.ru", true },
- { "red-trigger.net", true },
{ "red2fred2.com", true },
{ "redable.hosting", true },
{ "redable.nl", true },
@@ -28411,65 +31748,80 @@ 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 },
+ { "redflare.com.au", true },
{ "redfox-infosec.de", true },
+ { "redfoxmarketiing.com", true },
{ "redgatesoftware.co.uk", true },
{ "redgoose.ca", true },
{ "redhandedsecurity.com.au", true },
- { "redheeler.com.br", true },
{ "redicals.com", true },
- { "redigest.it", true },
{ "redir.me", true },
{ "redirect.fedoraproject.org", true },
{ "redirect.stg.fedoraproject.org", true },
{ "rediske.me", true },
{ "redit.com", true },
+ { "rediverge.com", true },
{ "redivis.com", true },
- { "redletter.link", true },
+ { "redleslie.com", true },
{ "redlinelap.com", true },
{ "redlink.de", true },
+ { "redmind.se", true },
+ { "redmondtea.com", true },
{ "redmore.me", true },
{ "redneragenturen.org", true },
{ "rednsx.org", true },
- { "redporno.cz", true },
+ { "redpact.com", true },
{ "redprice.by", true },
+ { "redscan.com", true },
+ { "redshell.pw", true },
{ "redshield.co", true },
{ "redshiftlabs.com.au", true },
{ "redshoeswalking.net", true },
{ "redsicom.com", true },
+ { "redsquarelasvegas.com", true },
{ "redstoner.com", true },
{ "redteam-pentesting.de", true },
{ "redwaterhost.com", true },
{ "redweek.com", true },
+ { "redwhey.com", true },
{ "redwoodpaddle.es", true },
{ "redwoodpaddle.pt", true },
+ { "redzonedaily.com", true },
{ "redzurl.com", false },
{ "reed-sensor.com", true },
{ "reedloden.com", true },
+ { "reedyforkfarm.com", true },
{ "reegle.com", true },
- { "reepay.com", true },
+ { "reening.net", true },
+ { "reensshop.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 },
+ { "refinansiering.no", true },
{ "reflectivity.io", true },
{ "reflectores.net", true },
+ { "refletindosaude.com.br", true },
+ { "reflets.info", true },
{ "reflexions.co", true },
{ "reflexive-engineering.com", true },
{ "reflexive.xyz", true },
{ "refood-cascaiscpr.eu", true },
{ "reforesttheplanet.com", true },
- { "reformatreality.com", true },
{ "refresh-media.nl", true },
{ "refreshliving.us", true },
+ { "refu.net", true },
{ "refuelcollective.com", true },
+ { "refuelcreative.com.au", true },
{ "refundo.cz", true },
{ "refundo.sk", true },
{ "regain.us", true },
@@ -28479,6 +31831,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reganclassics.com", true },
{ "reganparty.com", true },
{ "regar42.fr", false },
+ { "regasportshop.it", true },
+ { "regeneo.cz", true },
{ "regenerapoint.it", true },
{ "regenerescence.com", true },
{ "regily.com", true },
@@ -28486,14 +31840,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "regime-maigrir-vite.com", true },
{ "regimebonheur.com", true },
{ "regimecellulite.com", true },
+ { "reginfo.gov", true },
{ "regiobeveland.nl", true },
{ "regionalbasementandcrawlspacerepair.com", true },
- { "regionalcoalition.org", true },
+ { "regionalgrowth.com", true },
{ "regiosalland.nl", true },
{ "regiovertrieb.de", false },
{ "regis.tech", true },
{ "regisearch.co.uk", true },
- { "register.gov.uk", true },
{ "registerex.me", true },
{ "registerforevent.co.uk", true },
{ "registerra.nl", true },
@@ -28507,21 +31861,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "regnr.info", true },
{ "regolithmedia.com", true },
{ "regraph.de", true },
+ { "regresionavidaspasadas.com", true },
+ { "regularflolloping.com", true },
+ { "regularizaeudora.com.br", true },
{ "regulations.gov", true },
{ "reha-honpo.jp", true },
{ "rehabili-shigoto.com", true },
{ "rehabilitation.network", true },
{ "rehabmail.com", true },
{ "rehabphilippines.com", true },
+ { "rehabreviews.com", true },
{ "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 },
@@ -28529,30 +31887,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reimann.me", true },
{ "reimers.de", true },
{ "rein.kr", true },
- { "reinaertvandecruys.com", true },
{ "reinaldudras.ee", true },
{ "reinaldudrasfamily.ee", true },
- { "reineberthe.ch", true },
{ "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 },
{ "reisekosten-gorilla.com", true },
- { "reisenbauer.ee", true },
{ "reiseversicherung-werner-hahn.de", true },
{ "reishunger.de", true },
+ { "reisslittle.com", true },
+ { "reittherapie-tschoepke.de", true },
{ "rejahrehim.com", true },
{ "rejects.email", true },
{ "rejsehuskelisten.dk", true },
- { "rejushiiplotter.ru", true },
{ "rekisuta.com", true },
{ "reklamjog.hu", true },
+ { "rekonstrukcestatu.cz", true },
{ "rekorsanat.com.tr", true },
+ { "rekyou.com", false },
{ "relates.link", true },
{ "relax.hn", true },
{ "relaxdom.net", true },
@@ -28562,41 +31920,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "release-monitoring.org", true },
{ "releasetimes.io", true },
{ "reliancebank.bank", true },
- { "reliant3sixty.com", true },
- { "religiousforums.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 },
{ "remejeanne.com", true },
{ "rememberthemilk.com", false },
{ "remi-saurel.com", true },
+ { "remiafon.com", true },
+ { "remilner.co.uk", true },
+ { "remini.cz", true },
+ { "remirampin.com", true },
{ "remissan.com", true },
+ { "remitatm.com", false },
{ "remonti.info", true },
{ "remote.so", true },
+ { "remoteham.com", true },
{ "remoteutilities.com", true },
{ "removalcellulite.com", true },
{ "removedrepo.com", true },
+ { "remptmotors.com", true },
{ "remrol.ru", true },
{ "remszeitung.de", true },
{ "renaissanceplasticsurgery.net", true },
{ "renascentia.asia", true },
{ "renaultclubticino.ch", true },
+ { "rendall.tv", true },
{ "renderloop.com", true },
{ "rendre-service.ch", true },
{ "rene-schwarz.com", true },
{ "rene-stolp.de", true },
{ "renearends.nl", true },
+ { "renedekoeijer.com", true },
+ { "renee.today", true },
{ "reneleu.ch", true },
{ "renem.net", false },
- { "renemayrhofer.com", true },
+ { "renemayrhofer.com", false },
{ "reneschmidt.de", true },
{ "renewablefreedom.org", true },
+ { "renewablemaine.org", true },
{ "renewed.technology", true },
{ "renewgsa.com", true },
{ "renewmedispa.com", true },
@@ -28604,31 +31977,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "renezuo.com", true },
{ "renkenlaw.com", true },
{ "renlen.nl", true },
- { "rennfire.org", true },
{ "renov8sa.co.za", true },
+ { "renovablesverdes.com", true },
{ "renovum.es", true },
{ "renrenche.com", false },
{ "rens.nu", true },
- { "renscreations.com", true },
+ { "rensa-datorn.se", true },
{ "rent-a-c.io", true },
{ "rent-a-coder.de", true },
{ "rentacaramerica.com", true },
- { "rentasweb.gob.ar", true },
+ { "rentandgo.it", true },
+ { "rentayventadecarpas.com", true },
{ "renthelper.us", true },
{ "rentinsingapore.com.sg", true },
{ "rentourhomeinprovence.com", true },
{ "renuo.ch", true },
- { "reorz.com", true },
+ { "renxinge.cn", false },
{ "reox.at", false },
{ "repaik.com", true },
{ "repair.by", true },
{ "repaper.org", true },
- { "reparo.pe", true },
{ "repaxan.com", true },
{ "repkord.com", true },
+ { "replace.ninja", true },
{ "replicaswiss.nl", true },
{ "repology.org", true },
{ "report-uri.com", true },
+ { "report2psb.online", true },
+ { "reportband.gov", true },
{ "reporting.gov", true },
{ "reproduciblescience.org", true },
{ "reproductive-revolution.com", true },
@@ -28637,16 +32013,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reprogrammingpredators.com", true },
{ "reprozip.org", true },
{ "repsomelt.com", true },
- { "reptilauksjonen.no", true },
{ "reptrax.com", true },
{ "republic.gr", true },
{ "republictelecom.net", true },
{ "republique.org", true },
{ "repugnant-conclusion.com", true },
{ "repugnantconclusion.com", true },
- { "repustate.com", true },
- { "reqrut.net", true },
- { "request-trent.com", true },
+ { "reputationweaver.com", true },
{ "requestr.co.uk", true },
{ "res-kc.com", true },
{ "resama.eu", true },
@@ -28658,55 +32031,64 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reseausyndic.ca", true },
{ "reservar-un-hotel.com", true },
{ "reservetonshift.com", true },
- { "reservoirtp.fr", true },
{ "resfriatech.com.br", true },
{ "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 },
{ "resoplus.ch", true },
+ { "resort-islands.net", true },
+ { "resortafroditatucepi.com", true },
{ "resortohshima.com", true },
{ "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 },
+ { "respiranto.de", 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-de-notenkraker.be", true },
{ "restaurant-oregano.de", true },
{ "restaurant-rosengarten.at", true },
{ "restaurantguru.com", true },
{ "restaurantmaan.nl", true },
{ "restauranttester.at", true },
- { "rester-a-domicile.ch", true },
- { "rester-autonome-chez-soi.ch", true },
{ "restoran-radovce.me", true },
{ "restorethegulf.gov", true },
{ "restoruns.com", true },
{ "restoruns.xyz", true },
{ "restrealitaet.de", true },
{ "restrito.org", true },
+ { "resultsatretail.com", true },
{ "resursedigitale.ro", true },
{ "retefarmaciecostadamalfi.it", true },
{ "retetenoi.net", true },
- { "retetop95.it", true },
+ { "reticket.me", true },
{ "reticon.de", true },
- { "retireyourpassword.org", true },
{ "retmig.dk", true },
{ "reto.ch", true },
{ "reto.com", true },
{ "reto.io", true },
- { "retogroup.com", true },
{ "retokromer.ch", true },
+ { "retornaz.com", true },
+ { "retornaz.eu", true },
+ { "retornaz.fr", true },
{ "retractableawningssydney.com.au", true },
{ "retro.rocks", true },
{ "retro.sx", true },
@@ -28715,14 +32097,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "retrocdn.net", true },
{ "retrofitlab.com", true },
{ "retroity.net", true },
+ { "retrojar.top", true },
+ { "retroride.cz", true },
{ "retroroundup.com", true },
{ "retrotracks.net", true },
{ "retrovideospiele.com", true },
+ { "returnonerror.com", true },
{ "returnpath.com", true },
{ "reucon.com", true },
{ "reulitz.de", true },
{ "reuna.me", true },
- { "reussir-ma-fete.fr", true },
{ "reussirsavie.info", true },
{ "reuter-profishop.de", true },
{ "reuter-shop.com", true },
@@ -28732,124 +32116,143 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "revayd.net", true },
{ "revensoftware.com", true },
{ "reverencestudios.com", true },
- { "reverse.design", true },
{ "reverseaustralia.com", true },
{ "reversecanada.com", true },
{ "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 },
+ { "revista-programar.info", true },
{ "revivalinhisword.com", true },
+ { "revivalprayerfellowship.com", true },
{ "revivingtheredeemed.org", true },
+ { "revlect.com", true },
{ "revolt.tv", true },
{ "revthefox.co.uk", true },
{ "rewardingexcellence.com", true },
{ "rewrite3.com", true },
+ { "rewtherealtor.com", true },
{ "rex.tc", true },
{ "rexdf.net", true },
{ "rexskz.info", true },
+ { "reyna.cc", true },
{ "rezept-planer.de", true },
{ "rezexpert.com", true },
{ "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 },
- { "rgservers.com", true },
+ { "rgraph.net", true },
{ "rhaegal.me", true },
{ "rhd-instruments.com", true },
{ "rhd-instruments.de", true },
{ "rhees.nl", true },
{ "rhein-liebe.de", true },
{ "rheinneckarmetal.com", true },
- { "rheinturm.nrw", true },
{ "rheocube.com", true },
{ "rhese.net", true },
- { "rhetthenckel.com", true },
- { "rheuma-online.de", true },
+ { "rhetorical.ml", true },
{ "rhevelo.com", true },
{ "rhinelander.ca", true },
+ { "rhinobase.net", true },
{ "rhinoceroses.org", true },
- { "rhnet.at", true },
{ "rhodenmanorcattery.co.uk", true },
- { "rhodes.ml", true },
{ "rhodri.io", true },
{ "rhowell.io", true },
+ { "rhumblineadvisers.com", true },
{ "rhymeswithmogul.com", true },
{ "rhymix.org", true },
{ "rhynl.io", true },
{ "riajenaka.com", true },
+ { "riaki.net", true },
{ "rial.space", true },
+ { "riaucybersolution.net", false },
{ "ribs.com", true },
{ "ricardo.nu", true },
{ "ricardobalk.nl", true },
+ { "ricardopq.com", true },
+ { "ricaribeiro.com.br", 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 },
{ "richardhicks.us", true },
{ "richardjgreen.net", true },
{ "richardlangworth.com", true },
+ { "richardlevinmd.com", true },
{ "richardlugten.nl", true },
+ { "richardramos.me", true },
{ "richardrblocker.net", true },
+ { "richardschut.nl", true },
+ { "richardson.cam", true },
{ "richardson.engineering", true },
{ "richardson.pictures", true },
{ "richardson.software", true },
{ "richardson.systems", true },
+ { "richardson.tw", true },
+ { "richardstonerealestate.com", true },
{ "richardwarrender.com", true },
+ { "richeyweb.com", true },
{ "richie.fi", true },
- { "richie.link", true },
- { "richmtdriver.com", true },
- { "richonrails.com", true },
{ "ricketyspace.net", true },
{ "ricki-z.com", true },
- { "ricknox.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 },
{ "ricochet.im", true },
+ { "ricoydesign.com", true },
{ "ricozienke.de", true },
{ "riddims.co", true },
- { "ride-up.com", true },
+ { "rideintaxi.com", true },
+ { "rideways.com", true },
{ "rideyourdamn.bike", true },
+ { "ridgelandchurch.org", true },
+ { "ridhaan.co", true },
{ "ridingboutique.de", true },
+ { "ridwan.co", false },
{ "riederle.com", true },
{ "riemer.ml", true },
{ "riesenweber.id.au", true },
{ "riesheating.com", true },
+ { "rievo.net", true },
{ "riffreporter.de", true },
+ { "rifkivalkry.net", true },
{ "rift.pictures", true },
{ "rigabeerbike.com", true },
{ "rigabeerbike.lv", true },
{ "righettod.eu", true },
{ "righini.ch", true },
{ "rightbrain.training", true },
- { "rightcapital.com", true },
{ "rightmovecanada.com", true },
{ "rightnetworks.com", true },
{ "rightstuff.link", true },
{ "righttobuy.gov.uk", true },
+ { "rigolitch.fr", true },
+ { "rigsalesaustralia.com", true },
{ "rijk-catering.nl", false },
- { "rijsinkunst.nl", true },
+ { "rijschoolrichardschut.nl", true },
+ { "rijschoolsafetyfirst.nl", true },
+ { "rijsinkunst.nl", false },
{ "rik.onl", true },
{ "riku.pw", true },
{ "rile5.com", true },
@@ -28858,17 +32261,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rimcountrymuseum.org", true },
{ "rimeto.io", true },
{ "rimo.site", true },
+ { "rimorrecherche.nl", true },
{ "ring.com", true },
{ "ringingliberty.com", true },
{ "ringjewellery.co.uk", true },
{ "rinvex.com", true },
{ "rio-weimar.de", true },
{ "rioshop.com.br", true },
+ { "rioxmarketing.com", true },
+ { "rioxmarketing.pt", true },
{ "rip-sport.cz", true },
{ "ripaton.fr", true },
+ { "ripcorddesign.com", true },
+ { "ripcordsandbox.com", true },
{ "ripmixmake.org", true },
- { "ripple.com", true },
{ "riqy86.nl", true },
+ { "ris-bad-wurzach.de", true },
{ "ris.fi", true },
{ "risada.nl", true },
{ "risaphuketproperty.com", true },
@@ -28877,16 +32285,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rise-technologies.com", true },
{ "riseup.net", true },
{ "rishikeshyoga.in", true },
- { "risi-china.com", true },
{ "risiinfo.com", true },
{ "riskmitigation.ch", true },
{ "risparmiare.info", true },
- { "rissato.com.br", true },
{ "ristioja.ee", true },
{ "ristoarea.it", true },
{ "ristorantefattoamano.it", true },
{ "ristoviitanen.fi", true },
{ "ristrutturazioneappartamento.roma.it", true },
+ { "rit.space", false },
+ { "ritirocalcinacci.viterbo.it", true },
{ "rittau.biz", true },
{ "rittau.org", true },
{ "ritzlux.com.tw", true },
@@ -28894,15 +32302,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rivalsa.cn", true },
{ "rivastation.de", true },
{ "riverbanktearooms.co.uk", true },
+ { "riverbendroofingnd.com", true },
{ "riverford.co.uk", true },
{ "rivermist.com.au", true },
+ { "riverridgecc.com", true },
{ "riversidebaptistchurch.net", true },
{ "riversideradio.nl", true },
{ "riverviewcourtapts.com", true },
{ "riverweb.gr", true },
{ "rivierasaints.ch", true },
+ { "rivoflor.it", true },
{ "rivus.net", true },
{ "rivy.org", true },
+ { "riwick.com", false },
{ "rix.ninja", true },
{ "rixter.com", true },
{ "rixzz.ovh", true },
@@ -28911,8 +32323,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rizospastis.gr", true },
{ "rj-onderneemt.nl", true },
{ "rkfp.cz", true },
- { "rkkhok.hu", true },
- { "rkmedia.no", true },
+ { "rkkhok.hu", false },
+ { "rkmns.edu.in", true },
{ "rlalique.com", true },
{ "rld.org", true },
{ "rlds.ch", true },
@@ -28923,63 +32335,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rm-it.de", true },
{ "rmb.li", true },
{ "rmcbs.de", true },
+ { "rmeuropean.com", true },
{ "rmf.io", true },
- { "rmit.me", true },
- { "rmk.si", true },
+ { "rmi.com.ar", true },
{ "rmm-i.com", true },
{ "rmmanfredi.com", true },
{ "rmpsolution.de", true },
{ "rmrig.org", true },
+ { "rms-digicert.ne.jp", true },
{ "rms.sexy", true },
- { "rmsides.com", true },
{ "rmstudio.tw", true },
{ "rmsupply.nl", true },
- { "rn29.me", true },
{ "rnag.ie", true },
{ "rnb-storenbau.ch", true },
- { "rnbjunk.com", true },
{ "rngmeme.com", true },
{ "rnt.cl", true },
{ "ro.search.yahoo.com", false },
{ "roaddoc.de", true },
- { "roadguard.nl", true },
+ { "roadguard.nl", false },
{ "roadtopgm.com", true },
{ "roams.es", true },
- { "roave.com", true },
- { "rob.uk.com", true },
{ "rob006.net", true },
{ "robandjanine.com", true },
{ "robbertt.com", false },
+ { "robbiecrash.me", true },
{ "robdavidson.network", true },
{ "robert-flynn.de", true },
+ { "robert-wiek-transporte.de", true },
{ "robertattfield.com", true },
{ "robertayamashita.com", true },
{ "robertayamashita.com.br", true },
{ "robertbln.com", true },
- { "robertg.me", true },
{ "roberthurlbut.com", true },
{ "robertkrueger.de", true },
+ { "robertlluberes.com", true },
{ "robertlysik.com", true },
{ "robertnemec.com", true },
- { "robertocasares.no-ip.biz", true },
{ "robertoentringer.com", true },
{ "robertof.ovh", true },
{ "robertopazeller.ch", true },
{ "robertreiser.photography", true },
{ "robertrijnders.nl", true },
- { "robertsmits.be", true },
+ { "robertsmits.be", false },
{ "robhorstmanshof.nl", true },
{ "robicue.com", true },
- { "robin-novotny.com", true },
+ { "robigalia.org", false },
{ "robin.co.kr", true },
{ "robin.info", true },
- { "robinadr.com", true },
{ "robinevandenbos.nl", true },
{ "robinflikkema.nl", true },
+ { "robinfrancq.ml", true },
{ "robinhoodbingo.com", true },
{ "robinlinden.eu", true },
{ "robinsonstrategy.com", true },
{ "robinsonyu.com", true },
+ { "robinvdmarkt.nl", true },
+ { "robinwill.de", true },
{ "robinwinslow.uk", true },
{ "robjager-fotografie.nl", true },
{ "robocop.no", true },
@@ -28987,9 +32398,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robohash.org", true },
{ "robokits.co.in", true },
{ "robot.car", true },
+ { "robot.works", true },
{ "robotattack.org", true },
{ "roboth.am", true },
{ "robotham.org", true },
+ { "robotics.plus", true },
{ "robotkvarnen.se", true },
{ "robototes.com", true },
{ "robots-ju.ch", true },
@@ -28997,20 +32410,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robpol86.com", true },
{ "robspc.repair", true },
{ "robspeed.rocks", true },
- { "robtatemusic.com", true },
+ { "robtex.com", true },
{ "robu.in", true },
{ "robud.info", true },
{ "robustac.com", 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 },
+ { "rocketsandtutus.com", true },
{ "rockfax.com", true },
{ "rockhounds.co.za", true },
{ "rockinronniescastles.co.uk", true },
@@ -29026,6 +32440,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rodeobull.biz", true },
{ "rodeohire.com", true },
{ "rodeosales.co.uk", true },
+ { "rodest.net", true },
{ "rodevlaggen.nl", true },
{ "rodichi.net", true },
{ "rodinnebyvanie.eu", true },
@@ -29034,10 +32449,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rodomonte.org", true },
{ "rodrigocarvalho.blog.br", true },
{ "rody-design.com", true },
+ { "rodykossen.com", true },
{ "rodzina-kupiec.eu.org", true },
{ "roeckx.be", true },
- { "roeitijd.nl", true },
- { "roelbazuin.com", true },
+ { "roeitijd.nl", false },
{ "roeldevries.me", true },
{ "roeleveld.nl", true },
{ "roelhollander.eu", true },
@@ -29045,11 +32460,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -29062,21 +32474,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roguefortgame.com", true },
{ "roguenation.space", true },
{ "roguenetworks.me", true },
- { "roguesignal.net", true },
{ "roguetechhub.org", true },
- { "rohanbassett.com", true },
{ "rohedaten.de", true },
{ "rohitagr.com", 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 },
{ "rollatorweb.nl", true },
{ "rollercoasteritalia.it", true },
@@ -29086,17 +32499,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rolodato.com", true },
{ "roma-servizi.it", true },
{ "romab.com", true },
+ { "romain-arias.fr", true },
{ "roman-pavlik.cz", true },
+ { "romancloud.com", true },
{ "romande-entretien.ch", true },
{ "romanmichel.de", true },
{ "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 },
@@ -29104,33 +32519,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "romatrip.it", true },
{ "rome.dating", true },
{ "rommelwood.de", true },
- { "roms.fun", true },
- { "ronanrbr.com", true },
+ { "romun.net", true },
+ { "romy.tw", true },
{ "rondommen.nl", true },
{ "rondouin.fr", true },
{ "rondreis-amerika.be", true },
{ "rondreis-schotland.nl", true },
+ { "ronem.com.au", true },
{ "roninf.ch", true },
+ { "roninitconsulting.com", true },
{ "ronniegane.kiwi", true },
{ "ronnylindner.de", true },
{ "ronomon.com", true },
{ "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 },
{ "room3b.eu", true },
{ "roombase.nl", true },
+ { "roomguide.info", true },
{ "roomhub.jp", true },
- { "roomongo.com", true },
+ { "roomsatevents.eu", true },
{ "rooneytours.nl", true },
{ "roopakv.com", true },
{ "roosabels.nl", false },
{ "roosteroriginals.com", false },
- { "roosterpgplus.nl", true },
{ "root-space.eu", true },
{ "root.bg", true },
{ "root.cz", true },
@@ -29141,13 +32561,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rootedlifemontessori.com", true },
{ "rootkea.me", true },
{ "rootlair.com", true },
+ { "rootonline.de", true },
+ { "rootpigeon.com", true },
{ "roots-example-project.com", true },
{ "roots.io", true },
{ "rootsandrain.com", true },
{ "rootsbar.fr", true },
{ "rootscope.co.uk", false },
{ "rootspersona.com", true },
- { "rootswitch.com", true },
+ { "rootswitch.com", false },
{ "rootusers.com", true },
{ "ropd.info", true },
{ "roryneville.com", true },
@@ -29164,39 +32586,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rosemariefloydballet.com", true },
{ "rosenheimsingles.de", true },
{ "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 },
{ "roslynpad.net", true },
+ { "rosnertexte.at", true },
{ "rosset.me", true },
{ "rosset.net", true },
- { "rossfrancis.co.uk", true },
- { "rosslug.org.uk", true },
{ "rossmacphee.com", true },
+ { "rostclub.ro", true },
{ "rostov-avia.ru", true },
+ { "rostros.eu", true },
{ "rot47.net", true },
+ { "rotapalor.com", true },
{ "rotek.at", true },
{ "roten.email", true },
{ "rothe.io", true },
{ "rothkranz.net", true },
{ "rothnater.ch", true },
+ { "rothwellgornthomes.com", true },
{ "rotkreuzshop.de", true },
{ "rotol.me", true },
{ "rottweil-hilft.de", true },
{ "rotunneling.net", true },
- { "rotzonline.com", true },
{ "rougechocolat.fr", true },
{ "roughcopy.com.au", true },
{ "roughgrain.com", true },
{ "roulinfo.ch", true },
{ "roulons-autrement.com", true },
{ "rounda.it", true },
- { "roundaboutweb.info", true },
{ "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 },
@@ -29206,27 +32631,57 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "routetracker.co", true },
{ "rove3d.com", true },
{ "rowancasting.ie", true },
+ { "rowancounty911.com", true },
+ { "rowancounty911.org", true },
+ { "rowancountyairport.com", true },
+ { "rowancountync.gov", true },
{ "rowankaag.nl", true },
+ { "rowanpubliclibrary.com", true },
+ { "rowansheriff.com", true },
+ { "rowansheriff.org", true },
+ { "rowantransit.com", true },
+ { "rowantransit.org", true },
{ "rowlog.com", true },
{ "rows.io", true },
{ "roxiesbouncycastlehire.co.uk", true },
{ "roxtri.cz", true },
{ "royal-rangers.de", true },
+ { "royal812.com", true },
+ { "royal813.com", true },
+ { "royal818.com", true },
+ { "royal850.com", true },
+ { "royal853.com", true },
+ { "royal862.com", true },
+ { "royal863.com", true },
+ { "royal867.com", true },
+ { "royal868.com", true },
+ { "royal871.com", true },
+ { "royal88.com", true },
+ { "royal898.com", true },
{ "royalacademy.org.uk", true },
{ "royalasianescorts.co.uk", true },
+ { "royalbeautyclinic.ir", true },
{ "royalbluewa3.cc", true },
{ "royalcitytaxi.ca", true },
{ "royalcitytaxi.com", true },
+ { "royalfoxrealtor.com", true },
{ "royalmarinesassociation.org.uk", true },
{ "royalnissanparts.com", true },
{ "royalpalacenogent.fr", true },
+ { "royalpub.net", false },
{ "royalrangers.fi", true },
{ "royalty-market.com", true },
{ "royceandsteph.com", true },
{ "roycewilliams.net", true },
+ { "roygerritse.nl", true },
{ "rozalynne-dawn.ga", true },
+ { "rozar.eu", true },
{ "rozhodce.cz", true },
+ { "rpadonline.com", true },
{ "rpadovani.com", true },
+ { "rpauto.ru", true },
+ { "rpgcampaign.website", true },
+ { "rpgchan.cf", true },
{ "rpgmaker.es", true },
{ "rpherbig.com", true },
{ "rphl.net", true },
@@ -29239,23 +32694,22 @@ 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 },
+ { "rs-maschinenverleih.de", true },
+ { "rsanahuano.com", true },
{ "rsap.ca", true },
{ "rsauget.fr", true },
+ { "rsblake.net", true },
{ "rsgcard.com", true },
{ "rsingermd.com", true },
{ "rsl.gd", true },
- { "rsldb.com", true },
- { "rsm-intern.de", true },
{ "rsm-liga.de", true },
- { "rsmmail.com", true },
+ { "rsmith.io", true },
{ "rsp-blogs.de", true },
+ { "rsridentassist.com", true },
{ "rss.sh", false },
- { "rsships.com", true },
+ { "rssr.ddns.net", true },
{ "rssr.se", true },
{ "rsttraining.co.uk", true },
{ "rsync.eu", false },
@@ -29263,32 +32717,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rtate.ca", true },
{ "rtate.se", true },
{ "rtcx.net", true },
- { "rtd.uk.com", true },
+ { "rte.eu", true },
+ { "rte.radio", true },
{ "rte2fm.ie", true },
{ "rteaertel.ie", true },
{ "rtechservices.io", true },
+ { "rteguide.ie", true },
{ "rteinternational.ie", true },
{ "rtejr.ie", true },
- { "rtek.se", false },
+ { "rtek.se", true },
{ "rtenews.eu", true },
{ "rteone.ie", true },
{ "rteplayer.com", true },
{ "rtesport.eu", true },
- { "rtfpessoa.xyz", true },
+ { "rteworld.com", true },
+ { "rths.tk", false },
+ { "rthsoftware.cn", true },
+ { "rthsoftware.net", true },
{ "rtrappman.com", true },
{ "rtrinflatables.co.uk", true },
{ "rtsr.ch", true },
+ { "rttvvip.com", true },
{ "rtwcourse.com", true },
{ "rtzoeller.com", true },
- { "ru-music.com", true },
{ "ru-sprachstudio.ch", true },
{ "ru.search.yahoo.com", false },
+ { "rua.cx", true },
{ "ruaneattorneys.com", true },
{ "ruanmi.de", true },
{ "rubberfurs.org", true },
{ "rubberlegscastles.co.uk", true },
{ "rubbermaidoutlet.com", true },
{ "rubbleremovalsbenoni.co.za", true },
+ { "ruben.am", false },
{ "rubenbarbero.com", true },
{ "rubenkruisselbrink.nl", true },
{ "rubens.cloud", true },
@@ -29296,8 +32757,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruby-auf-schienen.de", true },
{ "rubyist.today", true },
{ "rubymartin.com.au", true },
- { "rubyquincunx.com", true },
- { "rubyquincunx.org", true },
{ "rubytune.com", true },
{ "rucksack-rauf-und-weg.de", true },
{ "ruckzuck-privatpatient.de", true },
@@ -29306,8 +32765,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rud.is", true },
{ "rudd-o.com", true },
{ "rudelune.fr", true },
- { "ruderverein-gelsenkirchen.de", true },
{ "rudewiki.com", true },
+ { "rudhaulidirectory.com", true },
{ "rudloff.pro", true },
{ "rudnikas.com", true },
{ "rudolph.life", true },
@@ -29316,7 +32775,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruediger-voigt.eu", true },
{ "ruedigervoigt.de", true },
{ "ruedirrenggli.ch", true },
- { "rueduparticulier.tk", true },
+ { "rueduparticulier.tk", false },
+ { "rueegger.me", true },
+ { "rueg.eu", true },
{ "ruerte.net", true },
{ "rufabula-com.appspot.com", true },
{ "ruffbeatz.com", true },
@@ -29326,20 +32787,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruhrmobil-e.de", true },
{ "ruhrnalist.de", true },
{ "ruht.ro", true },
- { "ruigomes.me", true },
+ { "ruicore.cn", true },
{ "ruiming.me", true },
{ "ruin.one", true },
{ "ruiruigeblog.com", true },
+ { "ruitersportbak.nl", true },
{ "ruk.ca", true },
- { "rullzer.com", 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 },
{ "rumtaste.de", true },
+ { "run-forrest.run", false },
{ "run-it-direct.co.uk", true },
{ "runagain.ch", true },
{ "runebet.com", true },
@@ -29348,70 +32811,78 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "runnergrapher.com", true },
{ "runreport.fr", true },
{ "runschrauger.com", true },
+ { "runtimepanic.xyz", true },
{ "runvs.io", true },
{ "ruobr.ru", true },
+ { "rupeevest.com", true },
{ "ruquay.com", true },
+ { "ruralink.com.ar", true },
{ "ruralsuppliesdirect.co.uk", true },
{ "ruri.io", false },
{ "rusempire.ru", true },
{ "rushball.net", true },
{ "rushiiworks.com", true },
{ "rushpoppershop.co.uk", true },
+ { "rushter.com", true },
{ "rushyo.com", true },
{ "rusi-ns.ca", true },
{ "ruska-modra.cz", true },
{ "ruskamodra.cz", true },
{ "ruskod.net", true },
- { "rusl.net", true },
+ { "rusmolotok.ru", true },
{ "russellupevents.co.uk", true },
{ "russia.dating", true },
+ { "russiaeconomy.org", true },
{ "russianorthodoxchurch.co.uk", true },
{ "russpuss.ru", true },
{ "russt.me", true },
{ "rust.mn", true },
{ "rustable.com", true },
{ "rustikalwallis.ch", true },
- { "rustralasia.net", true },
{ "rustyrambles.com", true },
{ "rusxakep.com", true },
{ "rutgerschimmel.nl", true },
+ { "ruthmontenegro.com", false },
{ "rutiger.com", true },
+ { "rutika.ru", true },
+ { "rutten.me", true },
{ "ruudkoot.nl", true },
{ "ruwhof.net", true },
+ { "ruya.com", true },
{ "ruyatabirleri.com", true },
{ "rv-jpshop.com", true },
{ "rva-asbestgroep.nl", true },
- { "rvender.cz", true },
+ { "rvfu98.com", true },
{ "rvnoel.net", true },
- { "rvoigt.eu", true },
- { "rvolve.net", true },
{ "rvsa2bevestigingen.nl", true },
{ "rvsa4bevestigingen.nl", true },
{ "rvsbevestigingen.nl", true },
{ "rw.search.yahoo.com", false },
- { "rwgamernl.ml", true },
{ "rwky.net", true },
+ { "rws-cc.com", true },
{ "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 },
{ "ryan-goldstein.com", true },
{ "ryanbritton.com", true },
- { "ryancarter.co.uk", true },
{ "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 },
+ { "rynkebo.dk", true },
{ "ryois.me", true },
+ { "rys.pw", true },
+ { "ryssl.com", true },
{ "ryu22e.org", true },
{ "ryuu.es", true },
{ "ryzhov.me", true },
@@ -29420,25 +32891,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "s-c.se", true },
{ "s-cubed.net", true },
{ "s-huset.dk", true },
+ { "s-ip-media.de", true },
{ "s-mainte.com", true },
- { "s-mdb.com", true },
{ "s-n-unso.com", true },
{ "s-pegasus.com", true },
{ "s-s-paint.com", true },
{ "s007.co", true },
+ { "s0laris.co.uk", true },
{ "s10y.eu", true },
+ { "s13d.fr", true },
{ "s16e.no", true },
{ "s2member.com", true },
- { "s3cases.com", true },
+ { "s2p.moe", true },
+ { "s2t.net", true },
{ "s3cur3.it", true },
- { "s3gfault.com", true },
{ "s3robertomarini.it", true },
{ "s404.de", true },
{ "s44.eu", true },
{ "s4db.net", true },
+ { "s4media.org", true },
+ { "s4q.me", true },
{ "s4tips.com", true },
{ "s4ur0n.com", true },
{ "s5118.com", true },
+ { "s64.cz", true },
{ "s8a.us", true },
{ "s95.de", true },
{ "sa-blog.net", true },
@@ -29446,64 +32922,74 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sa.net", true },
{ "saabpartsdistribution.com", true },
{ "saamhorigheidsfonds.nl", false },
+ { "saas.de", true },
{ "saastopankki.fi", true },
{ "saba-piserver.info", true },
{ "sabahattin-gucukoglu.com", true },
{ "sabe.cz", true },
+ { "sabine-forschbach.de", true },
+ { "sabineforschbach.de", true },
+ { "sablyrics.com", true },
{ "sabrinajoias.com.br", true },
- { "sabrinajoiasprontaentrega.com.br", true },
- { "sac-shop.com", true },
{ "sacaentradas.com", true },
{ "saccani.net", true },
- { "sachk.com", true },
- { "sackers.com", true },
{ "sackmesser.ch", true },
{ "saclier.at", true },
{ "sacprincesse.com", true },
{ "sacred-knights.net", true },
+ { "sacredheart-cliftonheights.net", true },
{ "sacrome.com", true },
{ "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 },
+ { "sadiejewellery.co.uk", true },
{ "sadou.kyoto.jp", true },
- { "sadsu.com", true },
- { "saenforcement.agency", true },
+ { "saechsischer-christstollen.shop", true },
{ "saengsook.com", true },
{ "saengsuk.com", true },
+ { "saf.earth", true },
{ "safar.sk", true },
{ "safaritenten.nl", true },
{ "safcstore.com", true },
- { "safe.space", true },
+ { "safe.moe", true },
{ "safebaseflorida.com", true },
{ "safebasements.com", true },
{ "safebasementsnorthdakota.com", true },
+ { "safebasementsofindiana.com", true },
{ "safebuyerscheme.co.uk", true },
{ "safecar.gov", false },
{ "safeex.com", true },
{ "safegold.ca", true },
{ "safegroup.pl", true },
+ { "safeguardcommerce.com", true },
+ { "safeguardhosting.ca", true },
{ "safeinfra.nl", true },
+ { "safeitup.se", true },
{ "safejourney.education", true },
{ "safematix.com", true },
{ "safeme.ga", true },
{ "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 },
{ "sagsmarseille.com", true },
{ "sahajbooks.com", true },
@@ -29514,84 +33000,124 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sahkotyot.eu", true },
{ "said.id", true },
{ "said.my.id", true },
+ { "saidelbakkali.com", true },
+ { "saidtezel.com", true },
{ "saier.me", true },
{ "saifoundation.in", true },
{ "saigonflowers.com", true },
- { "saigonstar.de", true },
{ "saikarra.com", true },
{ "saikou.moe", true },
{ "saikouji.tokushima.jp", true },
{ "sailingonward.com", true },
{ "sailormoonevents.org", true },
+ { "sailormoonlibrary.org", true },
+ { "sailwiz.com", true },
{ "saimoe.moe", true },
{ "saimoe.org", true },
{ "sainetworks.net", true },
+ { "saint-bernard-gouesch.fr", true },
+ { "saint-cyril.com", true },
{ "saintaardvarkthecarpeted.com", true },
+ { "saintanne.net", true },
{ "saintanthonyscorner.com", true },
+ { "sainteugenechurch.net", true },
+ { "sainteugeneschurch.com", true },
+ { "saintfrancescabrini.net", true },
+ { "saintfrancisdesales.net", true },
{ "sainth.de", true },
+ { "sainthedwig-saintmary.org", 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 },
+ { "saintmaryscathedral-trenton.org", true },
+ { "saintpatrick-norristown.net", true },
+ { "saintpeterchurch.net", true },
+ { "saintphilipneri.org", true },
+ { "saintpius.net", true },
+ { "saintpolycarp.org", true },
{ "saintsrobotics.com", true },
{ "saintw.com", true },
{ "saipariwar.com", true },
{ "saiputra.com", true },
{ "saitrance.com", true },
- { "saiyasu-search.com", true },
+ { "saitv.org", true },
{ "sajamstudija.info", true },
{ "sajdowski.de", true },
{ "sakaki.anime.my", false },
+ { "sakamichi.moe", true },
+ { "sakerhetskopiering.nu", true },
{ "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 },
{ "saleduck.co.th", true },
{ "saleduck.com.my", true },
{ "saleduck.com.ph", true },
{ "saleduck.com.sg", true },
{ "saleduck.com.vn", true },
+ { "saleduck.dk", true },
+ { "saleduck.fi", true },
+ { "saleduck.se", true },
+ { "salemedia.pro", true },
{ "salensmotors-usedcars.be", true },
{ "salesflare.com", true },
{ "salesmachine.io", true },
{ "salexy.kz", true },
- { "salishseawhalewatching.ca", true },
+ { "salidaswap.com", true },
{ "salixcode.com", true },
{ "salland1.nl", true },
{ "salle-quali.fr", true },
{ "sallydowns.name", true },
- { "salmo23.com.br", true },
{ "salmododia.net", true },
{ "salmonella.co.uk", true },
{ "salmonrecovery.gov", true },
{ "salmonvision.com.tw", true },
{ "salmos91.com", true },
{ "salmotierra-salvatierra.com", true },
- { "salon-claudia.ch", true },
+ { "salon-hinata.biz", true },
{ "salon-minipli.de", true },
{ "salon.io", false },
{ "salon1.ee", true },
+ { "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 },
- { "saludsexualmasculina.org", true },
+ { "saludmas.site", 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 },
{ "samanthasgeckos.com", true },
- { "samanthasicecream.com", true },
{ "samappleton.com", true },
{ "samara-avia.ru", true },
{ "samaritainsmeyrin.ch", true },
{ "samatva-yogalaya.com", true },
+ { "samba.com.co", true },
{ "samba.org", true },
{ "sambaa.com.br", true },
{ "sambaash.com", true },
@@ -29606,12 +33132,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "samgrayson.me", true },
{ "samhuri.net", true },
{ "samifar.in", true },
- { "samip.fi", true },
+ { "samitechnic.com", true },
{ "samizdat.cz", true },
+ { "samkelleher.com", true },
{ "saml-gateway.org", true },
- { "sammenlignakasser.dk", true },
+ { "samlaw.co.nz", true },
+ { "samlivogarv.dk", true },
+ { "sammamish--locksmith.com", true },
+ { "sammyjohnson.com", true },
{ "sammyservers.com", true },
- { "samnya.cn", true },
+ { "sammyservers.net", true },
+ { "samnya.cn", false },
+ { "samplefashion.nl", true },
+ { "samri.pt", true },
+ { "samrobertson.co.uk", true },
+ { "samshouseofspaghetti.net", true },
{ "samsungmobile.it", true },
{ "samsungphonegenerator.xyz", true },
{ "samtalen.nl", true },
@@ -29622,28 +33157,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "samuirehabcenter.com", true },
{ "samwilberforce.com", true },
{ "samwrigley.co.uk", true },
- { "samyerkes.com", true },
+ { "samwu.tw", true },
{ "san.ac.th", true },
{ "sana-store.com", true },
{ "sana-store.cz", true },
{ "sana-store.sk", true },
- { "sanalbayrak.com", true },
- { "sanandreasstories.com", true },
+ { "sanael.net", 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 },
- { "sanderknape.com", true },
{ "sanderkoenders.eu", true },
{ "sanderkoenders.nl", true },
+ { "sandervanderstap.nl", true },
{ "sandervankasteel.nl", false },
{ "sandhaufen.tk", true },
{ "sandiegotown.com", true },
@@ -29656,30 +33193,36 @@ 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 },
{ "sanglierhurlant.fr", true },
{ "sangwon.io", true },
{ "sanilodge.com", true },
{ "sanipousse.com", true },
+ { "sanissimo.com.mx", false },
{ "sanitairwinkel.be", true },
{ "sanitairwinkel.com", true },
{ "sanitairwinkel.nl", true },
{ "sanitrak.cz", true },
- { "sanmuding.com", true },
+ { "sanjotech.space", true },
+ { "sannesfotklinikk.no", true },
{ "sanpham-balea.org", true },
{ "sanskritiyoga.com", true },
{ "sansonehowell.com", true },
{ "santafemacas.com.br", true },
+ { "santamonicapost123.org", true },
+ { "santanderideas.com", true },
{ "santenatureetcie.com", true },
{ "santensautomatics.be", true },
{ "santevie.ch", true },
- { "santing.net", true },
+ { "santiagogarza.co", true },
{ "santojuken.co.jp", true },
{ "santoshpandit.com", true },
{ "sanvitolocapobus.com", true },
@@ -29687,6 +33230,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saoneth.pl", true },
{ "saorsat.com", true },
{ "saorsat.ie", true },
+ { "saorsat.tv", true },
{ "saorview.com", true },
{ "saorviewconnect.ie", true },
{ "saorviewconnected.ie", true },
@@ -29697,58 +33241,74 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sapindus.pl", true },
{ "sapk.fr", true },
{ "saposute-s.jp", true },
- { "sapphireblue.me", true },
{ "sapphirepearl.com.sg", true },
- { "sapporobeer.com", true },
{ "sapprendre.ch", true },
{ "saprima.de", true },
- { "saq.com", true },
+ { "sarabara.com", true },
{ "sarahbeckettharpist.com", true },
+ { "sarahboydrealty.com", true },
+ { "sarahcorliss.com", true },
{ "sarahlicity.co.uk", true },
{ "sarahlicity.me.uk", true },
{ "sarahplusdrei.de", true },
+ { "sarahsecret.de", true },
{ "sarahvictor.co.uk", true },
{ "sarahwikeley.co.uk", true },
+ { "saraleebread.com", false },
{ "sarariman.com", true },
+ { "sarasotaroboticurology.com", true },
{ "sarasturdivant.com", true },
+ { "sardacompost.it", true },
{ "sardegnatirocini.it", true },
{ "sarink.eu", true },
- { "sarkarikhoj.com", 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 },
+ { "saschaeggenberger.com", true },
+ { "sash.pw", true },
{ "sashaokun.com", true },
{ "sashascollections.com", true },
{ "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 },
{ "saterdalen.net", true },
{ "satimagingcorp.com", true },
{ "satinn.pl", true },
+ { "satisperfectacollections.com", true },
{ "satmd.de", true },
{ "satoshinumbers.com", true },
{ "sattamatkachart.in", true },
- { "sattamatkadpboss.mobi", 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 },
+ { "saultdefencelaw.ca", true },
{ "saumon-de-france.com", true },
{ "saumon-france.com", true },
{ "saumondefrance.fr", true },
@@ -29756,21 +33316,22 @@ 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 },
- { "saveora.shop", true },
{ "savetheinternet.eu", true },
{ "saveya.com", true },
- { "savic.com", true },
+ { "savic.com", false },
{ "saviezvousque.net", true },
+ { "savilleassessment.com", true },
{ "savingrecipe.com", true },
+ { "savingsoftheyear.com", true },
{ "savingsomegreen.com", true },
{ "savingsstoreonline.ca", true },
{ "savisasolutions.co.za", true },
@@ -29780,15 +33341,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saxojoe.co.uk", true },
{ "saxojoe.de", true },
{ "saxoncreative.com", true },
+ { "saxotex.de", true },
{ "saxwereld.nl", true },
{ "sayori.pw", true },
{ "sayprepay.com", true },
{ "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 },
@@ -29796,25 +33360,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sbanken.no", true },
{ "sber.us", true },
{ "sberbank.ch", true },
+ { "sberna-fotofast.cz", true },
{ "sbf888.com", true },
{ "sbiewald.de", true },
{ "sbir.gov", true },
+ { "sbirecruitment.co.in", true },
{ "sbit.com.br", true },
{ "sblum.de", true },
{ "sbo-dresden.de", true },
+ { "sbox-servers.com", true },
{ "sbr.red", true },
{ "sbrouwer.org", true },
+ { "sbrownbourne.com", true },
{ "sbsavings.bank", true },
{ "sbsbaits.com", true },
+ { "sbscyber.com", true },
{ "sbsnursery.co.uk", true },
- { "sbsrv.ml", true },
{ "sbssoft.ru", true },
{ "sbytes.info", true },
+ { "sc-artworks.co.uk", true },
{ "sc5.jp", true },
- { "scaarus.com", true },
{ "scaffalature.roma.it", true },
- { "scaffoldhireeastrand.co.za", true },
- { "scaffoldhiresandton.co.za", true },
+ { "scaffoldhirefourways.co.za", true },
+ { "scaffoldhirerandburg.co.za", true },
{ "scalacollege.nl", true },
{ "scalaire.com", true },
{ "scalaire.fr", true },
@@ -29823,26 +33391,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scallywagsbouncycastles.co.uk", true },
{ "scallywagskids.co.uk", true },
{ "scamblockplus.org", true },
+ { "scan.co.uk", true },
{ "scandicom.fi", true },
{ "scandinavia.dating", true },
{ "scangeo.net", true },
{ "scanleasing.net", true },
{ "scanpay.dk", true },
{ "scarafaggio.it", true },
+ { "scarvespalace.com", true },
{ "scatsbouncingcastles.ie", true },
+ { "scbdh.org", true },
+ { "scbreed.com", 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 },
+ { "schaffensdrang.at", true },
{ "schamlosharmlos.de", true },
- { "schaper-sport.com", true },
- { "schatmeester.be", true },
{ "schatzibaers.de", true },
{ "schawe.me", true },
+ { "schbebtv.fr", true },
{ "scheduleme.io", true },
{ "scheemadigital.com", true },
{ "schefczyk.com", true },
@@ -29857,19 +33431,19 @@ 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 },
@@ -29878,52 +33452,62 @@ 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-etienne.fr", true },
{ "schmitt-max.com", true },
- { "schmitz.link", true },
{ "schnapke.name", true },
{ "schneeketten-ratgeber.de", true },
{ "schnegg.name", true },
- { "schneider-electric.tg", 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 },
+ { "scholieren.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 },
{ "schoolsonice.nl", true },
{ "schopenhauer-institut.de", true },
- { "schorel.ovh", true },
{ "schorelweb.nl", true },
{ "schorers.org", true },
{ "schoring.com", true },
+ { "schottenland.de", true },
{ "schrauger.com", true },
{ "schrauger.info", true },
{ "schrauger.net", true },
{ "schrauger.org", true },
{ "schrauger.run", true },
{ "schraugerrun.com", true },
- { "schreck-thomas.de", true },
+ { "schreck-thomas.de", false },
{ "schreibers.ca", true },
{ "schreinerei-jahreis.de", true },
{ "schrenkinzl.at", true },
@@ -29938,6 +33522,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 },
@@ -29952,23 +33537,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schummar.de", true },
{ "schunako.ch", true },
{ "schuppentier.org", true },
- { "schur-it.de", true },
{ "schurkenstaat.net", true },
+ { "schutterijschinveld.nl", true },
{ "schutz-vor-schmutz.de", true },
{ "schutznetze24.de", false },
{ "schutzwerk.com", true },
{ "schwabenhaus-ka.de", true },
{ "schwalliers.com", true },
{ "schwanke.in", true },
+ { "schwano-dent.at", 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 },
- { "schwarzwaldcon.de", true },
- { "schwedenhaus.ag", true },
- { "schwerkraftlabor.de", true },
{ "schwinabart.com", true },
{ "schwinger.me", true },
{ "schwinnbike.ru", true },
@@ -29978,69 +33562,88 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "science-questions.org", true },
{ "science-texts.de", true },
{ "science360.gov", true },
+ { "sciencebase.gov", true },
{ "scienceexploits.com", true },
+ { "sciencehouse.jp", true },
{ "scienceminnesota.com", true },
{ "sciencesolutions.eu", true },
{ "sciencex.com", true },
{ "scientific.boston", true },
{ "scifi.fyi", true },
+ { "scigov.xyz", true },
{ "scijinks.gov", true },
+ { "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 },
- { "scorocode.ru", true },
+ { "scorerealtygroup.com", true },
{ "scorp13.com", true },
+ { "scorpowines.com", true },
+ { "scottah.com", true },
+ { "scottgalvin.com", true },
{ "scottgruber.me", true },
{ "scottgthomas.com", true },
{ "scotthelme.co.uk", true },
+ { "scottipc.com", true },
{ "scottishcu.org", true },
{ "scottishseniorsgolf.com", true },
+ { "scottlanderkingman.com", true },
{ "scottseditaacting.com", true },
- { "scottstorey.co.uk", true },
- { "scottynordstrom.org", false },
+ { "scotttopperproductions.com", true },
{ "scoutingridderkerk.nl", true },
{ "scoutingtungelroy.nl", true },
{ "scoutnet.de", true },
+ { "scouttrails.com", true },
{ "scp-trens.notaires.fr", true },
{ "scp500.com", true },
- { "scpartyentertainment.co.uk", true },
{ "scpslgame.com", true },
+ { "scra.gov", true },
{ "scrabble-solver.com", true },
{ "scrambox.com", true },
{ "scramget.com", true },
{ "scramsoft.com", true },
{ "scrap.tf", true },
+ { "scrapdealers.eu", true },
{ "scratchandscuffs.co.uk", true },
{ "scratchandscuffs.com", true },
{ "scratchandscuffs.uk", true },
{ "scrayos.net", true },
- { "scredible.com", 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 },
- { "screenplay.jp", true },
+ { "screenpublisher.com", true },
{ "scripo-bay.com", true },
{ "script.google.com", true },
{ "scripter.co", true },
{ "scriptgates.ru", true },
{ "scriptum.gr", true },
{ "scrisulfacebine.ro", true },
+ { "scrivito.com", true },
{ "scrod.me", true },
{ "scroll.in", true },
+ { "scrtch.fr", true },
{ "scrumbleship.com", true },
- { "scrumplex.net", true },
+ { "scrumpus.com", true },
{ "scrumstack.co.uk", true },
{ "scryfall.com", true },
{ "scs-simulatoren.de", true },
@@ -30050,20 +33653,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sctiger.ml", true },
{ "sctrainingllc.com", true },
{ "scubadiving-phuket.com", true },
+ { "scubaland.hu", true },
{ "scul.net", true },
{ "sculpture.support", true },
{ "scuolaguidalame.ch", true },
- { "scuters.club", true },
- { "scw.com", true },
- { "scw.nz", true },
- { "scwilliams.co.uk", true },
- { "scwilliams.uk", true },
{ "sd.af", true },
+ { "sdayman.com", true },
{ "sdcardrecovery.de", true },
{ "sdg-tracker.org", true },
+ { "sdgllc.com", true },
{ "sdho.org", true },
+ { "sdis-trib.fr", true },
{ "sdns.fr", true },
- { "sdocast.com", true },
{ "sdsi.us", true },
{ "sdsk.one", true },
{ "sdsmanagement.me", true },
@@ -30071,12 +33672,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sdvigpress.org", true },
{ "sdvx.net", true },
{ "sdxcentral.com", true },
+ { "se-booster.com", true },
+ { "se-live.org", true },
{ "se-theories.org", true },
{ "se.com", true },
{ "se.search.yahoo.com", false },
- { "sea-godzilla.com", false },
{ "seac.me", true },
{ "seacam-store.com", true },
+ { "seachef.it", true },
{ "seadus.ee", true },
{ "seafood.co.nz", true },
{ "seaholmwines.com", true },
@@ -30084,10 +33687,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sealbaker.com", true },
{ "sealoffantasy.de", true },
{ "sealtitebasement.com", true },
+ { "seamester.com", true },
{ "seamless.no", true },
+ { "seamoo.se", true },
{ "sean-wright.com", true },
{ "seanholcroft.co.uk", true },
{ "seankilgarriff.com", true },
+ { "seanrodda.com", true },
{ "seaplayhomes.com", true },
{ "search-job-in.com", true },
{ "search-one.de", true },
@@ -30105,34 +33711,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "searchbrothers.nl", true },
{ "searchbrothers.ru", true },
{ "searchbrothers.uk", true },
+ { "searchcandy.nl", true },
+ { "searchcandy.uk", true },
{ "searchdatalogy.com", true },
+ { "searchfox.org", true },
{ "seareytraining.com", true },
+ { "searsucker.com", true },
{ "searx.ru", true },
{ "searx.xyz", true },
{ "seasidestudios.co.uk", true },
{ "season.moe", true },
+ { "seasons-vintage.com", true },
{ "seasons.nu", false },
{ "seatbeltpledge.com", true },
{ "seattle-life.net", true },
{ "seattlefabrication.com", true },
{ "seattlemesh.net", true },
- { "seattleprivacy.org", true },
{ "seattlewalkinbathtubs.com", true },
- { "seavancouver.com", true },
{ "seb-mgl.de", true },
+ { "seb-net.com", true },
+ { "sebald.com", true },
+ { "sebald.org", true },
{ "sebascelis.com", true },
{ "sebastiaandouma.co.uk", true },
{ "sebastiaandouma.com", true },
{ "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.org", true },
+ { "sebjacobs.com", true },
+ { "seby.io", true },
{ "sec-mails.de", true },
{ "sec-research.com", true },
{ "sec-wiki.com", true },
@@ -30147,31 +33762,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sec455.com", true },
{ "sec530.com", true },
{ "sec555.com", true },
- { "secanje.nl", true },
{ "secbone.com", true },
- { "secboom.com", true },
{ "seccom.ch", true },
{ "secctexasgiving.org", false },
{ "secgui.de", true },
{ "sech.me", true },
{ "sechat.one", true },
- { "secitem.at", true },
- { "secitem.eu", true },
+ { "secinto.at", true },
{ "secnews.gr", true },
{ "secomo.org", true },
+ { "secondchancejobsforfelons.com", true },
{ "seconfig.sytes.net", true },
{ "secpatrol.de", true },
{ "secretar.is", true },
- { "secretpanties.com", true },
+ { "secretary-schools.com", true },
+ { "secretpigeon.com", true },
+ { "secretsanta.fr", true },
{ "secretsdujeu.com", true },
{ "secretserveronline.com", true },
- { "secretum.tech", true },
{ "secteer.com", true },
{ "sectelligence.nl", true },
{ "sectio-aurea.org", true },
{ "section-31.org", true },
{ "section.io", true },
{ "section508.gov", true },
+ { "section77.de", true },
{ "sectionw2s.org", true },
{ "sector5.xyz", true },
{ "sectun.com", true },
@@ -30189,15 +33804,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "secureesolutions.com", true },
{ "secureheaders.com", true },
{ "secureim.de", true },
+ { "securejabber.me", true },
{ "securelect-inspection.com", true },
+ { "securemailbox.com", true },
+ { "securemessage.nl", true },
{ "secureobscure.com", true },
{ "secureonline.co", false },
{ "securethe.news", true },
{ "securetheorem.com", true },
+ { "securetrustbank.com", true },
{ "securi-tay.co.uk", true },
{ "securify.nl", true },
{ "securipy.com", true },
{ "securiscan.io", true },
+ { "securist.nl", true },
{ "security-24-7.com", true },
{ "security-brokers.com", true },
{ "security.gives", true },
@@ -30205,15 +33825,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "security.love", true },
{ "security201.co.uk", true },
{ "security201.com", true },
- { "securitybrief.asia", true },
- { "securitybrief.co.nz", true },
- { "securitybrief.com.au", true },
- { "securitybrief.eu", true },
- { "securitycamerasaustin.net", true },
+ { "securityblues.co.uk", true },
+ { "securitycamerascincinnati.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 },
+ { "securitymap.wiki", true },
{ "securitypluspro.com", true },
{ "securityprimes.in", true },
{ "securitypuppy.com", true },
@@ -30222,43 +33845,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "securitystrata.com", true },
{ "securitystreak.com", true },
{ "securitytrails.com", true },
- { "securitywatch.co.nz", true },
{ "securitywithnick.com", true },
{ "securitywithoutborders.org", true },
+ { "securityzap.com", true },
{ "securocloud.com", true },
{ "secutrans.com", true },
{ "secuvera.de", false },
+ { "secvault.io", true },
{ "secwall.me", true },
- { "secwise.nl", true },
{ "secyourity.se", true },
{ "sedeusquiser.net", true },
{ "sedlakovalegal.com", true },
{ "sedmicka.sk", true },
+ { "sedomicilier.fr", true },
{ "sedussa.ro", true },
+ { "see.asso.fr", true },
{ "see.wtf", true },
{ "seeclop.ch", true },
{ "seedandleisure.co.uk", true },
+ { "seedcoworking.es", true },
+ { "seedisclaimers.com", true },
+ { "seednode.co", true },
{ "seedsofangelica.net", true },
{ "seekers.ch", true },
+ { "seekfirstthekingdom.ca", true },
{ "seeks.ru", true },
- { "seekthe.net", true },
{ "seemeagain.com", true },
- { "seemeasaperson.com", true },
- { "seesuite.com", true },
+ { "seesuite.com", false },
{ "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 },
+ { "segnidisegni.eu", true },
{ "segulink.com", true },
+ { "seguridadconsumidor.gov", true },
+ { "seguridadysaludeneltrabajo.com.co", true },
+ { "seguros-de-salud-y-vida.com", true },
{ "segurosbalboa.com.ec", false },
- { "segurosocial.gov", true },
+ { "segurosdecarroshialeah.org", true },
+ { "segurosdevidamiami.org", true },
+ { "segurosocial.gov", false },
{ "seguroviagem.srv.br", false },
{ "sehnenweh.org", true },
{ "seibert.ninja", true },
+ { "seibu-kikaku.co.jp", true },
{ "seifried.org", true },
{ "seikatu-navi.com", true },
{ "seinfeldquote.com", true },
@@ -30267,17 +33902,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seitai-nabejun.jp", true },
{ "seitai-taiyou.com", true },
{ "seitenwaelzer.de", true },
+ { "sekikawa.biz", true },
{ "sekisonn.com", true },
{ "sekoya.org", true },
{ "selbys.net.au", true },
{ "selcusters.nl", true },
+ { "seldax.com", true },
{ "selea.se", true },
{ "selected-properties.com", true },
{ "selectel.com", false },
{ "selectel.ru", true },
{ "selectorders.com", true },
+ { "selectsplat.com", true },
{ "selegiline.com", true },
- { "selent.me", true },
+ { "selekzo.com", true },
{ "self-evident.org", true },
{ "self-signed.com", true },
{ "self-xss.info", true },
@@ -30288,23 +33926,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "selfici.cz", true },
{ "selfishness.com", true },
{ "selfloath.in", true },
+ { "selfmade4u.de", true },
{ "selfoutlet.com", true },
{ "selkiemckatrick.com", true },
{ "sellajoch.com", true },
+ { "selldorado.com", true },
+ { "selldurango.com", true },
{ "sellguard.pl", true },
{ "sellme.biz", true },
{ "sellmoretires.com", true },
{ "sello.com", true },
- { "seltendoof.de", true },
+ { "sellorbuy.uk", true },
+ { "sellorbuy.us", true },
+ { "seloc.org", true },
{ "semacode.com", true },
{ "semaf.at", true },
{ "semaflex.it", true },
+ { "semantica.cz", true },
{ "semaphore-studios.com", true },
- { "semianalog.com", true },
+ { "semdynamics.com", true },
+ { "semenov.su", false },
{ "seminariruum.ee", true },
{ "semiocast.com", true },
+ { "semiread.com", true },
{ "semjonov.de", true },
- { "semmlers.com", true },
{ "semox.de", true },
{ "semps-2fa.de", true },
{ "semps-threema.de", true },
@@ -30315,34 +33960,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "semyonov.us", true },
{ "senarius.de", true },
{ "sendai-sisters.com", true },
+ { "sendaiouji.com", true },
{ "sendbox.cz", true },
{ "sendc.at", true },
{ "sendcat.com", true },
{ "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 },
+ { "sensavi.ua", true },
+ { "sense.hamburg", true },
{ "sensebridge.com", true },
{ "sensebridge.net", true },
{ "sensepixel.com", true },
{ "senshudo.tv", true },
- { "sensoft-int.net", true },
- { "sensualism.com", true },
+ { "sensoft-int.org", true },
+ { "sensound.ml", true },
{ "sentandsecure.com", true },
{ "sentic.info", true },
{ "sentidosdelatierra.org", true },
+ { "sentiments.io", true },
+ { "sentinel.gov", true },
{ "sentinelproject.io", true },
+ { "sentirmebien.org", true },
{ "sentry.io", true },
{ "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 },
@@ -30350,31 +34009,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seo.london", true },
{ "seo.tl", true },
{ "seoagentur2go.de", true },
- { "seoarchive.org", true },
+ { "seoankara.name.tr", true },
{ "seobutler.com", true },
{ "seocomposer.com", true },
- { "seoenmexico.com.mx", true },
+ { "seodayo.com", true },
{ "seoexperte.berlin", true },
{ "seogeek.nl", true },
{ "seohackers.fr", true },
+ { "seohouston.com", true },
{ "seoinc.com", true },
- { "seoium.com", true },
- { "seokay.com", true },
- { "seolaba.io", true },
- { "seolib.org", true },
+ { "seojames.com", true },
{ "seomarketing.bg", true },
{ "seon.me", true },
{ "seoprovider.nl", true },
{ "seoquake.com", true },
{ "seosof.com", true },
- { "seostepbysteplab.com", true },
+ { "seostepbysteplab.com", false },
{ "seoul.dating", true },
{ "seouniversity.org", true },
- { "sepakbola.win", true },
+ { "seovision.se", true },
{ "sepalandseed.com", true },
{ "seppelec.com", true },
- { "seproco.com", true },
- { "septakkordeon.de", true },
+ { "septentrionalist.org", true },
{ "septfinance.ch", true },
{ "septicrepairspecialists.com", true },
{ "septillion.cn", true },
@@ -30384,27 +34040,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sera.jp", true },
{ "seraph.tokyo", true },
{ "serbanpaun.ro", true },
+ { "serbianclimbing.com", true },
{ "sereema.com", true },
{ "serenaden.at", true },
+ { "serendeputy.com", true },
{ "serf.io", true },
- { "sergeemond.ca", true },
+ { "serge-design.ch", true },
{ "sergefonville.nl", true },
{ "sergeyreznikov.com", true },
{ "sergije-stanic.me", true },
+ { "sergiojimenezequestrian.com", 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 },
- { "serotiuk.com", true },
+ { "serotiuk.com", false },
{ "serpenteq.com", true },
{ "serrano-chris.ch", true },
- { "servdiscount.com", true },
+ { "seru.eu", true },
{ "serve-a.com.au", true },
{ "servea.com.au", true },
{ "serveatechnologies.com", true },
@@ -30416,8 +34075,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "server-essentials.com", false },
{ "server-eye.com", true },
{ "server-eye.de", true },
+ { "server92.tk", true },
{ "serveradium.com", true },
{ "serveradminz.com", true },
+ { "serverangels.co.uk", true },
{ "serverco.com", true },
{ "serverd.de", true },
{ "serverexpose.com", true },
@@ -30426,6 +34087,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "serveroffline.net", false },
{ "serverpedia.de", true },
{ "servers4all.co.uk", true },
+ { "serversfrom.space", true },
{ "serversftw.com", true },
{ "serverstuff.info", true },
{ "serversuit.com", true },
@@ -30436,65 +34098,74 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "service.gov.uk", true },
{ "servicebeaute.fr", true },
{ "serviceboss.de", true },
+ { "servicemembers.gov", true },
{ "servida.ch", true },
+ { "servidoresweb.online", true },
{ "serviettenhaus.de", true },
{ "servingbaby.com", true },
+ { "servious.org", true },
{ "servitek.de", true },
{ "serviziourgente.it", true },
- { "servpanel.de", true },
+ { "servo.org", true },
{ "servx.org", true },
- { "servx.ru", true },
{ "serw.org", true },
{ "serwis-wroclaw.pl", true },
+ { "serwusik.pl", true },
{ "seryox.com", true },
{ "sesam-biotech.com", true },
+ { "sesrdcem.cz", true },
+ { "session.bbc.co.uk", true },
+ { "session.bbc.com", true },
{ "sessionslogning.dk", true },
{ "sesslerimmo.ch", true },
{ "sestra.in", true },
+ { "setasgourmet.es", true },
{ "setenforce.one", true },
{ "setfix.de", true },
{ "sethcaplan.com", true },
+ { "sethjust.com", true },
{ "sethvargo.com", true },
{ "setphaserstostun.org", true },
{ "setsailanddive.com", true },
{ "settberg.de", true },
- { "setterirlandes.com.br", true },
+ { "settimanadellascienza.it", true },
{ "settleapp.co", true },
+ { "setuid.io", true },
+ { "setuid0.kr", true },
{ "setyoursite.nl", true },
{ "seva.fashion", true },
{ "seven-purple.com", true },
+ { "seven-shadows.de", true },
{ "sevencooks.com", true },
- { "sevenet.pl", true },
{ "sevenhillsapartments.com.au", true },
{ "sevenicealimentos.com.br", true },
{ "sevenmatches.com", true },
+ { "seventwentynine.com", true },
{ "severine-trousselard.com", true },
{ "severntrentinsuranceportal.com", true },
{ "sevinci.ch", true },
- { "sevsey.ru", true },
- { "sevsopr.ru", true },
+ { "sevwebdesign.com", true },
+ { "sewa.nu", true },
{ "sewafineseam.com", true },
{ "sewinginsight.com", true },
{ "sewoo.co.uk", true },
- { "sex-education.com", true },
{ "sexaki.com", true },
{ "sexdocka.nu", true },
- { "sexgarage.de", true },
+ { "sexflare.net", true },
{ "sexmobil.de", true },
- { "sexocomgravidas.com", true },
- { "sexoyrelax.com", true },
- { "sexpay.net", true },
{ "sexplicit.co.uk", true },
{ "sexservice.io", true },
- { "sexshopnet.com.br", true },
- { "sexwork.net", true },
{ "sexy-store.nl", true },
+ { "seydaozcan.com", true },
{ "seyfarth.de", true },
{ "seyr.me", true },
{ "sfa.sk", true },
- { "sfaturiit.ro", true },
- { "sfcomercio.com.br", true },
+ { "sfaparish.org", 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 },
@@ -30505,25 +34176,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sg-elektro.de", true },
{ "sg.search.yahoo.com", false },
{ "sgb.co", true },
+ { "sgcaccounts.co.uk", true },
+ { "sgi.org", true },
+ { "sgitc.de", true },
{ "sglibellen.de", true },
- { "sgroup-hitoduma.com", true },
- { "sgroup-rec.com", true },
+ { "sgrmreproduccionapp.azurewebsites.net", 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 },
+ { "shabiwangyou.com", true },
{ "shad.waw.pl", true },
{ "shadesofgrayadr.com", true },
{ "shadesofgraylaw.com", true },
{ "shadex.net", true },
{ "shadigee.org", true },
+ { "shadowict.net", true },
{ "shadowict.tech", true },
+ { "shadowkingdomrecords.com", true },
{ "shadowkitsune.net", true },
{ "shadowlurker.com.au", true },
{ "shadowsing.com", true },
@@ -30532,6 +34210,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 },
@@ -30542,53 +34221,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shaicoleman.com", true },
{ "shainessim.com", true },
{ "shakan.ch", true },
+ { "shakebox.de", true },
{ "shaken-kyoto.jp", true },
{ "shaken110.com", true },
{ "shakepeers.org", false },
{ "shakerwebdesign.net", true },
{ "shakes4u.com", true },
{ "shakespearevet.com", true },
+ { "shakingthehabitual.com", true },
{ "shalazine.com", true },
{ "shalott.org", true },
+ { "shalyapin.by", true },
{ "shamara.info", true },
{ "shamariki.ru", true },
+ { "shamka.ru", true },
+ { "shampoo63.ru", true },
{ "shan.io", false },
{ "shan.si", true },
{ "shanahanstrategy.com", true },
- { "shandonsg.co.uk", true },
- { "shanekoster.net", true },
{ "shanetully.com", true },
- { "shanewadleigh.com", true },
+ { "shankangke.com", true },
{ "shannoneichorn.com", true },
{ "shansing.cn", true },
{ "shansing.com", true },
{ "shansing.net", true },
{ "shansing.space", true },
- { "shanyhs.com", true },
{ "shaobin.wang", true },
{ "sharanyamunsi.net", true },
{ "share.works", true },
{ "sharealo.org", true },
{ "sharedhost.de", true },
- { "shareeri.com", true },
+ { "sharejoy.cn", false },
{ "sharekey.com", false },
{ "sharelovenotsecrets.com", true },
- { "sharemessage.net", true },
{ "shareoffice.ch", true },
{ "sharepointdrive.com", true },
{ "sharescope.co.uk", false },
{ "shareselecttools.com", true },
{ "sharevari.com", true },
- { "shariahlawcenter.com", true },
- { "shariahlawcenter.org", true },
- { "sharialawcenter.com", true },
- { "sharialawcenter.org", true },
+ { "sharing-kyoto.com", true },
+ { "sharisharpe.com", true },
+ { "shark.cat", true },
{ "shark5060.net", true },
- { "sharkie.org.za", true },
+ { "sharkcut.se", 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 },
@@ -30596,72 +34276,97 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shaunharker.com", true },
{ "shav.it", true },
{ "shavegazette.com", true },
+ { "shawnalucey.com", true },
{ "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 },
{ "sheepfriends.com", true },
{ "sheet.host", true },
{ "shehaal.com", true },
{ "shehata.com", true },
{ "sheilasdrivingschool.com", true },
+ { "shek.zone", true },
{ "shelfordsandstaplefordscouts.org.uk", true },
- { "shellday.cc", true },
{ "shelleystoybox.com", true },
{ "shellfire.de", true },
{ "shellgame.io", true },
- { "shelljuggler.com", true },
+ { "shellj.me", true },
+ { "shelljuggler.com", false },
{ "shellshock.eu", true },
{ "shellvatore.us", true },
{ "shemissed.me", true },
{ "shemsconseils.ma", true },
- { "shena.co.uk", true },
+ { "shengbao.org", true },
{ "shenghaiautoparts.com", true },
{ "shenghaiautoparts.net", true },
- { "shengrenyu.com", true },
{ "shenyuqi.com", false },
{ "sherbers.de", true },
{ "sherrikehoetherapy.com", true },
- { "shethbox.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 },
{ "shieldcomputer.com", true },
+ { "shielder.it", true },
+ { "shieldfe.com", true },
{ "shift-record.com", true },
{ "shift-to.co.jp", true },
{ "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.blog", true },
+ { "shimi.guru", true },
{ "shimi.net", true },
- { "shin-inc.jp", true },
+ { "shimmy1996.com", true },
+ { "shimo.im", 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 },
+ { "shinuytodaati.co.il", true },
{ "shinyuu.net", true },
{ "shipard.com", true },
{ "shipard.cz", true },
{ "shipcloud.io", true },
+ { "shippercenter.info", true },
+ { "shiqi.ca", true },
+ { "shiqi.lol", true },
+ { "shiqi.one", true },
+ { "shiqi.se", true },
+ { "shiqi.tv", true },
+ { "shiqisifu.cc", true },
{ "shirakaba-cc.com", true },
+ { "shirao.jp", true },
{ "shirt2go.shop", true },
{ "shirtsdelivered.com", true },
{ "shirtsofholland.com", true },
- { "shishamania.de", true },
+ { "shiseki.top", true },
+ { "shishkabobnc.com", true },
{ "shishkin.us", true },
{ "shishlik.net", true },
{ "shitagi-shop.com", true },
@@ -30672,20 +34377,23 @@ 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 },
- { "shmunky.co.uk", true },
{ "shobhanayogsadan.com", true },
{ "shock.ee", true },
{ "shockercityservices.com", true },
{ "shodan.io", true },
- { "shoemuse.com", true },
+ { "shoeracks.uk", true },
{ "shoestringeventing.co.uk", true },
{ "shokola.com", true },
+ { "sholtowu.com", true },
{ "shome.de", true },
{ "shooter.dog", true },
+ { "shootingstarmedium.com", true },
+ { "shop-hellsheadbangers.com", true },
{ "shop-s.net", true },
- { "shop.fr", true },
+ { "shop4d.com", true },
{ "shopadvies.nl", true },
{ "shopalike.cz", true },
{ "shopalike.dk", true },
@@ -30699,72 +34407,93 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shopalike.se", true },
{ "shopalike.sk", true },
{ "shopapi.cz", true },
+ { "shopatkei.com", true },
{ "shopbakersnook.com", true },
{ "shopcoupon.co.za", true },
{ "shopcoupons.co.id", true },
{ "shopcoupons.my", true },
{ "shopcoupons.ph", true },
{ "shopcoupons.sg", true },
+ { "shopific.co", true },
+ { "shopific.com", true },
+ { "shopify.com", true },
{ "shopifycloud.com", true },
{ "shopkini.com", true },
{ "shoplandia.co", true },
- { "shoppia.se", true },
+ { "shopperexperts.com", 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 },
{ "short-biography.com", true },
{ "short-term-plans.com", true },
+ { "shortcut.pw", true },
{ "shortdiary.me", true },
{ "shorten.ninja", true },
{ "shoshin-aikido.de", true },
+ { "shoshin.technology", true },
{ "shotbow.net", true },
{ "shotonwhat.com", true },
{ "shouldihookupwithmybarista.com", true },
{ "shouttag.com", true },
+ { "shovonhasan.com", true },
{ "show-saratov.ru", false },
{ "showbits.net", true },
- { "showdepiscinas.com.br", true },
+ { "showersnet.com", true },
{ "showf.om", true },
+ { "showfom.sb", true },
{ "showmax.com", true },
{ "showmethemoney.ru", true },
{ "showpassword.net", true },
{ "showroom.cam", true },
{ "showroom.co.uk", true },
{ "showroom.uk", true },
- { "showroom113.ru", true },
{ "showsonar.com", true },
- { "shoxmusic.net", true },
{ "shredriteservices.com", true },
- { "shreyansh26.me", true },
{ "shrike.me", false },
+ { "shrimpcam.pw", true },
{ "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 },
+ { "shuax.com", true },
{ "shuffleradio.nl", true },
{ "shugo.net", true },
+ { "shuhacksoc.co.uk", true },
+ { "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 },
+ { "shuvodeep.de", true },
{ "shux.pro", true },
{ "shwrm.ch", true },
- { "shybynature.com", true },
{ "shyuka.me", true },
{ "si-benelux.nl", true },
- { "si.to", true },
{ "si2b.fr", true },
+ { "siaggiusta.com", true },
+ { "siamdevsqua.re", true },
+ { "siamdevsquare.com", true },
{ "siamsnus.com", true },
{ "sianbryn.co.uk", true },
+ { "sianjhon.com", true },
+ { "siava.ru", true },
+ { "siberas.de", true },
+ { "siberkulupler.com", true },
+ { "sibertakvim.com", true },
{ "sibfk.org", true },
{ "sibiutourguide.com", true },
{ "sibrenvasse.nl", true },
@@ -30773,11 +34502,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sicilianbalm.com", true },
{ "siciliapulizie.it", true },
{ "sicken.eu", true },
- { "sickfile.com", true },
- { "sicklepod.com", true },
- { "siconnect.us", true },
+ { "sicurezzalavoro24.com", true },
+ { "sicurled.com", false },
{ "sidelka-tver.ru", true },
{ "sidema.be", true },
+ { "sidemount-forum.com", true },
+ { "sidemount-tauchen.com", true },
{ "sidepodcast.com", true },
{ "sidepodcastdaily.com", true },
{ "sidepodcastextra.com", true },
@@ -30786,17 +34516,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sidnicio.us", true },
{ "sidonge.com", true },
{ "sidongkim.com", true },
- { "sidpod.ru", true },
{ "siegemund-frankfurt.de", true },
- { "sieh.es", true },
{ "siel.nl", true },
+ { "sielsystems.nl", true },
+ { "siemencaes.tk", true },
{ "sientemendoza.com.ar", true },
- { "sieulog.com", true },
+ { "sierpinska.co", true },
+ { "sierpinska.eu", true },
{ "siewert-kau.de", true },
{ "sift-tool.org", true },
{ "sig6.org", true },
{ "sigabrt.org", true },
{ "siggerudklatreklubb.no", true },
+ { "sight-sound.com", true },
{ "sightcure.jp", true },
{ "sighup.nz", true },
{ "sigismonda.ch", true },
@@ -30808,17 +34540,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "signage.red", true },
{ "signal.org", true },
{ "signalmaps.co.uk", true },
- { "signaltransmitter.de", true },
{ "significados.com", true },
{ "significados.com.br", true },
{ "significantbanter.com", true },
{ "signing-milter.org", true },
{ "signix.net", true },
+ { "signrightsigns.co.uk", true },
{ "signtul.com", false },
{ "sigsrv.net", true },
+ { "sigterm.no", true },
{ "sigterm.sh", true },
+ { "sigurnost.online", true },
{ "siirtutkusu.com", true },
{ "sikayetvar.com", false },
+ { "sikecikcomel.com", true },
{ "sikevux.se", true },
{ "sikko.biz", true },
{ "siku-shop.ch", true },
@@ -30826,25 +34561,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silashes.ru", true },
{ "silaslova-ekb.ru", true },
{ "silent-clean.de", true },
+ { "silent-yachts.com", true },
+ { "silent.live", false },
+ { "silentexplosion.de", true },
{ "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 },
- { "silke-hunde.de", true },
{ "silkebaekken.no", true },
{ "silkebeckmann.de", true },
+ { "silkon.net", true },
+ { "sillisalaatti.fi", true },
{ "sillysnapz.co.uk", true },
{ "silo.org.br", true },
{ "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 },
{ "silvergoldbull.by", true },
{ "silvergoldbull.ca", true },
@@ -30885,24 +34626,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silvergoldbull.in", true },
{ "silvergoldbull.is", true },
{ "silvergoldbull.it", true },
- { "silvergoldbull.kg", true },
{ "silvergoldbull.kr", true },
- { "silvergoldbull.ky", true },
{ "silvergoldbull.li", true },
{ "silvergoldbull.lk", true },
{ "silvergoldbull.lt", true },
{ "silvergoldbull.lv", true },
{ "silvergoldbull.ma", true },
{ "silvergoldbull.mk", true },
- { "silvergoldbull.ml", true },
{ "silvergoldbull.mw", true },
{ "silvergoldbull.my", true },
{ "silvergoldbull.nz", true },
- { "silvergoldbull.ph", true },
{ "silvergoldbull.pl", true },
{ "silvergoldbull.pt", true },
{ "silvergoldbull.qa", true },
{ "silvergoldbull.rs", true },
+ { "silvergoldbull.ru", true },
{ "silvergoldbull.se", true },
{ "silvergoldbull.si", true },
{ "silvergoldbull.sn", true },
@@ -30915,14 +34653,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silvergoldbull.uy", true },
{ "silvergoldbull.uz", true },
{ "silvergoldbull.ws", true },
+ { "silverkingalaska.com", true },
{ "silverlinkz.net", true },
{ "silverseen.com", true },
+ { "silverswanrecruitment.com", true },
{ "silverwind.io", true },
+ { "silvesrom.ro", true },
{ "silvine.xyz", true },
+ { "silvobeat.blog", true },
{ "silvobeat.com", true },
{ "sim-karten.net", true },
{ "sim-minaoshi.jp", true },
- { "sim-sim.appspot.com", true },
+ { "sim-usa.mobi", true },
{ "sim4seed.org", true },
{ "simam.de", true },
{ "simark.ca", true },
@@ -30936,6 +34678,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 },
@@ -30951,16 +34694,15 @@ 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 },
{ "simonreich.de", true },
- { "simonschmitt.ch", true },
{ "simonshine.dk", true },
{ "simonspeich.ch", true },
{ "simonsreich.de", true },
{ "simontaite.com", true },
+ { "simonweil.com", true },
{ "simonwessel.net", true },
{ "simonwoodside.com", true },
{ "simpbx.net", true },
@@ -30968,9 +34710,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simphony.cz", true },
{ "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 },
@@ -30990,51 +34733,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simplycloud.de", true },
{ "simplyfixit.co.uk", true },
{ "simplyhelen.de", true },
+ { "simplylifetips.com", false },
{ "simplylovejesus.com", true },
{ "simplymozzo.se", true },
- { "simplyrara.com", true },
{ "simplyregister.net", true },
{ "simplystudio.com", true },
+ { "simplytiles.com", true },
{ "simpte.com", true },
{ "simpul.nl", true },
+ { "simrail.nl", true },
{ "simsnieuws.nl", true },
{ "simukti.net", true },
- { "simumiehet.com", true },
{ "sin-nombre-alleria.de", true },
{ "sin.swiss", true },
{ "sinaryuda.web.id", true },
{ "sinatrafamily.com", true },
- { "sinceschool.com", true },
+ { "sincemydivorce.com", true },
{ "sinclairinat0r.com", true },
{ "sinde.ru", true },
{ "sinergy.ch", true },
+ { "sinfonietta-meridiana.de", true },
{ "sinfulforums.net", true },
{ "singaporemint.com", true },
{ "singapurfirma.com", true },
{ "singel.ch", true },
{ "single-in-stuttgart.de", true },
{ "singles-aus-hamburg.de", true },
- { "singles-berlin.de", true },
{ "singleuse.link", true },
{ "singlu10.org", false },
{ "sinktank.de", true },
- { "sinn.io", true },
{ "sinnersprojects.ro", true },
{ "sinomod.com", true },
- { "sinon.org", true },
{ "sinonimos.com.br", true },
{ "sinonimosonline.com", true },
{ "sinonimosonline.com.br", true },
{ "sinquin.eu", true },
+ { "sinronet.com", true },
{ "sint-joris.nl", true },
{ "sintaxis.org", true },
{ "sinterama.biz", true },
{ "sinuelovirtual.com.br", true },
+ { "sinusitis-bronchitis.ch", true },
{ "sioeckes.hu", true },
+ { "sion.info", true },
+ { "sipstix.co.za", true },
+ { "siratalmustaqim.com", true },
{ "siraweb.org", true },
{ "sirbouncealotcastles.co.uk", true },
{ "sirbouncelot.co.uk", true },
- { "sirburton.com", true },
{ "sirchuk.net", true },
{ "sircon.no", true },
{ "sirena.co.jp", true },
@@ -31044,11 +34790,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sirtaptap.com", true },
{ "sirtuins.com", true },
{ "sirvoy.com", true },
- { "sisgopro.com", true },
+ { "sisiengineers.gq", true },
+ { "sisseastumine.ee", true },
{ "sistel.es", true },
{ "sistem-maklumat.com", true },
{ "sistem-maklumat.com.my", true },
- { "sistemos.net", true },
{ "sistemy48.ru", false },
{ "sistimiki-anaparastasi.gr", true },
{ "sistov.it", true },
@@ -31057,44 +34803,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sisver.mx", true },
{ "sit-brn.ru", true },
{ "sit.ec", true },
+ { "sitc.sk", true },
+ { "site-helper.com", true },
+ { "siteage.net", true },
{ "sitebuilderreport.com", true },
{ "sitedrive.fi", true },
+ { "sitefactory.com.br", true },
{ "sitehoster.org", true },
{ "sitenv.org", true },
{ "siterencontre.me", true },
{ "sites.google.com", true },
{ "sitesko.de", true },
- { "sitesuccessful.com", true },
{ "sitevandaag.nl", true },
{ "sitischu.com", true },
- { "sitsy.ru", false },
+ { "sitiweb.nl", true },
{ "sivale.mx", true },
{ "sivyerge.com", true },
{ "siw64.com", true },
+ { "six-o-one.com", true },
+ { "sixcorners.info", true },
+ { "sixcorners.net", true },
{ "sixpackholubice.cz", true },
{ "sixtwentyten.com", true },
{ "sj-leisure.com", true },
- { "sja-se-training.com", true },
{ "sjaakgilsingfashion.nl", true },
- { "sjatsh.com", true },
+ { "sjbwoodstock.org", true },
{ "sjd.is", true },
{ "sjdaws.com", true },
- { "sjdtaxi.com", true },
{ "sjis.me", true },
{ "sjleisure.co.uk", true },
{ "sjoorm.com", true },
- { "sjv4u.ch", true },
{ "sk-net.cz", true },
{ "skala.io", true },
{ "skalarwelle.eu", true },
{ "skanvordoff.ru", true },
{ "skanword.info", true },
{ "skatclub-beratzhausen.de", true },
+ { "skateaustria.at", true },
{ "skatesins.ch", true },
{ "skatingchina.com", true },
{ "skatn.de", true },
{ "skazka.ru", true },
- { "skday.com", true },
{ "skedda.com", true },
{ "skedr.io", false },
{ "skeeley.com", true },
@@ -31103,22 +34852,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skepticalsports.com", true },
{ "sketchmyroom.com", true },
{ "sketchywebsite.net", true },
+ { "skgzberichtenbox.nl", true },
{ "skhaz.io", true },
{ "skhire.co.uk", true },
{ "skhoop.cz", true },
{ "skia.org", false },
+ { "skiblandford.com", true },
{ "skid.church", true },
{ "skiddle.com", true },
+ { "skifairview.com", true },
{ "skifttiljutlanderbank.dk", true },
{ "skigebied.nl", true },
{ "skigebiete-test.de", true },
+ { "skill.moe", true },
{ "skilletfood.com", true },
{ "skillled.com", true },
+ { "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 },
{ "skincontracts.co", true },
{ "sking.io", true },
@@ -31131,62 +34885,73 @@ 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 },
{ "sklotechnik.cz", true },
{ "sknclinics.co.uk", true },
{ "skogsbruket.fi", true },
{ "skogskultur.fi", true },
{ "skol.bzh", true },
{ "skolagatt.is", true },
+ { "skolakrizik.cz", true },
{ "skolem.de", true },
{ "skoleniphp.cz", true },
{ "skommettiamo.it", true },
- { "skomski.org", true },
{ "skontakt.cz", true },
{ "skontorp-enterprise.no", true },
+ { "skorepova.info", true },
{ "skortekaas.nl", false },
{ "skory.us", true },
{ "skou.dk", false },
+ { "skpk.de", true },
{ "skram.de", true },
- { "skrimix.tk", true },
{ "skryptersi.pl", true },
{ "sksdrivingschool.com.au", true },
{ "sktan.com", true },
+ { "skulblaka.ch", true },
{ "skuldwyrm.no", true },
+ { "skutry-levne.cz", true },
+ { "skutry.cz", true },
{ "skwile-cafe.com", true },
{ "skwitko.com", true },
+ { "sky-coach.com", true },
+ { "sky-coach.nl", true },
{ "sky-live.fr", true },
{ "skyanchor.com", true },
- { "skybloom.com", true },
- { "skybloom.io", false },
+ { "skycmd.net", true },
{ "skyderby.ru", true },
{ "skydragoness.com", true },
{ "skydrive.live.com", false },
+ { "skyeeverest.tk", true },
+ { "skyem.co.uk", true },
+ { "skyfone.cz", true },
+ { "skyger.cz", true },
{ "skylgenet.nl", true },
{ "skylightcreative.com.au", true },
{ "skylinertech.com", true },
{ "skylineservers.com", true },
- { "skylocker.nl", true },
{ "skyloisirs.ch", true },
{ "skyminds.net", true },
+ { "skyn3t.in", true },
{ "skynet233.ch", true },
- { "skynethk.com", false },
+ { "skynethk.com", true },
{ "skynetnetwork.eu.org", true },
{ "skynetz.tk", true },
{ "skype.com", true },
- { "skypoker.com", true },
{ "skyquid.co.uk", true },
- { "skyris.co", true },
{ "skys-entertainment.com", true },
+ { "skyscapecanopies.com", true },
{ "skysuite.nl", true },
- { "skytec.host", true },
+ { "skywalkers.cz", true },
+ { "skyynet.de", true },
{ "skyzimba.com.br", true },
{ "sl-bildermacher.de", true },
- { "sl0.us", true },
+ { "sl-informatique.ovh", true },
{ "sl899.com", true },
{ "sl998.com", true },
- { "slab.com", true },
+ { "slab.com", false },
{ "slack-files.com", true },
{ "slack.com", true },
{ "sladic.si", false },
@@ -31200,65 +34965,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slash32.co.uk", true },
{ "slashcrypto.org", true },
{ "slate.to", true },
- { "slatemc.fun", true },
{ "slatop.org", false },
{ "slaughter.com", true },
{ "slaughterhouse.fr", true },
{ "slavasveta.info", true },
{ "slaws.io", true },
- { "sld08.com", true },
{ "sleeping.town", true },
{ "sleeplessbeastie.eu", true },
{ "sleepmap.de", true },
+ { "sleeps.jp", true },
{ "sleepstar.co.uk", true },
{ "sleepstar.de", true },
{ "sleepstar.fr", true },
{ "sleestak.net", true },
{ "sleio.com", true },
+ { "sletat.ru", true },
{ "slever.cz", true },
{ "slevermann.de", true },
{ "slevomat.cz", true },
{ "slicklines.co.uk", true },
- { "slicss.com", true },
{ "slidebatch.com", true },
- { "slides.zone", true },
{ "slik.ai", true },
- { "slimk1nd.nl", true },
+ { "slim-slender.com", true },
{ "slimspots.com", true },
{ "slingo-sta.com", true },
- { "slingo.com", true },
{ "slingooriginals.com", true },
{ "slingoweb.com", true },
{ "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 },
{ "sloths.org", true },
{ "slotlist.info", true },
- { "slovenskycestovatel.sk", true },
{ "slow.zone", true },
{ "slowb.ro", true },
- { "slowfood.es", true },
{ "slowgames.xyz", true },
{ "slpower.com", true },
{ "slrd-isperih.com", true },
+ { "slt24.de", true },
{ "sluciaconstruccion.com", true },
- { "sluimann.de", true },
+ { "sluimann.de", false },
{ "sluitkampzeist.nl", false },
+ { "slunecnice.cz", true },
{ "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 },
@@ -31266,19 +35027,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smablo.com", true },
{ "smackhappy.com", true },
{ "smadav.ml", true },
- { "smallcloudsolutions.co.za", true },
+ { "smakassen.no", 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 },
+ { "smaltimento.milano.it", true },
{ "smaltimento.napoli.it", true },
{ "smaltimento.roma.it", true },
{ "smaltimentoamianto.frosinone.it", true },
{ "smaltimentoamianto.latina.it", true },
{ "smaltimentorifiuti.firenze.it", true },
+ { "smaltimentorifiuti.livorno.it", true },
+ { "smaltimentorifiuti.prato.it", true },
{ "smaltimentorifiuti.veneto.it", true },
{ "smares.de", true },
{ "smart-cp.jp", true },
@@ -31287,14 +35051,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smart-shapes.co.uk", true },
{ "smart-wohnen.net", true },
{ "smart.gov", true },
+ { "smart.vet", true },
+ { "smartacademy.ge", true },
{ "smartairkey.com", true },
{ "smartandcom.ch", true },
- { "smartandhappychild.ro", true },
+ { "smartandhappychild.ro", false },
{ "smartcheck.gov", true },
{ "smartcleaningcenter.nl", true },
{ "smartcpa.ca", true },
{ "smartedg.io", true },
- { "smartest-trading.com", true },
{ "smartfit.cz", true },
{ "smartftp.com", true },
{ "smarthdd.com", true },
@@ -31305,36 +35070,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smartlogreturns.com", true },
{ "smartlogstock.com", true },
{ "smartlogtower.com", true },
+ { "smartmarketingcoaching.com", true },
{ "smartmeal.ru", true },
{ "smartmessages.net", true },
{ "smartmomsmartideas.com", true },
{ "smartpass.government.ae", true },
{ "smartphonechecker.co.uk", true },
+ { "smartphones-baratos.com", true },
{ "smartpolicingplatform.com", true },
- { "smartrade.tech", true },
+ { "smartpti.net", true },
+ { "smartrecruit.ro", true },
{ "smartservices.nl", true },
{ "smartshiftme.com", true },
{ "smartship.co.jp", true },
{ "smartshoppers.es", true },
{ "smartsparrow.com", true },
+ { "smartthursday.hu", true },
{ "smartvideo.io", true },
{ "smartviewing.com", true },
+ { "smartwank.com", true },
+ { "smartweb.ge", true },
{ "smartwelve.com", true },
{ "smartwoodczech.cz", true },
- { "smartwritingservice.com", true },
- { "smartwurk.nl", true },
+ { "smartwurk.nl", false },
{ "smash-gg.club", true },
{ "smatch.com", true },
{ "smb445.com", true },
- { "smcbox.com", true },
{ "smdavis.us", true },
{ "smdcn.net", true },
{ "sme-gmbh.net", true },
{ "smeetsengraas.com", true },
{ "smeso.it", true },
+ { "smexpt.com", true },
{ "smiatek.name", true },
{ "smileandpay.com", true },
{ "smiledirectsales.com", true },
+ { "smilenwa.com", true },
{ "smilessoftplay.co.uk", true },
{ "smileytechguy.com", true },
{ "smilingmiao.com", true },
@@ -31347,12 +35118,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smith.co", true },
{ "smithandcanova.co.uk", false },
{ "smithchow.com", true },
+ { "smithchung.eu", true },
{ "smithfieldbaptist.org", true },
+ { "smitug.pw", true },
+ { "smkw.com", false },
{ "smm.im", true },
- { "smmcab.website", true },
{ "smmlaba.io", true },
{ "smokeandmirrors.agency", true },
- { "smokinghunks.com", true },
+ { "smokefree.gov", true },
+ { "smokefreerowan.org", true },
+ { "smokeus.dk", true },
+ { "smol.cat", true },
{ "smoo.st", true },
{ "smoothcomp.com", true },
{ "smoothgesturesplus.com", true },
@@ -31371,28 +35147,37 @@ 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 },
+ { "smspujcka24.eu", true },
+ { "smtp.in.th", true },
+ { "smtparish.org", true },
{ "smuncensored.com", true },
- { "smutba.se", true },
{ "smutek.net", true },
+ { "smvcm.com", true },
{ "smx.net.br", true },
+ { "sn0int.com", true },
+ { "snabbare-dator.se", true },
+ { "snabbit-support.nu", true },
+ { "snabbit-support.se", true },
{ "snackbesteld.nl", true },
{ "snafu.cz", true },
{ "snakafya.com", true },
- { "snake.dog", true },
{ "snap.com", true },
{ "snapappointments.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 },
@@ -31405,7 +35190,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 },
@@ -31413,21 +35198,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snelxboxlivegold.nl", true },
{ "snerith.com", true },
{ "snfdata.com", false },
+ { "sngallery.co.uk", true },
+ { "sngeo.com", true },
{ "sniderman.eu.org", true },
- { "sniderman.pro", true },
+ { "sniderman.org", true },
{ "sniderman.us", true },
{ "sniep.net", true },
{ "snight.co", true },
{ "snille.com", true },
{ "snip.run", true },
+ { "snippet.host", true },
{ "snippet.wiki", true },
{ "snl.no", true },
+ { "sno-kingroofing-gutters.com", true },
{ "snoerendevelopment.nl", true },
+ { "snohomishsepticservice.com", true },
+ { "snoot.club", true },
{ "snopyta.com", true },
+ { "snortfroken.net", true },
{ "snote.io", true },
{ "snoupon.com", true },
{ "snow-online.com", true },
- { "snow-online.de", true },
{ "snow.dog", true },
{ "snowalerts.eu", true },
{ "snowalerts.nl", true },
@@ -31436,12 +35227,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snowdy.dk", true },
{ "snowhaze.ch", true },
{ "snowhaze.com", true },
+ { "snoworld.one", true },
{ "snowpak.com", true },
+ { "snowpaws.de", true },
{ "snowplane.net", true },
{ "snowraven.de", true },
+ { "snowy.land", true },
+ { "snowyluma.com", true },
{ "snowyluma.me", true },
- { "snrat.com", true },
+ { "snperformance.gr", true },
+ { "snroth.de", true },
{ "snrub.co", true },
+ { "sntravel.co.uk", true },
{ "snuff.porn", true },
{ "snughealth.org.uk", true },
{ "sny.no", true },
@@ -31451,24 +35248,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soapitup.com.au", true },
{ "soaringtoglory.com", true },
{ "sobaya-gohei.com", true },
+ { "sobeau.com", true },
{ "sobelift.com", true },
{ "sobersys.com", true },
{ "sobie.ch", true },
{ "sobieray.dyndns.org", true },
{ "sobotkama.eu", true },
{ "sobreporcentagem.com", true },
- { "soc.net", true },
- { "socal-babes.com", true },
- { "soccersavings.com", true },
{ "soccorso-stradale.org", true },
{ "sochi-sochno.ru", true },
{ "sociability.dk", true },
{ "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 },
{ "socialmedia.ro", true },
- { "socialmirror.app", true },
+ { "socialnitro.com", true },
{ "socialnous.co", true },
{ "socialrank.com", true },
{ "socialsecurity.gov", false },
@@ -31480,36 +35278,49 @@ 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 },
{ "sodexam.pro", true },
{ "sodi.nl", true },
- { "sodiao.cc", true },
{ "sodomojo.com", true },
+ { "soe-server.com", true },
{ "sofa-rockers.org", true },
{ "sofabedshop.de", true },
+ { "sofiadaoutza.gr", true },
{ "sofiavanmoorsel.com", true },
+ { "sofiesteinfeld.de", true },
{ "sofort.com", true },
+ { "sofortimplantate-muenchen.de", true },
{ "sofortueberweisung.de", true },
+ { "soft41.ru", true },
{ "softandbouncy.co.uk", true },
{ "softanka.com", true },
{ "softart.club", true },
{ "softballrampage.com", true },
+ { "softblinds.co.uk", true },
{ "softcreatr.de", false },
+ { "softfay.com", true },
+ { "softonic.com", true },
+ { "softonic.com.br", true },
+ { "softonic.jp", true },
+ { "softonic.pl", true },
{ "softplay4hire.co.uk", true },
- { "softplaynation.co.uk", true },
{ "softprayog.in", true },
{ "softrobot.se", true },
+ { "softsecmatheodexelle.be", true },
{ "softtennis-zenei.com", true },
{ "softw.net", true },
{ "software.rocks", true },
{ "softwarebetrieb.de", true },
+ { "softwarebeveiligingtestdomein.be", true },
{ "softwaredesign.foundation", false },
+ { "softwarehardenberg.nl", true },
{ "softwarevoortherapeuten.nl", true },
+ { "softwaylancing.com", true },
{ "softwerk-edv.de", true },
{ "sogola.com", true },
{ "sogravatas.com.br", true },
@@ -31517,7 +35328,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sohamroy.me", true },
{ "soia.ca", true },
{ "soinvett.com", true },
- { "soju.fi", true },
+ { "sokaissues.info", true },
{ "sokche.com", true },
{ "sokietech.com", true },
{ "sokkenhoek.nl", true },
@@ -31535,6 +35346,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "solarplan-berlin.de", true },
{ "solarstrom.net", true },
{ "soldecom.com", true },
+ { "solden.be", true },
+ { "soldesduck.be", true },
+ { "soldesduck.ch", true },
{ "soldout-app.com", true },
{ "sole-erdwaermetauscher.de", true },
{ "sole-software.de", true },
@@ -31542,32 +35356,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soledadpenades.com", true },
{ "solentbasketball.co.uk", true },
{ "solentbubblesandbounce.co.uk", true },
+ { "solepurposetest.com", true },
{ "soleria.eu", true },
{ "solesoftware.de", true },
{ "soleus.nu", false },
{ "solfegiator.ch", true },
{ "soli.cafe", true },
{ "solicafe.at", true },
+ { "solidarita-kosovo.net", true },
{ "solidshield.com", true },
- { "solidtuesday.com", true },
{ "solihullcarnival.co.uk", true },
{ "solihullinflatables.com", true },
{ "solihulllionsclub.org.uk", true },
{ "solipym.net", true },
{ "solit.systems", true },
+ { "solitairenetwork.com", true },
{ "solmek.co.uk", true },
{ "solmek.com", true },
{ "solomisael.com", true },
{ "solomo.pt", true },
{ "solonotizie24.it", true },
- { "solsocog.de", true },
+ { "solos.im", true },
+ { "soloshu.co", true },
+ { "solsocog.de", false },
{ "soluphant.de", true },
- { "solus-project.com", true },
{ "solutionhoisthire.com.au", true },
+ { "solutions-teknik.com", true },
{ "solvation.de", true },
{ "solve-it.se", true },
+ { "solve.co.uk", true },
{ "solved.tips", true },
{ "solvemethod.com", true },
+ { "solvewebmedia.com", true },
{ "solvingproblems.com.au", true },
{ "solvops.com", true },
{ "somaini.li", true },
@@ -31577,10 +35397,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "somanao.com", true },
{ "somcase.com.br", true },
{ "somecrazy.com", true },
- { "somersetscr.nhs.uk", true },
{ "somersetwellbeing.nhs.uk", true },
- { "somewherein.jp", true },
+ { "somethingsketchy.net", true },
{ "sommefeldt.com", true },
+ { "somoshuemul.cl", true },
{ "somosnoticia.com.br", true },
{ "sompani.com", true },
{ "somuchbetterwithage.com", true },
@@ -31591,34 +35411,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sonavankova.cz", true },
{ "sondergaard.de", true },
{ "sondersobk.dk", true },
- { "songluck.com", true },
+ { "songshuzuoxi.com", true },
{ "songsmp3.co", true },
{ "songsmp3.com", true },
{ "songsmp3.info", true },
{ "songsmp3.io", true },
+ { "songsmp3.live", true },
{ "songsmp3.me", true },
{ "songsmp3.net", true },
{ "songsthatsavedyourlife.com", true },
{ "songtianyi.com", true },
{ "songzhuolun.com", true },
+ { "sonia.com.au", true },
{ "soniafauville.com", true },
- { "sonialive.com", true },
{ "sonic.studio", true },
{ "sonicdoe.com", true },
{ "sonixonline.com", true },
- { "sonoecoracao.com.br", true },
{ "sonyunlock.nu", true },
- { "soodwatthanaphon.net", true },
{ "soohealthy.nl", true },
{ "soomee.be", true },
{ "soomee1.be", true },
+ { "soontm.de", true },
+ { "soontm.net", true },
{ "soopure.nl", true },
+ { "sooscreekdental.com", 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 },
@@ -31627,51 +35450,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sorakumo.jp", true },
{ "sorcix.com", true },
{ "sorellecollection.com.au", true },
+ { "soren.xyz", true },
{ "sorenstudios.com", true },
{ "sorever.online", true },
- { "sorex.photo", true },
+ { "sorincocorada.ro", true },
{ "sorrowfulunfounded.com", true },
{ "sortesim.com.br", true },
{ "soruly.com", true },
{ "sorz.org", true },
+ { "sos-elettricista.it", true },
+ { "sos-fabbro.it", true },
{ "sos-falegname.it", true },
{ "sos-idraulico.it", true },
- { "sos.de", true },
+ { "sos-muratore.it", true },
{ "sosoftplay.co.uk", true },
{ "sospromotions.com.au", true },
{ "sostacancun.com", true },
{ "sosteam.jp", true },
{ "sosteric.si", true },
+ { "sot.blue", true },
+ { "sot.red", true },
{ "sotadb.info", true },
+ { "sotai.tk", true },
{ "sotar.us", true },
- { "sotavasara.net", true },
{ "sotoasobi.net", true },
{ "sotthewes.nl", true },
{ "sou-co.jp", true },
{ "soubriquet.org", true },
{ "soufastnet.com.br", true },
+ { "sougi-review.top", true },
+ { "souked.com", true },
{ "souki.cz", true },
{ "soukodou.jp", true },
{ "soul-source.co.uk", true },
{ "soulcrazy.org", true },
+ { "soulike.tech", true },
{ "soulmate.dating", true },
{ "soulmating.de", true },
{ "soulogic.com", true },
+ { "souly.cc", true },
{ "soumikghosh.com", true },
{ "soumya92.me", true },
{ "soundabout.nl", true },
{ "soundbytemedia.com", true },
- { "soundedj.com.br", true },
{ "soundeo.com", true },
{ "soundeo.net", true },
- { "soundgasm.net", true },
{ "soundhunter.xyz", false },
+ { "soundonsound.com", true },
+ { "soundprotectionllc.com", true },
{ "soundscrate.com", true },
- { "soundsecurity.io", true },
- { "souqtajmeel.com", true },
+ { "soundtruckandautorepair.com", true },
+ { "soupcafe.org", true },
{ "sour.is", true },
- { "sourcebox.be", true },
- { "sourcely.net", true },
+ { "souravsaha.com", true },
+ { "sourcebox.be", false },
+ { "sourcecode.tw", true },
{ "sourceway.de", true },
{ "souris.ch", true },
{ "sous-surveillance.net", false },
@@ -31679,13 +35512,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "southambouncycastle.co.uk", true },
{ "southamerican.dating", true },
{ "southbankregister.com.au", true },
+ { "southbendflooring.com", 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 },
{ "southside-tuning-day.de", true },
+ { "southsidebargaincenter.com", true },
{ "southwaymotors.com", true },
{ "southwestrda.org.uk", true },
{ "souyidai.com", true },
@@ -31694,14 +35537,18 @@ 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 },
- { "sp-sephiroth.jp", true },
+ { "sp-sites.com.au", true },
{ "sp.com.pl", true },
{ "sp8ce.co", true },
{ "space-it.de", true },
+ { "space-y.cf", true },
{ "spacebaseapp.com", true },
+ { "spacebear.ee", true },
{ "spacedirectory.org", true },
{ "spacedots.net", true },
{ "spacehighway.ms", true },
@@ -31713,11 +35560,13 @@ 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 },
- { "spamwc.de", true },
{ "spanda.io", true },
{ "spanjeflydrive.nl", true },
+ { "spanner.works", true },
{ "spanyolul.hu", true },
{ "spar-ni.co.uk", true },
{ "sparanoid.com", true },
@@ -31726,13 +35575,14 @@ 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 },
+ { "sparxsolutions.be", true },
{ "spasicilia.it", true },
{ "spatzenwerkstatt.de", true },
{ "spaysy.com", true },
@@ -31740,17 +35590,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spaziopervoi.com.br", true },
{ "spazturtle.co.uk", true },
{ "spazzacamino.roma.it", true },
- { "spd-pulheim-mitte.de", true },
+ { "spbet99.com", true },
{ "spdepartamentos.com.br", true },
{ "spdf.net", true },
{ "spdillini.com", true },
{ "speak-polish.com", true },
+ { "speakingdiligence.com", true },
{ "spearfishingmx.com", true },
{ "speargames.net", true },
+ { "specdrones.us", true },
+ { "specialized-hosting.eu", true },
+ { "specialproperties.com", true },
{ "specialtyalloys.ca", true },
{ "speciesism.com", true },
- { "spectreattack.com", true },
- { "spectrosoftware.de", true },
+ { "spectroom.space", true },
+ { "spectrum.gov", true },
+ { "spediscifiori.com", true },
+ { "spedition-transport-umzug.de", true },
{ "speech-balloon.com", true },
{ "speechdrop.net", true },
{ "speechmate.com", true },
@@ -31762,7 +35618,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "speedsportofhull.co.uk", true },
{ "speedtailors.com", true },
{ "speedtest-russia.com", true },
- { "speedychat.it", true },
+ { "speedwaybusinesspark.com", true },
{ "speeltoneel.nl", true },
{ "speerpunt.info", true },
{ "speets.ca", true },
@@ -31773,31 +35629,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spellcheckci.com", true },
{ "spellchecker.net", true },
{ "spenglerei-shop.de", true },
- { "sperohub.com", true },
+ { "spenny.tf", true },
+ { "sperandii.it", true },
+ { "sperec.fr", true },
+ { "spero.solutions", 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 },
+ { "spidernet.tk", true },
{ "spideroak.com", true },
{ "spiders.org.ua", true },
{ "spielezar.ch", true },
{ "spielland.ch", true },
{ "spiellawine.de", true },
+ { "spieltexte.de", true },
+ { "spiet.nl", true },
{ "spiff.eu", true },
{ "spiga.ch", true },
- { "spillersfamily.net", true },
+ { "spikelands.com", true },
+ { "spilled.ink", true },
{ "spillmaker.no", false },
{ "spilogkoder.dk", true },
- { "spinalien.net", true },
+ { "spinalien.net", false },
+ { "spinalo.se", true },
{ "spindle.com.ph", true },
{ "spindrift.com", true },
{ "spingenie.com", true },
- { "spinner.dnshome.de", true },
{ "spins.fedoraproject.org", true },
{ "spinspin.wtf", true },
+ { "spira-group.eu", true },
+ { "spira.kiev.ua", true },
{ "spiralschneiderkaufen.de", true },
{ "spirella-shop.ch", true },
{ "spirit55555.dk", true },
@@ -31816,9 +35685,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "splintermail.com", true },
{ "splitdna.com", true },
{ "splitreflection.com", true },
+ { "splnk.net", true },
+ { "splopp.com", true },
{ "splunk.net", true },
+ { "spnitalianfestival.com", true },
{ "spodelime.com", true },
- { "spoketwist.com", true },
+ { "spokaneexteriors.com", true },
+ { "spokanepolebuildings.com", true },
{ "spoluck.ca", true },
{ "spolwind.de", true },
{ "spom.net", true },
@@ -31826,45 +35699,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spongepowered.org", true },
{ "sponsor.network", true },
{ "sponsormatch.eu", true },
- { "sponsorowani.pl", true },
{ "spoofhaus.com", true },
{ "spookbook.net", true },
{ "spookquest.com", true },
- { "spookyinternet.com", true },
{ "spoopy.link", true },
+ { "spoorcam.nl", true },
{ "sporcard.com", true },
{ "spornkuller.de", true },
{ "sport-in-sundern.de", true },
{ "sport-potreby.cz", true },
{ "sport-potreby.sk", true },
{ "sport-socken.net", true },
- { "sport247.bet", true },
+ { "sportabee.com", true },
{ "sportakrobatik.at", true },
{ "sportbetuwe.nl", true },
{ "sporter.com", true },
- { "sportflash.info", true },
{ "sportnesia.com", true },
{ "sportovnidum.cz", true },
{ "sportparks.com", true },
{ "sportparks.org", true },
- { "sportressofblogitude.com", true },
+ { "sports-colleges.com", true },
{ "sports.dating", true },
{ "sportsjaw.com", true },
- { "sportsmanadvisor.com", false },
{ "sportsmansblog.com", true },
{ "sportstraineradvisor.com", true },
+ { "sportstreetstyle.com", true },
{ "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 },
+ { "spotswoodvet.com", true },
{ "spottedpenguin.co.uk", true },
- { "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 },
@@ -31874,37 +35747,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spricknet.de", true },
{ "springerundpartner.de", true },
{ "springfieldbricks.com", true },
- { "springreizen.nl", true },
+ { "springhillmaine.com", true },
{ "sprinklermanohio.com", true },
{ "spritmonitor.de", true },
{ "spritsail.io", true },
- { "sproing.ca", true },
+ { "spro.in", true },
+ { "sproktz.com", true },
+ { "spron.in", true },
+ { "sproutways.com", true },
{ "sprucecreekclubs.com", true },
{ "sprucecreekgcc.com", true },
{ "sps-lehrgang.de", true },
+ { "spslawoffice.com", true },
+ { "spsnewengland.org", true },
+ { "spt.re", true },
{ "sptk.org", true },
+ { "sptr.blog", true },
{ "spuffin.com", true },
{ "spufpowered.com", true },
{ "spunkt.fr", true },
{ "spur.com.br", true },
+ { "sputnik1net.org", true },
{ "spydar007.com", true },
{ "spydar007.net", true },
{ "spydersec.com", true },
- { "spykedigital.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 },
+ { "sqsd.xyz", true },
{ "square-gaming.org", true },
{ "square-src.de", false },
{ "square.com", false },
- { "squareonebgc.com.ph", true },
{ "squareup.com", false },
{ "squawk.cc", true },
+ { "squeakql.online", true },
{ "squeezemetrics.com", true },
{ "squido.ch", true },
{ "squidparty.com", true },
@@ -31914,8 +35794,11 @@ 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 },
+ { "srigc.com", true },
{ "srihash.org", true },
{ "srinivasan.io", true },
{ "sro.center", true },
@@ -31938,10 +35821,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ssbgportal.net", true },
{ "ssbkk.ru", true },
{ "ssbrm.ch", true },
- { "ssc8689.com", true },
- { "ssc8689.net", true },
{ "sscd.no", true },
- { "ssconn.com", true },
{ "ssdax.com", false },
{ "ssdservers.co.uk", true },
{ "ssenberg.nl", true },
@@ -31953,6 +35833,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ssl.doctor", true },
{ "ssl.google-analytics.com", true },
{ "ssl.md", true },
+ { "ssl24.pl", true },
{ "ssl247.co.uk", true },
{ "ssl247.com.mx", true },
{ "ssl247.de", true },
@@ -31965,7 +35846,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ssldecoder.org", true },
{ "ssldev.net", true },
{ "sslmate.com", true },
- { "sslok.com", true },
+ { "sslok.com", false },
{ "sslping.com", true },
{ "sslpoint.com", true },
{ "ssls.cz", true },
@@ -31973,14 +35854,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ssmato.me", true },
{ "ssmca.com", true },
{ "ssnet.vip", true },
+ { "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 },
{ "st-shakyo.jp", true },
@@ -31989,6 +35875,7 @@ 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 },
@@ -31997,82 +35884,95 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stadm.com", true },
{ "stadsbygd.info", true },
{ "stadt-apotheke-muensingen.de", true },
+ { "stadtbauwerk.at", false },
{ "stadtbuecherei-bad-wurzach.de", true },
{ "stadterneuerung-hwb.de", true },
+ { "stadtkapelle-oehringen.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 },
{ "stageirites.com", true },
{ "stageirites.fr", true },
{ "stageirites.org", true },
- { "stahlfors.com", false },
+ { "stahlfors.com", true },
{ "stainedglass.net.au", true },
+ { "stainternational.com", true },
{ "stair.ch", true },
{ "stairfallgames.com", true },
{ "stairlin.com", true },
{ "staklim-malang.info", true },
{ "stako.jp", true },
{ "staktrace.com", true },
+ { "stal-rulon.ru", true },
{ "stalder.work", true },
+ { "staljedevledder.nl", true },
{ "stalker-shop.com", true },
+ { "stalkerteam.pl", true },
{ "stalkr.net", true },
- { "stall-zur-linde.de", true },
- { "stamboommuller.nl", true },
- { "stamboomvanderwal.nl", true },
{ "stameystreet.com", true },
{ "stamkassa.nl", true },
{ "stammtisch.domains", true },
{ "stamonicatourandtravel.com", true },
{ "stamparmakarije.me", true },
{ "stampederadon.com", true },
+ { "stampsbar.co.uk", true },
{ "standagainstspying.org", true },
{ "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 },
- { "star-killer.net", true },
+ { "star.watch", true },
{ "starcoachservices.ca", true },
{ "starcomproj.com", true },
{ "stardanceacademy.net", true },
- { "stardust-entertainments.co.uk", true },
{ "stareplanymiast.pl", true },
{ "starflix.uk", true },
{ "starfm.de", true },
{ "stargarder-jungs.de", true },
{ "stargatelrp.co.uk", true },
{ "stargazer.de", true },
- { "starinvestors.in", true },
+ { "starina.ru", true },
{ "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 },
+ { "starport.com.au", true },
{ "starsam80.net", true },
+ { "starsguru.com", true },
+ { "starsing.bid", true },
{ "starskim.cn", true },
- { "starstreak.net", true },
+ { "starstreak.net", false },
{ "startaninflatablebusiness.com", true },
- { "starteesforsale.co.za", true },
+ { "startanull.ru", true },
{ "startergen.com", true },
{ "startlab.sk", true },
{ "startle.cloud", true },
+ { "startliste.info", true },
{ "startpage.com", true },
{ "startpage.info", true },
{ "startrek.in", true },
+ { "starttls-everywhere.org", true },
{ "starttraffic.com", true },
{ "starttraffic.uk", true },
{ "startupgenius.org", true },
- { "startuppeople.co.uk", true },
- { "starwatches.eu", true },
{ "starwins.co.uk", true },
- { "stassi.ch", true },
+ { "stassi.ch", false },
{ "stastka.ch", true },
{ "stat.ink", true },
{ "statebuildinggroup.com", true },
@@ -32080,6 +35980,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 },
@@ -32088,10 +35989,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stationatlyndhurst.com", true },
{ "stationatwillowgrove.com", true },
{ "stationcharlie.co.za", true },
+ { "statistik-seminare.de", true },
{ "statistikian.com", true },
{ "statofus.com", true },
{ "stats.g.doubleclick.net", true },
- { "status.coffee", true },
{ "statuscode.ch", true },
{ "stav.io", true },
{ "stavros.ovh", true },
@@ -32100,11 +36001,21 @@ 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 },
{ "stcu.org", false },
{ "std-home-test.com", true },
{ "stderr.cc", true },
- { "stdev.org", true },
+ { "stdev.top", true },
+ { "stdrc.cc", false },
{ "steakhaus-zumdorfbrunnen.de", true },
{ "steakovercooked.com", true },
{ "stealingheather.com", true },
@@ -32118,13 +36029,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "steamtrades.com", true },
{ "steamwhale.com", true },
{ "stebet.net", true },
- { "steckel.cc", true },
{ "stedb.eu", true },
+ { "stedbg.net", true },
{ "steef389.eu", true },
{ "steel-roses.de", true },
+ { "steelbeasts.org", 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 },
@@ -32135,8 +36048,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 },
@@ -32144,11 +36059,12 @@ 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 },
+ { "stellarx.com", true },
{ "stelleninserate.de", true },
{ "stellenticket.de", true },
{ "stellmacher.name", true },
@@ -32162,11 +36078,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stephane-huc.net", false },
{ "stephaniedeady.ie", true },
{ "stephanieschreiber.com", true },
+ { "stephansurgicalarts.com", true },
+ { "stephencreilly.com", true },
{ "stephenhaunts.com", true },
{ "stephenhorler.com.au", true },
{ "stephenj.co.uk", true },
- { "stephenjvoiceovers.com", true },
{ "stephenperreira.com", true },
+ { "stephenreescarter.com", true },
+ { "stephenreescarter.net", true },
{ "stephenschrauger.com", true },
{ "stephenschrauger.info", true },
{ "stephenschrauger.net", true },
@@ -32191,7 +36110,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sternen-sitzberg.ch", true },
{ "sternenbund.info", true },
{ "sternplastic.com", true },
- { "stesti.cz", true },
+ { "sternsinus.com", true },
+ { "stetson.edu", true },
{ "stetspa.it", true },
{ "steuer-voss.de", true },
{ "steuerberater-essen-steele.com", true },
@@ -32199,17 +36119,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "steuern-recht-wirtschaft.de", true },
{ "steuerseminare-graf.de", true },
{ "steuertipps-sonderausgaben.de", true },
- { "steve.kiwi", true },
{ "steveborba.com", true },
+ { "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 },
@@ -32219,11 +36139,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stevenz.xyz", true },
{ "stevesdrivingschooltyneside.com", true },
{ "stewartswines.com", true },
- { "stewonet.nl", true },
+ { "stewpolley.com", false },
{ "steyaert.be", false },
- { "stforex.com", true },
+ { "stforex.com", false },
+ { "stfrancisnaugatuck.org", true },
{ "stfw.info", true },
- { "stge.uk", true },
+ { "stgabrielstowepa.org", true },
+ { "stgeorgecomfortinn.com", true },
+ { "stgeorgegolfing.com", true },
+ { "stgm.org", true },
+ { "sthenryrc.org", true },
+ { "stian.net", true },
+ { "stichtingdemuziekkamer.nl", true },
{ "stichtingliab.nl", true },
{ "stichtingscholierenvervoerzeeland.nl", true },
{ "stichtingsticky.nl", true },
@@ -32231,25 +36158,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stickandpoketattookit.com", true },
{ "stickeramoi.com", true },
{ "stickergiant.com", true },
- { "stickertuningfetzt.de", false },
+ { "stickertuningfetzt.de", true },
{ "stickies.io", true },
{ "stickmanventures.com", true },
- { "stickswag.eu", true },
- { "stiffordacademy.org.uk", true },
+ { "stickstueb.de", true },
{ "stift-kremsmuenster.at", true },
{ "stiftemaskinen.no", true },
- { "stig.io", false },
{ "stigharder.com", true },
{ "stigviewer.com", true },
- { "stijnbelmans.be", true },
{ "stijncrevits.be", true },
{ "stijnodink.nl", true },
{ "stikic.me", true },
- { "stikkie.me", true },
{ "stilartmoebel.de", true },
{ "stilecop.com", true },
- { "stillnessproject.com", true },
{ "stilmobil.se", true },
+ { "stiltmedia.com", true },
{ "stimmgabel.lu", true },
{ "stin.hr", true },
{ "stinaspiegelberg.com", true },
@@ -32259,46 +36182,78 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "stjameslititz.org", true },
{ "stjohnin.com", true },
+ { "stjohnsottsville.org", true },
+ { "stjoseph-stcatherine.org", true },
+ { "stjosephri.org", true },
+ { "stjosephsoswego.com", true },
+ { "stjosephspringcity.com", true },
+ { "stjosephtheworker.net", true },
+ { "stjscatholicchurch.org", true },
+ { "stjustin.org", true },
+ { "stkevin-stbenedict.org", true },
{ "stln.ml", true },
{ "stlu.de", true },
+ { "stlukenh.org", true },
{ "stlukesbrandon.org", true },
{ "stm-net.de", true },
+ { "stma.is", true },
+ { "stmariagoretti.net", true },
+ { "stmarkseagirt.com", true },
+ { "stmarthachurch.com", true },
{ "stmaryextra.uk", true },
+ { "stmarysnutley.org", true },
+ { "stmaryswestwarwick.org", true },
+ { "stmatthewri.org", true },
+ { "stmattsparish.com", true },
+ { "stmichaellvt.com", true },
+ { "stmichaelunion.org", true },
{ "stmlearning.com", true },
{ "stmsolutions.pl", true },
{ "stneotsbouncycastlehire.co.uk", true },
- { "stnl.de", false },
+ { "stnevis.ru", true },
{ "stockpile.com", true },
{ "stockrow.com", true },
+ { "stockstuck.com", true },
+ { "stocktout.info", true },
{ "stocktrader.com", true },
+ { "stocp.org", true },
{ "stodieck.com", true },
{ "stoebermehl.at", true },
{ "stoffelnet.de", true },
{ "stogiesandmash.com", true },
- { "stoinov.com", true },
{ "stokvistrading.nl", 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 },
+ { "stonechatjewellers.ie", true },
{ "stonedworms.de", true },
- { "stonefusion.org.uk", true },
+ { "stoneedgeconcrete.com", true },
{ "stonehammerhead.org", true },
- { "stonemain.eu", true },
+ { "stonehurstcap.com", true },
+ { "stonewuu.com", true },
{ "stony.com", true },
{ "stonystratford.org", true },
- { "stopbreakupnow.org", true },
{ "stopbullying.gov", true },
- { "stopfraud.gov", true },
+ { "stopfraud.gov", false },
+ { "stopjunkmail.co.uk", true },
{ "stopthethyroidmadness.com", true },
{ "storageideas.uk", true },
{ "stordbatlag.no", true },
{ "storedsafe.com", true },
+ { "storeit.co.uk", true },
+ { "storeprice.co.uk", true },
{ "storillo.com", true },
{ "storm-family.com", true },
{ "stormi.io", true },
@@ -32308,92 +36263,111 @@ 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 },
+ { "stpatrickkennettsquare.org", true },
+ { "stpatrickri.org", true },
+ { "stpatricks-pelham.com", true },
+ { "stpaulcatholicchurcheastnorriton.net", true },
+ { "str8hd.com", true },
{ "straatderzotten.nl", true },
{ "strafensau.de", true },
+ { "strafvollzugsgesetze.de", true },
{ "strahlende-augen.info", true },
- { "straightedgebarbers.ca", true },
{ "strajnar.si", true },
{ "straka.name", true },
+ { "strandedinotter.space", true },
+ { "strandom.ru", true },
+ { "strandschnuppern.de", true },
{ "strangelane.com", true },
{ "strangemusicinc.com", true },
{ "strangemusicinc.net", true },
+ { "strangeways.ca", true },
+ { "straphael-holyangels.com", true },
{ "strate.io", true },
{ "strategiccapital.com", true },
{ "strategiclivingblog.com", true },
{ "strategie-zone.de", true },
+ { "strathewerd.de", true },
{ "stratmann-b.de", true },
- { "stratuscloud.co.za", true },
- { "stratuscloudconsulting.cn", true },
- { "stratuscloudconsulting.co.uk", true },
- { "stratuscloudconsulting.co.za", true },
- { "stratuscloudconsulting.com", true },
- { "stratuscloudconsulting.in", true },
- { "stratuscloudconsulting.info", true },
- { "stratuscloudconsulting.net", true },
- { "stratuscloudconsulting.org", true },
{ "straubis.org", true },
{ "strauser.com", true },
{ "stravers.shoes", true },
+ { "strawberry-laser.gr", true },
+ { "streamblur.net", true },
{ "streamchan.org", true },
- { "streamlineautogroup.com", true },
- { "streams.dyndns.org", true },
+ { "streamelements.com", true },
+ { "streamkit.gg", true },
+ { "streampleasure.xyz", true },
+ { "street-medics.fr", true },
{ "street-smart-home.de", true },
{ "street-tek.com", true },
{ "streetdancecenter.com", true },
+ { "streetlightdata.com", true },
+ { "streetmarket.ru", true },
{ "streets.mn", true },
{ "streetshirts.co.uk", true },
{ "streetspotr.com", true },
{ "streetview.wien", true },
{ "strefapi.com", true },
- { "strelitzia02.com", true },
+ { "streklhof.at", true },
+ { "stremio.com", true },
{ "strengthroots.com", true },
{ "stretchmyan.us", true },
- { "stretchpc.com", true },
{ "striata.com", true },
{ "striatadev.com", true },
{ "stricted.net", true },
{ "strictlyguitar.de", true },
- { "strictlynormal.com", true },
{ "strijkshop.be", true },
{ "stringtoolbox.com", true },
{ "stringvox.com", true },
{ "stripe.com", true },
+ { "striped.horse", true },
{ "strivephysmed.com", false },
{ "strm.hu", true },
- { "strming.com", true },
{ "strobeltobias.de", true },
{ "strobeto.de", true },
{ "strobotti.com", true },
+ { "stroccounioncity.org", true },
+ { "stroeder.com", true },
{ "stroeerdigital.de", true },
{ "stroginohelp.ru", true },
{ "strom.family", true },
+ { "stromaci.sk", true },
{ "stromberger.org", true },
{ "strommenhome.com", true },
+ { "stromzivota.sk", true },
{ "strongpassword.club", true },
{ "strongrandom.com", false },
{ "strongsalpinesucculents.com", true },
{ "strongtowerpc.com", true },
{ "stroomacties.nl", true },
+ { "strosemausoleum.com", true },
+ { "stroseoflima.com", true },
{ "strozik.de", true },
+ { "strrl.com", true },
{ "structurally.net", true },
{ "structure.systems", true },
{ "strugee.net", true },
{ "strutta.me", true },
- { "struxureon.com", true },
{ "strydom.me.uk", true },
{ "stsolarenerji.com", true },
+ { "ststanislaus.com", true },
+ { "ststanstrans.org", true },
{ "stt.wiki", true },
+ { "sttg.com.au", true },
+ { "stthomasbrigantine.org", true },
{ "stuartbell.co.uk", true },
+ { "stuarteggerton.com", true },
{ "stuartmorris.id.au", true },
{ "stuartmorris.me", true },
{ "stuartmorris.name", true },
{ "stuartmorris.tel", true },
{ "stuarts.xyz", false },
+ { "stuckateur-bruno.de", true },
{ "stuco.co", true },
{ "stucydee.nl", true },
{ "studenckiemetody.pl", true },
@@ -32401,47 +36375,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "student-eshop.sk", true },
{ "studentfinancecountdown.com", true },
{ "studentforums.biz", true },
+ { "studentklinikk.no", true },
{ "studentloans.gov", true },
{ "studentpop.com", true },
{ "studentrightsadvocate.org", true },
{ "studentse.fr", true },
{ "studenttenant.com", true },
{ "studiebegeleiding-haegeman.be", true },
- { "studiemeter.nl", true },
{ "studienportal.eu", true },
{ "studienservice.de", true },
- { "studiereader.nl", true },
+ { "studio-637.com", true },
{ "studio-architetto.com", true },
+ { "studio-art.pro", true },
{ "studio-fotografico.ru", true },
- { "studio-webdigi.com", true },
+ { "studio-happyvalley.com", true },
+ { "studio44.fit", true },
+ { "studioadevents.com", true },
+ { "studioavvocato24.it", true },
+ { "studiobergaminloja.com.br", true },
{ "studiodentisticosanmarco.it", true },
{ "studiodewit.nl", true },
{ "studiogavioli.com", true },
+ { "studiogears.com", true },
{ "studiograou.com", true },
{ "studiohelder.fr", false },
+ { "studiohomebase.amsterdam", true },
{ "studiokicca.com", true },
{ "studiolegalepaternostro.it", true },
{ "studiomarcella.com", true },
{ "studionowystyl.pl", true },
+ { "studiopirrate.com", true },
{ "studiopop.com.br", true },
{ "studioproapp.com", true },
{ "studioriehl.com", true },
{ "studioscherp.nl", true },
{ "studiostawki.com", true },
{ "studiostudio.net", true },
+ { "studiosus-gruppenreisen.com", true },
+ { "studiosus.com", true },
{ "studiotheatrestains.fr", true },
{ "studiovaud.com", true },
{ "studipro-formation.fr", true },
{ "studipro-marketing.fr", true },
+ { "studisys.net", true },
{ "studium.cz", true },
- { "studlan.no", true },
- { "studport.rv.ua", true },
{ "studyin.jp", true },
- { "studying-neet.com", true },
+ { "studyspy.ac.nz", true },
{ "studytactics.com", true },
{ "stuermer.me", true },
{ "stuetzredli.ch", true },
- { "stuff-fibre.co.nz", true },
{ "stuffi.fr", true },
{ "stuffie.org", true },
{ "stuka-art.de", true },
@@ -32451,10 +36433,7 @@ 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 },
{ "stuudium.com", true },
{ "stuudium.net", true },
{ "stuudium.org", true },
@@ -32465,6 +36444,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stuvus.uni-stuttgart.de", true },
{ "stw-group.at", true },
{ "stygium.net", false },
+ { "stylebajumuslim.com", true },
{ "styleci.io", true },
{ "stylecollective.us", true },
{ "styles.pm", true },
@@ -32475,13 +36455,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "su1ph3r.io", true },
{ "suaudeau.fr", true },
{ "suaudeau.org", true },
- { "suave.io", true },
{ "sub-net.at", true },
{ "sub.media", true },
{ "subastasdecarros.net", true },
{ "subculture.live", true },
{ "subdev.org", true },
- { "sublevel.net", false },
+ { "subdimension.org", true },
{ "sublimebits.com", true },
{ "sublocale.com", true },
{ "submedia.tv", true },
@@ -32491,13 +36470,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "subrosr.com", true },
{ "subsistence.wiki", true },
{ "substitutealert.com", true },
- { "subterfuge.io", true },
{ "suburban-landscape.net", true },
{ "suburbaninfinitioftroyparts.com", true },
{ "subversive-tech.com", true },
{ "subzerotech.co.uk", true },
{ "succ.in", true },
{ "succesprojekter.dk", true },
+ { "successdeliv.com", true },
{ "suche.org", true },
{ "suchmaschinen-werkstatt.de", true },
{ "suckmyan.us", false },
@@ -32506,6 +36485,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 },
@@ -32515,63 +36495,76 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suevia-ka.de", true },
{ "suffa.ac", true },
{ "suffix.ru", true },
- { "suffts.de", true },
{ "sufix.cz", true },
{ "sugarandcloth.com", true },
{ "sugarbrother.com", true },
{ "sugarfactory.cz", true },
+ { "sugarlandkarate.net", true },
+ { "sugarmillmanagement.com", true },
{ "sugarshin.net", true },
{ "suggea.com", true },
{ "suggestim.ch", true },
{ "suisui.stream", true },
{ "suitesapp.com", true },
+ { "sujal.com", true },
{ "sujatadev.in", true },
{ "sujoydhar.in", true },
+ { "suka.moe", true },
+ { "suke3.jp", true },
{ "suki.moe", true },
{ "suko.pe", true },
+ { "sukoyakapp.com", true },
{ "sukrie.net", true },
{ "suksit.com", true },
{ "sulek.eu", true },
{ "sulian.me", false },
+ { "sullenholland.nl", true },
{ "suluvir.com", true },
{ "sumguy.com", true },
- { "summa-prefis.com", true },
{ "summa.eu", false },
{ "summercampthailand.com", true },
{ "summershomes.com", true },
- { "sumoatm.com", false },
{ "sumthing.com", true },
- { "sun-leo.co.jp", true },
{ "sunboxstore.jp", true },
{ "sunbritetv.com", true },
{ "sunchasercats.com", true },
{ "sundanceusa.com", true },
{ "sundayfundayjapan.com", true },
- { "sunfeathers.net", true },
+ { "sundayrest.com", true },
+ { "sundragon.se", true },
+ { "sunfiregold.com", true },
{ "sunflyer.cn", false },
{ "sunfox.cz", true },
{ "sunfulong.blog", true },
{ "sunfulong.me", true },
+ { "sungreen.info", true },
+ { "sunjaydhama.com", true },
{ "sunjiutuo.com", true },
{ "sunlit.cloud", true },
{ "sunn.ie", true },
+ { "sunny.co.uk", true },
+ { "sunnylyx.com", true },
+ { "sunnysidechurchofchrist.org", true },
{ "sunoikisis.org", true },
+ { "sunred.info", true },
+ { "sunred.org", true },
{ "sunsetwx.com", true },
{ "sunshinesf.org", true },
{ "sunsmartresorts.com", true },
+ { "sunsong.org", true },
{ "sunstar.bg", true },
{ "sunwolf.studio", true },
- { "sunyataherb.com", true },
{ "suool.net", true },
{ "supa.sexy", true },
{ "supastuds.com", true },
- { "super-erotica.ru", 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 },
- { "superbshare.com", true },
{ "supercalorias.com", true },
{ "supercastlesadelaide.com.au", true },
{ "supercastlesbrisbane.com.au", true },
@@ -32580,10 +36573,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supercastlessydney.com.au", true },
{ "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 },
+ { "superidropulitrice.com", true },
+ { "supermae.pt", true },
{ "supermarx.nl", true },
{ "supermercadosdia.com.ar", true },
{ "supermercato24.it", true },
@@ -32591,7 +36588,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supern0va.net", true },
{ "supernaut.info", true },
{ "supernt.lt", true },
- { "supersahnetorten.de", true },
{ "supersec.es", true },
{ "supersole.net", true },
{ "supersonnig-festival.de", true },
@@ -32605,35 +36601,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supertutorial.com.br", true },
{ "supervisionassist.com", true },
{ "supeuro.com", true },
- { "supperclub.es", false },
+ { "supioka.com", true },
+ { "supmil.net", true },
{ "supplementler.com", true },
{ "supplies24.at", true },
{ "supplies24.es", true },
+ { "supplynation.org.au", true },
{ "support.mayfirst.org", false },
{ "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 },
- { "surdam.casa", false },
+ { "surasak.net", true },
+ { "surasak.org", true },
{ "sure-it.de", true },
+ { "surefit-oms.com", true },
{ "suretone.co.za", true },
+ { "surfnetkids.com", true },
+ { "surfnetparents.com", true },
{ "surfocal.com", true },
{ "surgenet.nl", true },
{ "surgeongeneral.gov", true },
{ "surgicalassociateswny.com", true },
{ "suroil.com", true },
{ "surpreem.com", true },
+ { "surrealcoder.com", true },
+ { "surreyheathyc.org.uk", true },
+ { "suruifu.com", true },
{ "survature.com", true },
+ { "surveillance104.com", true },
{ "surveyhealthcare.com", true },
- { "surveyinstrumentsales.com", true },
{ "surveymill.co.uk", true },
{ "survivalmonkey.com", true },
- { "survivebox.fr", true },
{ "susanbpilates.co", true },
{ "susanbpilates.com", true },
{ "susann-kerk.de", true },
@@ -32642,26 +36648,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sush.us", true },
{ "sushi.roma.it", true },
{ "sushibesteld.nl", true },
- { "sushifrick.de", true },
{ "sushikatze.de", true },
- { "sushiwereld.be", true },
{ "susosudon.com", true },
{ "suspension-shop.com", true },
- { "sussexwebsites.info", false },
+ { "sussexheart.com", true },
{ "sustainabilityknowledgegroup.com", true },
{ "sustainoss.org", true },
{ "sustsol.com", true },
{ "sutas.market", true },
+ { "suttacentral.net", true },
{ "suurhelsinki.cf", true },
{ "suuria.de", true },
+ { "suv4.net", true },
{ "suwalls.com", true },
{ "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 },
+ { "svak-gutachter.de", true },
{ "svallee.fr", false },
+ { "svanstrom.com", true },
+ { "svanstrom.org", true },
{ "svantner.sk", true },
{ "svarnyjunak.cz", true },
{ "svc-sitec.com", true },
@@ -32670,21 +36681,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "svc-sitec.org", true },
{ "svdb.co", false },
{ "svdreamcatcher.com", true },
- { "sve-hosting.nl", 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 },
+ { "svsb-live.azurewebsites.net", false },
{ "sw-servers.net", true },
{ "sw33tp34.com", true },
{ "swagsocial.net", true },
@@ -32692,27 +36704,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "swansdoor.org", true },
{ "swap.gg", true },
{ "swapadoodle.com", true },
+ { "swaptaxdata.com", true },
{ "swarfarm.com", true },
- { "swarlys-server.de", true },
+ { "swarovski-lov.cz", true },
{ "swat4stats.com", true },
{ "swattransport.ae", true },
{ "sway-cdn.com", true },
- { "sway.com", true },
{ "swd.agency", true },
+ { "swe77.com", true },
+ { "swe777.com", true },
+ { "sweak.net", true },
{ "swedishhost.com", true },
{ "swedishhost.se", true },
{ "sweep-me.net", true },
{ "sweepay.ch", true },
+ { "sweet-as.co.uk", true },
{ "sweet-orr.com", true },
+ { "sweet-spatula.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 },
- { "swiftpk.net", true },
+ { "swiftcashforcars.com.au", true },
+ { "swiftpcbassembly.com", true },
{ "swiftqueue.com", true },
{ "swilly.org", true },
{ "swimbee.nl", true },
@@ -32725,29 +36744,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "swiss-apartments.com", true },
{ "swiss-connection.net", true },
{ "swiss-cyber-experts.ch", true },
- { "swisscannabis.club", true },
+ { "swiss-vanilla.ch", true },
+ { "swiss-vanilla.com", 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 },
- { "swissxperts.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 },
+ { "swkdevserver.tk", true },
+ { "swktestserver.tk", true },
+ { "swn-nec.de", true },
{ "swordfeng.xyz", true },
+ { "swqa.hu", true },
+ { "swuosa.org", false },
{ "swvaux.com", true },
+ { "swxtd.com", true },
{ "swyn.net", true },
{ "sx8.ovh", true },
{ "sxistolithos.gr", true },
{ "sy-anduril.de", true },
{ "sy24.ru", true },
{ "syajvo.if.ua", true },
+ { "syakonavi.com", true },
+ { "syamutodon.xyz", true },
{ "sycamorememphis.org", true },
{ "sychov.pro", true },
{ "sydney-sehen.com", true },
@@ -32756,20 +36784,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sydneylawnandturf.com.au", true },
{ "syenar.net", true },
{ "syezd.com.au", true },
- { "syhost.at", true },
- { "syhost.ch", true },
- { "syhost.de", true },
+ { "syha.org.uk", true },
{ "sykepleien.no", false },
{ "sylaps.com", true },
{ "syleam.in", true },
{ "sylfie.net", true },
{ "syllogi.xyz", true },
- { "sylvaincombe.net", true },
{ "sylvaindurand.fr", true },
{ "sylvaindurand.org", true },
{ "sylvaloir.fr", true },
- { "sylvan.me", true },
- { "sylvangarden.net", true },
{ "sylve.ch", true },
{ "sym01.com", true },
{ "symb.ch", true },
@@ -32778,13 +36801,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "symbiose-immobilier.ch", true },
{ "symbiose.com", true },
{ "symbiosecom.ch", true },
+ { "symdevinc.com", true },
{ "symeda.de", true },
{ "symetria.io", true },
{ "symfora-meander.nl", true },
{ "symlnk.de", true },
{ "symphonos.it", true },
+ { "sympmarc.com", true },
+ { "sympraxisconsulting.com", true },
{ "symptome-erklaert.de", true },
{ "synabi.com", true },
+ { "synack.uk", true },
+ { "synackr.net", true },
{ "synaptickz.me", true },
{ "synatra.co", true },
{ "sync-it.no", true },
@@ -32792,8 +36820,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "syncflare.com", true },
{ "synchrocube.com", true },
{ "synchrolarity.com", true },
+ { "synchronicity.cz", true },
{ "synchronyse.com", true },
- { "synchtu.be", true },
+ { "synchtu.be", false },
{ "syncrise.co.jp", true },
{ "syneart.com", true },
{ "synecek11.cz", true },
@@ -32805,9 +36834,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "synony.me", true },
{ "synotna.eu", true },
{ "syntaxnightmare.com", true },
+ { "syntheticgrassliving.com.au", true },
{ "syntheticurinereview.com", true },
{ "synthetik.com", true },
- { "syoier.com", true },
+ { "syplasticsurgery.com", true },
{ "syriatalk.biz", true },
{ "syriatalk.org", true },
{ "sysadm.guru", true },
@@ -32819,47 +36849,59 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "syslogic.io", true },
{ "sysmike.de", true },
{ "systea.fr", true },
- { "system-m.de", true },
- { "system-online.cz", true },
+ { "system-m.de", false },
{ "system.cf", true },
{ "system.is", true },
{ "system12.pl", true },
{ "system365.eu", true },
+ { "system4travel.com", true },
{ "systemadmin.uk", true },
{ "systematic-momo.com", true },
{ "systematic-momo.dk", true },
+ { "systemchile.com", true },
{ "systemd.ch", true },
{ "systemd.eu.org", true },
{ "systemeprod.fr", true },
{ "systemintegra.ru", true },
{ "systemli.org", true },
+ { "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 },
{ "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 },
+ { "szc.me", true },
+ { "szclsya.me", true },
{ "szechenyi2020.hu", true },
{ "szentistvanpt.sk", true },
+ { "szepsegbennedrejlik.hu", true },
{ "szerelem.love", true },
+ { "szeretekvajpolni.hu", true },
+ { "szetowah.org.hk", true },
+ { "szunia.com", true },
{ "szybkiebieganie.pl", true },
{ "szyndler.ch", true },
+ { "szzsivf.com", true },
{ "t-hawk.com", true },
+ { "t-m.me", true },
{ "t-net.org.hu", true },
{ "t-shirts4less.nl", true },
{ "t-stonegroup.com", true },
{ "t.facebook.com", false },
+ { "t0ny.name", true },
{ "t12u.com", true },
- { "t2000headphones.com", true },
- { "t2000laserpointers.com", true },
{ "t23m-navi.jp", false },
{ "t2i.nl", true },
{ "t47.io", true },
@@ -32867,33 +36909,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "t4cc0.re", true },
{ "t5118.com", true },
{ "t7e.de", false },
+ { "t9i.in", true },
{ "ta-65.com", true },
{ "ta-sports.net", true },
{ "ta65.com", true },
{ "taabe.net", true },
+ { "taalcursusvolgen.nl", true },
{ "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 },
{ "tablescraps.com", true },
{ "tablet.facebook.com", false },
{ "tabletd.com", true },
+ { "tabletsbaratasya.com", true },
{ "tablotv.com", false },
{ "taborsky.cz", true },
{ "tac-volley.com", true },
{ "tachi.uk", true },
- { "tachyonapp.com", true },
{ "tacklinglife.com", true },
{ "tacklog.com", true },
- { "tacomafia.net", false },
- { "tacostea.net", true },
+ { "tacomafia.net", true },
{ "tacticalsquare.com", true },
- { "tadata.me", true },
{ "taddiestales.com", true },
{ "tadeo.ca", true },
+ { "tadiranbatteries.de", true },
+ { "tadj-mahalat.com", true },
+ { "tadlab.cl", true },
{ "tadluedtke.com", true },
{ "tadtadya.com", true },
{ "tadu.de", true },
@@ -32904,29 +36951,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taglioepiega.eu", true },
{ "taglioepiega.it", true },
{ "tagpay.com", true },
+ { "tagungsraum-usedom.de", true },
+ { "tagungsraum-zinnowitz.de", true },
+ { "tahavu.com", true },
+ { "taherian.me", true },
{ "tahosa.co", true },
{ "tahosalodge.org", true },
- { "tai-in.com", true },
- { "tai-in.net", true },
- { "tailandfur.com", true },
- { "tailpuff.net", true },
+ { "tailpuff.net", false },
{ "tails.boum.org", true },
{ "taimane.com", true },
+ { "taiphanmem.net", true },
+ { "taishokudaiko.com", 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 },
- { "takebackyourstate.com", true },
- { "takebackyourstate.net", true },
- { "takebackyourstate.org", true },
+ { "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 },
@@ -32938,10 +36991,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "talentcast.org", true },
{ "talenthub.co.nz", true },
{ "talentos.pt", true },
+ { "talentwall.io", true },
{ "taler.net", true },
{ "talideon.com", false },
{ "talk.google.com", true },
- { "talk.xyz", true },
{ "talkgadget.google.com", true },
{ "talking12.com", true },
{ "talkingmoose.net", true },
@@ -32949,36 +37002,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "talktech.com", true },
{ "talktobot.com", true },
{ "talktodarcy.com", true },
- { "talktwincities.com", true },
{ "talkwithyourbaby.org", true },
{ "tallcraft.com", true },
{ "talldude.net", true },
+ { "tallinnsec.ee", true },
+ { "tallinnsex.ee", true },
{ "talltreeskv.com.au", true },
{ "tallyfy.com", true },
{ "talon.rip", true },
- { "talroo.com", true },
- { "talsi.eu", 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 },
+ { "tamersunion.org", true },
{ "tamindir.com", true },
+ { "tamirson.com", true },
{ "tammy.pro", true },
{ "tampabaybusinesslistings.com", true },
{ "tamposign.fr", true },
{ "tamriel-rebuilt.org", true },
- { "tanak3n.xyz", true },
+ { "tanacio.com", true },
+ { "tanak3n.xyz", false },
{ "tancredi.nl", true },
{ "tandem-trade.ru", false },
+ { "tandemexhibits.com", true },
{ "tandempartnerships.com", true },
+ { "tandk.com.vn", true },
{ "tandzorg.link", true },
{ "tangel.me", true },
{ "tangemann.org", true },
- { "tango-cats.de", true },
{ "tango-ouest.com", true },
{ "tangoalpha.co.uk", true },
- { "tanhit.com", true },
{ "taniafitness.co.uk", true },
{ "taniafitness.com", true },
{ "tanie-uslugi-ksiegowe.pl", true },
@@ -32987,23 +37045,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tankski.co.uk", true },
{ "tannenhof-moelln.de", true },
{ "tannerryan.ca", true },
+ { "tannerwilliamson.com", true },
+ { "tannerwj.com", true },
+ { "tansuya.jp", true },
{ "tantalos.nl", true },
{ "tantei100.net", true },
- { "tantetilli.de", true },
{ "tanto259.name", false },
{ "tanyanama.com", true },
+ { "tanz-kreativ.de", true },
{ "tanz.info", true },
{ "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 },
{ "taprix.org", true },
- { "taqsim.jp", true },
+ { "tapsnapp.co", true },
{ "taquilla.com", true },
- { "taqun.club", true },
+ { "tar-mag.com", true },
+ { "taranis.re", true },
{ "tarasecurity.co.uk", true },
{ "tarasecurity.com", true },
{ "tarasevich.by", true },
@@ -33014,11 +37077,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tariff.cc", true },
{ "tarik.io", true },
{ "tarmexico.com", true },
+ { "taron.top", true },
+ { "tarot-cartas.com", true },
{ "tarsan.cz", true },
{ "tartaneagle.org.uk", true },
{ "tartanhamedshop.com.br", true },
{ "taruntarun.net", true },
{ "tas2580.net", false },
+ { "tasadordecoches.com", true },
+ { "tascuro.com", true },
{ "taskin.me", true },
{ "taskotron.fedoraproject.org", true },
{ "taskotron.stg.fedoraproject.org", true },
@@ -33029,6 +37096,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taskutark.ee", true },
{ "tasogarenoinori.net", true },
{ "tass.nu", true },
+ { "tastenewwines.com", true },
{ "tastic.com", true },
{ "tastycake.net", false },
{ "tastystakes.com", true },
@@ -33040,46 +37108,52 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tatsidou.gr", true },
{ "tattoo.dating", true },
{ "tattvaayoga.com", true },
+ { "tatuantes.com", true },
{ "taunhanh.us", true },
+ { "taustyle.ru", true },
{ "tavolaquadrada.com.br", true },
{ "tavsys.net", true },
{ "tax-guard.com", true },
{ "taxaroo.com", true },
- { "taxi-24std.de", false },
+ { "taxaudit.com", true },
{ "taxi-chamonix.fr", true },
{ "taxi-collectif.ch", true },
+ { "taxi-jihlava.cz", true },
{ "taxi-puck.pl", true },
{ "taxi-waregem.be", true },
{ "taxicollectif.ch", true },
- { "taxiindenbosch.nl", true },
+ { "taxid-k.be", true },
{ "taxis-collectifs.ch", true },
{ "taxisafmatosinhos.pt", true },
{ "taxiscollectifs.ch", true },
{ "taxlab.co.nz", true },
- { "taxspeaker.com", true },
+ { "taxo.fi", true },
+ { "taxpackagesupport.com", true },
+ { "taxsquirrel.com", true },
{ "taylorpearson.me", false },
+ { "taylorreaume.com", true },
{ "taylors-castles.co.uk", true },
{ "taylorstauss.com", true },
{ "taysonvodao.fr", true },
{ "tb-devel.de", true },
{ "tb-itf.de", true },
{ "tba.bm", true },
+ { "tbejos.com", true },
{ "tbfocus.com", true },
{ "tbitc.ch", true },
{ "tbonejs.org", true },
- { "tbpixel.com", true },
{ "tbrindus.ca", true },
{ "tbs-certificates.co.uk", true },
{ "tbspace.de", true },
- { "tbtech.cz", true },
{ "tbuchloh.de", true },
- { "tbys.us", true },
{ "tc-st-leonard.ch", true },
{ "tc.nz", true },
- { "tcacademy.co.uk", true },
+ { "tcade.co", true },
{ "tcb-a.org", true },
{ "tcb-b.org", true },
+ { "tccmb.com", true },
{ "tcdw.net", true },
+ { "tcdww.cn", true },
{ "tcf.org", true },
{ "tcgforum.pl", true },
{ "tcgrepublic.com", true },
@@ -33088,24 +37162,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tchebotarev.com", true },
{ "tchnics.de", true },
{ "tchoukball.ch", true },
+ { "tcit.fr", 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 },
{ "tdfbfoundation.org", true },
- { "tdpblog.site", true },
{ "tdrcartuchos.com.br", true },
+ { "tdro.cf", true },
{ "tdrs.info", true },
{ "tdsf.io", true },
{ "tdsinflatables.co.uk", true },
{ "tdude.co", true },
{ "tea.codes", true },
+ { "tea.in.th", true },
{ "teabagdesign.co.uk", true },
+ { "teachbiz.net", true },
{ "teachercreatedmaterials.com", true },
{ "teacherph.com", true },
{ "teacherpowered.org", true },
+ { "teachertool.io", true },
{ "teachingcopyright.com", true },
{ "teachingcopyright.net", true },
{ "teachingcopyright.org", true },
@@ -33115,10 +37194,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teachwithouttears.com", true },
{ "teahut.net", true },
{ "team-azerty.com", true },
- { "team-bbd.com", true },
{ "team.house", true },
{ "team3482.com", true },
- { "teamassists.com", true },
{ "teambeam.at", true },
{ "teambeam.ch", true },
{ "teambeam.com", true },
@@ -33127,21 +37204,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teambodyproject.com", true },
{ "teamcombat.com", true },
{ "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 },
+ { "teamspeak-serverlist.xyz", true },
{ "teamtouring.net", true },
{ "teamtrack.uk", true },
{ "teamup.com", true },
+ { "teamup.rocks", true },
{ "teamupturn.com", true },
{ "teamupturn.org", true },
{ "teamusec.de", true },
{ "tearoomlints.be", true },
- { "teasenetwork.com", true },
{ "teaser-trailer.com", true },
{ "teatrarium.com", true },
{ "teb-akademia.pl", true },
@@ -33151,86 +37230,96 @@ 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-info.jp", true },
{ "tech-rat.com", true },
{ "tech-seminar.jp", true },
{ "tech-value.eu", true },
{ "tech-zealots.com", true },
+ { "techableme.com", true },
{ "techace.jp", true },
{ "techademy.nl", true },
+ { "techamigo.in", true },
{ "techarea.fr", true },
- { "techbelife.com", true },
+ { "techaulogy.com", true },
{ "techbrown.com", true },
- { "techcentric.com", false },
{ "techcracky.com", true },
{ "techcultivation.de", false },
{ "techcultivation.net", false },
{ "techcultivation.org", false },
- { "techday.co.nz", true },
- { "techday.com", true },
- { "techday.com.au", true },
- { "techday.eu", true },
{ "techdirt.com", true },
{ "techdroid.eu", true },
{ "techendeavors.com", true },
{ "techformator.pl", true },
+ { "techforthepeople.org", true },
+ { "techglover.com", true },
{ "techhappy.ca", true },
{ "techinet.pl", true },
{ "techinsurance.com", true },
{ "techjoe.co", true },
+ { "techmagus.icu", true },
{ "techmajesty.com", true },
{ "techmasters.io", true },
+ { "techmoviles.com", true },
{ "techmunchies.net", false },
+ { "technic3000.com", true },
{ "technicabv.nl", true },
{ "technicalbrothers.cf", true },
{ "technicallyeasy.net", true },
+ { "technicalramblings.com", true },
{ "technicalsystemsprocessing.com", true },
{ "techniclab.net", true },
{ "techniclab.org", true },
{ "techniclab.ru", true },
- { "technifocal.com", true },
{ "technik-boeckmann.de", true },
{ "technikblase.fm", true },
+ { "technikman.de", true },
+ { "technikrom.org", true },
{ "technoinfogroup.it", true },
{ "technologie-innovation.fr", true },
+ { "technologyhound.org", true },
{ "technologysi.com", true },
{ "technoparcepsilon.fr", true },
{ "technoscoots.com", true },
{ "technosorcery.net", true },
- { "technoswag.ca", true },
- { "technotonic.co.uk", true },
+ { "technospeakco.com", true },
{ "techold.ru", true },
{ "techorbiter.com", true },
{ "techosmarcelo.com.ar", true },
+ { "techpilipinas.com", true },
{ "techpit.us", true },
{ "techpivot.net", true },
+ { "techpoint.org", true },
{ "techshift.eu", true },
{ "techshift.nl", true },
{ "techshift.se", true },
{ "techsolvency.com", true },
{ "techsys.cz", true },
{ "techtalks.no", true },
- { "techtuts.info", true },
- { "techvalue.gr", true },
+ { "techtrader.ai", true },
+ { "techtrader.io", true },
{ "techview.link", true },
{ "techviewforum.com", true },
{ "techwayz.com", true },
{ "techwithcromulent.com", true },
- { "techwords.io", true },
+ { "techzero.cn", true },
{ "teckids.org", true },
+ { "tecma.com", true },
{ "tecmarkdig.com", true },
{ "tecne.ws", true },
{ "tecnicoelettrodomestici.roma.it", true },
+ { "tecnidev.com", true },
{ "tecnoarea.com.ar", true },
{ "tecnobrasilloja.com.br", true },
{ "tecnodritte.it", true },
+ { "tecnogaming.com", 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 },
@@ -33239,40 +37328,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tedsdivingsystem.com", true },
{ "tedxodense.com", true },
{ "teebeedee.org", false },
+ { "teedb.de", true },
{ "teemo.gg", true },
{ "teemperor.de", true },
{ "teemulintula.fi", true },
{ "teencounseling.com", true },
- { "teenerotic.net", true },
{ "teengirl.pub", true },
{ "teensexgo.com", true },
- { "teesypeesy.com", true },
{ "teeworlds-friends.de", true },
{ "tefek.cz", true },
+ { "teganlaw.ca", true },
+ { "teganlaw.com", true },
{ "tege-elektronik.hu", true },
- { "tehcrayz.com", true },
{ "tehrabbitt.com", false },
- { "tehrankey.ir", true },
{ "tehranperfume.com", true },
{ "teixobactin.com", true },
{ "tejarat98.com", true },
{ "teknemodus.com.au", true },
{ "teknik.io", true },
+ { "tekniksnack.se", true },
{ "tekniskakustik.se", true },
{ "tekno.de", true },
{ "teknoforums.com", true },
{ "teknolit.com", true },
{ "tekstschrijvers.net", true },
- { "teksuperior.com", true },
- { "tektuts.com", true },
{ "tekuteku.jp", true },
{ "telamon.eu", true },
{ "telamon.fr", true },
- { "tele-alarme.ch", true },
- { "tele-assistance.ch", true },
+ { "telco.at", true },
{ "tele-online.com", true },
{ "telealarme.ch", true },
- { "telealarmevalais.ch", true },
{ "telecamera.pro", false },
{ "telecomwestland.nl", true },
{ "teledivi.com", true },
@@ -33285,26 +37370,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "telefoon.nl", true },
{ "telefoonabonnement.nl", true },
{ "telegenisys.com", true },
+ { "telegram.org", true },
{ "telegramdr.com", true },
{ "telehealthventures.com", false },
{ "telekothonbd.com", true },
{ "teleogistic.net", true },
{ "telepass.me", true },
{ "telephonedirectories.us", true },
- { "telepons.com", true },
- { "teleshop.be", true },
+ { "telesto.online", true },
+ { "teletechnology.in", false },
+ { "teletexto.com", true },
{ "telework.gov", true },
+ { "tellcorpassessoria.com.br", true },
{ "telling.xyz", true },
+ { "tellingua.com", false },
+ { "tellthemachines.com", true },
{ "tellusaboutus.com", true },
{ "telly.site", true },
{ "tellygames.com", true },
+ { "tellyourtale.com", true },
{ "teloo.pl", true },
{ "telos-analytics.com", true },
- { "teltonica.com", true },
{ "teltru.com", true },
- { "telugu4u.net", true },
{ "tem.li", true },
+ { "temariopolicianacional.es", true },
+ { "temariosdeoposiciones.es", true },
+ { "temasa.net", true },
{ "tematicas.org", true },
+ { "temdu.com", true },
{ "temizmama.com", true },
{ "temnacepel.cz", true },
{ "temp.pm", true },
@@ -33312,33 +37405,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tempdomain.ml", true },
{ "template-parks.com", true },
{ "templateinvaders.com", true },
+ { "templates-office.com", true },
{ "templum.com.br", true },
- { "tempus-aquilae.de", 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 },
+ { "tendoryu-aikido.org", false },
{ "tenenz.com", true },
{ "tenisservis.eu", true },
+ { "tenkdigitalt.no", true },
{ "tenkofx.com", true },
- { "tenma.pro", true },
- { "tennisadmin.com", true },
{ "tennismindgame.com", true },
{ "tenno.tools", true },
{ "tenpo-iku.com", true },
{ "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 },
+ { "tepautotuning.com", true },
{ "tepid.org", true },
{ "tepitus.de", true },
{ "teplofom.ru", true },
@@ -33349,14 +37444,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "terabyteit.co.uk", true },
{ "teracloud.at", true },
{ "teranacreative.com", true },
- { "tercerapuertoaysen.cl", true },
{ "teriiphotography.com", true },
+ { "teriyakisecret.com", true },
{ "terlindung.com", true },
- { "termax.me", true },
{ "termino.eu", true },
+ { "terminsrakning.se", true },
{ "termitemounds.org", true },
{ "termitinitus.org", true },
{ "termografiranje.si", true },
+ { "termux.com", true },
+ { "terpotiz.net", true },
{ "terra.fitness", true },
{ "terrab.de", false },
{ "terracloud.de", false },
@@ -33369,9 +37466,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "terralimno.eu", true },
{ "terraluna.space", true },
{ "terranova-nutrition.dk", true },
+ { "terranova.fi", true },
+ { "terrapay.com", true },
{ "terrastaffinggroup.com", false },
{ "terraweb.net", true },
{ "terresmagiques.com", true },
+ { "terrorbilly.com", true },
{ "terrty.net", true },
{ "terryjohnsononline.com", true },
{ "tes.com", true },
@@ -33381,20 +37481,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tescolide.cz", true },
{ "tescoludia.sk", true },
{ "teskalabs.com", true },
+ { "teslamagician.com", true },
{ "tesoro.pr", true },
{ "tessai.ga", true },
+ { "tesseractinitiative.org", true },
+ { "test-sev-web.pantheonsite.io", true },
{ "test-textbooks.com", true },
{ "test.de", true },
- { "testadren.com", true },
+ { "test.support", true },
+ { "testeveonline.com", true },
{ "testgeomed.ro", true },
- { "testi.info", true },
{ "testomato.com", true },
+ { "testoon.com", true },
{ "testosteronedetective.com", true },
- { "testpornsite.com", true },
{ "testsuite.org", true },
+ { "testsvigilantesdeseguridad.es", true },
{ "testuje.net", true },
{ "tetedelacourse.ch", true },
{ "teto.nu", true },
+ { "tetraetc.com", true },
{ "tetraktus.org", true },
{ "tetrarch.co", true },
{ "tetsugakunomichi.jp", true },
@@ -33406,6 +37511,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 },
@@ -33428,11 +37534,11 @@ 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 },
+ { "tfb.az", true },
{ "tfg-bouncycastles.com", true },
+ { "tfk.fr", true },
{ "tfle.xyz", true },
{ "tflite.com", true },
{ "tfnapps.de", true },
@@ -33446,6 +37552,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tgbyte.de", true },
{ "tgexport.eu", true },
{ "tgmkanis.com", true },
+ { "tgtv.tn", true },
{ "tgui.eu", true },
{ "tgui.net", true },
{ "tgw.com", true },
@@ -33454,59 +37561,89 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thablubb.de", true },
{ "thaedal.net", true },
{ "thai.dating", true },
+ { "thai.land", true },
{ "thaicyberpoint.com", true },
{ "thaiforest.ch", true },
{ "thaihomecooking.com", true },
{ "thailandpharmacy.net", true },
+ { "thailandpropertylisting.com", true },
{ "thairehabassociation.com", true },
{ "thajskyraj.com", true },
- { "thala.fr", false },
+ { "thala.fr", true },
{ "thalan.fr", true },
{ "thalgott.net", true },
{ "thalhammer.it", true },
{ "thalia.nu", true },
+ { "thaliagetaway.com.au", true },
{ "thallinger.me", true },
+ { "thambaru.com", true },
{ "thamesfamilydentistry.com", true },
+ { "thamtubinhminh.com", true },
{ "thanabh.at", true },
{ "thanatoid.net", true },
{ "thanhthinhbui.com", true },
{ "thatdarkplace.com", true },
{ "thatquiz.org", true },
+ { "thatsme.io", true },
{ "thca.ca", true },
{ "thcpbees.co.uk", true },
+ { "the-arabs.com", 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 },
{ "theastrocoach.com", true },
+ { "theatre-schools.com", true },
+ { "theazoorsociety.org", true },
{ "thebakers.com.br", true },
{ "thebakery2go.de", true },
{ "thebannerstore.com", true },
+ { "thebarbdemariateam.com", true },
+ { "thebarrens.nu", true },
{ "thebasebk.org", true },
{ "thebcm.co.uk", true },
+ { "thebeachessportsphysio.com", true },
+ { "thebeardedrapscallion.com", true },
+ { "thebeginningviolinist.com", true },
{ "thebest.ch", true },
{ "thebestfun.co.uk", true },
+ { "thebestofthesprings.com", true },
+ { "thebestpersonin.ml", true },
{ "thebestsavingsplan.com", true },
{ "thebigbitch.nl", true },
{ "thebigdatacompany.com", true },
{ "thebigwave.de", true },
{ "thebikeinsurer.co.uk", true },
{ "thebimhub.com", true },
+ { "thebinarys.com", true },
{ "thebirthdaysite.co.uk", true },
{ "thebit.link", true },
{ "theblackknightsings.com", true },
{ "theblondeabroad.com", true },
+ { "theblueroofcottage.ca", true },
+ { "thebluub.com", true },
+ { "theboatmancapital.com", true },
{ "thebodyprinciple.com", true },
{ "thebonerking.com", true },
{ "thebouncedepartment.co.uk", true },
@@ -33515,18 +37652,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thebreakroom.org", true },
{ "thebrightons.co.uk", true },
{ "thebrightons.uk", true },
+ { "thebulletin.io", true },
{ "thebusinessofgoodfilm.com", true },
{ "thecamels.org", true },
{ "thecameradivision.com", true },
- { "thecandidforum.com", true },
{ "thecarolingconnection.com", true },
{ "thecellulitediet.com", true },
{ "thecherryship.ch", true },
{ "thechunk.net", true },
- { "theciderlink.com.au", true },
- { "thecitizens.com", true },
{ "thecitywarehouse.clothing", true },
- { "thecloudmigrator.com", true },
{ "thecloudshelter.com", true },
{ "thecoffeecamp.com", true },
{ "thecoffeesuperstore.com", true },
@@ -33534,105 +37668,138 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thecompany.pl", true },
{ "theconcordbridge.azurewebsites.net", true },
{ "thecondobuyers.com", true },
- { "thecozycastle.com", true },
+ { "thecookiejar.me", true },
{ "thecrazytravel.com", true },
+ { "thecrescentchildcarecenter.com", true },
{ "thecrew-exchange.com", true },
- { "thecrochetcottage.net", true },
+ { "thecstick.com", true },
{ "thecuppacakery.co.uk", true },
- { "thecuriouscat.net", true },
{ "thecuriousdev.com", true },
{ "thecurvyfashionista.com", true },
{ "thecustomdroid.com", true },
- { "thecustomizewindows.com", true },
+ { "theda.co.za", true },
{ "thedark1337.com", true },
{ "thedebug.life", true },
{ "thederminstitute.com", true },
- { "thediaryofadam.com", true },
+ { "thedhs.com", true },
+ { "thediamondcenter.com", true },
+ { "thedisc.nl", true },
{ "thediscovine.com", true },
{ "thedocumentrefinery.com", true },
+ { "thedom.site", true },
{ "thedreamtravelgroup.co.uk", true },
{ "thedronechart.com", true },
+ { "thedroneely.com", true },
{ "thedutchmarketers.com", true },
{ "theebookkeepers.co.za", true },
{ "theeducationchannel.info", true },
{ "theeducationdirectory.org", true },
+ { "theeffingyogablog.com", true },
{ "theeighthbit.com", true },
- { "theel0ja.info", true },
{ "theel0ja.ovh", true },
{ "theemasphere.com", true },
+ { "theender.net", true },
+ { "theepiclounge.com", true },
+ { "theeverycompany.com", true },
+ { "theeyeopener.com", true },
+ { "thefairieswantmedead.com", true },
{ "thefanimatrix.net", true },
- { "thefasterweb.com", true },
+ { "thefashionpolos.com", true },
{ "thefbstalker.com", true },
{ "thefengshuioffice.com", true },
{ "theferrarista.com", true },
+ { "thefilmphotography.com", true },
{ "theflowerbasketonline.com", true },
- { "theflyingbear.net", true },
+ { "theflowershopdeddington.com", true },
{ "thefnafarchive.org", true },
- { "thefox.com.fr", true },
+ { "theforkedspoon.com", true },
+ { "thefourthmoira.com", true },
+ { "thefreemail.com", true },
{ "thefrk.pw", true },
+ { "thefuckingtide.com", true },
{ "thefunfirm.co.uk", true },
{ "thefurnitureco.uk", true },
+ { "thefurniturefamily.com", true },
{ "thegarrowcompany.com", true },
- { "thegcccoin.com", true },
+ { "thegatheringocala.com", true },
{ "thegeekdiary.com", true },
+ { "thegerwingroup.com", true },
{ "thegioinano.com", true },
+ { "thegospelforgeeks.org", true },
{ "thegrape.ro", true },
{ "thegreatpakistan.com", true },
{ "thegreatplains.com", true },
{ "thegreenfields.se", true },
{ "thegreenmanpottery.com", true },
{ "thegreenpark.co.uk", true },
- { "thegreens.us", true },
+ { "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 },
{ "thehotness.tech", true },
{ "thehouseofgod.org.nz", true },
{ "thehowtohome.com", true },
+ { "thehub.ai", true },
+ { "theideaskitchen.com.au", true },
{ "theidiotboard.com", true },
+ { "theig.co", true },
{ "theillustrationstudio.com.au", true },
{ "theimagefile.com", true },
+ { "theimaginationagency.com", true },
+ { "theinboxpros.com", true },
{ "theinflatables-ni.co.uk", true },
{ "theinflatablesne.co.uk", true },
{ "theinitium.com", true },
{ "theintercept.com", true },
{ "theinternationalgeekconspiracy.eu", true },
- { "thej0lt.com", true },
+ { "theissue.com.au", true },
+ { "theitsage.com", false },
{ "thejacksoninstitute.com.au", true },
{ "thekev.in", true },
{ "thekeytobusiness.co.uk", true },
{ "thekindplate.ca", true },
- { "thekingofhate.com", true },
+ { "thekingofhate.com", false },
+ { "thekovnerfoundation.org", true },
{ "thelaimlife.com", true },
{ "thelanscape.com", true },
+ { "thelastbeach.top", true },
{ "thelastsurprise.com", true },
+ { "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 },
+ { "themadlabengineer.co.uk", true },
{ "themallards.info", true },
{ "themarshallproject.org", true },
- { "themeaudit.com", 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 },
+ { "themobilestuffs.com", true },
{ "themoep.at", true },
{ "themoneyconverter.com", true },
{ "themonkeytrail.co.uk", true },
@@ -33641,15 +37808,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "themusecollaborative.org", true },
{ "themusicinnoise.net", true },
{ "thenanfang.com", true },
- { "thenarcissisticlife.com", true },
+ { "theneatgadgets.com", true },
+ { "thenerdic.com", true },
{ "thenexwork.com", true },
{ "thenib.com", true },
- { "thenichecast.com", true },
+ { "theninenine.com", true },
{ "thenocman.com", true },
{ "thenovaclinic.com", true },
{ "thenowheremen.com", true },
{ "theo.me", true },
+ { "theobg.co", true },
{ "theobromos.fr", true },
+ { "theoc.co", true },
{ "theocharis.org", true },
{ "theodorahome.co", true },
{ "theodorahome.com.br", true },
@@ -33662,6 +37832,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 },
@@ -33669,9 +37840,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thepaulagcompany.com", true },
{ "thepaymentscompany.com", true },
{ "thepb.in", true },
+ { "thepeninsulaires.com", true },
+ { "thepharm.co.nz", true },
{ "thephonecaseplace.com", true },
{ "thephp.cc", true },
- { "thepiabo.ovh", true },
{ "thepieslicer.com", true },
{ "thepiratesociety.org", true },
{ "theplaidpoodle.com", true },
@@ -33679,49 +37851,57 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theplaydaysbus.co.uk", true },
{ "theplayspot.co.uk", true },
{ "theploughharborne.co.uk", true },
- { "thepostoffice.ro", true },
+ { "thepoplarswines.com.au", true },
{ "thepriorybandbsyresham.co.uk", true },
+ { "theproductpoet.com", true },
{ "thepromisemusic.com", true },
{ "theragran.co.id", true },
{ "theralino.de", true },
{ "theramo.re", true },
- { "therandombits.com", true },
+ { "therandombits.com", false },
+ { "therapiemi.ch", true },
{ "therapynotes.com", true },
{ "therapyportal.com", true },
{ "therapysxm.com", true },
{ "therealcost.gov", true },
{ "thereaper.net.au", true },
+ { "theregoesbrian.com", true },
+ { "thereisnocloud.fr", true },
+ { "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 },
- { "theroamingnotary.com", true },
+ { "thermorecetas.com", true },
{ "theroks.com", true },
+ { "theropes.nyc", true },
{ "theroyalmarinescharity.org.uk", true },
+ { "therugswarehouse.co.uk", true },
{ "theruizes.com", true },
{ "theruleslawyer.net", true },
{ "therumfordcitizen.com", true },
{ "thesalonthing.com", false },
- { "thesassynut.com", true },
+ { "thesarogroup.com", true },
{ "thesaturdaypaper.com.au", true },
{ "thesaurus.net", true },
{ "theschool.jp", true },
{ "thescientists.nl", true },
- { "thesecondsposts.com", true },
+ { "thesearchenginepros.com", true },
+ { "thesecondsposts.com", false },
{ "theseed.io", true },
{ "theseedbox.xyz", true },
{ "theseletarmall.com", true },
{ "theseoframework.com", true },
{ "theseosystem.com", true },
- { "theserviceyouneed.com", true },
{ "thesession.org", false },
{ "thesharedbrain.ch", true },
{ "thesharedbrain.com", true },
{ "thesharepointfarm.com", true },
{ "theshield.in", true },
{ "theshine.pl", true },
+ { "theshopally.com", false },
{ "thesignacademy.co.uk", true },
{ "thesignalco.com.au", true },
{ "thesimplifiers.com", true },
@@ -33730,63 +37910,83 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theskingym.co.uk", true },
{ "thesmallbusinesswebsiteguy.com", true },
{ "thesmokingcuban.com", true },
+ { "thesnellvilledentist.com", true },
{ "thesocialmediacentral.com", true },
{ "thesplashlab.com", true },
+ { "thesslstore.com", true },
+ { "thestandingroomrestaurant.com", true },
{ "thestationatwillowgrove.com", true },
{ "thesteins.org", false },
{ "thestoneage.de", true },
- { "thestoritplace.com", true },
{ "thestory.ie", true },
{ "thestoryshack.com", true },
- { "thestral.pro", true },
- { "thestralbot.com", true },
{ "thestrategyagency.com.au", true },
+ { "thestreamable.com", true },
{ "thestudyla.com", true },
{ "thestyle.city", true },
+ { "thestyleforme.com", true },
{ "thesuppercircle.com", true },
{ "theswissbay.ch", true },
+ { "theteacherscorner.net", true },
{ "thetechnical.me", true },
{ "thetenscrolls.com", true },
+ { "thethreepercent.marketing", true },
+ { "thetiedyelab.com", true },
+ { "thetinylife.com", true },
{ "thetomharling.com", true },
+ { "thetorlock.com", true },
+ { "thetorrentfunk.com", true },
+ { "thetotalemaildelivery.com", true },
+ { "thetravelczar.com", true },
{ "thetree.ro", true },
{ "thetrendspotter.net", true },
{ "thetuxkeeper.de", false },
- { "theunitedstates.io", true },
+ { "thetvtraveler.com", 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 },
+ { "thevyra.com", true },
{ "thewagesroom.co.uk", true },
{ "thewarrencenter.org", true },
{ "thewaxhouse.academy", true },
{ "thewaxhouse.de", true },
- { "thewaxhouse.shop", true },
+ { "thewayofthedojo.com", true },
{ "thewebflash.com", true },
{ "thewebsitedoctors.co.uk", true },
{ "thewebsitemarketingagency.com", true },
{ "thewhitehat.club", true },
{ "thewhitneypaige.com", true },
- { "thewindow.com", true },
{ "thewinstonatlyndhurst.com", true },
{ "thewoodkid.com.au", true },
{ "thewoolroom.com.au", true },
+ { "theworld.tk", true },
+ { "theworldbattle.com", true },
+ { "theworldexchange.com", true },
+ { "theworldexchange.net", true },
+ { "theworldexchange.org", true },
{ "theworldsend.eu", 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 },
+ { "theyourbittorrent.com", true },
+ { "thezero.org", true },
{ "thezillersathenshotel.com", true },
{ "thiagohersan.com", true },
- { "thibaultwalle.com", true },
- { "thibautcharles.net", true },
- { "thienteakee.com", true },
{ "thiepcuoidep.com", true },
{ "thiepxinh.net", true },
{ "thierry-daellenbach.com", true },
{ "thierrybasset.ch", true },
- { "thierryhayoz.ch", true },
+ { "thietbithoathiem.net", true },
+ { "thijmenmathijs.nl", true },
{ "thijsalders.nl", false },
{ "thijsbekke.nl", true },
{ "thijsslop.nl", true },
@@ -33794,57 +37994,71 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "thinkindifferent.net", true },
{ "thinkingandcomputing.com", true },
{ "thinkingliberty.com", true },
{ "thinkingplanet.net", true },
- { "thinklikeanentrepreneur.com", true },
{ "thinkmarketing.ca", true },
{ "thinkquality.nl", true },
{ "thinkrealty.com", true },
{ "thinktux.net", true },
{ "thirdbearsolutions.com", true },
- { "thirdworld.moe", true },
- { "thirtyspot.com", true },
+ { "thirdgenphoto.co.uk", 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 },
+ { "thisisthefinalact.com", true },
{ "thisistheserver.com", true },
{ "thisiswhywemom.com", true },
{ "thismatter.com", true },
{ "thisoldearth.com", true },
{ "thisserver.dontexist.net", true },
{ "thistleandleaves.com", true },
+ { "thitruongsi.com", true },
{ "thm.vn", true },
{ "thole.org", true },
{ "thom4s.info", true },
{ "thomalaudan.de", true },
{ "thomas-bertran.com", true },
{ "thomas-fahle.de", true },
+ { "thomas-klubert.de", true },
{ "thomas-prior.com", true },
{ "thomas-sammut.com", true },
+ { "thomas-schmittner.de", true },
{ "thomas-suchon.fr", true },
+ { "thomas.computer", true },
{ "thomas.love", false },
{ "thomasbeckers.be", true },
+ { "thomasbreads.com", false },
+ { "thomasduerlund.com", true },
{ "thomasduerlund.dk", true },
+ { "thomasetsophie.fr", true },
{ "thomaseyck.com", true },
{ "thomasfoster.co", true },
- { "thomasgriffin.io", true },
{ "thomashunter.name", false },
+ { "thomaskaviani.be", true },
{ "thomasmcfly.com", true },
- { "thomassen.sh", false },
+ { "thomasmeester.nl", false },
+ { "thomasmerritt.de", true },
+ { "thomassen.sh", true },
{ "thomasstevensmusic.com", true },
{ "thomastimepieces.com.au", true },
{ "thomasverhelst.be", true },
{ "thomasvochten.com", true },
{ "thomaswoo.com", true },
+ { "thomien.de", true },
{ "thompsonfamily.cloud", true },
{ "thomsonscleaning.co.uk", true },
{ "thomspooren.nl", true },
@@ -33852,11 +38066,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thor.edu", true },
{ "thor.re", true },
{ "thoroquel.org", true },
+ { "thoroughbreddiesel.com", true },
{ "thorsten-schaefer.com", true },
{ "thorstenschaefer.name", true },
{ "thosci.com", true },
{ "thotpublicidad.com", true },
- { "thoughtlessleaders.online", true },
{ "thoughtsynth.com", true },
{ "thoughtsynth.net", true },
{ "thoughtsynth.org", true },
@@ -33868,16 +38082,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thousandoakslighting.com", true },
{ "thousandoaksoutdoorlighting.com", true },
{ "thpay.com", true },
+ { "threatcon.io", true },
{ "threatmarket.com", true },
+ { "threatnix.io", true },
{ "threatworking.com", true },
{ "threecrownsllp.com", true },
{ "threedpro.me", true },
+ { "threefantasy.com", true },
{ "threefours.net", true },
{ "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 },
@@ -33885,6 +38104,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "throughtheglass.photo", true },
{ "throwaway.link", true },
{ "throwpass.com", true },
+ { "thrush.com", true },
{ "thues.eu", true },
{ "thuisverpleging-meerdael.be", true },
{ "thullbery.com", true },
@@ -33893,61 +38113,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thunderkeys.net", true },
{ "thundr.eu", true },
{ "thunraz.com", true },
- { "thusoy.com", false },
+ { "thusoy.com", true },
{ "thuthuatios.com", true },
{ "thuviensoft.com", true },
- { "thuviensoft.net", true },
{ "thuybich.com", false },
{ "thw-bernburg.de", true },
{ "thxandbye.de", true },
{ "thycotic.ru", true },
{ "thyngster.com", true },
- { "thynx.io", true },
{ "thzone.net", true },
{ "ti-pla.net", true },
{ "ti-planet.org", true },
- { "tiacollection.com", true },
{ "tiagonunes.pt", true },
{ "tiaki.org", true },
{ "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 },
- { "ticketpro.ca", true },
+ { "ticketmaze.com", true },
+ { "ticketpro.ca", false },
+ { "ticketrunway.com", true },
{ "ticketslover.com", true },
{ "ticketsmate.com", true },
{ "ticketsource.co.uk", true },
{ "ticketsource.eu", true },
+ { "ticketsource.io", true },
{ "ticketsource.us", true },
{ "ticketsourcebeta.co.uk", true },
{ "ticketsvergleichen.de", true },
{ "tickit.ca", true },
{ "tid.jp", true },
+ { "tidy.chat", true },
{ "tidycustoms.net", true },
- { "tielectric.ch", true },
- { "tiendafetichista.com", true },
- { "tiendavertigo.com", true },
+ { "tiekoetter.com", true },
+ { "tielectric.ch", false },
{ "tiens-ib.cz", true },
{ "tier-1-entrepreneur.com", true },
{ "tierarztpraxis-bogenhausen.de", true },
- { "tierarztpraxis-illerwinkel.de", true },
{ "tierarztpraxis-weinert.de", true },
- { "tiernanx.com", true },
+ { "tierraprohibida.net", true },
{ "ties.com", true },
{ "tiew.pl", true },
{ "tifan.net", true },
+ { "tiffanytravels.com", true },
{ "tiffnix.com", true },
{ "tigerchef.com", true },
{ "tigerdile.com", true },
{ "tigernode.com", true },
{ "tigernode.net", true },
{ "tiggeriffic.com", true },
- { "tiggi.pw", true },
{ "tiglitub.com", true },
{ "tiihosen.fi", true },
{ "tiim.technology", true },
@@ -33956,26 +38177,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tik.edu.ee", true },
{ "tik.help", true },
{ "tiki-god.co.uk", true },
+ { "tilde.institute", true },
{ "tildes.net", true },
{ "tildesnyder.com", true },
- { "tiledailyshop.com", true },
{ "tilesbay.com", true },
{ "tiliaze.be", true },
{ "tiliaze.biz", true },
{ "tiliaze.eu", true },
{ "tiliaze.info", true },
{ "tiliaze.net", true },
+ { "tilikum.io", true },
{ "till.im", true },
{ "tillberg.us", true },
{ "tilleysbouncycastles.co.uk", true },
{ "tillseasyscore.com", true },
+ { "tilman.ninja", true },
+ { "tilosp.de", true },
+ { "tilta.com", true },
{ "tiltedwindmillcrafts.com", true },
{ "timbarlotta.com", true },
{ "timberkel.com", true },
+ { "timbers.space", true },
{ "timbishopartist.com", true },
+ { "timbrado.com", true },
{ "timbrust.de", true },
{ "timco.cloud", true },
- { "timdebruijn.nl", true },
{ "timdeneau.com", true },
{ "timdoug.com", true },
{ "time.gov", true },
@@ -33985,36 +38211,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "time2choose.com", true },
{ "timeauction.hk", true },
{ "timebox.tk", true },
+ { "timebutler.de", true },
{ "timeglass.de", true },
{ "timeless-photostudio.com", true },
- { "timetab.org", true },
+ { "timelessskincare.co.uk", true },
+ { "timelockstash.com", true },
{ "timetech.io", true },
{ "timetotrade.com", true },
{ "timewasters.nl", true },
+ { "timewk.cn", true },
{ "timfiedler.net", true },
+ { "timi-matik.hu", true },
{ "timing.com.br", true },
{ "timjk.de", true },
- { "timklefisch.de", true },
{ "timmersgems.com", true },
- { "timmy.im", true },
{ "timmyrs.de", true },
{ "timnash.co.uk", true },
{ "timonengelke.de", true },
{ "timoso.de", true },
{ "timothybjacobs.com", true },
+ { "timowi.de", true },
{ "timoxbrow.com", true },
+ { "timsayedmd.com", true },
{ "timtaubert.de", true },
{ "timtelfer.com", true },
{ "timtj.ca", true },
{ "timvivian.ca", true },
{ "timweb.ca", true },
+ { "timx.uk", true },
+ { "timysewyn.be", true },
+ { "tina-zander.de", true },
+ { "tina.media", true },
{ "tinastahlschmidt.de", true },
{ "tindallriley.co.uk", true },
{ "tinf15b4.de", true },
{ "tinfoilsecurity.com", false },
{ "tinfoleak.com", true },
{ "tinker.career", true },
- { "tinkerboard.org", true },
+ { "tinkerbeast.com", true },
+ { "tinkererstrunk.co.za", true },
{ "tinkertry.com", true },
{ "tinlc.org", true },
{ "tinte24.de", true },
@@ -34035,10 +38270,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tioat.net", true },
{ "tipaki.gr", true },
{ "tipbox.is", true },
+ { "tipe.io", true },
{ "tiplanet.org", true },
{ "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 },
@@ -34047,28 +38285,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tirlins.com", true },
{ "tiroler-kupferschmiede.com", true },
{ "tirs4ne.ch", true },
+ { "tis.ph", true },
{ "tischlerei-klettke.de", true },
- { "tism.in", true },
{ "tissot-mayenfisch.com", true },
+ { "tisvapo.it", true },
{ "tit-cdn.de", true },
+ { "tit-dev.de", true },
{ "tit-dns.de", true },
{ "tit-mail.de", true },
{ "tit.systems", true },
+ { "titanandco.com", true },
{ "titandirect.co.uk", true },
{ "titanous.com", true },
- { "titanpointe.org", true },
{ "titansized.com", true },
{ "titanwaterproofing.com.au", true },
{ "titelseite.ch", true },
{ "titiansgirlphotography.com", true },
{ "titouan.co", false },
- { "tittelbach.at", false },
+ { "tittelbach.at", true },
{ "titusetcompagnies.net", true },
- { "tivido.nl", true },
{ "tiwag.at", true },
{ "tixeconsulting.com", true },
+ { "tixify.com", true },
{ "tjampoer.com", true },
- { "tjandpals.com", true },
+ { "tjcuk.co.uk", true },
{ "tjenestetorvet.dk", true },
{ "tjkcastles.uk", true },
{ "tjl.rocks", true },
@@ -34077,7 +38317,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tkacz.pro", true },
{ "tkanemoto.com", true },
{ "tkat.ch", true },
- { "tkeycoin.com", true },
{ "tkgpm.com", true },
{ "tkirch.de", true },
{ "tkjg.fi", true },
@@ -34085,6 +38324,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tkn.tokyo", true },
{ "tkusano.jp", true },
{ "tkw01536.de", false },
+ { "tl.gg", true },
+ { "tlach.cz", true },
{ "tlca.org", true },
{ "tlcnet.info", true },
{ "tlehseasyads.com", true },
@@ -34092,44 +38333,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tlo.xyz", true },
{ "tloxygen.com", true },
{ "tls-proxy.de", true },
- { "tls.builders", true },
{ "tls.care", true },
{ "tls1914.org", true },
{ "tlsrobot.se", true },
{ "tlthings.net", true },
{ "tlumaczenie.com", true },
+ { "tlyphed.net", true },
{ "tlys.de", true },
+ { "tm80plus.com", 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 },
{ "tmm.cx", true },
{ "tmonitoring.com", true },
{ "tmpraider.net", true },
{ "tmpsantos.com.br", true },
+ { "tmsdiesel.com", true },
{ "tmtopup.com", true },
{ "tn0.club", true },
+ { "tnd.net.in", true },
{ "tndentalwellness.com", true },
{ "tnes.dk", true },
{ "tniad.mil.id", false },
{ "tnl.cloud", true },
{ "tntmobi.com", true },
{ "tny.link", true },
- { "to2mbn.org", true },
{ "toad.ga", true },
{ "toast.al", false },
- { "tobacco.gov", true },
+ { "tob-rulez.de", true },
+ { "tobaccolocker.com", true },
{ "tobedo.net", true },
{ "tober-cpag.de", true },
{ "tobi-mayer.de", true },
@@ -34146,12 +38390,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tobiasconradi.com", true },
{ "tobiashorvath.com", true },
{ "tobiashorvath.de", true },
+ { "tobiaskorf.de", true },
{ "tobiaspahlings.de", true },
{ "tobiassachs.de", true },
{ "tobiassattler.com", true },
+ { "tobiaswiese.com", true },
+ { "tobiaswiese.eu", true },
+ { "tobiaswiese.org", true },
+ { "tobiaswiese.work", true },
{ "tobiemilford.com", true },
{ "tobis-rundfluege.de", true },
- { "tobis-webservice.de", true },
{ "tobischo.de", true },
{ "tobisworld.ch", true },
{ "tobyalden.com", true },
@@ -34169,29 +38417,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "todapolitica.com", true },
{ "todaymeow.com", true },
{ "toddfry.com", true },
- { "todocracy.com", true },
+ { "toddmath.com", true },
+ { "todoereaders.com", true },
{ "todoescine.com", true },
{ "todoist.com", true },
- { "todokete.ga", true },
{ "todon.fr", true },
+ { "todoscheduler.de", true },
+ { "todoscheduler.org", true },
{ "toeglhofer.at", true },
{ "toeightycountries.com", true },
{ "toekomstperspectief.be", true },
{ "toerclub-ing-arnhem.nl", true },
+ { "toerschaatsenknsb.nl", true },
{ "toetsplatform.be", true },
{ "tofe.io", true },
- { "tofilmhub.com", true },
+ { "tofliving.nl", true },
{ "tofu.cf", true },
{ "togech.jp", true },
{ "togetter.com", true },
- { "toheb.de", true },
+ { "toheb.de", false },
+ { "tohochofu-sportspark.com", true },
{ "tohokinemakan.tk", true },
- { "tohokufd.com", true },
+ { "toihoctiengtrung.com", true },
{ "tokaido-kun.jp", true },
{ "tokaido.com", true },
{ "tokainafb.net", true },
{ "tokainakurasi.net", true },
- { "tokbijouxs.com.br", true },
+ { "tokenmarket.net", true },
{ "tokens.net", true },
{ "tokfun.com", true },
{ "tokic.hr", true },
@@ -34200,7 +38452,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tokka.com", true },
{ "tokke.dk", true },
{ "tokkee.org", true },
- { "tokky.eu", true },
+ { "tokototech.com", true },
{ "tokugai.com", true },
{ "tokumei.co", true },
{ "tokyo-onkyo.jp", true },
@@ -34217,27 +38469,26 @@ 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 },
- { "tomandshirley.com", true },
+ { "tomahawk.ca", true },
+ { "tomandmara.com", true },
{ "tomarns.nl", true },
{ "tomasjacik.cz", true },
- { "tomaskavalek.cz", true },
+ { "tomaskavalek.cz", false },
{ "tomaspatera.cz", true },
- { "tomaspialek.cz", true },
{ "tomasvecera.cz", true },
{ "tomasz.com", true },
{ "tomatenaufdenaugen.de", true },
{ "tomatis-nantes.com", true },
{ "tomaw.net", true },
- { "tomaz.eu", true },
{ "tombaker.me", true },
- { "tomberek.info", true },
+ { "tombroker.org", true },
{ "tombrossman.com", true },
- { "tomcort.com", true },
{ "tomd.ai", true },
- { "tomdudfield.com", true },
{ "tomend.es", true },
{ "tomershemesh.me", true },
{ "tomfisher.eu", true },
@@ -34245,7 +38496,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomharris.tech", true },
{ "tomi.cc", true },
{ "tomica.me", true },
- { "tomiler.com", true },
+ { "tomik.cloud", true },
{ "tomjans.nl", true },
{ "tomjn.com", true },
{ "tomjonsson.se", true },
@@ -34255,32 +38506,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomlowenthal.com", true },
{ "tomm.yt", true },
{ "tommic.eu", true },
+ { "tommy-bordas.fr", false },
{ "tomnatt.com", true },
{ "tomo.gr", false },
- { "tomochun.net", true },
{ "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 },
- { "tomudding.com", true },
{ "tomudding.nl", true },
{ "tomvote.com", true },
{ "tomwassenberg.com", true },
{ "tomwassenberg.nl", true },
{ "tomwiggers.nl", false },
{ "tomwilson.io", true },
- { "tomy.icu", true },
{ "tomyork.net", true },
{ "tonabor.ru", true },
{ "tonage.de", true },
{ "toncusters.nl", true },
{ "tondles.com", true },
+ { "tone.tw", true },
{ "tonegidoarchief.nl", true },
{ "toner24.at", true },
{ "toner24.co.uk", true },
@@ -34298,12 +38549,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tonermonster.de", true },
{ "tonex.de", true },
{ "tonex.nl", true },
- { "tonguetechnology.com", true },
+ { "tonifarres.net", true },
+ { "tonigallagherinteriors.com", true },
{ "tonkayagran.com", true },
{ "tonkayagran.ru", true },
{ "tonkinson.com", true },
{ "tonkinwilsonvillenissanparts.com", true },
{ "tonnycat.com", true },
+ { "tonnygaric.com", true },
{ "tono.us", true },
{ "tonsit.com", true },
{ "tonsit.org", true },
@@ -34317,45 +38570,64 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tonywebster.com", true },
{ "too.gy", true },
{ "toobug.net", true },
+ { "toolbox-bodensee.de", true },
{ "toolbox.ninja", false },
+ { "toolineo.de", true },
{ "toolkits.design", true },
{ "toolroomrecords.com", true },
{ "tools.pro", true },
{ "toolsense.io", true },
{ "toom.io", true },
+ { "toomy.pri.ee", true },
+ { "toon.style", 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 },
+ { "top4shop.de", true },
+ { "top5hosting.co.uk", true },
{ "top9.fr", true },
{ "topaxi.ch", true },
{ "topaxi.codes", true },
+ { "topbigdeals.com", true },
{ "topbounce.com", true },
{ "topbouncycastles.co.uk", true },
{ "topbrakes.com", true },
+ { "topciderska-crkva.rs", true },
{ "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 },
+ { "tophat.studio", true },
{ "topicdesk.com", true },
{ "topicit.net", true },
{ "topirishcasinos.com", true },
{ "topjobs.ch", true },
+ { "topkek.ml", true },
+ { "toplist.cz", true },
{ "toplist.eu", true },
+ { "toplist.sk", true },
{ "topnotepad.com", true },
{ "topodin.com", true },
{ "toponlinecasinosites.co.uk", true },
+ { "toppercan.es", true },
{ "topprice.ua", true },
+ { "topsailtechnologies.com", true },
{ "topservercccam.tv", true },
{ "topshelfcommercial.com", true },
{ "topshoptools.com", true },
@@ -34363,53 +38635,70 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toptec.net.br", true },
{ "toptexture.com", true },
{ "toptheto.com", true },
- { "topvertimai.lt", true },
- { "topwin.la", true },
+ { "topvision.se", true },
{ "topwindowcleaners.co.uk", true },
{ "topworktops.co.uk", true },
{ "toracon.org", true },
{ "torahanytime.com", true },
- { "torbe.es", true },
{ "torchantifa.org", true },
{ "toreni.us", true },
{ "toretame.jp", true },
+ { "torfbahn.de", true },
+ { "torg-room.ru", true },
{ "torkware.com", true },
+ { "torlock.com", true },
+ { "torlock.host", true },
+ { "torlock.icu", true },
+ { "torlock.pw", true },
+ { "torlock2.com", true },
{ "tormakristof.eu", true },
{ "tormentedradio.com", false },
{ "torn1.se", true },
{ "torngalaxy.com", true },
{ "torogroups.com", true },
+ { "torontoaccesscontrol.com", true },
{ "torontocorporatelimo.services", true },
{ "torontostarts.com", true },
+ { "toros.co", true },
+ { "toros2.com", true },
{ "torproject.org", false },
{ "torprojects.com", true },
{ "torquato.de", false },
{ "torrent.fedoraproject.org", true },
{ "torrent.is", true },
+ { "torrent.tm", true },
+ { "torrentfunk.host", true },
+ { "torrentfunk.icu", true },
+ { "torrentfunk.pw", true },
+ { "torrentfunk2.com", true },
{ "torrentpier.me", true },
{ "torrentz2.al", true },
{ "torresygutierrez.com", true },
{ "torretzalam.com", true },
{ "torservers.net", true },
+ { "torsquad.com", true },
{ "torsten-schmitz.net", true },
{ "torstensenf.de", true },
{ "torte.roma.it", true },
{ "tortoises-turtles.com", true },
{ "tortugan.com.br", true },
- { "tosainu.com.br", true },
+ { "tosamja.net", true },
{ "toscer.me", false },
{ "toschool.com.br", true },
{ "toshen.com", true },
{ "toshkov.com", true },
- { "toskana-appartement.de", true },
+ { "toskana-appartement.de", false },
+ { "tosolini.info", true },
{ "tosostav.cz", true },
{ "tosteberg.se", true },
{ "tostu.de", true },
- { "totaku.ru", true },
- { "totalbeauty.co.uk", true },
+ { "tot-radio.com", true },
+ { "totaku.ru", false },
+ { "totalaccess.com.ua", true },
{ "totalbike.com.br", true },
{ "totalcarcheck.co.uk", true },
{ "totalchecklist.com", true },
+ { "totalemaildelivery.com", true },
{ "totalforcegym.com", true },
{ "totalhomecareinc.com", true },
{ "totallylegitimatehosting.ru", true },
@@ -34426,12 +38715,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "touch.mail.ru", true },
{ "touchoflife.in", true },
{ "touchscreentills.com", true },
+ { "touchstone.io", true },
+ { "touchsupport.com", true },
{ "touchtable.nl", 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 },
@@ -34439,9 +38728,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tourgest.net", true },
{ "tourify.me", true },
{ "tourismwithme.com", true },
- { "tourispo.com", true },
{ "tournamentmgr.com", true },
{ "tournevis.ch", true },
+ { "toursthatmatter.com", true },
{ "tourtransferitaly.it", true },
{ "tourtrektrip.com", true },
{ "tous-travaux.ch", true },
@@ -34451,26 +38740,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "touslesdrivers.com", true },
{ "tout-art.ch", true },
{ "toutart.ch", true },
+ { "toutelathailande.fr", true },
{ "toutenmusic.fr", true },
{ "toutmonexam.fr", true },
+ { "toutvendre.be", true },
+ { "toutvendre.ch", true },
+ { "toutvendre.cm", true },
+ { "toutvendre.es", true },
+ { "toutvendre.fr", true },
+ { "toutvendre.lu", true },
+ { "toutvendre.pics", true },
+ { "toutvendre.uk", true },
+ { "toutvendre.us", true },
{ "tovare.com", true },
{ "toverland-tickets.nl", true },
- { "tovp.org", true },
+ { "towandalibrary.org", true },
+ { "tower.land", true },
{ "townandcountryus.com", true },
{ "townhousedevelopments.com.au", true },
{ "townhouseregister.com.au", true },
{ "townofbridgewater.ca", true },
{ "towsonroofers.com", true },
{ "towywebdesigns.uk", true },
- { "tox.im", true },
{ "tox21.gov", false },
+ { "toycu.de", true },
{ "toymagazine.com.br", true },
{ "toyota-kinenkan.com", true },
+ { "toysale.by", false },
{ "toysperiod.com", true },
{ "tp-iryuubun.com", true },
{ "tp-kabushiki.com", true },
{ "tp-kyouyufudousan.com", true },
{ "tp-law.jp", true },
+ { "tpansino.com", true },
{ "tpbproxy.co", true },
{ "tpci.biz", true },
{ "tpidg.us", true },
@@ -34482,39 +38784,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tr.search.yahoo.com", false },
{ "tr0n.net", true },
{ "traas.org", true },
- { "trabajarenperu.com", true },
{ "trabajarenremoto.com", true },
{ "trabbel.org", true },
- { "tracalada.cl", true },
{ "trace.guru", true },
{ "trace.moe", true },
{ "traceheatinguk.co.uk", true },
{ "tracelight.io", true },
+ { "tracemyplace.com", true },
{ "traceroute.guru", true },
{ "traceroute.link", true },
{ "traceroute.network", true },
{ "traces.ml", true },
- { "tracewind.top", true },
+ { "tracetracker.no", true },
{ "tracfinancialservices.com", true },
{ "tracinsurance.com", true },
+ { "track.plus", true },
{ "trackchair.com", true },
{ "trackdomains.com", true },
{ "trackersimulator.org", true },
{ "trackeye.dk", true },
- { "trackmeet.io", true },
+ { "tracking.best", true },
+ { "trackingstream.com", true },
{ "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 },
@@ -34522,30 +38828,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "traditionskapperscollege.nl", true },
{ "traditionsvivantesenimages.ch", true },
{ "tradiz.org", false },
+ { "tradlost-natverk.se", true },
{ "trafarm.ro", true },
{ "trafas.nl", true },
{ "traffic.az", true },
+ { "trafficmanager.com", true },
{ "trafficmanager.ltd", true },
{ "trafficmanager.xxx", true },
+ { "trafficmgr.cn", true },
+ { "trafficmgr.net", true },
{ "trafficologyblueprint.com", true },
{ "trafficpixel.tk", true },
{ "traffixdevices.com", true },
{ "traficmusik.net", true },
{ "tragmi.ch", true },
+ { "trailcloud.ink", true },
{ "trailerparty.com", true },
{ "trailforks.com", true },
{ "trainex.org", true },
{ "trainhornforums.com", true },
- { "trainhorns.us", true },
{ "trainiac.com.au", true },
- { "trainings-handschuhe-test.de", true },
+ { "traininghamburg.de", true },
{ "trainline.at", true },
{ "trainline.cn", true },
{ "trainline.com.br", true },
{ "trainline.com.pt", true },
{ "trainline.cz", true },
{ "trainline.de", true },
- { "trainline.dk", true },
{ "trainline.es", true },
{ "trainline.eu", true },
{ "trainline.fr", true },
@@ -34553,11 +38862,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trainline.nl", true },
{ "trainline.no", true },
{ "trainline.pl", true },
- { "trainline.se", true },
+ { "trainmagazine.be", true },
+ { "trainmagazine.de", true },
+ { "trainmagazine.nl", true },
+ { "trainplaza.be", true },
+ { "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 },
+ { "trajectfoto.nl", true },
+ { "trajectvideo.nl", true },
+ { "trakkr.tk", true },
+ { "tramclub-basel.ch", true },
{ "tran.pw", true },
{ "trance-heal.com", true },
{ "trance-heal.de", true },
@@ -34565,17 +38892,16 @@ 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 },
{ "transfers.mx", true },
{ "transferserver.at", true },
@@ -34586,7 +38912,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "transformations-magazin.com", true },
{ "transgendergedenkdag.nl", true },
{ "transgenderinfo.nl", true },
- { "transgendernetwerk.nl", true },
{ "transgendernetwerk.org", true },
{ "transglobaltravel.com", true },
{ "transhumanism.co.uk", true },
@@ -34595,86 +38920,97 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "transhumanist.net", true },
{ "transhumanist.org", true },
{ "transhumanist.uk", true },
+ { "transitmoe.io", true },
{ "transitownplaza.com", true },
{ "transitpoint.us", true },
{ "translate-polish.com", true },
{ "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 },
{ "trashwagon.club", true },
{ "traslocare.roma.it", true },
{ "traslochi-trasporti-facchinaggio.it", true },
{ "trasloco.milano.it", true },
- { "tratamentoparacelulite.biz", true },
{ "tratamentoparacelulite.net", true },
{ "trattamenti.biz", true },
{ "trattamento-cotto.it", true },
{ "trauer-beileid.de", true },
+ { "traumwerker.com", 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 },
- { "traveling-thailand.info", true },
+ { "traveleets.com", true },
+ { "travelemy.com", true },
+ { "travelfield.org", true },
+ { "travelholicworld.com", true },
+ { "travelinsurance.co.nz", true },
{ "travellers.dating", true },
- { "travelling.expert", true },
{ "travellovers.fr", true },
- { "travelmyth.ie", true },
{ "travelogue.jp", true },
{ "travelphoto.cc", true },
- { "travelpricecheck.com", true },
+ { "travelrefund.com", true },
{ "travelshack.com", true },
+ { "traverse.com.ua", true },
{ "travi.org", true },
{ "travis.nl", true },
{ "travisf.net", true },
{ "travisforte.io", true },
- { "travisfranck.com", true },
{ "travler.net", true },
{ "trbanka.com", true },
{ "trea98.org", true },
{ "treaslockbox.gov", true },
- { "treatment.org", true },
+ { "trebarov.cz", true },
+ { "trebek.club", 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 },
+ { "treinmagazine.be", true },
+ { "treinmagazine.nl", true },
{ "treinonerd.com", true },
{ "trek-planet.ru", true },
{ "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 },
+ { "trenztec.ml", true },
+ { "tresor.it", true },
{ "tresorit.com", true },
{ "tresorsecurity.com", true },
{ "tretail.net", true },
- { "tretkowski.de", true },
- { "trewe.eu", 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 },
@@ -34682,9 +39018,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trialandsuccess.nl", true },
{ "trialcentralnet.com", true },
{ "trianglecastles.co.uk", true },
- { "trianon.xyz", true },
+ { "trianglelawngames.com", 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 },
@@ -34694,98 +39033,108 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tributh.net", true },
{ "tributh.tk", true },
{ "tricefy4.com", true },
+ { "triciaree.com", true },
{ "trident-online.de", true },
- { "tridentflood.com", true },
{ "trietment.com", true },
{ "trigardon-rg.de", true },
{ "trik.es", false },
+ { "trilex.be", true },
+ { "trilithsolutions.com", true },
{ "trillian.im", true },
+ { "trilliumvacationrentals.ca", true },
{ "triluxds.com", true },
{ "trim-a-slab.com", true },
+ { "trim21.cn", true },
{ "trimage.org", true },
- { "trimarchimanuele.it", true },
{ "trinary.ca", true },
{ "trineco.com", true },
{ "trineco.fi", true },
{ "tringavillasyala.com", true },
- { "trink-und-partyspiele.de", true },
{ "trinnes.net", true },
{ "trio.online", true },
{ "triop.se", true },
{ "trior.net", true },
- { "triple-mmm.de", true },
{ "triplekeys.net", true },
{ "tripolistars.com", true },
+ { "tripp.xyz", true },
{ "tripseats.com", true },
{ "tripsinc.com", true },
{ "trisect.eu", true },
+ { "trish-mcevoy.ru", true },
+ { "trix360.com", true },
{ "trixexpressweb.nl", true },
{ "triz.co.uk", true },
- { "trizone.com.au", 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 },
- { "trollscave.xyz", true },
{ "trommelwirbel.com", true },
{ "tronatic-studio.com", true },
- { "trondelan.no", true },
+ { "tronmeo.com", 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 },
{ "trouweninoverijssel.nl", true },
{ "trovaprezzi.it", true },
{ "troyfawkes.com", true },
+ { "troyhunt.com", true },
{ "troyhuntsucks.com", true },
- { "troykelly.com", true },
- { "trpg.wiki", true },
{ "trs.tn", true },
{ "trtltravel.com", true },
{ "trtruijens.com", true },
{ "tru.ltd", true },
+ { "trucchibellezza.com", true },
{ "trucchibellezza.it", true },
{ "truckersmp.com", true },
{ "truckerswereld.nl", false },
- { "truckgpsreviews.com", true },
{ "truckstop-magazin.de", false },
+ { "trucosdescargas.com", true },
{ "true-itk.de", true },
+ { "trueachievements.com", true },
+ { "trueassignmenthelp.co.uk", true },
{ "trueblueessentials.com", true },
+ { "trueduality.net", true },
+ { "truehempculture.com.au", 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 },
+ { "trueweb.es", true },
{ "trufflemonkey.co.uk", true },
{ "truhlarstvi-fise.cz", true },
{ "trulance.com", true },
{ "truly-madly-happiness.de", true },
{ "trumanlibrary.org", true },
- { "trumeet.top", true },
+ { "truncus-encephali.co.uk", true },
{ "trunk-show.net", true },
{ "truong.fi", true },
{ "truqu.com", true },
{ "truserve.org", true },
{ "trusitio.com", true },
{ "trustcase.com", true },
+ { "trustedbody.com", true },
{ "trustednetworks.nl", true },
{ "trustfield.ch", true },
- { "trustocean.com", true },
{ "trustserv.de", true },
{ "truthmessages.pw", true },
{ "truvisory.com", true },
+ { "truyenfull.vn", true },
{ "trw-reseller.com", true },
{ "try2admin.pw", true },
{ "try2services.cm", true },
@@ -34799,19 +39148,20 @@ 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 },
{ "trzepak.pl", true },
- { "ts-publishers.com", true },
- { "ts3-dns.com", true },
- { "ts3-dns.net", false },
+ { "ts3-legenda.tech", true },
{ "tsa-sucks.com", true },
{ "tsab.moe", true },
+ { "tsai.com.de", true },
{ "tsatestprep.com", true },
{ "tschuermans.be", true },
- { "tscqmalawi.info", true },
+ { "tscinsurance.com", true },
{ "tsedryk.ca", true },
+ { "tsgkc1.com", true },
{ "tsicons.com", true },
{ "tsironis-olivenoel.de", true },
{ "tslcontractors.co.uk", true },
@@ -34819,7 +39169,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tsng.co.jp", true },
{ "tss.am", true },
{ "tstrubberstamp.com", false },
- { "tsu-ku-ro.com", true },
{ "tsugi.fr", true },
{ "tsukhani.com", true },
{ "tsuki.moe", true },
@@ -34828,18 +39177,21 @@ 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 },
{ "ttcf.ca", true },
{ "ttchan.org", true },
+ { "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 },
@@ -34849,37 +39201,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ttyystudio.com", true },
{ "tu-immoprojekt.at", true },
{ "tu6.pm", true },
- { "tuang-tuang.com", true },
+ { "tuasaude.com", true },
{ "tubanten.nl", true },
{ "tube.tools", true },
{ "tubejack.nl", true },
{ "tubepro.de", true },
{ "tubs4fun.co.uk", true },
{ "tubul.net", true },
+ { "tucepihotelalga.com", true },
{ "tucny.com", true },
{ "tucsonfcu.com", true },
{ "tucsonpcrepair.com", true },
{ "tucuxi.org", true },
{ "tudiennhakhoa.com", true },
{ "tudorproject.org", true },
+ { "tudulinna.ee", true },
+ { "tuev-hessen.de", true },
{ "tufashionista.com", true },
- { "tufilo.com", true },
- { "tugers.com", true },
+ { "tuffclassified.com", true },
+ { "tuffsruffs.se", true },
+ { "tuimprenta.com.ar", true },
{ "tuincentersnaet.be", true },
+ { "tuingereedschappen.net", false },
{ "tuitle.com", true },
- { "tulenceria.es", true },
- { "tumagiri.net", true },
+ { "tuja.hu", true },
+ { "tulumplayarealestate.com", true },
{ "tumblenfun.com", true },
{ "tumedico.es", true },
{ "tumelum.de", true },
- { "tumutanzi.com", true },
+ { "tunai.id", true },
{ "tunaut.com", true },
{ "tune-web.de", true },
{ "tunefish-entertainment.de", true },
{ "tuner.cloud", true },
{ "tuning-werkstatt-nuernberg.de", true },
{ "tuningblog.eu", false },
- { "tunity.be", true },
{ "tunnelbear.com", true },
{ "tunnelblick.net", true },
{ "tunnelventilation.pro", true },
@@ -34891,40 +39247,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tuppenceworth.ie", true },
{ "turbobit.ch", true },
{ "turdnagel.com", true },
+ { "turf-experts.com", true },
{ "turigum.com", true },
+ { "turismodubrovnik.com", true },
{ "turkish.dating", true },
+ { "turkiyen.com", true },
{ "turkrock.com", true },
+ { "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 },
{ "turtleduckstudios.com", true },
{ "turtlepwr.com", true },
{ "turunculevye.com", true },
{ "tuscanyleather.it", true },
+ { "tusi.co", false },
{ "tusksol.com", true },
{ "tutanota.com", true },
- { "tutiendaroja.com", true },
- { "tutiendarosa.com", true },
{ "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 },
{ "tuxgeo.com", false },
{ "tuxie.com", true },
{ "tuxlife.net", true },
+ { "tuxone.ch", true },
{ "tuxpeliculas.com", true },
+ { "tuxpi.com", true },
{ "tuxplace.nl", true },
{ "tuxtimo.me", true },
{ "tuxz.net", true },
@@ -34932,89 +39295,89 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tuzaijidi.com", true },
{ "tv-programme.be", true },
{ "tv-programme.com", true },
+ { "tvbaratas.net", true },
{ "tvbeugels.nl", false },
{ "tvcal.net", true },
{ "tvcmarketing.com", true },
{ "tver-msk.ru", true },
- { "tverdohleb.com", true },
{ "tverskaya-outlet.ru", true },
{ "tvhshop.be", true },
{ "tvipper.com", true },
+ { "tvlanguedoc.com", true },
{ "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 },
+ { "twdreview.com", true },
+ { "tweak.group", true },
{ "tweakers.com.au", true },
{ "tweakers.net", true },
- { "tweakersbadge.nl", true },
{ "tweaktown.com", true },
- { "twelve.rocks", true },
- { "twem.ddns.net", true },
+ { "tweedehandslaptophardenberg.nl", true },
+ { "tweetfinity.com", true },
+ { "tweetfinityapp.com", true },
{ "twenty71.com", true },
{ "twentymilliseconds.com", 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 },
{ "twlan.org", true },
- { "twocornertiming.com", true },
{ "twodadsgames.com", true },
{ "twofactorauth.org", true },
{ "twohuo.com", true },
- { "twojfaktum.pl", true },
- { "twolanedesign.com", true },
- { "twoo.com", true },
{ "twopif.net", true },
{ "tworaz.net", true },
- { "twun.io", true },
+ { "twtimmy.com", true },
+ { "twtremind.com", true },
{ "txcap.org", true },
{ "txdivorce.org", true },
{ "txi.su", true },
{ "txlrs.org", true },
{ "txm.pl", true },
+ { "txtecho.com", true },
+ { "txurologist.com", true },
{ "tyche.io", true },
{ "tycho.org", true },
{ "tycom.cz", true },
{ "tyil.nl", true },
{ "tyil.work", true },
- { "tyl.io", true },
+ { "tykeplay.com", true },
{ "tyler.rs", true },
{ "tylerdavies.net", true },
{ "tylerfreedman.com", true },
+ { "tylerharcourt.ca", true },
+ { "tylerharcourt.com", true },
+ { "tylerharcourt.org", true },
{ "tyleromeara.com", true },
{ "tylerschmidtke.com", true },
{ "typcn.com", true },
- { "type1joe.com", true },
- { "type1joe.net", true },
- { "type1joe.org", true },
{ "typeblog.net", true },
{ "typecodes.com", true },
- { "typehub.net", true },
{ "typeof.pw", true },
{ "typeonejoe.com", true },
- { "typeonejoe.net", true },
- { "typeonejoe.org", true },
{ "typeria.net", true },
{ "typewolf.com", true },
+ { "typewritten.net", true },
{ "typing.com", true },
{ "typist.tech", true },
{ "typo3.com", true },
@@ -35025,9 +39388,13 @@ 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-metals.com", true },
+ { "u-he.com", true },
+ { "u-martfoods.com", true },
+ { "u-tokyo.club", true },
{ "u.nu", true },
{ "u0010.com", true },
{ "u0020.com", true },
@@ -35045,19 +39412,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "u4mh-dev-portal.azurewebsites.net", true },
{ "u5.re", true },
{ "u5b.de", false },
+ { "u5eu.com", true },
{ "u5r.nl", true },
{ "ua.search.yahoo.com", false },
{ "uae-company-service.com", true },
{ "uangteman.com", true },
{ "uasmi.com", true },
{ "uat-activesg.com", true },
+ { "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 },
@@ -35067,39 +39436,60 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ubis.group", true },
{ "ublaboo.org", true },
{ "uborcare.com", true },
- { "ubun.net", true },
- { "uc.ac.id", true },
+ { "ubunlog.com", true },
+ { "ubuntu18.com", true },
{ "ucac.nz", false },
{ "ucangiller.com", true },
+ { "ucasa.org.au", true },
{ "ucch.be", true },
{ "ucfirst.nl", true },
{ "uchargeapp.com", true },
- { "uclanmasterplan.co.uk", true },
+ { "uclf.de", true },
{ "uclip.club", true },
{ "ucppe.org", true },
{ "ucrdatatool.gov", true },
{ "uctarna.online", true },
- { "udbhav.me", true },
+ { "udancy.com", true },
{ "uddi.ng", true },
{ "udo-luetkemeier.de", true },
{ "udomain.net", true },
{ "udp.sh", false },
+ { "udruga-point.hr", true },
+ { "udsocial.com", true },
{ "udvoukocek.eu", true },
+ { "ueba1085.jp", true },
{ "ueberdosis.io", true },
{ "ueberwachungspaket.at", true },
{ "uedaviolin.com", true },
- { "uel-thompson-okanagan.ca", true },
+ { "uefeng.com", true },
{ "ueni.com", true },
- { "uerdingen.info", true },
+ { "uevan.com", true },
{ "uex.im", true },
{ "ufanisi.mx", true },
{ "ufindme.at", true },
- { "ufo.moe", true },
+ { "ufocentre.com", true },
{ "ufplanets.com", true },
+ { "ugb-verlag.de", true },
{ "uggedal.com", true },
{ "ugx-mods.com", true },
+ { "uhappy1.com", true },
+ { "uhappy2.com", true },
+ { "uhappy22.com", true },
{ "uhappy30.com", true },
- { "uhasseltodin.be", true },
+ { "uhappy50.com", true },
+ { "uhappy57.com", true },
+ { "uhappy6.com", true },
+ { "uhappy69.com", true },
+ { "uhappy70.com", true },
+ { "uhappy72.com", true },
+ { "uhappy79.com", true },
+ { "uhappy80.com", true },
+ { "uhappy81.com", true },
+ { "uhappy82.com", true },
+ { "uhappy83.com", true },
+ { "uhappy85.com", true },
+ { "uhappy88.com", true },
+ { "uhappy90.com", true },
{ "uhc.gg", true },
{ "uhlhosting.ch", true },
{ "uhrenlux.de", true },
@@ -35111,6 +39501,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uiterwijk.org", true },
{ "uitgeverij-deviant.nl", true },
{ "ujob.com.cn", true },
+ { "ujvary.eu", true },
{ "uk.dating", true },
{ "uk.search.yahoo.com", false },
{ "ukbc.london", true },
@@ -35128,12 +39519,16 @@ 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 },
{ "uldsh.de", true },
{ "ulen.me", true },
+ { "ulfberht.fi", true },
+ { "ulgc.cz", true },
{ "uli-eckhardt.de", true },
+ { "ulitroyo.com", true },
{ "ullah.se", true },
{ "ulmer-schneesport.de", true },
{ "ulovdomov.cz", true },
@@ -35144,19 +39539,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ultimateanu.com", true },
{ "ultimatemafia.net", true },
{ "ultraseopro.com", true },
- { "ultrasite.tk", true },
- { "ultrasteam.net", true },
{ "ultratech.software", true },
{ "ultratechlp.com", true },
+ { "ultrautoparts.com.au", true },
{ "umanityracing.com", true },
- { "umassfive.coop", true },
+ { "umbertheprussianblue.com", true },
+ { "umbrellaye.online", true },
{ "umbricht.li", true },
- { "umbriel.fr", true },
{ "umenlisam.com", true },
{ "umisonoda.com", true },
- { "umkmjogja.com", true },
- { "umsolugar.com.br", true },
- { "umwandeln-online.de", true },
+ { "umsapi.com", true },
{ "un-framed.co.za", true },
{ "un-zero-un.fr", true },
{ "un.fo", true },
@@ -35170,6 +39562,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unblocked.bet", true },
{ "unblocked.bid", true },
{ "unblocked.cam", true },
+ { "unblocked.gdn", true },
{ "unblocked.ink", true },
{ "unblocked.lat", true },
{ "unblocked.live", true },
@@ -35178,9 +39571,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unblocked.pl", true },
{ "unblocked.pro", true },
{ "unblocked.pub", true },
- { "unblocked.sh", true },
{ "unblocked.uno", true },
- { "unblocked.vc", true },
{ "unblocked.vet", true },
{ "unblocked.vip", true },
{ "unblockweb.co", true },
@@ -35191,30 +39582,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uncensoreddns.dk", true },
{ "uncensoreddns.org", true },
{ "undeadbrains.de", true },
- { "undecidable.de", true },
{ "undeductive.media", true },
+ { "undef.in", false },
{ "underbridgeleisure.co.uk", true },
{ "undercovercondoms.co.uk", true },
- { "undercovercondoms.com", true },
{ "underfloorheating-uk.co.uk", true },
{ "underlined.fr", true },
{ "undernet.uy", false },
+ { "underskatten.tk", true },
{ "underwearoffer.com", true },
{ "undo.co.il", true },
- { "undone.me", true },
{ "unece-deta.eu", true },
{ "unedouleur.com", true },
{ "unefleur.be", true },
{ "unerosesurlalune.fr", true },
{ "unexpected.nu", true },
+ { "unfallrechtler.de", true },
+ { "unfc.nl", true },
{ "unfettered.net", false },
- { "unfuddle.cn", true },
{ "unga.dk", true },
+ { "ungaeuropeer.se", true },
+ { "ungeek.fr", true },
{ "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 },
@@ -35225,7 +39617,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unicefkartkidlafirm.pl", true },
{ "unicefkepeslapok.hu", true },
{ "unicefvoscilnice.si", true },
+ { "unicioushop.com", true },
{ "unicolabo.jp", true },
+ { "unicorn-systems.net", true },
{ "unicorn.melbourne", true },
{ "unicorntooling.eu", true },
{ "unicredit.ba", true },
@@ -35238,13 +39632,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uniekglas.nl", true },
{ "unifei.edu.br", true },
{ "uniform-agri.com", true },
- { "uniformebateriasheliar.com.br", true },
+ { "unijob.com.br", true },
{ "unikoingold.com", true },
- { "unikrn.com", true },
+ { "unikrn.space", true },
{ "unila.edu.br", true },
- { "uninet.cf", true },
- { "uniojeda.ml", true },
+ { "unimbalr.com", true },
+ { "unioils.la", true },
{ "unionplat.ru", true },
+ { "unionstreetskateboards.com", true },
+ { "uniontestprep.com", true },
{ "unipig.de", true },
{ "uniprimebr.com.br", false },
{ "uniq.site", true },
@@ -35255,6 +39651,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unit7jazz.com", true },
{ "unit7jazz.org", true },
{ "unite-ka.de", true },
+ { "uniteasia.org", true },
{ "united-coders.com", true },
{ "united-schools.net", true },
{ "united.com", false },
@@ -35265,29 +39662,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unitel2000.de", true },
{ "unityconsciousnessbooks.com", true },
{ "univercite.ch", true },
- { "univeril.com", true },
+ { "univeril.com", false },
{ "universal-happiness.com", true },
+ { "universal.at", true },
{ "universalcarremote.com", true },
{ "universalpaymentgateway.com", true },
{ "universeinform.com", true },
- { "universogay.com", true },
+ { "universidadvg.edu.mx", true },
{ "univitale.fr", true },
{ "unix.se", true },
{ "unixadm.org", true },
- { "unixapp.ml", true },
{ "unixattic.com", true },
{ "unixforum.org", true },
- { "unixfox.eu", true },
{ "unixtime.date", true },
{ "unkrn.com", true },
{ "unlax.com", true },
- { "unleash.pw", true },
{ "unli.xyz", true },
{ "unlocken.nl", true },
{ "unlocktalent.gov", true },
- { "unlogis.ch", true },
- { "unmanaged.space", true },
{ "unmarkdocs.co", true },
+ { "unmonito.red", true },
{ "unn-edu.info", true },
{ "uno-pizza.ru", true },
{ "uno.fi", true },
@@ -35295,13 +39689,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -35312,26 +39703,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unsourirealecole.fr", true },
{ "unstablewormhole.ltd", true },
{ "unstamps.org", true },
+ { "unstoppableunits.com", true },
{ "unsuspicious.click", true },
{ "unterfrankenclan.de", true },
{ "unterhaltungsbox.com", true },
{ "unternehmer-radio.de", true },
+ { "unternehmerrat-hagen.de", true },
{ "unterschicht.tv", true },
{ "untethereddog.com", true },
{ "unun.fi", true },
{ "unusualhatclub.com", true },
- { "unveiledgnosis.com", true },
- { "unworthy.ml", true },
{ "unx.dk", true },
{ "unxicdellum.cat", true },
- { "upandclear.org", true },
+ { "uotomizu.com", true },
+ { "upakweship.com", true },
+ { "upandrunningtutorials.com", true },
{ "upay.ru", true },
+ { "upbad.com", true },
{ "upbeatrobot.com", true },
{ "upbeatrobot.eu", true },
+ { "upcambio.com", true },
{ "upd.jp", true },
+ { "upengo.com", true },
{ "upgamerengine.com", true },
{ "upgamerengine.com.br", true },
{ "upgamerengine.net", true },
+ { "upgauged.com", true },
+ { "upholsterydesign.com.au", true },
{ "upitnik.rs", true },
{ "uplaqui.com.br", true },
{ "uplinklabs.net", true },
@@ -35340,71 +39738,82 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uploadbeta.com", true },
{ "uplr.it", true },
{ "upnext.io", true },
+ { "upnorthproperty.com", true },
{ "upperbeaconsfield.org.au", true },
{ "upperroommission.ca", true },
{ "upplevelse.com", true },
- { "upr-info.org", true },
{ "upr.com.ua", true },
+ { "uprint.it", true },
+ { "uprospr.com", true },
{ "uprouteyou.com", true },
{ "upsettunnel.com", true },
{ "upsiteseo.com", true },
+ { "uptechbrasil.com.br", true },
{ "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 },
+ { "upturn.org", true },
{ "upundit.com", true },
{ "upwork.com", true },
+ { "upyourfinances.com", true },
{ "ur.nl", true },
{ "ur2.pw", true },
{ "uradisam.rs", true },
+ { "uraimo.com", true },
{ "urbackups.com", true },
{ "urbalex.ch", true },
{ "urban-culture.fr", true },
- { "urban-karuizawa.co.jp", true },
{ "urban.melbourne", true },
{ "urbancreators.dk", true },
+ { "urbandance.club", true },
{ "urbanesecurity.com", true },
- { "urbanfi.sh", true },
{ "urbanguerillas.de", true },
{ "urbanhotbed.eu", true },
{ "urbanietz-immobilien.de", true },
{ "urbanmelbourne.info", true },
{ "urbannewsservice.com", true },
{ "urbansparrow.in", true },
- { "urbanstylestaging.com", true },
{ "urbansurvival.com", true },
{ "urbanwaters.gov", false },
{ "urbanwildlifealliance.org", false },
+ { "urbanxdevelopment.com", true },
{ "urbexdk.nl", true },
+ { "urbizoroofing.com", true },
{ "urcentral.com", true },
{ "urcentral.net", true },
{ "urcentral.nl", true },
{ "ureka.org", true },
- { "urgences-valais.ch", true },
+ { "urep.us", true },
{ "urinedrugtesthq.com", true },
+ { "uriport.com", true },
+ { "uriports.com", true },
{ "uripura.de", true },
{ "urist1011.ru", true },
- { "url.cab", true },
{ "url.fi", true },
{ "url.fm", true },
- { "url.rw", true },
+ { "url.rw", false },
{ "url0.eu", true },
+ { "urlakite.com", true },
{ "urlaub-busreisen.de", true },
{ "urlaub-leitner.at", true },
+ { "urlgot.com", true },
{ "urlscan.io", true },
{ "urltell.com", true },
{ "urltodomain.com", true },
+ { "urnes.org", true },
{ "urown.net", true },
{ "ursa-minor-beta.org", true },
{ "ursae.co", true },
{ "urspringer.de", true },
{ "ursuslibris.hu", true },
{ "urth.org", true },
+ { "uruguay-experience.com", true },
{ "urukproject.org", true },
{ "usa-greencard.eu", true },
{ "usaa.com", false },
@@ -35414,24 +39823,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "usaestaonline.com", true },
{ "usage.be", true },
{ "usagexchange.com", true },
+ { "usagm.gov", true },
{ "usairlines.us", true },
{ "usajobs.com", true },
{ "usajobs.gov", true },
{ "usakitchensandflooring.com", true },
{ "usalearning.gov", true },
+ { "usaseanconnect.gov", true },
{ "usastaffing.gov", true },
+ { "usb-lock-rp.com", true },
{ "usbcraft.com", true },
{ "usbevents.co.uk", true },
{ "usbr.gov", true },
{ "uscloud.nl", true },
+ { "uscurrency.gov", true },
{ "usd.de", true },
+ { "usdoj.gov", true },
{ "usds.gov", true },
{ "use.be", true },
- { "use.ci", true },
{ "usebean.com", true },
- { "usedoor.jp", true },
- { "usedu.us", true },
+ { "usemusic.com.br", true },
{ "user-re.com", true },
+ { "userra.gov", true },
{ "usetypo3.com", true },
{ "useyourloaf.com", true },
{ "usgande.com", true },
@@ -35440,29 +39853,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "usimmigration.us", true },
{ "usipvd.ch", true },
{ "usitcolours.bg", true },
- { "usleep.net", true },
{ "usmint.gov", true },
{ "usninosnikrcni.eu", true },
{ "usnti.com", true },
- { "usparklodging.com", true },
+ { "usphs.gov", true },
{ "uspsoig.gov", true },
- { "ussm.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 },
- { "utahfireinfo.gov", true },
+ { "utahblackplate.com", true },
+ { "utahblackplates.com", true },
+ { "utahcanyons.org", true },
{ "utahlocal.net", true },
+ { "utahtravelcenter.com", true },
{ "utazas-nyaralas.info", true },
+ { "utazine.com", true },
{ "utcast-mate.com", true },
- { "utdscanner.com", true },
- { "utdsgda.com", true },
- { "uteam.it", true },
{ "utepils.de", true },
{ "utgifter.no", true },
{ "utilia.tools", true },
@@ -35475,40 +39892,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "utilitronium.com", true },
{ "utilityapi.com", true },
{ "utilityreport.eu", true },
- { "utitreatment.com", true },
{ "utonia.ch", true },
- { "utopialgb.org.uk", true },
{ "utopicestudios.com", true },
{ "utox.io", true },
+ { "utterberry.io", true },
{ "utugnn.ru", true },
{ "utw.me", true },
{ "utwente.io", true },
{ "utzon.net", true },
{ "uuit.nl", true },
+ { "uv.uy", true },
{ "uvenuse.cz", true },
{ "uvocorp.com", true },
- { "uvolejniku.cz", true },
+ { "uw1008.com", true },
{ "uw2333.com", true },
{ "uwac.co.uk", false },
- { "uwekoetter.com", true },
+ { "uwat.cf", true },
{ "uwelilienthal.de", true },
+ { "uwsoftware.be", true },
{ "uwvloereruit.nl", true },
+ { "uxp-it.nl", true },
+ { "uxteam.com", true },
{ "uxtechnologist.com", true },
{ "uy.search.yahoo.com", false },
{ "uz.search.yahoo.com", false },
+ { "uzayliyiz.biz", true },
{ "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 },
{ "v-u-z.ru", true },
- { "v1sit0r.ru", true },
{ "v2bv.net", true },
{ "v2bv.win", true },
{ "v2cn.win", true },
{ "v2ex.com", true },
+ { "v2ray6.com", true },
+ { "v2ray66.com", true },
+ { "v2ray666.com", true },
+ { "v4s.ro", true },
{ "va-reitartikel.com", true },
{ "va.gov", true },
+ { "va1der.ca", true },
{ "vacationsbyvip.com", true },
{ "vaccines.gov", true },
{ "vacuumpump.co.id", true },
@@ -35530,14 +39958,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vakantiedetective.nl", true },
{ "vakantienet.nl", true },
{ "vakuutuskanava.fi", true },
- { "val-sec.com", 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-ochs.de", true },
+ { "valentin-dederer.de", true },
{ "valentin-sundermann.de", true },
+ { "valentin.ml", true },
{ "valentinberclaz.com", true },
{ "valentineapparel.com", true },
{ "valentineforpresident.com", true },
@@ -35554,27 +39984,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "valika.ee", true },
{ "valis.sx", true },
{ "valkohattu.fi", true },
- { "valkor.pro", true },
+ { "valkova.net", true },
{ "vallei-veluwe.nl", true },
{ "valleyautofair.com", true },
{ "valleyautoloan.com", true },
{ "valleycode.net", true },
- { "valleyshop.ca", true },
+ { "valleydalecottage.com.au", true },
{ "vallutaja.eu", true },
{ "valokuva-albumi.fi", true },
{ "valordolarblue.com.ar", true },
{ "valorem-tax.ch", true },
{ "valoremtax.ch", true },
{ "valoremtax.com", true },
- { "valshamar.is", true },
+ { "valorin.net", true },
+ { "valorizofficial.com", true },
{ "valsk.is", false },
{ "valskis.lt", true },
{ "valtlai.fi", true },
+ { "valtoaho.com", true },
+ { "valtool.uk", true },
{ "valudo.st", true },
+ { "valuechain.me", true },
+ { "valuemyhome.co.uk", true },
+ { "valuemyhome.uk", true },
{ "valueng.com", true },
+ { "valueofblog.com", true },
{ "valueseed.net", true },
+ { "valuuttamuunnin.com", true },
+ { "vampire142.fr", true },
{ "vampyrium.net", false },
{ "van11y.net", true },
+ { "vanagamsanthai.com", true },
+ { "vanagamseeds.com", true },
{ "vanbinnenuit.nl", true },
{ "vancityconcerts.com", true },
{ "vancouvercosmeticsurgery.ca", true },
@@ -35584,94 +40025,104 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vandeput.be", true },
{ "vanderbiltcisa.org", true },
{ "vanderkrieken.org", true },
+ { "vanderkroon.nl", true },
{ "vandermeer.frl", true },
{ "vanderrijt.nl", false },
{ "vanderziel.org", true },
+ { "vandorenscholars.org", true },
+ { "vandyhacks.org", true },
{ "vaneigenkweek.be", true },
- { "vanetv.com", true },
- { "vangeluwedeberlaere.be", true },
- { "vanhaos.com", true },
+ { "vanessarivas.com", true },
+ { "vaneurology.com", true },
+ { "vangoghcoaching.nl", true },
{ "vanhoudt-usedcars.be", true },
{ "vanhoutte.be", false },
{ "vanhove.biz", true },
+ { "vanlent.net", true },
{ "vanmalland.com", true },
{ "vannaos.com", true },
{ "vannaos.net", true },
- { "vanohaker.ru", true },
+ { "vanouwerkerk.net", true },
{ "vantagepointpreneed.com", true },
{ "vante.me", true },
{ "vantien.com", true },
{ "vantru.is", true },
{ "vanvoro.us", false },
{ "vanwunnik.com", true },
- { "vapecom-shop.com", true },
{ "vapecrunch.com", true },
- { "vapehour.com", true },
{ "vapensiero.co.uk", true },
{ "vaperolles.ch", true },
{ "vapesense.co.uk", true },
+ { "vapesupplies.com.au", true },
+ { "vapex.pl", true },
{ "vaphone.co", true },
+ { "vapingdaily.com", true },
{ "vapor.cloud", false },
{ "vapordepot.jp", true },
+ { "varaeventos.com", true },
+ { "varalwamp.com", true },
{ "varcare.jp", true },
{ "varden.info", true },
{ "vareillefoundation.fr", true },
{ "vareillefoundation.org", true },
{ "varghese.de", true },
- { "variable.agency", true },
+ { "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 },
{ "varztupasaulis.net", true },
- { "vase-eroticke-povidky.cz", true },
+ { "vascomm.co.id", true },
{ "vasel.de", true },
{ "vasel.eu", true },
{ "vashel.us", true },
{ "vasileruscior.ro", true },
{ "vasilikieleftheriou.com", true },
{ "vaskulitis-info.de", true },
+ { "vasp.group", true },
{ "vasports.com.au", true },
- { "vastgoedcultuurfonds.nl", true },
+ { "vastenotaris.nl", true },
{ "vasyharan.com", true },
{ "vat-eu.com", true },
{ "vat.direct", true },
{ "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 },
- { "vaultproject.io", true },
+ { "vault81.de", true },
+ { "vaultproject.io", false },
{ "vaur.fr", true },
{ "vavel.com", true },
- { "vavouchers.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 },
{ "vb.media", true },
{ "vbazile.com", true },
{ "vbcdn.com", true },
- { "vbestreviews.com", true },
{ "vbh2o.com", true },
+ { "vbql.me", true },
{ "vbwinery.com", true },
{ "vc.gg", true },
{ "vcam.org", true },
{ "vccmurah.net", true },
- { "vcdn.xyz", true },
{ "vcelin-na-doliku.cz", true },
{ "vcf.gov", true },
{ "vcientertainment.com", false },
@@ -35681,6 +40132,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vcsjones.codes", true },
{ "vcsjones.com", true },
{ "vcti.cloud", true },
+ { "vctor.net", true },
{ "vd42.net", true },
{ "vda.li", true },
{ "vdanker.net", true },
@@ -35689,8 +40141,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vdemuzere.be", true },
{ "vdesc.com", true },
{ "vdisk24.de", true },
+ { "vdlp.nl", true },
{ "vdmeij.com", true },
- { "vdownloader.com", true },
{ "vdzwan.net", true },
{ "ve.search.yahoo.com", false },
{ "ve3oat.ca", true },
@@ -35704,29 +40156,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vedma-praktik.com", true },
{ "veg-leiden.nl", true },
{ "vegalitarian.org", true },
- { "vegane-proteine.com", true },
{ "veganforum.org", true },
- { "vegangaymer.blog", true },
{ "veganism.co.uk", true },
{ "veganism.com", true },
- { "vegasdocs.com", true },
+ { "veganmasterrace.com", true },
+ { "vegasluxuryestates.com", true },
+ { "vegekoszyk.pl", true },
{ "vegepa.com", true },
{ "vegetariantokyo.net", true },
+ { "veggie-einhorn.de", 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 },
+ { "veloroute.hamburg", true },
{ "venalytics.com", true },
{ "venclave.com", true },
+ { "vendermicasarapido.com.mx", true },
{ "vendigital.com", true },
{ "vendorconnect.nyc", true },
+ { "vendreacheter.be", true },
+ { "vendreacheter.net", true },
{ "vendserve.eu", true },
+ { "veneerssandiego.com", true },
{ "venenum.org", true },
{ "venev.name", true },
- { "venirextra.com", true },
{ "venje.pro", true },
{ "ventajasdesventajas.com", true },
{ "ventesprivees-fr.com", true },
@@ -35735,11 +40193,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ventriloservers.biz", true },
{ "venturavwparts.com", true },
{ "venturebanners.co.uk", true },
- { "venturedisplay.co.uk", true },
{ "venturum.com", true },
{ "venturum.de", true },
{ "venturum.eu", true },
{ "venturum.net", true },
+ { "ventzke.com", true },
+ { "venuedriver.com", true },
{ "ver.ma", true },
{ "vera.bg", true },
{ "veramagazine.jp", true },
@@ -35747,37 +40206,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verberne.nu", true },
{ "verbier-lechable.com", true },
{ "verbierfestival.com", true },
+ { "verboom.co.nz", true },
{ "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 },
- { "vergeaccessories.com", true },
+ { "verge.capital", true },
{ "vergelijksimonly.nl", true },
- { "verhovs.ky", true },
+ { "verhovs.ky", false },
+ { "veri2.com", true },
{ "verifalia.com", true },
+ { "verificaprezzi.it", true },
+ { "verifiedjoseph.com", true },
+ { "verifiny.com", true },
{ "verifyos.com", true },
{ "verifyyourip.com", true },
{ "veriny.tf", true },
- { "veriomed.com", true },
+ { "verios.com.br", true },
{ "veritafineviolins.com", true },
{ "veritas-data.de", true },
+ { "veritasinvestmentwealth.com", true },
{ "verizonconnect.com", false },
{ "verizonguidelines.com", true },
+ { "verkeersschoolrichardschut.nl", true },
{ "verliebt-in-bw.de", true },
{ "verliebt-in-niedersachsen.de", true },
- { "verliefde-jongens.nl", true },
{ "vermeerdealers.com", true },
{ "vermiliontaxiservice.com", true },
- { "vermogeninkaart.nl", true },
{ "vermuetje.nl", true },
{ "vernaeve-usedcars.be", true },
{ "vernonatvclub.ca", true },
{ "vernonchan.com", true },
{ "vernonfigureskatingclub.com", true },
{ "vernonfilmsociety.bc.ca", true },
- { "vernonhouseofhope.com", true },
{ "vernonsecureselfstorage.ca", true },
{ "vernonspeedskatingclub.com", true },
{ "vernonwintercarnival.com", true },
@@ -35787,127 +40251,146 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verry.org", true },
{ "vers.one", true },
{ "versagercloud.de", true },
+ { "versalhost.com", true },
+ { "versalhost.nl", true },
{ "versbesteld.nl", true },
- { "versbeton.nl", true },
+ { "verschurendegroot.nl", true },
+ { "verses.space", true },
{ "versicherungen-werner-hahn.de", true },
{ "versicherungskontor.net", true },
+ { "versolslapeyre.fr", true },
{ "verspai.de", true },
{ "verstraetenusedcars.be", true },
{ "vertebrates.com", true },
{ "verteilergetriebe.info", true },
+ { "verticrew.com", true },
{ "vertigo.name", false },
{ "vertner.net", true },
{ "vertrieb-strategie.de", true },
+ { "verustracking.com", true },
+ { "verwandlung.org", true },
{ "verwayen.com", true },
{ "very-kids.fr", true },
{ "veryapt.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 },
+ { "vet-planet.com", true },
+ { "vetbits.com", false },
+ { "vetergysurveys.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 },
- { "vforvendetta.science", true },
{ "vgchat.us", true },
{ "vgerak.com", true },
{ "vgolos.zt.ua", true },
+ { "vgorcum.com", true },
{ "vgropp.de", true },
{ "vh.net", true },
+ { "vhrca.com", true },
+ { "vhs-bad-wurzach.de", true },
{ "vhummel.nl", true },
{ "vi.photo", true },
{ "via-shire-krug.ru", true },
+ { "via.blog.br", true },
+ { "viablog.com.br", true },
{ "viacdn.org", true },
{ "viafinance.cz", false },
{ "viaggio-in-cina.it", true },
- { "viagra-kaufen.biz", true },
- { "viagraonlinebestellen.org", true },
+ { "viagusto.pl", true },
{ "viajandoporelmundo.com.ar", true },
+ { "viajaramsterdam.com", true },
{ "viaje-a-china.com", true },
- { "vialibido.com.br", 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 },
{ "vicicode.com", true },
- { "viciousflora.com", true },
{ "vicjuwelen-annelore.be", true },
+ { "victora.com", true },
+ { "victorblomberg.se", true },
{ "victorcanera.com", true },
{ "victordiaz.me", true },
- { "victoreriksson.ch", true },
- { "victoreriksson.co", true },
- { "victoreriksson.com", true },
- { "victoreriksson.eu", true },
- { "victoreriksson.info", true },
- { "victoreriksson.me", true },
- { "victoreriksson.net", true },
- { "victoreriksson.nu", true },
- { "victoreriksson.org", true },
- { "victoreriksson.se", true },
- { "victoreriksson.us", true },
{ "victorgbustamante.com", true },
{ "victorhawk.com", true },
{ "victoriaartist.ru", true },
{ "victoriastudio.ru", true },
- { "victoriaville.ca", true },
{ "victorjacobs.com", true },
{ "victornet.de", true },
- { "victornilsson.pw", true },
{ "victoroilpress.com", true },
+ { "victorricemill.com", true },
{ "victory.radio", true },
+ { "victoryalliance.us", true },
{ "victorzambrano.com", true },
{ "vicyu.com", true },
{ "vid-immobilien.de", true },
{ "vida-it.com", true },
{ "vida.es", true },
{ "vidadu.com", true },
+ { "vidarity.com", true },
{ "vidbooster.com", true },
{ "vide-greniers.org", false },
+ { "videobrochuresmarketing.com", true },
{ "videogamesartwork.com", true },
+ { "videojuegos.com", true },
{ "videokaufmann.at", true },
{ "videomail.io", true },
{ "videosdiversosdatv.com", true },
{ "videoseyredin.net", true },
+ { "videosparatodos.com", true },
{ "videospornogratis.pt", true },
{ "videosqr.com", true },
{ "videov.tk", true },
{ "vidister.de", true },
- { "vidkovaomara.si", true },
- { "vieaw.com", true },
+ { "vidracariaespelhosbh.com.br", true },
{ "vieclam24h.vn", false },
{ "viekelis.lt", false },
{ "viemeister.com", true },
{ "viemontante.be", true },
- { "vientos.coop", true },
+ { "vientos.coop", false },
{ "viepixel.at", true },
{ "vierdaagsehotel.nl", true },
{ "vierna.ga", true },
{ "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 },
+ { "vietplan.vn", 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 },
@@ -35921,95 +40404,110 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vijverbenodigdheden.nl", true },
{ "vik.im", true },
{ "vikalbino.com.br", true },
+ { "vikalpgupta.com", true },
{ "vikapaula.com", true },
{ "vikashkumar.me", true },
+ { "vikaviktoria.com", true },
{ "viking-style.ru", true },
{ "vikings.net", true },
- { "vikodek.com", true },
+ { "viktorbarzin.me", true },
{ "viktorprevaric.eu", true },
- { "vilabiamodas.com.br", true },
+ { "vila-eden.cz", true },
+ { "vilaydin.com", true },
{ "viljatori.fi", true },
- { "villa-anna-cilento.de", true },
- { "villa-bellarte.de", true },
+ { "villa-eden.cz", true },
{ "villa-gockel.de", true },
+ { "villa-romantica-zillertal.at", true },
{ "villafiore.com.br", true },
{ "villageunique.com.br", true },
{ "villagockel.de", true },
- { "villalaskowa.pl", true },
{ "villamariaamalfi.it", true },
{ "villasfinistere.fr", true },
{ "villasforsale-bali.com", true },
{ "villasoasissanur.com", true },
{ "villehardouin.fr", true },
{ "villek.fi", true },
+ { "villekaaria.eu", true },
{ "villenavedornon.fr", true },
{ "villenvinkit.com", true },
{ "villerez.fr", true },
{ "villesalonen.fi", true },
+ { "villu.ga", true },
{ "viltsu.net", true },
+ { "vim.cx", true },
{ "vima.ch", true },
{ "vimeo.com", true },
{ "vinagro.sk", true },
+ { "vinahost.vn", true },
{ "vinarstvimodryhrozen.cz", true },
{ "vincentcox.com", false },
+ { "vincentiliano.tk", true },
+ { "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 },
+ { "vingt.me", true },
{ "vinilosdecorativos.net", true },
+ { "vinistas.com", true },
{ "vinner.com.au", true },
- { "vinnie.gq", true },
- { "vinogradovka.com", true },
+ { "vinnyandchristina.com", true },
+ { "vinnyvidivici.com", true },
+ { "vinokurov.tk", true },
{ "vinolli.de", true },
{ "vinovum.net", true },
+ { "vinsation.com", true },
{ "vinsetchampagne.fr", true },
{ "vintagebandfestival.org", true },
{ "vintagecaskandbarrel.com", true },
{ "vintagejeeps.net", true },
+ { "vintagemakeupguide.com", true },
{ "vintageportgifts.co.uk", true },
{ "vintagesouthernpicks.com", true },
{ "vintagetrailerbuyers.com", true },
{ "vintazh.net", true },
- { "vinticom.ch", false },
- { "vintock.com", true },
+ { "vinticom.ch", true },
{ "vinyculture.com", true },
{ "vinzite.com", true },
- { "violetraven.co.uk", true },
+ { "violauotila.fi", true },
{ "violin4fun.nl", true },
{ "vionicbeach.com", true },
+ { "vionicshoes.co.uk", true },
{ "vionicshoes.com", true },
- { "vioye.com", true },
- { "vip4553.com", true },
{ "vip8522.com", true },
- { "vipesball.cc", true },
- { "vipesball.info", true },
- { "vipesball.me", true },
- { "vipesball.net", true },
{ "vipi.es", true },
{ "viptamin.eu", true },
{ "viptamol.com", true },
+ { "viqo.pl", true },
{ "vir-tec.eu", true },
{ "vir2.me", true },
{ "viral32111.com", true },
- { "viralboombox.xyz", true },
{ "viralpop.it", true },
{ "viralsouls.in", true },
+ { "viralsv.com", true },
{ "virgopolymer.com", true },
- { "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 },
@@ -36017,18 +40515,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vishwashantiyoga.com", true },
{ "visibox.nl", true },
{ "visikom.de", true },
- { "visioflux-premium.com", true },
{ "visionarymedia.nl", true },
- { "visiondigitalsog.com", true },
+ { "visiondirectionaldrilling.com", true },
{ "visionexpress.com", true },
{ "visionexpress.ie", true },
{ "visionexpresscareers.com", true },
{ "visionless.me", false },
{ "visionnissancanandaiguaparts.com", true },
- { "visistruct.com", true },
{ "visit-montenegro.com", true },
+ { "visitbeulah.com", true },
{ "visitcambridgeshirefens.org", true },
{ "visitkangaroovalley.com.au", true },
+ { "visitmaine.com", true },
{ "visor.ph", true },
{ "vistaalmar.es", true },
{ "vistacampus.gov", true },
@@ -36037,6 +40535,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 },
@@ -36044,32 +40543,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "visualmasters.nl", true },
{ "visudira.com", true },
{ "vitahook.pw", true },
- { "vital-tel.co.uk", true },
- { "vitalamin.com", true },
- { "vitalamin.de", true },
+ { "vitalia.cz", true },
{ "vitalismaatjes.nl", true },
{ "vitalityscience.com", true },
+ { "vitalium-therme.de", true },
{ "vitalthrills.com", true },
{ "vitalware.com", true },
{ "vitalyzhukphoto.com", true },
- { "vitamaxxi.com.br", true },
- { "vitamineproteine.com", true },
{ "vitaminler.com", true },
+ { "vitapingu.de", true },
{ "vitastic.nl", true },
+ { "vitavie.nl", true },
{ "viteoscrm.ch", true },
{ "vitkausk.as", true },
{ "vitkutny.cz", true },
{ "vitoye.com", true },
{ "vitpeyr.com", true },
+ { "vitra-showrooms.co.uk", true },
{ "vitra-vcare.co.uk", true },
{ "vitrado.de", true },
{ "vitsoft.by", true },
+ { "viva2000.com", true },
{ "vivaldi-fr.com", true },
{ "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 },
@@ -36078,10 +40579,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vivirenelmundo.com", true },
{ "vivo.sx", true },
{ "vivoitaliankitchen.com", true },
- { "vivoseg.com", true },
+ { "vivy.com", true },
{ "vixrapedia.org", true },
{ "viyf.org", true },
- { "viza.io", true },
{ "vizards.cc", true },
{ "vize.ai", false },
{ "vizija-nepremicnine.si", true },
@@ -36096,10 +40596,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 },
@@ -36110,14 +40613,12 @@ 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 },
{ "vm-co.ch", true },
{ "vm0.eu", true },
{ "vmc.co.id", true },
- { "vmem.jp", false },
{ "vmgirls.com", true },
{ "vmhydro.ru", false },
{ "vmis.nl", true },
@@ -36128,36 +40629,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vn.search.yahoo.com", false },
{ "vncg.org", true },
{ "vnd.cloud", true },
- { "vndb.org", true },
{ "vnfs-team.com", true },
+ { "vnpay.vn", true },
+ { "vnpem.org", true },
{ "vnvisa.center", true },
{ "vnvisa.ru", true },
{ "vocaloid.my", true },
- { "vocalsynth.space", true },
{ "vocalviews.com", true },
+ { "vocescruzadasbcs.mx", 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-it.nl", true },
{ "void-zero.com", true },
{ "voidcore.org", true },
+ { "voidma.in", true },
{ "voidpay.com", true },
- { "voidpay.net", true },
- { "voidpay.org", true },
{ "voidptr.eu", true },
- { "voids.org", true },
- { "voidshift.com", 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 },
{ "volcanconcretos.com", true },
{ "volcano-kazan.ru", true },
@@ -36171,27 +40672,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "volker-gropp.de", true },
{ "volkergropp.de", true },
{ "volkerwesselstransfer.nl", false },
- { "volkerwesselswave.nl", false },
{ "volksvorschlagpmar.ch", true },
- { "volkswurst.de", true },
{ "vollans.id.au", true },
+ { "vollmondstollen.de", true },
{ "voloevents.com", true },
+ { "volqanic.com", true },
{ "volta.io", true },
+ { "voltahurt.pl", true },
{ "volto.io", true },
{ "volunteeringmatters.org.uk", true },
- { "volvipress.gr", 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 },
+ { "vonterra.us", true },
{ "voodoochile.at", true },
{ "vop.li", true },
- { "vorkbaard.nl", true },
{ "vorlage-musterbriefe.de", true },
{ "vorlage-mustervertrag.de", true },
{ "vorlagen-geburtstagsgruesse.de", true },
@@ -36201,109 +40698,125 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vorodevops.com", 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 },
+ { "voss-klinik.com", true },
{ "vosselaer.com", true },
{ "vossenack.nrw", true },
{ "vosser.de", true },
{ "vostronet.com", true },
{ "voter-info.uk", true },
- { "votercircle.com", true },
{ "votesandymurman.com", true },
{ "votocek.cz", true },
{ "votockova.cz", true },
{ "votoot.com", true },
- { "votre-site-internet.ch", true },
+ { "vouchinsurance.sg", true },
{ "vovladikavkaze.ru", true },
+ { "vowsy.club", true },
{ "voxfilmeonline.net", true },
{ "voxml.com", true },
{ "voxographe.com", false },
{ "voya.ga", true },
{ "voyage-martinique.fr", true },
{ "voyageforum.com", true },
+ { "voyageofyume.com", true },
{ "voyagesaufildespages.be", true },
{ "voyageschine.com", true },
{ "voyagesdetective.fr", true },
- { "vozami.com", true },
{ "vpc-display.com", true },
{ "vpn.black", true },
{ "vpn.ht", true },
+ { "vpnpro.com", true },
{ "vpnservice.nl", true },
+ { "vpntech.net", true },
+ { "vpsao.org", true },
{ "vpsboard.com", true },
{ "vpsdream.dk", true },
+ { "vpsou.com", true },
{ "vpsport.ch", true },
+ { "vpsproj.dynu.net", true },
{ "vpsvz.net", true },
{ "vrandopulo.ru", true },
- { "vranjske.co.rs", true },
{ "vrcholovka.cz", true },
+ { "vrcprofile.com", true },
{ "vreaulafacultate.ro", true },
{ "vreeman.com", true },
+ { "vretmaskin.se", true },
{ "vriesdonkow.be", true },
+ { "vrij-links.nl", true },
{ "vrijgezellen-feest.com", true },
{ "vrijgezellenfeestzwolle.com", true },
- { "vrlaid.com", false },
+ { "vrjetpackgame.com", true },
{ "vroedvrouwella.be", true },
- { "vrsgames.com.mx", true },
+ { "vroyaltours.com", true },
{ "vrsystem.com.br", true },
{ "vrtak-cz.net", true },
- { "vrtouring.org", true },
- { "vsamsonov.com", 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 },
+ { "vsl.de", true },
{ "vssnederland.nl", true },
{ "vstehn.ru", true },
{ "vsund.de", true },
{ "vsx.ch", true },
{ "vtaxi.se", true },
{ "vtipe-vylez.cz", true },
- { "vtuber-schedule.info", true },
+ { "vtt-hautsdefrance.fr", true },
+ { "vtuber.art", true },
{ "vuakhuyenmai.vn", true },
{ "vubey.yt", true },
{ "vuilelakens.be", true },
{ "vuljespaarpot.nl", true },
{ "vullriede-multimedia.de", true },
{ "vulndetect.com", true },
- { "vulndetect.org", true },
- { "vulnerabilities.io", true },
{ "vulnerability.ch", true },
{ "vulners.com", true },
{ "vulns.sexy", true },
{ "vulnscan.org", true },
{ "vulpine.club", true },
+ { "vulyk-medu.com.ua", true },
{ "vumetric.com", true },
+ { "vuojolahti.com", true },
{ "vuojolahti.fi", true },
{ "vuotila.eu", true },
{ "vuvanhon.com", true },
{ "vux.li", true },
{ "vuzi.fr", true },
+ { "vv1234.cn", true },
{ "vvactivia.nl", true },
{ "vvdbronckhorst.nl", true },
{ "vvoip.org.uk", true },
{ "vvw-8522.com", true },
- { "vw-touranclub.cz", true },
+ { "vvzero.cf", true },
+ { "vvzero.com", true },
+ { "vvzero.me", true },
{ "vwbusje.com", true },
+ { "vwfsrentacar.co.uk", true },
{ "vwhcare.com", true },
{ "vwittich.de", true },
+ { "vwo.com", true },
{ "vwsoft.de", true },
- { "vwt-event.nl", true },
- { "vww-8522.com", true },
{ "vx.hn", true },
- { "vxst.org", true },
{ "vxstream-sandbox.com", true },
{ "vybeministry.org", true },
{ "vyber-odhadce.cz", true },
{ "vyberodhadce.cz", true },
- { "vykup-car.ru", true },
{ "vyplnto.cz", true },
{ "vysko.cz", true },
{ "vyskocil.eu", true },
{ "vyvygen.org", true },
- { "vyzner.cz", true },
{ "vzce.cn", true },
{ "vzis.org", true },
{ "vztekloun.cz", true },
@@ -36311,63 +40824,64 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "w-spotlight.appspot.com", true },
{ "w-w-auto.de", true },
{ "w.wiki", true },
+ { "w1n73r.de", true },
{ "w2n.me", true },
{ "w3ctag.org", true },
{ "w3n.org", true },
- { "w4b.in", true },
+ { "w4.no", true },
{ "w4eg.de", true },
{ "w4nvu.org", true },
{ "w50.co.uk", true },
{ "w5gfe.org", true },
{ "w7k.de", true },
- { "w84.it", true },
- { "wa-stromerzeuger.de", true },
+ { "w889-line.com", true },
+ { "w889-line.net", true },
+ { "w889889.com", true },
+ { "w889889.net", true },
+ { "w88info.com", true },
+ { "w88info.win", true },
+ { "w88xinxi.com", true },
+ { "w8less.nl", true },
+ { "w95.pw", true },
+ { "wa-stromerzeuger.de", false },
+ { "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 },
- { "waelti.xxx", true },
{ "waf.ninja", true },
{ "waf.sexy", true },
- { "wafa4hw.com", true },
- { "wafairhaven.com.au", true },
{ "wafelland.be", true },
{ "waffle.at", false },
{ "wafuton.com", true },
{ "wagyu-bader.de", true },
+ { "wahhoi.net", true },
{ "wahidhasan.com", true },
+ { "wahlen-bad-wurzach.de", true },
{ "wahlman.org", true },
{ "wahrnehmungswelt.de", true },
{ "wahrnehmungswelten.de", true },
- { "wai-in.com", 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", true },
+ { "wains.be", false },
{ "wait.jp", true },
{ "waiterwheels.com", true },
{ "waits.io", true },
- { "waixingrenfuli.vip", 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 },
+ { "waldgourmet.de", true },
{ "waldvogel.family", true },
{ "walent.in", true },
{ "walentin.co", true },
@@ -36376,6 +40890,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "walkhighlandsandislands.com", true },
{ "walkingrehabilitation.com", true },
{ "walksedona.com", true },
+ { "walksfourpaws.co.uk", true },
{ "wallabet.fr", true },
{ "wallabies.org", true },
{ "wallace-group.net", true },
@@ -36385,12 +40900,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wallethub.com", false },
{ "walletnames.com", true },
{ "wallinger-online.at", true },
- { "wallingford.cc", true },
{ "wallpapers.pub", true },
{ "wallpaperup.com", true },
{ "walls.de", true },
{ "walls.io", true },
+ { "wallsauce.com", true },
{ "walltime.info", true },
+ { "wallumai.com.au", true },
{ "wallysmasterblaster.com.au", true },
{ "walnutgaming.com", true },
{ "walnutis.net", true },
@@ -36401,30 +40917,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "walshbanks.com", true },
{ "waltellis.com", true },
{ "walter.lc", true },
+ { "waltervictor.com", true },
{ "waltzmanplasticsurgery.com", true },
{ "walvi.nl", true },
+ { "wan.pp.ua", false },
{ "wanda.ch", true },
{ "wandelreizen.eu", true },
{ "wander.al", true },
- { "wandercue.com", true },
{ "wandervoll.ch", true },
{ "wanderzoom.co", true },
+ { "wandystan.eu", true },
{ "wane.co", true },
- { "wangjun.me", true },
- { "wangqiliang.cn", false },
- { "wangqiliang.com", false },
- { "wangqiliang.org", true },
+ { "wangbangyu.cf", true },
+ { "wangbangyu.ga", true },
+ { "wangbangyu.gq", true },
+ { "wangbangyu.ml", true },
+ { "wangbangyu.tk", true },
+ { "wangejiba.com", true },
+ { "wangqiliang.cn", true },
+ { "wangqiliang.com", true },
{ "wangql.net", true },
{ "wangqr.tk", true },
+ { "wangriwu.com", true },
{ "wangtanzhang.com", true },
+ { "wangwill.me", true },
+ { "wangyubao.cn", true },
{ "wangyue.blog", true },
{ "wangzuan168.cc", true },
+ { "wanlieyan.com", true },
{ "wannaridecostarica.com", true },
- { "wanquanojbk.com", false },
- { "wanybug.cn", true },
+ { "wanvi.net", false },
+ { "wanybug.cf", true },
{ "wanybug.com", true },
+ { "wanybug.ga", true },
+ { "wanybug.gq", true },
+ { "wanybug.tk", true },
+ { "wanyingge.com", true },
+ { "wanzenbug.xyz", true },
{ "waonui.io", true },
- { "wapgu.cc", true },
+ { "wapa.gov", true },
+ { "wapazewddamcdocmanui6001.azurewebsites.net", true },
+ { "wapazewrdamcdocmanui6001.azurewebsites.net", true },
+ { "wapenon.com", true },
+ { "wapking.co", true },
+ { "wapoolandspa.com", true },
{ "wardow.com", true },
{ "warebouncycastles.co.uk", true },
{ "warekit.io", true },
@@ -36432,15 +40968,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "warenmedia.com", true },
{ "wargameexclusive.com", true },
{ "warhaggis.com", true },
- { "warmestwishes.ca", true },
{ "warmservers.com", true },
- { "warnings.xyz", true },
+ { "waroengkoe-shop.com", true },
{ "warofelements.de", true },
- { "warp-radio.com", true },
- { "warp-radio.net", true },
- { "warp-radio.tv", true },
{ "warr.ath.cx", true },
- { "warren.sh", true },
{ "warringtonkidsbouncycastles.co.uk", true },
{ "warschild.org", true },
{ "warsh.moe", true },
@@ -36449,6 +40980,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waschpark-hantschel.de", true },
{ "wasema.com", true },
{ "wasfestes.de", true },
+ { "wasfuereintheater.com", true },
{ "washingtonregisteredagent.io", true },
{ "washingtonviews.com", true },
{ "wasi-net.de", true },
@@ -36460,6 +40992,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 },
@@ -36468,8 +41001,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "watchpci.com", true },
{ "watchstyle.com", true },
{ "water-addict.com", true },
+ { "waterbrook.com.au", true },
+ { "waterdogsmokedfish.com", true },
{ "waterdrop.tk", true },
- { "waterfedpole.com", true },
{ "waterleeftinbeek.nl", true },
{ "watermonitor.gov", true },
{ "wateroutlook.com", true },
@@ -36477,27 +41011,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waterschaplimburg.nl", true },
{ "waterside-residents.org.uk", true },
{ "waterslide-austria.at", true },
- { "watertrails.io", true },
{ "waterworkscondos.com", true },
{ "watfordjc.uk", true },
{ "watoo.tech", true },
{ "watsonwork.me", true },
{ "watvindtnederland.com", true },
{ "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 },
+ { "waylandss.com", true },
+ { "waynefranklin.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 },
{ "wbudd.com", true },
@@ -36505,18 +41046,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wbvb.nl", true },
{ "wbx.support", true },
{ "wby.gd", true },
+ { "wby.tw", true },
{ "wcbook.ru", false },
{ "wcn.life", false },
- { "wd627.com", true },
- { "wd976.com", true },
+ { "wcrca.org", true },
+ { "wcsi.com", true },
+ { "wcwcg.net", true },
{ "wdbflowersevents.co.uk", true },
{ "wdbgroup.co.uk", true },
{ "wdic.org", true },
{ "wdmg.com.ua", 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 },
@@ -36532,44 +41075,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wearepapermill.co", true },
{ "wearesouthafricans.com", true },
{ "wearvr.com", true },
- { "weather-and-climate.com", false },
+ { "weaspireusa.com", true },
+ { "weather-schools.com", true },
+ { "weather.gov", true },
{ "weathermyway.rocks", true },
- { "web-adminy.co.uk", true },
- { "web-advisor.co.uk", true },
+ { "web-apps.tech", true },
{ "web-art.cz", true },
{ "web-design.co.il", true },
- { "web-dl.cc", true },
{ "web-hotel.gr", true },
+ { "web-jive.com", true },
{ "web-kouza.com", true },
+ { "web-mail.info", true },
+ { "web-odyssey.com", true },
{ "web-redacteuren.nl", true },
+ { "web-siena.it", true },
+ { "web-smart.com", true },
{ "web-wave.jp", true },
{ "web.bzh", true },
{ "web.cc", false },
{ "web.de", true },
+ { "web1n.com", true },
{ "web2033.com", true },
{ "web2ldap.de", true },
{ "web2screen.tv", true },
{ "web404.net", true },
+ { "webadiccion.net", true },
+ { "webadicta.net", true },
+ { "webadicto.net", true },
{ "webaeon.org", true },
{ "webaholic.co.in", true },
{ "webais.ru", true },
{ "webalert.cz", true },
{ "webambacht.nl", true },
- { "webandmore.de", false },
+ { "webandmore.de", true },
{ "webappky.cz", true },
{ "webartex.ru", true },
{ "webbiz.co.uk", true },
{ "webbson.net", false },
- { "webbx.se", true },
{ "webcamtoy.com", true },
- { "webcatchers.nl", true },
+ { "webcasinos.com", true },
+ { "webcatchers.nl", false },
{ "webcatechism.com", false },
{ "webclimbers.ch", true },
{ "webcollect.org.uk", true },
{ "webcontentspinning.com", true },
{ "webcookies.org", true },
{ "webcrm.com", true },
- { "webdeflect.com", true },
+ { "webcurtaincall.com", true },
+ { "webdemaestrias.com", true },
{ "webdesign-st.de", true },
{ "webdesigneauclaire.com", true },
{ "webdesignerinwarwickshire.co.uk", true },
@@ -36588,29 +41141,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webev.ru", true },
{ "webexample.win", true },
{ "webexp.biz", true },
+ { "webexpertsdirect.com.au", true },
{ "webfilings-eu-mirror.appspot.com", true },
{ "webfilings-eu.appspot.com", true },
{ "webfilings-mirror-hrd.appspot.com", true },
{ "webfilings.appspot.com", true },
{ "webfixers.nl", true },
- { "webfox.com.br", true },
+ { "webgap.io", false },
{ "webgarten.ch", true },
{ "webgears.com", true },
{ "webharvest.gov", true },
{ "webhooks.stream", true },
- { "webhostingshop.ca", true },
+ { "webhost.guide", true },
{ "webhostingzzp.nl", false },
{ "webhostplan.info", true },
+ { "webies.ro", true },
{ "webinnovation.ie", true },
{ "webjobposting.com", true },
{ "webkef.com", true },
{ "webkeks.org", true },
{ "weblagring.se", true },
{ "weblate.org", true },
- { "webless.com", true },
{ "webliberty.ru", true },
{ "webline.ch", true },
- { "weblogic.pl", true },
{ "weblogzwolle.nl", true },
{ "webmail.gigahost.dk", false },
{ "webmail.info", false },
@@ -36620,30 +41173,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webmandesign.eu", true },
{ "webmax.com.tr", true },
{ "webmedpharmacy.co.uk", true },
- { "webmel.com", true },
{ "webmetering.at", true },
{ "webministeriet.net", true },
{ "webmotelli.fi", true },
+ { "webmr.de", true },
{ "webnames.ca", true },
- { "webnoob.net", true },
- { "webogram.org", false },
+ { "webnetforce.net", true },
+ { "webnexty.com", true },
{ "webpinoytambayan.net", true },
{ "webpinoytv.info", true },
{ "webpostingmart.com", true },
{ "webpostingpro.com", true },
{ "webpostingreviews.com", true },
{ "webproject.rocks", true },
- { "webproxy.pw", true },
{ "webpubsub.com", true },
+ { "webpulser.com", true },
{ "webqualitat.com.br", true },
- { "webqueens.com", true },
{ "webrebels.org", false },
{ "webrentcars.com", true },
{ "webreport.fr", true },
- { "webreslist.com", true },
{ "webscale.nl", false },
{ "websec.nl", true },
- { "websectools.com", true },
{ "websecurity.is", true },
{ "webseitendesigner.com", false },
{ "webseitenserver.com", true },
@@ -36655,13 +41205,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "websiteforlease.ca", true },
{ "websiteout.ca", true },
{ "websiteout.net", true },
- { "websiterent.ca", true },
{ "websites4business.ca", true },
{ "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 },
+ { "webstellung.com", true },
{ "webstijlen.nl", true },
{ "webstore.be", false },
{ "webstu.be", true },
@@ -36675,29 +41228,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webtorrent.io", true },
{ "webtrh.cz", true },
{ "webtropia.com", false },
+ { "webukhost.com", true },
+ { "webutils.io", true },
{ "webvisum.de", true },
{ "webwednesday.nl", true },
+ { "webwelearn.com", 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 },
- { "wecanvisit.com", true },
{ "wechatify.com", true },
+ { "weck.alsace", true },
{ "wecleanbins.com", true },
{ "wecobble.com", true },
- { "wedding-m.jp", true },
- { "weddingalbumsdesign.com", true },
- { "weddingfantasy.ru", true },
+ { "weddingdays.tv", true },
+ { "weddingofficiantwilmington.com", true },
{ "weddingsbynoon.co.uk", true },
{ "weddywood.ru", false },
+ { "wedg.uk", true },
{ "wedos.com", true },
+ { "weebl.me", true },
{ "weeblr.com", true },
{ "weeblrpress.com", true },
- { "weedcircles.com", true },
- { "weedlandia.org", true },
{ "weedlife.com", true },
{ "weednews.co", true },
{ "weedupdate.com", true },
@@ -36710,17 +41264,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weeklycenter.co.jp", true },
{ "weeknummers.be", true },
{ "weeknummers.nl", true },
+ { "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 },
@@ -36734,16 +41289,14 @@ 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 },
- { "weinhandel-preissler.de", true },
+ { "weingaertner-it.de", true },
{ "weinundsein.com", true },
{ "weirdesigns.com", true },
- { "weirdserver.com", true },
{ "weisse-liste.de", true },
{ "weissman.agency", true },
{ "weiterbildung-vdz.de", true },
@@ -36753,52 +41306,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "welcome-werkstatt.com", true },
{ "welcome-werkstatt.de", true },
{ "welcome26.ch", true },
- { "welcomehelp.de", true },
{ "welcomescuba.com", true },
+ { "welcometoscottsdalehomes.com", true },
{ "weld.io", true },
{ "weldwp.com", true },
{ "wella-download-center.de", true },
{ "wellacapability.com", true },
{ "wellbeing360.com.au", true },
{ "wellcom.co.il", true },
- { "welldrake.com", true },
{ "wellensteyn.ru", true },
{ "weller.pm", true },
{ "wellist.com", true },
- { "wellmarts.com", true },
+ { "wellness-bonbon.de", true },
{ "wellness-gutschein.de", true },
{ "wellnesscheck.net", true },
- { "wellsplasticsurgery.com", true },
- { "wellspringcamps.com", true },
+ { "wellnessever.com", true },
+ { "wellsolveit.com", false },
{ "welovecatsandkittens.com", true },
- { "welovemail.com", true },
- { "welpo.me", true },
- { "welsh.com.br", true },
+ { "welovemaira.com", true },
{ "welshccf.org.uk", true },
{ "welteneroberer.de", true },
{ "weltengilde.de", true },
{ "weltenhueter.de", true },
+ { "weltmeister.de", true },
{ "weltverschwoerung.de", true },
{ "welzijnkoggenland.nl", true },
+ { "wem.hr", false },
{ "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 },
+ { "wenge-murphy.com", true },
{ "wenger-shop.ch", true },
{ "wenjs.me", true },
{ "wensing-und-koenig.de", true },
+ { "wenta.de", true },
{ "wepay.com", false },
{ "wepay.in.th", true },
{ "wepay.vn", true },
{ "weplaynaked.dk", true },
{ "wer-kommt-her.de", true },
{ "werally.com", true },
+ { "werbe-markt.de", true },
{ "werbe-sonnenbrillen.de", true },
{ "werbeagentur.de", true },
{ "werbedesign-tauber.de", true },
@@ -36806,9 +41358,10 @@ 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 },
{ "werepairit.com.au", true },
{ "werk-34.de", true },
{ "werk32.net", false },
@@ -36821,17 +41374,18 @@ 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 },
+ { "werner-schaeffer.de", true },
+ { "wernerschaeffer.de", true },
{ "werpo.com.ar", true },
{ "wertheimer-burgrock.de", true },
{ "wertpapiertreuhand.de", true },
{ "werwolf-live.de", true },
- { "wes-dev.com", true },
{ "wesecom.com", true },
{ "wesell.asia", true },
{ "weserv.nl", true },
@@ -36843,6 +41397,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wessner.org", true },
{ "west-contemporary.com", true },
{ "west-trans.com.au", true },
+ { "west-wind.net", true },
{ "westcanal.net", true },
{ "westcarrollton.org", true },
{ "westcentenaryscouts.org.au", true },
@@ -36852,8 +41407,9 @@ 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 },
{ "westlakevillageelectric.com", true },
{ "westlakevillageelectrical.com", true },
@@ -36868,17 +41424,28 @@ 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 },
{ "wevg.org", true },
+ { "wew881.com", true },
+ { "wew882.com", true },
+ { "wewin88.com", true },
+ { "wewin88.net", true },
{ "wewitro.de", true },
{ "wewitro.net", true },
{ "wexfordbouncycastles.ie", true },
{ "wexilapp.com", true },
{ "weyland-yutani.org", true },
- { "weyland.tech", true },
+ { "wezartt.com", true },
{ "wezl.net", true },
{ "wf-bigsky-master.appspot.com", true },
{ "wf-demo-eu.appspot.com", true },
@@ -36892,18 +41459,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wf-trial-hrd.appspot.com", true },
{ "wfh.ovh", true },
{ "wfh.se", true },
+ { "wforum.nl", 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 },
{ "wgsi-friesland.nl", true },
{ "wh-guide.de", true },
- { "whanau.org", true },
{ "what-wood.servehttp.com", true },
{ "whatagreatwebsite.net", true },
- { "whatanime.ga", true },
{ "whatarepatentsfor.com", true },
{ "whatclinic.co.uk", true },
{ "whatclinic.com", true },
@@ -36911,19 +41478,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whatclinic.de", true },
{ "whatclinic.ie", true },
{ "whatclinic.ru", true },
+ { "whatdevotion.com", true },
{ "whateveraspidercan.com", true },
+ { "whatisapassword.com", true },
{ "whatismycountry.com", true },
- { "whatismyip.net", true },
+ { "whatismyip.net", false },
{ "whatismyipaddress.ca", true },
{ "whatisthe.cloud", true },
{ "whatnext.limited", true },
{ "whatsahoy.com", true },
{ "whatsapp.com", true },
{ "whatsmychaincert.com", true },
- { "whatsupdeco.com", true },
{ "whatsupgold.com.tw", true },
{ "whatsupoutdoor.com", true },
+ { "whatthefile.info", true },
{ "whatthingsweigh.com", true },
+ { "whattominingrigrentals.com", true },
+ { "whatusb.com", true },
{ "whatwebcando.today", true },
{ "whatwg.org", true },
{ "whd-guide.de", true },
@@ -36932,18 +41503,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wheeler.kiwi.nz", true },
{ "wheelwide.co.uk", true },
{ "wheelwork.org", true },
- { "wheelwright.org", true },
+ { "wheezie.be", true },
{ "when.fm", false },
{ "where2trip.com", true },
{ "whereiszakir.com", true },
+ { "wheresbuzz.com.au", true },
{ "whexit.nl", true },
{ "whey-protein.ch", true },
{ "whiletrue.run", true },
- { "whimtrip.fr", false },
{ "whing.org", true },
{ "whipnic.com", true },
{ "whirlpool-luboss.de", true },
+ { "whirlpool.net.au", true },
{ "whisky-circle.info", true },
+ { "whiskygentle.men", true },
+ { "whiskyglazen.nl", false },
{ "whiskynerd.ca", true },
{ "whisp.ly", false },
{ "whispeer.de", true },
@@ -36952,6 +41526,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whistleb.com", true },
{ "whistleblower.gov", true },
{ "whitby-brewery.com", true },
+ { "white-ibiza.com", true },
{ "whitealps.at", true },
{ "whitealps.be", true },
{ "whitealps.ch", true },
@@ -36959,21 +41534,24 @@ 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", 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 },
{ "whitewebhosting.com", true },
{ "whitewinterwolf.com", true },
+ { "whitkirk.com", true },
{ "whitkirkartsguild.com", true },
{ "whitkirkchurch.org.uk", true },
{ "whittome.com", true },
@@ -36983,33 +41561,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whnpa.org", true },
{ "who-calledme.com", true },
{ "who.pm", true },
- { "whoasome.com", true },
+ { "whoami.io", true },
{ "whocalld.com", true },
{ "whocalled.us", true },
{ "whocybered.me", true },
- { "whoimg.com", true },
- { "whoisamitsingh.com", true },
+ { "whoimg.com", false },
+ { "whoisdhh.com", true },
{ "whoisthenightking.com", true },
{ "whoiswp.com", true },
- { "wholelotofbounce.co.uk", false },
{ "wholesalecbd.com", true },
+ { "wholesomeharvestbread.com", false },
+ { "whollyskincare.com", true },
{ "whonix.org", true },
{ "whosyourdaddy.ml", true },
{ "whoturgled.com", true },
+ { "whqqq.com", true },
{ "whqtravel.org", false },
{ "whs-music.org", true },
{ "whta.se", true },
{ "whub.io", true },
{ "why-brexit.uk", true },
{ "whychoosebob.net.au", true },
+ { "whynohttps.com", true },
{ "whyopencomputing.ch", true },
{ "whyopencomputing.com", true },
+ { "whysoslow.co.uk", true },
{ "whytls.com", true },
{ "whyworldhot.com", true },
{ "whyz1722.tk", true },
{ "wibbe.link", true },
{ "wiberg.nu", true },
+ { "wicharypawel.com", true },
{ "wichitafoundationpros.com", true },
+ { "wick-machinery.com", true },
+ { "wickelfischfrance.fr", true },
{ "wickrath.net", true },
{ "wideboxmacau.com", false },
{ "widegab.com", true },
@@ -37027,6 +41612,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wiek.net", true },
{ "wien52.at", true },
{ "wieneck-bauelemente.de", true },
+ { "wiener.hr", true },
{ "wienergyjobs.com", true },
{ "wieobensounten.de", true },
{ "wifi-hack.com", true },
@@ -37048,6 +41634,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 },
@@ -37055,6 +41652,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 },
@@ -37064,14 +41662,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wiktoriaslife.com", true },
{ "wilane.org", true },
{ "wilcodeboer.me", true },
- { "wild-turtles.com", false },
+ { "wild-turtles.com", true },
{ "wildboaratvparts.com", true },
+ { "wildcatdiesel.com.au", true },
{ "wilddogdesign.co.uk", true },
+ { "wildercerron.com", true },
{ "wildewood.ca", true },
{ "wildlifeadaptationstrategy.gov", true },
{ "wildnisfamilie.net", true },
{ "wildtrip.blog", true },
{ "wildwildtravel.com", true },
+ { "wildwind.world", true },
{ "wildzoopark.co.uk", true },
{ "wildzoopark.com", true },
{ "wili.li", true },
@@ -37085,16 +41686,19 @@ 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 },
+ { "williampuckering.com", true },
+ { "williamscomposer.com", true },
{ "williamsonshore.com", true },
{ "williamsportmortgages.com", true },
{ "williamsroom.com", true },
{ "williamtm.com", true },
{ "willnorris.com", true },
{ "willow.technology", true },
+ { "willowbrook.co.uk", true },
{ "willowdalechurch.ca", true },
{ "willowtree.school", true },
{ "wills.co.tt", true },
@@ -37110,28 +41714,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wimbo.nl", true },
{ "wimpernforyou.de", true },
{ "win7stylebuilder.com", false },
+ { "win88-line.com", true },
+ { "win88-line.net", true },
{ "winbignow.click", true },
{ "winbuzzer.com", true },
{ "wincasinowin.click", true },
- { "wind.moe", true },
+ { "winch-center.de", true },
{ "winddan.nz", true },
{ "windelnkaufen24.de", true },
+ { "windforme.com", true },
{ "windowcleaningexperts.net", true },
- { "windows10insider.com", true },
+ { "windows-support.nu", true },
+ { "windows-support.se", 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 },
- { "winebid.com", true },
- { "wineonthewall.com", true },
+ { "wineparis.com", true },
{ "winepress.org", true },
- { "wineworksonline.com", true },
+ { "winfieldchen.me", true },
{ "winghill.com", true },
{ "wingify.com", true },
{ "wingmin.net", true },
@@ -37139,31 +41746,32 @@ 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 },
- { "wiredcut.com", true },
{ "wireframesoftware.com", true },
{ "wireheading.com", true },
- { "wirelesswatch.com.au", true },
{ "wireshark.org", true },
{ "wiretime.de", true },
- { "wiretrip.io", false },
{ "wirhabenspass.de", true },
{ "wirkstoffreich.de", true },
{ "wirralbouncycastles.co.uk", true },
@@ -37171,11 +41779,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wirsol.com", true },
{ "wis.no", true },
{ "wisak.me", true },
- { "wisal.org", true },
- { "wiseflat.com", true },
+ { "wischu.com", true },
+ { "wisedog.eu", true },
+ { "wishlist.net", true },
{ "wispapp.com", false },
{ "wisper.net.au", true },
{ "wispsuperfoods.com", true },
+ { "wiss.co.uk", true },
+ { "wissamnr.be", true },
{ "wisv.ch", true },
{ "wisweb.no", true },
{ "wit.ai", true },
@@ -37184,25 +41795,28 @@ 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 },
{ "wiz.at", true },
{ "wiz.biz", true },
{ "wiz.farm", true },
{ "wizardbouncycastles.co.uk", true },
+ { "wizzair.com", true },
{ "wizzley.com", true },
{ "wizzr.nl", true },
{ "wj0666.com", true },
{ "wjbolles.com", true },
+ { "wjcainc.com", true },
{ "wjci.com", true },
{ "wje-online.de", true },
{ "wjg.ca", true },
{ "wjg.dk", true },
+ { "wjglerum.nl", true },
{ "wjm2038.me", true },
{ "wjr.io", true },
{ "wjwieland.dvrdns.org", false },
@@ -37223,18 +41837,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wmaccess.de", true },
{ "wmfusercontent.org", true },
{ "wmkowa.de", true },
- { "wmustore.com", true },
{ "wnu.com", true },
{ "wo-ist-elvira.net", true },
{ "wo2forum.nl", true },
{ "woah.how", true },
{ "wobble.ninja", true },
{ "wobblywotnotz.co.uk", true },
- { "wochennummern.de", true },
- { "wodboss.com", true },
+ { "woblex.cz", true },
{ "wodinaz.com", true },
{ "wodka-division.de", true },
{ "woelkchen.me", true },
+ { "wofflesoft.com", true },
{ "wofford-ecs.org", true },
{ "woffs.de", true },
{ "wogo.org", true },
@@ -37243,9 +41856,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wohlpa.de", true },
{ "wohnbegleitung.ch", true },
{ "wohnsitz-ausland.com", true },
- { "woi.vision", true },
{ "wokinghammotorhomes.com", true },
- { "woktoss.com", true },
{ "wolfachtal-alpaka.de", true },
{ "wolfarth.info", true },
{ "wolfermann.org", true },
@@ -37258,23 +41869,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wolfgang-ziegler.com", true },
{ "wolfie.ovh", false },
{ "wolfsden.cz", true },
+ { "wolfshuegelturm.de", true },
+ { "wolfvideoproductions.com", true },
{ "wolfwings.us", true },
{ "wolfy1339.com", false },
- { "wolkenspeicher.org", true },
+ { "wolke7.wtf", true },
{ "wolkoopjes.nl", true },
{ "wollgredel.de", true },
{ "wollongongbaptist.hopto.org", true },
{ "wollwerk.org", true },
{ "wolszon.me", true },
{ "woltlab-demo.com", true },
- { "womb.city", true },
{ "wombatalla.com.au", true },
+ { "wombatnet.com", true },
{ "wombats.net", true },
+ { "wombere.org", true },
+ { "womcom.nl", true },
{ "women-only.net", true },
{ "womensalespros.com", true },
{ "womenshairlossproject.com", true },
- { "wonabo.com", true },
+ { "womensmedassoc.com", true },
+ { "wonder.com.mx", false },
{ "wonderbill.com", true },
+ { "wonderbits.net", true },
{ "wonderfuleducation.eu", true },
{ "wonderfuleducation.nl", true },
{ "wondergorilla.com", true },
@@ -37282,26 +41899,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wonderlandmovies.de", true },
{ "wondermags.com", true },
{ "wonghome.net", true },
+ { "wooc.org", true },
{ "wood-crafted.co.uk", true },
{ "wood-crafted.uk", true },
{ "woodbury.io", true },
{ "woodcoin.org", true },
+ { "woodenson.com", true },
{ "woodev.us", true },
+ { "woodinvillesepticservice.net", true },
{ "woodlandhillselectrical.com", true },
- { "woodlandsmetro.church", 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 },
- { "woomai.net", true },
{ "woonboulevardvolendam.nl", true },
{ "woontegelwinkel.nl", true },
- { "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 },
@@ -37309,7 +41930,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "word-grabber.com", true },
{ "wordcounter.net", true },
{ "wordher.com", true },
- { "wordlessecho.com", true },
{ "wordpress.com", false },
{ "wordsmart.it", true },
{ "wordspy.com", true },
@@ -37319,25 +41939,26 @@ 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 },
{ "workinginsync.co.uk", true },
- { "workingmachine.info", true },
- { "workissime.com", true },
+ { "worklizard.com", true },
{ "workmart.mx", true },
+ { "worknrby.com", true },
{ "workoptions.com", true },
- { "workplaces.online", true },
{ "workraw.com", true },
+ { "workray.com", true },
{ "works-ginan.jp", true },
{ "workshopszwolle.nl", true },
{ "workshopzwolle.com", true },
{ "worksitevr.com", true },
{ "world-in-my-eyes.com", true },
+ { "world-lolo.com", true },
{ "worldcareers.dk", true },
- { "worldchess.london", true },
{ "worldcigars.com.br", true },
- { "worldcrafts.org", true },
{ "worldcubeassociation.org", true },
{ "worldessays.com", true },
{ "worldeventscalendars.com", true },
@@ -37346,64 +41967,68 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "worldofarganoil.com", true },
{ "worldofbelia.de", true },
{ "worldofparties.co.uk", true },
- { "worldofterra.net", true },
{ "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 },
{ "wormbytes.ca", true },
- { "wormdisk.net", true },
{ "worst.horse", false },
{ "wort-suchen.de", true },
{ "woshiluo.site", true },
{ "wot-tudasbazis.hu", true },
{ "wotra-register.com", true },
+ { "wotsunduk.ru", true },
{ "woudenberg.nl", true },
+ { "woudenbergsedrukkerij.nl", true },
{ "woufbox.com", true },
{ "woutergeraedts.nl", true },
{ "wouterslop.com", true },
{ "wouterslop.eu", true },
{ "wouterslop.nl", true },
- { "wow-foederation.de", true },
{ "wow-screenshots.net", true },
- { "wow202y5.com", true },
{ "wowaffixes.info", true },
{ "wowbouncycastles.co.uk", true },
- { "wowhelp.it", true },
{ "wowi-ffo.de", true },
{ "wowjs.co.uk", true },
{ "wowjs.org", true },
{ "wowjs.uk", true },
{ "wownmedia.com", true },
{ "wozalapha.com", true },
- { "wp-bullet.com", true },
{ "wp-master.org", true },
{ "wp-mix.com", true },
{ "wp-securehosting.com", true },
{ "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 },
{ "wpdirecto.com", true },
- { "wpdublin.com", true },
{ "wpenhance.com", true },
{ "wpexplorer.com", true },
- { "wpfast.net", true },
{ "wpformation.com", true },
+ { "wpgoblin.com", true },
{ "wphostingblog.nl", true },
{ "wpinter.com", true },
{ "wpldn.uk", true },
{ "wpletter.de", false },
+ { "wplistings.pro", true },
{ "wpmeetup-berlin.de", true },
{ "wpmu-tutorials.de", true },
+ { "wpno.com", true },
{ "wpoptimalizace.cz", true },
{ "wpostats.com", false },
+ { "wprodevs.com", true },
{ "wpscans.com", true },
{ "wpsec.nl", true },
{ "wpserp.com", true },
@@ -37414,32 +42039,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wpsono.com", true },
{ "wpthaiuser.com", true },
{ "wptomatic.de", true },
+ { "wptorium.com", true },
{ "wptotal.com", true },
{ "wpturnedup.com", true },
{ "wpvulndb.com", true },
{ "wq.ro", true },
{ "wr.su", true },
{ "wrara.org", true },
+ { "wrathofgeek.com", true },
{ "wrc-results.com", true },
+ { "wrd48.net", true },
{ "wrdcfiles.ca", true },
{ "wrdx.io", true },
{ "wrenwrites.com", true },
{ "wrgms.com", true },
+ { "wrightselfstorageandremovals.com", true },
{ "wristreview.com", true },
{ "write-right.net", true },
{ "writeandedit-for-you.com", true },
{ "writecustomessay.com", true },
{ "writeenglishright.com", true },
- { "writemyessay.info", true },
{ "writemyessay.today", true },
{ "writemyessays.com", true },
{ "writemypaperhub.com", true },
- { "writemytermpapers.com", true },
{ "writeoff.me", true },
{ "writepride.com", true },
- { "writepro.net", true },
+ { "writer24.ru", true },
{ "writereditor.com", true },
- { "writing-expert.com", true },
{ "writing-job-online.com", true },
{ "writingcities.net", true },
{ "writingtoserve.net", true },
@@ -37452,17 +42078,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wrp-timber-mouldings.co.uk", true },
{ "wrp.gov", true },
{ "wryoutube.com", true },
+ { "ws-meca.com", true },
{ "wsa.poznan.pl", true },
{ "wsadek.ovh", true },
{ "wsb.pl", true },
{ "wscales.com", false },
{ "wscbiolo.id", true },
+ { "wscore.me", 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 },
@@ -37471,49 +42099,51 @@ 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 },
{ "wug.jp", true },
{ "wug.news", true },
{ "wuifan.com", true },
{ "wuji.cz", true },
- { "wumai.cloud", true },
- { "wumbo.cf", true },
+ { "wumai-p.cn", true },
{ "wumbo.co.nz", true },
- { "wumbo.ga", true },
- { "wumbo.gq", true },
- { "wumbo.ml", true },
- { "wumbo.tk", true },
+ { "wunder.io", true },
{ "wunderkarten.de", true },
{ "wunderlist.com", true },
{ "wundernas.ch", true },
{ "wundi.net", true },
- { "wuppertal-2018.de", true },
- { "wuppertaler-kurrende.com", true },
- { "wuppertaler-kurrende.de", true },
+ { "wunschpreisauto.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 },
+ { "wuyang.ws", true },
{ "wuyue.photo", true },
{ "wv-n.de", true },
{ "wvg.myds.me", true },
- { "wvv-8522.com", true },
- { "wvw-8522.com", true },
{ "ww0512.com", true },
{ "ww2onlineshop.com", true },
- { "wwbsb.xyz", true },
{ "wweforums.net", true },
{ "wweichen.com.cn", true },
{ "wwgc2011.se", true },
- { "wwv-8522.com", true },
+ { "wwjd.dynu.net", true },
{ "wwv-8722.com", true },
{ "www-33445.com", true },
{ "www-49889.com", true },
+ { "www-68277.com", true },
+ { "www-80036.com", true },
{ "www-8522.am", true },
{ "www-8522.com", true },
{ "www-86499.com", true },
@@ -37521,14 +42151,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www-9822.com", true },
{ "www.aclu.org", false },
{ "www.airbnb.com", true },
+ { "www.amazon.ca", true },
{ "www.amazon.cn", true },
+ { "www.amazon.co.jp", true },
+ { "www.amazon.co.uk", true },
+ { "www.amazon.com", true },
+ { "www.amazon.com.au", true },
+ { "www.amazon.com.br", true },
+ { "www.amazon.com.mx", true },
+ { "www.amazon.de", true },
{ "www.amazon.es", true },
+ { "www.amazon.fr", true },
+ { "www.amazon.it", true },
+ { "www.amazon.nl", true },
{ "www.apollo-auto.com", true },
{ "www.banking.co.at", false },
{ "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 },
@@ -37540,6 +42180,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 },
@@ -37550,7 +42191,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.heliosnet.com", true },
{ "www.honeybadger.io", false },
{ "www.hyatt.com", false },
- { "www.intercom.io", true },
+ { "www.icann.org", false },
{ "www.irccloud.com", false },
{ "www.lastpass.com", false },
{ "www.linode.com", false },
@@ -37567,6 +42208,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.rememberthemilk.com", true },
{ "www.sb", true },
{ "www.simple.com", false },
+ { "www.techrepublic.com", true },
{ "www.theguardian.com", true },
{ "www.therapynotes.com", true },
{ "www.tinfoilsecurity.com", false },
@@ -37575,28 +42217,40 @@ 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 },
- { "www68277.com", true },
+ { "www.zdnet.com", true },
+ { "wx37.ac.cn", true },
{ "wxcafe.net", true },
+ { "wxdisco.com", true },
+ { "wxforums.com", true },
{ "wxh.jp", true },
+ { "wxkxsw.com", true },
+ { "wxlog.cn", true },
{ "wxster.com", true },
- { "wxyz.buzz", true },
+ { "wxzm.sx", true },
{ "wyam.io", true },
{ "wybar.uk", true },
+ { "wycrow.com", false },
{ "wyday.com", true },
{ "wygibanki.pl", true },
{ "wygodnie.pl", true },
+ { "wyhpartnership.co.uk", true },
+ { "wylog.ph", true },
{ "wynterhill.co.uk", true },
{ "wyo.cam", true },
{ "wypemagazine.se", true },
+ { "wyrickstaxidermy.com", true },
{ "wyrihaximus.net", true },
{ "wyrimaps.net", true },
{ "wyssmuller.ch", true },
- { "wzfetish.com.br", true },
+ { "wyydsb.cn", true },
+ { "wyydsb.com", true },
+ { "wyydsb.xin", true },
+ { "wyysoft.tk", true },
{ "wzfou.com", true },
- { "wzrd.in", true },
{ "wzyboy.org", true },
{ "x-iweb.ru", true },
{ "x-lan.be", true },
@@ -37606,47 +42260,65 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "x0r.be", true },
{ "x13.com", true },
{ "x1616.tk", true },
- { "x1be.win", true },
{ "x2d2.de", true },
{ "x378.ch", true },
{ "x509.io", true },
- { "x69.biz", true },
- { "x69x.net", 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", true },
+ { "xawen.net", false },
+ { "xb6638.com", true },
+ { "xb6673.com", true },
+ { "xb851.com", true },
+ { "xb862.com", true },
+ { "xb913.com", true },
+ { "xb917.com", true },
+ { "xb925.com", true },
+ { "xb927.com", true },
+ { "xb965.com", true },
+ { "xb983.com", true },
{ "xbb.hk", true },
{ "xbb.li", true },
- { "xbertschy.com", true },
{ "xblau.com", true },
{ "xboxdownloadthat.com", true },
{ "xboxlivegoldshop.nl", true },
{ "xboxonex.shop", true },
+ { "xbpay88.com", true },
{ "xbrl.online", true },
{ "xbrlsuccess.appspot.com", true },
{ "xbt.co", true },
{ "xbtce.com", true },
{ "xbtmusic.org", false },
+ { "xceedgaming.com", true },
{ "xcentricmold.com", true },
{ "xclirion-support.de", true },
{ "xcorpsolutions.com", true },
{ "xcvb.xyz", true },
{ "xd.cm", true },
- { "xd.fi", true },
{ "xdavidhu.me", true },
{ "xdawn.cn", true },
{ "xdeftor.com", true },
+ { "xdos.io", true },
+ { "xdtag.com", true },
+ { "xdty.org", true },
{ "xecure.zone", true },
{ "xecureit.com", true },
{ "xeedbeam.me", true },
{ "xega.org", true },
{ "xehost.com", true },
+ { "xeiropraktiki.gr", true },
{ "xelesante.jp", true },
{ "xendo.net", true },
+ { "xenolith.eu", true },
{ "xenomedia.nl", true },
{ "xenon.cloud", true },
{ "xenoncloud.net", true },
@@ -37656,59 +42328,68 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xentox.com", true },
{ "xerblade.com", true },
{ "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 },
+ { "xhotlips.date", true },
{ "xia.de", true },
{ "xiamenshipbuilding.com", true },
{ "xiamuzi.com", true },
{ "xiangblog.com", true },
+ { "xiangfajia.cn", true },
{ "xiangweiqing.co.uk", true },
{ "xiangwenquan.me", true },
{ "xianjianruishiyouyiyuan.com", true },
- { "xiaobude.cn", true },
{ "xiaocg.xyz", true },
- { "xiaofengsky.com", true },
{ "xiaoguo.net", false },
{ "xiaolanglang.net", true },
+ { "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 },
+ { "xiashali.me", true },
{ "xichtsbuch.de", true },
{ "xicreative.net", true },
{ "xiecongan.org", true },
{ "xif.at", true },
{ "xight.org", true },
{ "xilef.org", true },
- { "xilegames.com", true },
+ { "xiliant.com", false },
{ "xilkoi.net", true },
{ "xilou.org", true },
+ { "ximble.com", true },
{ "ximbo.net", true },
- { "xin-in.com", true },
- { "xin-in.net", true },
- { "xinex.cz", true },
- { "xing-in.net", true },
+ { "xinbo676.com", true },
+ { "xinboyule.com", true },
+ { "xinj.com", true },
+ { "xinlandm.com", true },
{ "xinnixdeuren-shop.be", true },
+ { "xinu.xyz", true },
{ "xinuspeed.com", true },
{ "xinuspeedtest.com", true },
{ "xinuurl.com", true },
{ "xiongx.cn", true },
- { "xj8876.com", true },
{ "xjd.vision", true },
+ { "xjf6.com", true },
{ "xjjeeps.com", true },
+ { "xjoi.net", true },
{ "xjoin.de", true },
{ "xjpvictor.info", true },
{ "xkblog.xyz", true },
@@ -37717,46 +42398,65 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xkviz.net", true },
{ "xlan.be", true },
{ "xlange.com", true },
+ { "xldl.ml", true },
+ { "xliang.co", true },
{ "xluxes.jp", true },
{ "xmedius.ca", true },
{ "xmedius.com", false },
{ "xmedius.eu", true },
{ "xmenrevolution.com", true },
- { "xmerak.com", true },
+ { "xmflyrk.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 },
- { "xn-----8kcgbo2bmdgkdacthvjf.xn--p1ai", true },
+ { "xmv.cz", true },
{ "xn----7sbfl2alf8a.xn--p1ai", true },
{ "xn----8hcdn2ankm1bfq.com", true },
+ { "xn----8sbjfacqfqshbh7afyeg.xn--80asehdb", true },
+ { "xn----9sbkdigdao0de1a8g.com", true },
{ "xn----zmcaltpp1mdh16i.com", true },
{ "xn--0iv967ab7w.xn--rhqv96g", true },
{ "xn--0kq33cz5c8wmwrqqw1d.com", true },
+ { "xn--158h.ml", true },
+ { "xn--15tx89ctvm.xn--6qq986b3xl", true },
+ { "xn--1yst51avkr.ga", true },
+ { "xn--1yst51avkr.xn--6qq986b3xl", true },
{ "xn--24-6kch4bfqee.xn--p1ai", true },
{ "xn--24-glcia8dc.xn--p1ai", true },
- { "xn--3lqp21gwna.cn", true },
+ { "xn--2sxs9ol7o.com", true },
+ { "xn--48jwg508p.net", true },
+ { "xn--4dbfsnr.xn--9dbq2a", 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 },
+ { "xn--6qq52xuogcjfw8pwqp.ga", true },
+ { "xn--6qq62xsogfjfs8p1qp.ga", true },
{ "xn--6x6a.life", true },
{ "xn--79q87uvkclvgd56ahq5a.net", true },
{ "xn--7ca.co", true },
{ "xn--7xa.google.com", true },
- { "xn--80aaagmgvmvmcuoq7r.xn--p1ai", true },
{ "xn--80adb4aeode.xn--p1ai", true },
+ { "xn--80adbevek3air0ee9b8d.com", true },
+ { "xn--80adbvdjzhptl1be6j.com", true },
{ "xn--80aejljbfwxn.xn--p1ai", true },
{ "xn--80anogxed.xn--p1ai", true },
{ "xn--80azelb.xn--p1ai", true },
- { "xn--8dry00a7se89ay98epsgxxq.com", true },
+ { "xn--8bi.gq", true },
{ "xn--90accgba6bldkcbb7a.xn--p1acf", true },
{ "xn--allgu-biker-o8a.de", true },
{ "xn--aviao-dra1a.pt", true },
+ { "xn--b3c4f.xn--o3cw4h", true },
{ "xn--baron-bonzenbru-elb.com", true },
+ { "xn--bckerei-trster-5hb11a.de", true },
{ "xn--ben-bank-8za.dk", true },
{ "xn--benbank-dxa.dk", true },
{ "xn--berwachungspaket-izb.at", true },
@@ -37766,59 +42466,68 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--cckdrt0kwb4g3cnh.com", true },
{ "xn--cctsgy36bnvprwpekc.com", true },
{ "xn--cfa.site", true },
+ { "xn--circul-gva.cc", true },
+ { "xn--circul-u3a.cc", true },
{ "xn--d1acj9c.xn--90ais", true },
{ "xn--dcko6fsa5b1a8gyicbc.biz", true },
{ "xn--dej-3oa.lv", true },
{ "xn--detrkl13b9sbv53j.com", true },
{ "xn--detrkl13b9sbv53j.org", true },
- { "xn--die-zahnrzte-ncb.de", true },
- { "xn--dk8haaa.ws", true },
{ "xn--dmonenjger-q5ag.net", true },
+ { "xn--dmontaa-9za.com", true },
{ "xn--dragni-g1a.de", true },
{ "xn--dtursfest-72a.dk", true },
{ "xn--e1aoahhqgn.xn--p1ai", true },
{ "xn--ecki0cd0bu9a4nsjb.com", true },
- { "xn--eckle6c0exa0b0modc7054g7h8ajw6f.com", 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 },
+ { "xn--fiestadefindeao-crb.com", true },
+ { "xn--fiqwix98h.jp", true },
{ "xn--fischereiverein-mnsterhausen-i7c.de", true },
{ "xn--fp8h58f.ws", true },
{ "xn--frankierknig-djb.de", true },
{ "xn--fs5ak3f.com", true },
{ "xn--gfrr-7qa.li", true },
- { "xn--gfrrli-yxa.ch", true },
- { "xn--hfk-allgu-schwaben-stb.de", 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 },
{ "xn--jp8hx8f.ws", true },
{ "xn--kckd0bd4a8tp27yee2e.com", true },
{ "xn--kda.tk", true },
+ { "xn--klmek-0sa.com", true },
{ "xn--knstler-n2a.tips", false },
+ { "xn--krpto-lva.de", true },
{ "xn--ktha-kamrater-pfba.se", true },
+ { "xn--labanskllermark-ftb.se", true },
{ "xn--lckwg.net", true },
{ "xn--love-un4c7e0d4a.com", true },
{ "xn--lsaupp-iua.se", true },
+ { "xn--lskieradio-3gb44h.pl", true },
{ "xn--lsupp-mra.net", true },
{ "xn--manuela-stsser-psb.de", true },
{ "xn--martnvillalba-zib.com", true },
{ "xn--martnvillalba-zib.net", true },
{ "xn--mein-kchenhelfer-ozb.de", true },
- { "xn--mensenges-o1a8c.gq", true },
{ "xn--mensengesss-t8a.gq", true },
{ "xn--mentaltraining-fr-musiker-uwc.ch", true },
{ "xn--mgbbh2a9fub.xn--ngbc5azd", false },
{ "xn--mgbmmp7eub.com", true },
{ "xn--mgbpkc7fz3awhe.com", true },
- { "xn--mhsv04avtt1xi.com", false },
+ { "xn--mgbuq0c.net", true },
{ "xn--mllers-wxa.info", true },
+ { "xn--mntsamling-0cb.dk", true },
{ "xn--myrepubic-wub.net", true },
{ "xn--myrepublc-x5a.net", true },
{ "xn--n8j7dygrbu0c31a5861bq8qb.com", true },
@@ -37827,12 +42536,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--nf1a578axkh.xn--fiqs8s", true },
{ "xn--nrrdetval-v2ab.se", true },
{ "xn--o38h.tk", true },
+ { "xn--obt757c.com", true },
+ { "xn--p8j9a0d9c9a.xn--q9jyb4c", true },
{ "xn--pbt947am3ab71g.com", true },
{ "xn--pe-bka.ee", true },
{ "xn--pq1a637b.xn--6qq986b3xl", true },
{ "xn--q9jb1h5dvcspke3218b9mn4p0c.com", true },
+ { "xn--q9ji3c6d.xn--q9jyb4c", true },
{ "xn--qckss0j.tk", true },
- { "xn--qfun83b.ga", true },
{ "xn--r8jzaf7977b09e.com", true },
{ "xn--rdiger-kuhlmann-zvb.de", true },
{ "xn--reisebro-herrsching-bbc.de", true },
@@ -37843,6 +42554,9 @@ 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--schpski-c1a.de", true },
+ { "xn--schsischer-christstollen-qbc.shop", true },
{ "xn--seelenwchter-mcb.eu", true },
{ "xn--spenijmazania-yhc.pl", true },
{ "xn--sz8h.ml", true },
@@ -37858,10 +42572,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--v6q426ishax2a.xyz", true },
{ "xn--woistdermlleimer-rzb.de", true },
{ "xn--wq9h.ml", true },
+ { "xn--xft85up3jca.ga", true },
{ "xn--y-5ga.com", true },
{ "xn--y8j148r.xn--q9jyb4c", true },
- { "xn--y8ja6lb.xn--q9jyb4c", true },
{ "xn--y8jarb5hca.jp", true },
+ { "xn--yrvp1ac68c.xn--6qq986b3xl", true },
+ { "xn--z1tq4ldt4b.com", true },
{ "xn--zettlmeil-n1a.de", true },
{ "xn--zr9h.cf", true },
{ "xn--zr9h.ga", true },
@@ -37871,102 +42587,107 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xnaas.info", true },
{ "xnet-x.net", true },
{ "xninja.xyz", true },
- { "xnode.org", true },
{ "xntrik.wtf", true },
{ "xnu.kr", true },
{ "xo.tc", true },
{ "xo7.ovh", true },
- { "xoda.pw", true },
{ "xolphin.nl", true },
{ "xombitgames.com", true },
{ "xombitmusic.com", true },
- { "xone.cz", true },
+ { "xone.cz", false },
{ "xonn.de", true },
- { "xotika.tv", true },
+ { "xp-ochrona.pl", true },
+ { "xp.nsupdate.info", true },
{ "xp2.de", true },
- { "xpbytes.com", true },
{ "xpd.se", true },
- { "xpenology-fr.net", true },
+ { "xperiacode.com", true },
{ "xperidia.com", true },
- { "xpj.bet", true },
- { "xpjcunkuan.com", true },
{ "xpletus.nl", true },
- { "xplore-dna.net", true },
{ "xpoc.pro", true },
{ "xposedornot.com", true },
- { "xps2pdf.co.uk", true },
- { "xps2pdf.info", true },
- { "xq55.com", true },
{ "xqk7.com", true },
{ "xr.cx", true },
+ { "xr1s.me", true },
+ { "xrg.cz", true },
{ "xrippedhd.com", true },
{ "xrockx.de", true },
- { "xroot.org", false },
+ { "xrptoolkit.com", true },
{ "xrwracing-france.com", true },
{ "xs2a.no", true },
- { "xscancun.com", true },
+ { "xs74.com", true },
{ "xsec.me", true },
+ { "xserownia.com.pl", true },
+ { "xserownia.eu", true },
{ "xserownia.net", true },
+ { "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 },
+ { "xtom.africa", true },
{ "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 },
- { "xujan.com", true },
+ { "xuehao.net.cn", true },
+ { "xuehuang666.cn", true },
{ "xuming.studio", true },
{ "xunn.io", true },
{ "xuntier.ch", true },
+ { "xuyh0120.win", true },
+ { "xvii.pl", true },
{ "xviimusic.com", true },
{ "xvt-blog.tk", true },
+ { "xwalck.se", true },
{ "xwaretech.info", true },
+ { "xx0r.eu", true },
{ "xxffo.com", true },
{ "xxiz.com", true },
- { "xxx3dbdsm.com", true },
- { "xxxladyboysporn.com", true },
{ "xxxlbox.com", true },
- { "xyfun.net", true },
- { "xyngular-health.com", true },
+ { "xxxsuper.net", true },
+ { "xy6161.com", true },
+ { "xy6262.com", true },
+ { "xy6363.com", true },
+ { "xy7171.com", true },
+ { "xy7272.com", true },
+ { "xy7373.com", true },
+ { "xyenon.bid", true },
+ { "xyfun.net", false },
{ "xywing.com", true },
- { "xyyp.mn", true },
{ "xyzulu.hosting", true },
{ "xza.fr", true },
{ "xzclip.cn", true },
- { "xzoneadventure.com", true },
{ "xzy.es", true },
- { "xzy.one", true },
{ "y11n.net", true },
- { "yabrt.cn", true },
{ "yabuisha.jp", true },
{ "yachigoya.com", true },
{ "yacineboumaza.fr", true },
{ "yacobo.com", true },
{ "yado-furu.com", true },
- { "yafull.com", true },
{ "yafuoku.ru", true },
+ { "yageys.com", 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 },
@@ -37980,36 +42701,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yame2.com", true },
{ "yamilafeinart.de", true },
{ "yamm.io", true },
+ { "yan.lt", true },
{ "yanaduday.com", true },
{ "yanbao.xyz", true },
{ "yandere.moe", true },
+ { "yangcs.net", true },
{ "yangjingwen.cn", true },
{ "yangmaodang.org", true },
+ { "yangmi.blog", true },
{ "yanngraf.ch", true },
{ "yanngraf.com", true },
+ { "yannic.world", true },
{ "yannick.cloud", true },
{ "yannik-buerkle.de", true },
{ "yannikbloscheck.com", true },
- { "yannikhenke.de", true },
+ { "yannis.codes", 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 },
{ "yatesun.com", true },
{ "yatorie.net", true },
+ { "yatstudios.com", true },
{ "yatsuenpoon.com", true },
{ "yaup.tk", true },
{ "yawen.me", true },
- { "yawnbox.com", true },
{ "yaxim.org", true },
- { "yazaral.com", true },
{ "ybin.me", true },
{ "ybresson.com", true },
{ "ybsul.com", true },
@@ -38020,11 +42743,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ychon.com", true },
{ "ychong.com", true },
{ "yclan.net", true },
+ { "ycnrg.org", true },
{ "yd.io", true },
{ "yeapdata.com", true },
+ { "yecl.net", false },
{ "yeesker.com", true },
{ "yell.ml", true },
+ { "yellotalk.co", true },
{ "yellowpages.ee", true },
+ { "yellowtaillasvegas.com", true },
+ { "yellowtree.co.za", true },
{ "yelon.hu", true },
{ "yelp.at", true },
{ "yelp.be", true },
@@ -38060,11 +42788,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yelp.se", true },
{ "yemektarifleri.com", true },
{ "yenibilgi.net", true },
- { "yennhi.co", 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 },
{ "yetii.net", true },
@@ -38072,47 +42800,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yeu.io", true },
{ "yex.nz", true },
{ "yex.trade", true },
+ { "yeyi.site", true },
{ "yfengs.moe", true },
{ "ygobbs.com", true },
- { "yh35.net", true },
+ { "ygrene.com", true },
+ { "ygreneworks.com", true },
{ "yh599.cc", true },
{ "yhaupenthal.org", true },
{ "yhb.io", true },
{ "yhe.me", true },
+ { "yhenke.de", true },
+ { "yhfou.com", true },
+ { "yhhh.org", true },
{ "yhndnzj.com", true },
{ "yhong.me", true },
{ "yhrd.org", true },
- { "yhwj.top", false },
- { "yicknam.my", true },
- { "yiffy.tips", false },
- { "yiffy.zone", false },
{ "yigujin.cn", true },
+ { "yiheng.moe", true },
{ "yii2.cc", true },
{ "yikeyong.com", true },
{ "yimgo.fr", true },
- { "yin8888.tv", true },
{ "yinfor.com", true },
{ "yingatech.com", true },
{ "yinglinda.love", true },
{ "yinlei.org", true },
- { "yipingguo.com", true },
+ { "yisin.net", true },
{ "yiyuanzhong.com", true },
{ "yiyueread.com", true },
{ "yiz96.com", true },
- { "yjsw.sh.cn", true },
+ { "yjsoft.me", true },
+ { "ykhut.com", true },
{ "yksityisyydensuoja.fi", true },
{ "ylde.de", true },
- { "ylilauta.org", true },
{ "ylinternal.com", true },
{ "ymarion.de", true },
{ "ymblaw.com", true },
+ { "ymoah.nl", true },
{ "ymtsonline.org", true },
{ "ynnovasport.be", true },
+ { "yoa.st", true },
+ { "yoast.com", true },
{ "yobai-grouprec.jp", true },
- { "yobai28.com", true },
- { "yobbelwobbel.de", true },
+ { "yobbelwobbel.de", false },
{ "yobify.com", true },
- { "yocchan1513.net", true },
{ "yoga-alliance-teacher-training.com", true },
{ "yoga-bad-toelz.de", true },
{ "yoga-in-aying.de", true },
@@ -38121,116 +42851,132 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yoga-zentrum-narayani.de", true },
{ "yogabhawnamission.com", true },
{ "yogacentric.co.uk", true },
+ { "yogahealsinc.org", true },
+ { "yogamea.school", true },
{ "yogananda-roma.org", true },
{ "yogaschoolrishikesh.com", true },
{ "yoibyoin.info", true },
+ { "yoimise.net", true },
{ "yoitoko.city", true },
{ "yoitsu.moe", true },
{ "yokohama-legaloffice.jp", true },
+ { "yokone3-kutikomi.com", true },
{ "yolo.jetzt", true },
{ "yolobert.de", true },
- { "yoloboatrentals.com", false },
+ { "yoloboatrentals.com", true },
{ "yolops.net", true },
{ "yombo.net", true },
+ { "yon.co.il", true },
{ "yongbin.org", true },
{ "yoonas.com", true },
{ "yooooex.com", true },
+ { "yoplate.com", true },
+ { "yoppoy.com", true },
{ "yopuedo.co", true },
{ "yoramvandevelde.net", true },
{ "yorcom.nl", false },
{ "yorcool.nl", true },
{ "yorkshiredalesinflatables.co.uk", true },
{ "yorkshireinflatables.co.uk", true },
- { "yorname.ml", true },
+ { "yorname.ml", false },
{ "yosbeda.com", true },
{ "yosemo.de", true },
- { "yosheenetwork.fr", true },
{ "yoshibaworks.com", true },
{ "yoshitsugu.net", true },
+ { "yosida-dental.com", true },
+ { "yosida95.com", true },
{ "yospos.org", true },
- { "yotilab.com", true },
+ { "yoticonnections.com", true },
{ "yotta-zetta.com", true },
{ "yotubaiotona.net", true },
{ "you.com.br", true },
+ { "you2you.fr", true },
{ "youareme.ca", true },
{ "youc.ir", true },
+ { "youcanfuckoff.xyz", true },
{ "youcanmakeit.at", true },
{ "youcruit.com", true },
- { "youdowell.com", true },
{ "youdungoofd.com", true },
- { "youftp.tk", true },
{ "yougee.ml", true },
{ "youhacked.me", true },
{ "youhavewords.com", true },
{ "youhua.ru", true },
- { "youjizz.bz", true },
{ "youkaryote.com", true },
{ "youkaryote.org", true },
{ "youked.com", true },
{ "youkok2.com", true },
- { "youlend.com", true },
{ "youlovehers.com", true },
- { "youmonit.me", 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-idc.tk", true },
{ "your-out.com", true },
+ { "your-waterserver.com", true },
+ { "youracnepro.com", true },
{ "youran.me", true },
+ { "yourbittorrent.com", true },
+ { "yourbittorrent.host", true },
+ { "yourbittorrent.icu", true },
+ { "yourbittorrent.pw", true },
+ { "yourbittorrent2.com", 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 },
{ "yourgames.tv", true },
- { "yourhair.net", true },
- { "yourname.xyz", true },
+ { "yourlanguages.de", true },
+ { "yourmemorykeeper.co.uk", true },
{ "yourneighborhub.com", true },
{ "yourskin.nl", true },
+ { "yourstake.org", true },
{ "yourticketbooking.com", true },
+ { "yourtrainer.com", true },
{ "yousei.ne.jp", true },
{ "yout.com", true },
{ "youth.gov", true },
+ { "youthovation.org", true },
+ { "youthrules.gov", true },
{ "youtous.me", true },
{ "youtsuu-raku.com", true },
{ "youtube.com", true },
{ "youtubedownloader.com", true },
{ "youtuberis.lt", true },
- { "youwatchporn.com", true },
{ "yoxall.me.uk", true },
{ "yoyoost.duckdns.org", true },
{ "ypart.eu", true },
{ "ypid.de", true },
- { "ypiresia.fr", false },
{ "yplanapp.com", true },
+ { "ypse.com.br", true },
{ "yqjf68.com", true },
{ "yr166166.com", true },
+ { "yrjanheikki.com", true },
{ "ys-shop.biz", true },
+ { "ysicing.me", true },
{ "ysicing.net", true },
{ "ysicorp.com", true },
{ "yslbeauty.com", 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 },
+ { "ytx588.com", true },
{ "yu.gg", false },
{ "yu.vc", true },
{ "yuan.ga", true },
{ "yuanben.io", true },
- { "yuanbenlian.com", true },
- { "yuanjiazhao.tk", true },
+ { "yuanjiazhao.com", true },
{ "yubi.co", true },
{ "yubicloud.io", true },
{ "yubico.ae", true },
@@ -38286,53 +43032,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yubikeyservices.eu", true },
{ "yubiking.com", true },
{ "yue.la", true },
- { "yuema.net.cn", true },
- { "yuka.one", true },
+ { "yuexiangzs.com", true },
+ { "yugasun.com", true },
+ { "yuisyo.ml", true },
{ "yukari.cafe", true },
+ { "yukari.cloud", true },
{ "yuki-nagato.com", true },
{ "yuki.xyz", true },
- { "yukimochi.com", true },
- { "yukimochi.io", true },
- { "yukimochi.jp", true },
{ "yukonconnector.com", true },
{ "yukonlip.com", true },
{ "yukontec.com", true },
{ "yumeconcert.com", true },
- { "yumli.net", true },
- { "yummylooks.com", true },
{ "yunity.org", true },
{ "yunjishou.pro", true },
+ { "yuntong.tw", true },
{ "yunzhu.li", true },
- { "yuqi.me", true },
{ "yuricarlenzoli.it", true },
{ "yurikirin.me", true },
{ "yurimoens.be", true },
{ "yurisviridov.com", true },
{ "yusa.me", true },
{ "yushi.moe", true },
+ { "yusu.org", true },
{ "yutakato.net", true },
+ { "yutang.vn", true },
{ "yutangyun.com", true },
{ "yutuo.net", true },
+ { "yuuki0xff.jp", true },
+ { "yuuta.moe", true },
{ "yuwei.org", true },
{ "yuweiyang.xyz", true },
- { "yuxingxin.com", true },
{ "yuxuan.org", true },
+ { "yuyo.com", true },
{ "yuyu.io", true },
{ "yuzei.tk", true },
{ "yveshield.com", true },
{ "yveslegendre.fr", true },
{ "yvesx.com", true },
- { "yvetteerasmus.com", true },
{ "yvonnehaeusser.de", true },
{ "yvonnethomet.ch", true },
{ "yvonnewilhelmi.com", true },
- { "yxt521.com", true },
- { "yya.bid", true },
{ "yya.me", true },
- { "yya.men", true },
{ "yyc.city", true },
{ "yyyy.xyz", true },
{ "yzal.io", true },
+ { "yzcloud.me", true },
{ "yzer.club", true },
{ "yzimroni.net", true },
{ "z-konzept-nutrition.ru", true },
@@ -38340,48 +43084,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "z-vector.com", true },
{ "z.ai", true },
{ "z1h.de", true },
- { "z33.ch", true },
- { "z33.co", true },
{ "z4k.de", true },
{ "z99944x.xyz", true },
{ "za.search.yahoo.com", false },
{ "zaagbaak.nl", true },
- { "zaalleatherwear.nl", false },
{ "zabbix.tips", true },
{ "zabszk.net", true },
{ "zabukovnik.net", true },
{ "zacadam.com", true },
{ "zacarias.com.ar", true },
{ "zacavi.com.br", true },
+ { "zacchaeus.co.uk", true },
+ { "zacco.site", true },
{ "zach.codes", true },
{ "zacharopoulos.eu", true },
{ "zacharopoulos.org", false },
{ "zacharydubois.me", true },
{ "zacharyschneider.com", true },
+ { "zacharyseguin.ca", true },
{ "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 },
+ { "zagluszaczgps.pl", true },
{ "zahe.me", true },
{ "zahnaerzte-bohne.de", true },
{ "zahnarzt-duempten.de", true },
{ "zahnarzt-hofer.de", true },
{ "zahnarzt-kramer.ch", true },
{ "zahnarzt-muenich.de", true },
+ { "zahnmedizinzentrum.com", true },
{ "zajazd.biz", true },
+ { "zakariya.blog", true },
{ "zakcutner.uk", true },
+ { "zakelijketaalcursus.nl", true },
+ { "zakelijkgoedengelsleren.nl", true },
{ "zakladam.cz", true },
{ "zakmccrac.de", true },
{ "zakojifarm.jp", true },
+ { "zakoncontrol.com", false },
{ "zakr.es", true },
{ "zakspartiesandevents.com", true },
{ "zalamea.ph", true },
{ "zaloghaz.ro", true },
+ { "zaltv.com", true },
+ { "zalvus.com", true },
{ "zamalektoday.com", true },
{ "zamocosmeticos.com.br", true },
{ "zamow.co", true },
@@ -38390,14 +43140,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zanellidesigns.co.uk", true },
{ "zanthra.com", true },
{ "zanzabar.it", true },
- { "zapatoshechoamano.pe", true },
+ { "zanzo.cz", true },
{ "zapier.com", true },
+ { "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 },
@@ -38407,41 +43153,49 @@ 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 },
- { "zbetcheck.in", true },
+ { "zbanks.cn", true },
{ "zbrane-doplnky.cz", true },
+ { "zbut.bg", true },
+ { "zby.io", true },
{ "zbyga.cz", true },
{ "zbyte.it", true },
{ "zcarot.com", true },
{ "zcarrot.com", true },
{ "zcgram.com", true },
{ "zcon.nl", true },
+ { "zcore.org", true },
{ "zcr.ca", true },
+ { "zcryp.to", true },
{ "zdbl.de", true },
{ "zdenekspacek.cz", true },
{ "zdorovayasimya.com", true },
- { "zdravesteny.cz", true },
+ { "zdrave-konzultace.cz", true },
+ { "zdravekonzultace.cz", true },
+ { "zdravystul.cz", true },
{ "zdrojak.cz", true },
+ { "zdymak.by", true },
{ "ze3kr.com", true },
{ "zeal-interior.com", true },
{ "zealworks.jp", true },
{ "zebbra.ro", true },
{ "zebedeescastles.co.uk", true },
- { "zebibyte.cn", true },
{ "zebulon.fr", true },
{ "zeds-official.com", true },
{ "zeebrieshoekvanholland.nl", true },
{ "zeel.com", true },
- { "zeelynk.com", true },
+ { "zeestraten.nl", true },
{ "zeetoppers.nl", true },
{ "zeeuw.nl", true },
{ "zeguigui.com", true },
+ { "zehkae.net", true },
+ { "zeibekiko-souvlaki.gr", true },
+ { "zeidlertechnik.de", true },
{ "zeilenmethans.nl", true },
{ "zeilles.nu", true },
- { "zeitoununiversity.org", true },
{ "zeitpunkt-kulturmagazin.de", true },
{ "zekesnider.com", true },
{ "zekinteractive.com", true },
@@ -38450,21 +43204,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zemlova.cz", true },
{ "zen-diez.de", true },
{ "zen-ume.com", true },
+ { "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 },
- { "zenmate.com.tr", true },
+ { "zenluxuryliving.com", true },
+ { "zennzimie.be", true },
+ { "zennzimie.com", true },
{ "zenofa.co.id", true },
{ "zentask.io", true },
- { "zentiweb.nl", true },
+ { "zenti.cloud", true },
{ "zenvideocloud.com", true },
+ { "zenvite.com", true },
+ { "zenycosta.com", true },
{ "zephyrbk.com", true },
{ "zephyrbookkeeping.com", true },
+ { "zephyretcoraline.com", true },
{ "zeplin.io", true },
{ "zer0-day.pw", true },
{ "zer0.de", false },
@@ -38477,57 +43236,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zeropush.com", true },
{ "zeroseteatacado.com.br", true },
{ "zerossl.com", true },
- { "zertif.info", true },
+ { "zerosync.com", true },
+ { "zerotoone.de", true },
+ { "zerowastesavvy.com", true },
{ "zertitude.com", true },
{ "zeryn.net", true },
{ "zespia.tw", false },
{ "zestylemon.co.uk", true },
{ "zetamode.com", true },
{ "zetorzeszow.pl", false },
- { "zetrov.pl", true },
{ "zettaplan.ru", true },
{ "zettlmeissl.de", true },
{ "zevelev.net", true },
{ "zfast.com.br", true },
{ "zfg.li", true },
{ "zfly.me", true },
- { "zfo.gg", true },
{ "zfree.co.nz", true },
{ "zg-dyw.net", true },
{ "zgrep.org", true },
{ "zh.search.yahoo.com", false },
{ "zhang-hao.com", true },
{ "zhang.nz", true },
- { "zhangcheng.org", true },
{ "zhangfangzhou.com", true },
{ "zhangge.net", true },
{ "zhanghao.me", true },
{ "zhangheda.cf", true },
+ { "zhangshuqiao.org", true },
{ "zhangsidan.com", true },
+ { "zhangwendao.com", true },
{ "zhangyuhao.com", true },
{ "zhangzifan.com", false },
+ { "zhaoeq.com", true },
{ "zhaofeng.li", true },
+ { "zhaopage.com", true },
{ "zhaoxixiangban.cc", true },
{ "zhcexo.com", true },
+ { "zhdd.pl", true },
{ "zhen-chen.com", true },
{ "zhengjie.com", true },
+ { "zhenic.ir", true },
+ { "zhi.ci", true },
{ "zhiku8.com", true },
{ "zhima.io", true },
{ "zhitanska.com", true },
- { "zhiwei.me", true },
{ "zhl123.com", true },
{ "zhome.info", true },
- { "zhoushuo.me", true },
+ { "zhongzicili.ws", true },
+ { "zhost.io", true },
+ { "zhouba.cz", true },
+ { "zhoushuo.me", false },
{ "zhoutiancai.cn", true },
{ "zhovner.com", true },
{ "zhthings.com", true },
{ "zhuihoude.com", true },
{ "zhuji.com", true },
- { "zhuji.com.cn", true },
- { "zhuji5.com", true },
- { "zhuweiyou.com", true },
{ "zi.is", true },
- { "ziegler-family.com", true },
{ "ziegler-heizung-frankfurt.de", true },
{ "zielonakarta.com", true },
{ "ziemlich-zackig.de", true },
@@ -38546,31 +43309,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zilore.com", true },
{ "zilsen.com", true },
{ "zima.io", true },
+ { "zimaoxy.com", true },
{ "zimiao.moe", true },
{ "zimmer-voss.de", true },
{ "zingarastore.com", true },
{ "zingjerijk.nl", true },
{ "zings.eu", true },
{ "zinniamay.com", true },
+ { "zinnowitzer-ferienwohnung.de", true },
{ "zinoui.com", true },
{ "ziondrive.com.br", true },
+ { "zionnationalpark.net", true },
+ { "zionsvillelocksmiths.com", true },
{ "zip.ch", true },
{ "zipkey.de", true },
- { "ziptie.com", true },
{ "zircode.com", true },
+ { "zirka24.net", true },
{ "ziroh.be", true },
+ { "zirrka.de", true },
+ { "zirtek.ie", true },
{ "zirtual.com", true },
- { "zitrone44.de", true },
{ "zitseng.com", true },
{ "zittingskalender.be", true },
+ { "zivagold.com", 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 },
- { "zixo.sk", true },
- { "ziz.exchange", true },
+ { "zizcollections.com", true },
+ { "zjateaucafe.be", true },
+ { "zjv.me", true },
+ { "zk.com.co", true },
{ "zk.gd", true },
{ "zk9.nl", true },
+ { "zkontrolujsiauto.cz", true },
{ "zkrypt.cc", true },
{ "zkzone.net", true },
{ "zlatakus.cz", true },
@@ -38578,10 +43357,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zlaty-tyden.cz", true },
{ "zlatytyden.cz", true },
{ "zlavomat.sk", true },
- { "zlc1994.com", true },
{ "zlima12.com", true },
{ "zlypi.com", true },
- { "zmala.com", true },
{ "zmarta.de", true },
{ "zmarta.dk", true },
{ "zmarta.fi", true },
@@ -38593,10 +43370,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zmartagroup.no", true },
{ "zmartagroup.se", true },
{ "znation.nl", true },
+ { "znhglobalresources.com", true },
{ "zny.pw", true },
+ { "zoarcampsite.uk", true },
{ "zobraz.cz", true },
{ "zobworks.com", true },
{ "zoccarato.ovh", true },
+ { "zochowskiplasticsurgery.com", true },
{ "zockenbiszumumfallen.de", true },
{ "zodgame.us", true },
{ "zodiacohouses.com", true },
@@ -38604,40 +43384,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zofrex.com", true },
{ "zohar.wang", true },
{ "zoigl.club", true },
+ { "zoisfinefood.com", true },
{ "zojadravai.com", true },
{ "zoki.art", true },
- { "zolokar.xyz", true },
- { "zombiesecured.com", true },
+ { "zollihood.ch", true },
+ { "zom.bi", true },
{ "zomerschoen.nl", true },
+ { "zomiac.pp.ua", true },
{ "zonadigital.co", true },
{ "zone-produkte.de", false },
{ "zone39.com", true },
- { "zone403.net", true },
{ "zonecb.com", true },
{ "zonehomesolutions.com", true },
{ "zonemaster.fr", true },
{ "zonemaster.net", true },
+ { "zonesec.org", true },
{ "zonewatcher.com", true },
{ "zonglovani.info", true },
{ "zonky.cz", true },
{ "zonkysetkani.cz", true },
- { "zoo.city", false },
- { "zoofit.com.au", true },
{ "zooish.net", true },
{ "zook.systems", true },
{ "zoola.io", true },
{ "zoolaboo.de", true },
+ { "zoological-gardens.eu", true },
{ "zoom.earth", true },
+ { "zoomcar.pro", true },
{ "zoomek.com", true },
- { "zoomseoservices.com", false },
{ "zooom.azurewebsites.net", true },
{ "zooom2.azurewebsites.net", true },
+ { "zoop.ml", true },
{ "zooparadies.eu", true },
{ "zooplankton.no", true },
{ "zootime.net", true },
{ "zootime.org", true },
{ "zoowiki.us", true },
- { "zooxdata.com", true },
{ "zopy.com.br", true },
{ "zopyx.com", true },
{ "zor.com", true },
@@ -38645,18 +43426,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zorgclustertool.nl", true },
{ "zorig.ch", true },
{ "zorium.org", true },
- { "zorki.nl", true },
{ "zorntt.fr", true },
+ { "zotero.org", true },
{ "zouk.info", true },
{ "zouyaoji.top", true },
+ { "zozo.com", true },
{ "zozzle.co.uk", true },
+ { "zp25.ninja", true },
{ "zqwqz.com", true },
+ { "zr.is", true },
{ "zravypapir.cz", true },
{ "zrhdwz.cn", true },
{ "zrkr.de", true },
{ "zrniecka-pre-sny.sk", true },
{ "zrnieckapresny.sk", true },
- { "zrt.io", true },
+ { "zrt.io", false },
+ { "zry-blog.top", true },
{ "zs-ohradni.cz", true },
{ "zs-reporyje.cz", true },
{ "zscales.com", false },
@@ -38664,13 +43449,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zskomenskeho.cz", true },
{ "zskomenskeho.eu", true },
{ "zsoltsandor.me", true },
+ { "zsq.im", true },
{ "zsrbcs.com", true },
{ "zten.org", true },
{ "ztjuh.tk", true },
- { "zuan-in.com", true },
- { "zuan-in.net", true },
{ "zubel.it", false },
- { "zubora.co", true },
+ { "zubr.net", true },
{ "zubro.net", true },
{ "zuefle.net", true },
{ "zug-anwalt.de", true },
@@ -38682,6 +43466,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zula.africa", true },
{ "zulu.ro", true },
{ "zum-baur.de", true },
+ { "zumazar.ru", true },
{ "zund-app.com", true },
{ "zundapp529.nl", true },
{ "zundappachterhoek.nl", true },
@@ -38692,13 +43477,11 @@ 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 },
{ "zvps.uk", true },
{ "zvxr.net", true },
- { "zwalcz-cellulit.com", true },
{ "zwartendijkstalling.nl", true },
{ "zwb3.de", true },
{ "zwerimex.com", true },
@@ -38706,18 +43489,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zwollemag.nl", true },
{ "zwollemagazine.nl", true },
{ "zwy.ch", true },
- { "zx1168.com", true },
- { "zx2268.com", true },
{ "zx6rninja.de", true },
{ "zx7r.de", true },
- { "zxavier.com", true },
+ { "zxc.science", false },
{ "zxe.com.br", true },
{ "zxtcode.com", true },
{ "zy.md", true },
{ "zybbo.com", true },
{ "zyciedlazwierzat.pl", true },
{ "zyciedogorynogami.pl", true },
- { "zyger.co.za", true },
+ { "zydronium.com", true },
+ { "zydronium.nl", true },
+ { "zygozoon.com", true },
{ "zylai.com", true },
{ "zymmm.com", true },
{ "zypern-firma.com", true },
@@ -38725,6 +43508,8 @@ 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();
});
diff --git a/security/manager/ssl/tests/unit/test_weak_crypto.js b/security/manager/ssl/tests/unit/test_weak_crypto.js
index effedf8e3..3367e9067 100644
--- a/security/manager/ssl/tests/unit/test_weak_crypto.js
+++ b/security/manager/ssl/tests/unit/test_weak_crypto.js
@@ -77,7 +77,6 @@ function startServer(cert, rc4only) {
onStopListening: function() {}
};
- tlsServer.setSessionCache(false);
tlsServer.setSessionTickets(false);
tlsServer.setRequestClientCertificate(Ci.nsITLSServerSocket.REQUEST_NEVER);
if (rc4only) {