diff options
Diffstat (limited to 'security')
-rw-r--r-- | security/manager/ssl/DataStorage.cpp | 3 | ||||
-rw-r--r-- | security/manager/ssl/SSLServerCertVerification.cpp | 147 | ||||
-rw-r--r-- | security/manager/ssl/TransportSecurityInfo.cpp | 7 | ||||
-rw-r--r-- | security/manager/ssl/nsKeygenHandler.cpp | 43 | ||||
-rw-r--r-- | security/manager/ssl/nsNSSCallbacks.cpp | 61 | ||||
-rw-r--r-- | security/manager/ssl/nsNSSComponent.cpp | 57 | ||||
-rw-r--r-- | security/manager/ssl/nsNSSIOLayer.cpp | 31 | ||||
-rw-r--r-- | security/manager/ssl/nsNTLMAuthModule.cpp | 5 | ||||
-rw-r--r-- | security/manager/ssl/nsPKCS11Slot.cpp | 4 | ||||
-rw-r--r-- | security/manager/ssl/nsSTSPreloadList.errors | 5653 | ||||
-rw-r--r-- | security/manager/ssl/nsSTSPreloadList.inc | 9069 | ||||
-rw-r--r-- | security/manager/ssl/tests/gtest/DeserializeCertTest.cpp | 86 | ||||
-rw-r--r-- | security/manager/ssl/tests/unit/test_weak_crypto.js | 1 |
13 files changed, 10193 insertions, 4974 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..daabca591 100644 --- a/security/manager/ssl/nsNSSCallbacks.cpp +++ b/security/manager/ssl/nsNSSCallbacks.cpp @@ -490,31 +490,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 +971,6 @@ PreliminaryHandshakeDone(PRFileDesc* fd) } else { infoObject->SetNegotiatedNPN(nullptr, 0); } - mozilla::Telemetry::Accumulate(Telemetry::SSL_NPN_TYPE, state); } else { infoObject->SetNegotiatedNPN(nullptr, 0); } @@ -1091,9 +1065,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 +1089,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,7 +1104,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 @@ -1197,7 +1166,6 @@ AccumulateCipherSuite(Telemetry::ID probe, const SSLChannelInfo& channelInfo) break; } MOZ_ASSERT(value != 0); - Telemetry::Accumulate(probe, value); } // In the case of session resumption, the AuthCertificate hook has been bypassed @@ -1309,7 +1277,6 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) { infoObject->GetPort(), versions.max); - bool usesFallbackCipher = false; SSLChannelInfo channelInfo; rv = SSL_GetChannelInfo(fd, &channelInfo, sizeof(channelInfo)); MOZ_ASSERT(rv == SECSuccess); @@ -1318,7 +1285,6 @@ 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, @@ -1329,15 +1295,6 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) { 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 +1316,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 +1334,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 +1369,6 @@ void HandshakeCallback(PRFileDesc* fd, void* client_data) { } else { state = nsIWebProgressListener::STATE_IS_SECURE | nsIWebProgressListener::STATE_SECURE_HIGH; - if (!usesFallbackCipher) { - SSLVersionRange defVersion; - rv = SSL_VersionRangeGetDefault(ssl_variant_stream, &defVersion); - if (rv == SECSuccess && versions.max >= defVersion.max) { - // we know this site no longer requires a fallback cipher - ioLayerHelpers.removeInsecureFallbackSite(infoObject->GetHostName(), - infoObject->GetPort()); - } - } } if (status->HasServerCert()) { diff --git a/security/manager/ssl/nsNSSComponent.cpp b/security/manager/ssl/nsNSSComponent.cpp index 025f4bda2..4fc8c142e 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 @@ -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..93fca396b 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 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 fa74755b2..90bfe502a 100644 --- a/security/manager/ssl/nsSTSPreloadList.errors +++ b/security/manager/ssl/nsSTSPreloadList.errors @@ -1,5 +1,5 @@ 0-1.party: could not connect to host -0.me.uk: did not receive HSTS header +0.me.uk: could not connect to host 00001.am: max-age too low: 129600 00002.am: max-age too low: 129600 0005.com: could not connect to host @@ -7,27 +7,49 @@ 0005pay.com: did not receive HSTS header 00220022.net: could not connect to host 007-preisvergleich.de: could not connect to host +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 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 020wifi.nl: could not connect to host +0222.mg: did not receive HSTS header 0222aa.com: could not connect to host -023838.com: did not receive HSTS header +023838.com: could not connect to host +028718.com: did not receive HSTS header +029978.com: could not connect to host 029inno.com: could not connect to host 02dl.net: 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 +055268.com: did not receive HSTS header 066318.com: could not connect to host +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 +078805.com: did not receive HSTS header +078810.com: did not receive HSTS header +078820.com: did not receive HSTS header +078860.com: did not receive HSTS header +078890.com: did not receive HSTS header +081638.com: did not receive HSTS header +083962.com: could not connect to host +086628.com: did not receive HSTS header 0c.eu: did not receive HSTS header 0cdn.ga: could not connect to host 0day.su: could not connect to host @@ -42,11 +64,12 @@ 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 @@ -54,21 +77,25 @@ 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 1001.best: could not connect to host +1001firms.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] 100onrainkajino.com: could not connect to host 1017scribes.com: could not connect to host 1018hosting.nl: did not receive HSTS header 1022996493.rsc.cdn77.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 +1100.so: could not connect to host 1116pay.com: did not receive HSTS header +11bt.cc: did not receive HSTS header 11recruitment.com.au: did not receive HSTS header -12.net: did not receive HSTS header 120dayweightloss.com: could not connect to host 123110.com: could not connect to host 123movies.fyi: did not receive HSTS header @@ -81,15 +108,17 @@ 127011-networks.ch: could not connect to host 12vpn.org: could not connect to host 12vpnchina.com: could not connect to host +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 -15-10.com: did not receive HSTS header +1391kj.com: did not receive HSTS header +1396.cc: could not connect to host +1396.net: did not receive HSTS header 1536.cf: could not connect to host -160887.com: did not receive HSTS header 16164f.com: could not connect to host 163pwd.com: could not connect to host -166166.com: could not connect to host +1689886.com: did not receive HSTS header 168bet9.com: could not connect to host 168esb.com: could not connect to host 16deza.com: did not receive HSTS header @@ -98,16 +127,20 @@ 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 188trafalgar.ca: did not receive HSTS header 1912x.com: could not connect to host +19216811.online: could not connect to host 1921958389.rsc.cdn77.org: could not connect to host -195gm.com: did not receive HSTS header +195gm.com: could not connect to host 1a-jva.de: could not connect to host 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] @@ -117,48 +150,59 @@ 1k8b.com: could not connect to host 1nian.vip: could not connect to host 1pw.ca: did not receive HSTS header +1q2w.nl: could not connect to host 1q365a.com: could not connect to host 1s.tn: could not connect to host +1salland.nl: could not connect to host 1st4abounce.co.uk: did not receive HSTS header 1stcapital.com.sg: did not receive HSTS header +1ststop.co.uk: did not receive HSTS header 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 +1years.cc: could not connect to host 2-cpu.de: could not connect to host +200fcw.com: could not connect to host +2018.wales: could not connect to host 20188088.com: did not receive HSTS header 2048game.co.uk: could not connect to host 206rc.net: max-age too low: 2592000 208.es: did not receive HSTS header 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 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 -256pages.com: did not receive HSTS header 25daysof.io: could not connect to host -260887.com: did not receive HSTS header +27728522.com: could not connect to host 2859cc.com: could not connect to host +286.com: did not receive HSTS header 29227.com: could not connect to host 2acbi-asso.fr: did not receive HSTS header -2au.ru: could not connect to host 2b3b.com: could not connect to host 2bitout.com: could not connect to host 2bizi.ru: could not connect to host +2bouncy.com: did not receive HSTS header 2brokegirls.org: could not connect to host 2carpros.com: did not receive HSTS header 2fl.me: did not receive HSTS header +2gen.com: could not connect to host 2intermediate.co.uk: did not receive HSTS header 2or3.tk: could not connect to host +2programmers.net: did not receive HSTS header 2smart4food.com: could not connect to host 2ss.jp: did not receive HSTS header 300651.ru: did not receive HSTS header @@ -166,7 +210,7 @@ 300mbmovies4u.cc: could not connect to host 301.website: could not connect to host 302.nyc: could not connect to host -30hzcollective.com: could not connect to host +30yearmortgagerates.net: did not receive HSTS header 3133780x.com: did not receive HSTS header 314166.com: could not connect to host 314chan.org: could not connect to host @@ -174,19 +218,22 @@ 32ph.com: could not connect to host 330.net: 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 +33drugstore.com: could not connect to host +341.mg: could not connect to host 34oztonic.eu: did not receive HSTS header 3555500.com: could not connect to host 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 +38888msc.com: could not connect to host +38blog.com: could not connect to host 38sihu.com: could not connect to host 3candy.com: could not connect to host 3chit.cf: could not connect to host @@ -197,13 +244,13 @@ 3dm.audio: could not connect to host 3dproteinimaging.com: did not receive HSTS header 3fl.com: did not receive HSTS header -3lot.ru: 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 -4-it.de: could not connect to host +40-grad.de: max-age too low: 2628000 4036aa.com: did not receive HSTS header 4036bb.com: did not receive HSTS header 4036cc.com: did not receive HSTS header @@ -213,27 +260,22 @@ 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: max-age too low: 86400 +42day.info: 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 -440887.com: did not receive HSTS header 440hz-radio.de: did not receive HSTS header 440hz.radio: did not receive HSTS header -442887.com: did not receive HSTS header -443887.com: did not receive HSTS header -444887.com: did not receive HSTS header +441jj.com: could not connect to host 4455software.com: could not connect to host -445887.com: did not receive HSTS header 44957.com: could not connect to host +44sec.com: could not connect to host +4500.co.il: did not receive HSTS header 4679.space: did not receive HSTS header -4706666.com: did not receive HSTS header -4716666.com: did not receive HSTS header -4726666.com: did not receive HSTS header -4736666.com: did not receive HSTS header -4756666.com: did not receive HSTS header -4786666.com: did not receive HSTS header +478933.com: could not connect to host 47tech.com: could not connect to host 4997777.com: could not connect to host 4azino777.ru: did not receive HSTS header @@ -241,7 +283,6 @@ 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 4hvac.com: did not receive HSTS header 4loc.us: could not connect to host 4miners.net: could not connect to host @@ -250,10 +291,12 @@ 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 +500fcw.com: could not connect to host +50ma.xyz: could not connect to host 50millionablaze.org: could not connect to host 513vpn.net: could not connect to host 517vpn.cn: could not connect to host @@ -263,62 +306,78 @@ 52b9.net: could not connect to host 52kb.net: could not connect to host 52kb1.com: could not connect to host -52neptune.com: could not connect to host +52neptune.com: did not receive HSTS header 540.co: did not receive HSTS header +5432.cc: did not receive HSTS header 54bf.com: could not connect to host 555fl.com: max-age too low: 129600 555xl.com: could not connect to host +55bt.cc: did not receive HSTS header 56877.com: could not connect to host 56ct.com: could not connect to host 57aromas.com: did not receive HSTS header -57he.com: did not receive HSTS header +5chat.it: could not connect to host +5ece.de: could not connect to host 5piecesofadvice.com: could not connect to host +5thchichesterscouts.org.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] 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: 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 -6677.us: did not receive HSTS header +64970.com: could not connect to host +64bitgaming.de: could not connect to host +660011.com: could not connect to host +66205.net: did not receive HSTS header +67899876.com: did not receive HSTS header 68277.me: could not connect to host 688da.com: could not connect to host 692b8c32.de: could not connect to host 69mentor.com: could not connect to host 69square.com: could not connect to host -7045h.com: could not connect to host +6ird.com: did not receive HSTS header +6z3.net: 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 +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: could not connect to host +789zr.com: max-age too low: 86400 7f-wgg.cf: could not connect to host 7links.com.br: did not receive HSTS header +7nw.eu: could not connect to host 7thheavenrestaurant.com: could not connect to host -7trade8.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: could not connect to host 808phone.net: could not connect to host +81818app.com: could not connect to host 81uc.com: could not connect to host +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 -86metro.ru: 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 -887.ag: did not receive HSTS header 8887999.com: could not connect to host 8888av.co: could not connect to host 888azino.com: did not receive HSTS header @@ -326,6 +385,7 @@ 88d.com: could not connect to host 88laohu.cc: could not connect to host 88laohu.com: could not connect to host +8989k3.com: could not connect to host 89955.com: could not connect to host 899699.com: did not receive HSTS header 89he.com: could not connect to host @@ -334,51 +394,67 @@ 8da2018.com: could not connect to host 8mpay.com: did not receive HSTS header 8t88.biz: could not connect to host +8ung.online: could not connect to host +8xx.io: could not connect to host 90smthng.com: could not connect to host 91-freedom.com: could not connect to host +910kj.com: did not receive HSTS header 9118b.com: could not connect to host 911911.pw: could not connect to host -915ers.com: did not receive HSTS header -918yy.com: did not receive HSTS header +915ers.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 922.be: could not connect to host 92bmh.com: did not receive HSTS header +9454.com: max-age too low: 86400 94cs.cn: did not receive HSTS header 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 +9822.com: did not receive HSTS header +9822.info: did not receive HSTS header +987987.com: did not receive HSTS header +9906753.net: did not receive HSTS header 99511.fi: did not receive HSTS header 99buffets.com: could not connect to host +9iwan.net: did not receive HSTS header 9jadirect.com: could not connect to host 9point6.com: could not connect to host -a-intel.com: did not receive HSTS header +9ss6.com: could not connect to host +9vies.ca: could not connect to host +a-intel.com: could not connect to host a-ix.net: could not connect to host a-plus.space: could not connect to host a-rickroll-n.pw: could not connect to host +a-shafaat.ir: did not receive HSTS header 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 a3workshop.swiss: could not connect to host +a8q.org: could not connect to host a9c.co: could not connect to host +aa43d.cn: could not connect to host aa7733.com: could not connect to host -aacfree.com: did not receive HSTS header aaeblog.com: did not receive HSTS header aaeblog.net: did not receive HSTS header aaeblog.org: did not receive HSTS header +aaex.cloud: 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 aaron-gustafson.com: did not receive HSTS header +aaronburt.co.uk: could not connect to host aaronmcguire.me: did not receive HSTS header aarvinproperties.com: could not connect to host -aati.info: could not connect to host -abandonedmines.gov: 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 abcdef.be: could not connect to host @@ -387,6 +463,8 @@ abcdobebe.com: did not receive HSTS header abchelp.net: did not receive HSTS header abearofsoap.com: could not connect to host abecodes.net: could not connect to host +abeontech.com: could not connect to host +aberdeenalmeras.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] abi-fvs.de: could not connect to host abigailstark.com: could not connect to host abilitylist.org: did not receive HSTS header @@ -395,7 +473,7 @@ 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 @@ -403,7 +481,10 @@ 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 @@ -419,8 +500,8 @@ 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 -acat.io: could not connect to host acbc.ie: max-age too low: 0 +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 @@ -428,11 +509,12 @@ 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 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 acgaudio.com: could not connect to host @@ -440,6 +522,7 @@ 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 +achmadfamily.com: could not connect to host achow101.com: did not receive HSTS header achterhoekseveiligheidsbeurs.nl: could not connect to host acisonline.net: did not receive HSTS header @@ -449,28 +532,35 @@ acoffeeshops.com: could not connect to host acorns.com: did not receive HSTS header acpinformatique.fr: could not connect to host acr.im: could not connect to host +acraft.org: could not connect to host acrepairdrippingsprings.com: could not connect to host acritelli.com: did not receive HSTS header acrossgw.com: could not connect to host +acsihostingsolutions.com: did not receive HSTS header acslimited.co.uk: did not receive HSTS header actilove.ch: could not connect to host actiontowingroundrock.com: could not connect to host 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 activistasconstructivos.org: did not receive HSTS header activiti.alfresco.com: did not receive HSTS header +actom.cc: could not connect to host actu-film.com: max-age too low: 0 actu-medias.com: could not connect to host actualite-videos.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] acuve.jp: could not connect to host +acyume.com: did not receive HSTS header ad-disruptio.fr: could not connect to host +ad13.in: did not receive HSTS header 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 adamricheimer.com: could not connect to host +adamsfoundationrepair.com: 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 @@ -481,37 +571,47 @@ 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.com: did not receive HSTS header adminwerk.net: did not receive HSTS header -admirable.one: did not receive HSTS header admiral.dp.ua: did not receive HSTS header admitcard.co.in: could not connect to host admsel.ec: could not connect to host 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 adprospb.com: did not receive HSTS header +adquisitio.co.uk: could not connect to host adquisitio.de: could not connect to host +adquisitio.es: could not connect to host +adquisitio.fr: could not connect to host adquisitio.in: could not connect to host +adquisitio.it: could not connect to host 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 @@ -525,7 +625,7 @@ advancedplasticsurgerycenter.com: did not receive HSTS header advancedseotool.it: did not receive HSTS header advancedstudio.ro: could not connect to host advancedwriters.com: could not connect to host -advantagemechanicalinc.com: did not receive HSTS header +advantagemechanicalinc.com: could not connect to host adventistdeploy.org: could not connect to host adventures.is: did not receive HSTS header adver.top: could not connect to host @@ -533,35 +633,43 @@ advertisemant.com: could not connect to host adviespuntklokkenluiders.nl: could not connect to host adzie.xyz: could not connect to host adzuna.co.uk: did not receive HSTS header +aegialis.com: did not receive HSTS header +aelurus.com: could not connect to host aemoria.com: could not connect to host aeon.wiki: could not connect to host aerialmediapro.net: could not connect to host aerolog.co: did not receive HSTS header aeroparking.es: did not receive HSTS header -aerotheque.fr: did not receive HSTS header +aerotheque.fr: could not connect to host 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 +afb24.de: 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 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 +aflamtorrent.com: could not connect to host afmchandler.com: did not receive HSTS header afp548.tk: could not connect to host after.im: did not receive HSTS header afterstack.net: could not connect to host -afvallendoeje.nu: could not connect to host +afvallendoeje.nu: did not receive HSTS header 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 +agbremen.de: did not receive HSTS header agdalieso.com.ba: could not connect to host agelesscitizen.com: could not connect to host agelesscitizens.com: could not connect to host @@ -570,26 +678,31 @@ agenciagriff.com: did not receive HSTS header agencymanager.be: could not connect to host agentseeker.ca: could not connect to host agevio.com: could not connect to host +agiairini.cz: could not connect to host +agilebits.net: could not connect to host agileecommerce.com.br: could not connect to host agingstop.net: could not connect to host -agonswim.com: did not receive HSTS header +aginion.net: did not receive HSTS header +agonswim.com: could not connect to host agoravm.tk: could not connect to host agowa.eu: did not receive HSTS header agowa338.de: did not receive HSTS header +agracan.com: could not connect to host agrafix.design: did not receive HSTS header agrarking.com: could not connect to host -agrias.com.br: could not connect to host -agricolo.ch: 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 +agroyard.com.ua: could not connect to host agtv.com.br: did not receive HSTS header ahabingo.com: did not receive HSTS header ahelos.tk: could not connect to host -ahkubiak.ovh: could not connect to host -ahlz.sk: could not connect to host -ahmedcharles.com: could not connect to host +aheng.me: could not connect to host +ahiru3.com: did not receive HSTS header +ahmetozer.org: max-age too low: 0 aholic.co: did not receive HSTS header ahoynetwork.com: could not connect to host ahri.ovh: could not connect to host @@ -597,41 +710,48 @@ ahsin.online: could not connect to host ahwah.net: could not connect to host ahwatukeefoothillsmontessori.com: did not receive HSTS header ai1989.com: could not connect to host +aibaoyou.com: could not connect to host aibsoftware.mx: could not connect to host -aicial.co.uk: could not connect to host -aicial.com: did not receive HSTS header +aicial.com: could not connect to host aicial.com.au: could not connect to host aid-web.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] aidanwoods.com: did not receive HSTS header -aide-admin.com: could not connect to host +aide-admin.com: did not receive HSTS header aidikofflaw.com: did not receive HSTS header aiesecarad.ro: could not connect to host +aiforsocialmedia.com: 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] aikenorganics.com: could not connect to host -aim-consultants.com: could not connect to host +aim-consultants.com: did not receive HSTS header +aimerworld.com: did not receive HSTS header aimrom.org: could not connect to host ainrb.com: could not connect to host 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 -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 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 aiticon.de: did not receive HSTS header +aivene.com: could not connect to host aiw-thkoeln.online: could not connect to host +aixxe.net: did not receive HSTS header ajetaci.cz: could not connect to host -ajibot.com: did not receive HSTS header +ajibot.com: could not connect to host ajmahal.com: could not connect to host ajouin.com: could not connect to host ajw-group.com: did not receive HSTS header @@ -647,17 +767,21 @@ akiba-server.info: could not connect to host akihiro.xyz: 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 -akritikos.info: 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] +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 +akul.co.in: could not connect to host al-f.net: could not connect to host al-shami.net: could not connect to host alanhuang.name: did not receive HSTS header 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 @@ -665,71 +789,83 @@ alarmsystemreviews.com: did not receive HSTS header alasta.info: could not connect to host alauda-home.de: could not connect to host alaundeil.xyz: could not connect to host +albanboye.info: could not connect to host albanien.guide: could not connect to host alberguecimballa.es: could not connect to host +albertbogdanowicz.pl: could not connect to host albertify.xyz: could not connect to host albertonplumber24-7.co.za: did not receive HSTS header albertopimienta.com: did not receive HSTS header +albrocar.com: did not receive HSTS header alcantarafleuriste.com: did not receive HSTS header +alcatelonetouch.us: could not connect to host alcatraz.online: could not connect to host 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 aleax.me: could not connect to host alecvannoten.be: did not receive HSTS header -aleksejjocic.tk: 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] +alessandroz.ddns.net: could not connect to host alessandroz.pro: could not connect to host alethearose.com: did not receive HSTS header -alexandre.sh: did not receive HSTS header -alexbaker.org: did not receive HSTS header +alexandernorth.ch: could not connect to host +alexandre.sh: could not connect to host alexdodge.ca: did not receive HSTS header alexei.su: could not connect to host alexfisherhealth.com.au: did not receive HSTS header 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 alfa24.pro: could not connect to host -alfaperfumes.com.br: could not connect to host alfaponny.se: could not connect to host 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 +alghaib.com: could not connect to host alibababee.com: did not receive HSTS header -alien.bz: could not connect to host -alikulov.me: did not receive HSTS header +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 +alistairholland.me: did not receive HSTS header alistairpialek.com: max-age too low: 86400 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 -allenosgood.com: could not connect to host -allfreelancers.su: did not receive HSTS header +allerbestefreunde.de: 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 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 allods-zone.ru: did not receive HSTS header @@ -745,13 +881,17 @@ allsortscastles.co.uk: 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 alpha.irccloud.com: could not connect to host alphabit-secure.com: could not connect to host alphabuild.io: could not connect to host @@ -770,29 +910,34 @@ altbinaries.com: could not connect to host alteqnia.com: could not connect to host alterbaum.net: could not connect to host altercpa.ru: did not receive HSTS header +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 aluminium-scaffolding.co.uk: could not connect to host alunjam.es: did not receive HSTS header -alunonaescola.com.br: could not connect to host +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 +alvn.ga: could not connect to host am8888.top: could not connect to host -amaderelectronics.com: did not receive HSTS header -amadilo.de: did not receive HSTS header +amaderelectronics.com: max-age too low: 2592000 +amadilo.de: could not connect to host +amadoraslindas.com: could not connect to host amaforums.org: did not receive HSTS header -amagical.net: did not receive HSTS header amandaonishi.com: could not connect to host amaranthus.com.ph: could not connect to host -amartinz.at: could not connect to host +amateri.com: could not connect to host 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 @@ -806,57 +951,61 @@ americanoutlawjeepparts.com: did not receive HSTS header americansforcommunitydevelopment.org: did not receive HSTS header americansportsinstitute.org: did not receive HSTS header americanworkwear.nl: did not receive HSTS header +ameschristian.net: did not receive HSTS header amethystcards.co.uk: could not connect to host +ameza.co.uk: could not connect to host +ameza.com.mx: could not connect to host +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 amishsecurity.com: could not connect to host amitse.com: did not receive HSTS header -amitube.com: did not receive HSTS header -amleeds.co.uk: could not connect to host +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 amo-entreprise-et-commerce.fr: could not connect to host amobileway.co.uk: did not receive HSTS header amoory.com: could not connect to host -amoozesh98.com: could not connect to host -amoozesh98.ir: could not connect to host amorimendes.com.br: could not connect to host ampledesigners.com: could not connect to host ampleinfographics.com: could not connect to host amri.nl: did not receive HSTS header -amsportuk.com: 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 -anaethelion.fr: could not connect to host anagra.ms: could not connect to host +anaiscoachpersonal.es: did not receive HSTS header +anaisypirueta.es: did not receive HSTS header 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 -analyticum.at: could not connect to host -analyticum.com: could not connect to host -analyticum.de: could not connect to host -analyticum.eu: could not connect to host -analyticum.net: could not connect to host analyzemyfriends.com: could not connect to host -anastasiafond.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 +ancientnorth.com: did not receive HSTS header andbraiz.com: did not receive HSTS header andere-gedanken.net: max-age too low: 10 anderslind.dk: could not connect to host @@ -868,22 +1017,21 @@ andreasbreitenlohner.de: max-age too low: 600000 andreasfritz-fotografie.de: could not connect to host andreaskluge.eu: could not connect to host andreastoneman.com: could not connect to host -andrei-coman.com: could not connect to host +andrei-coman.com: did not receive HSTS header andreigec.net: did not receive HSTS header +andrejbenz.com: could not connect to host +andrepicard.de: could not connect to host andrerose.ca: did not receive HSTS header -andrew.fi: did not receive HSTS header -andrew.london: did not receive HSTS header andrewbroekman.com: did not receive HSTS header andrewdavidwong.com: did not receive HSTS header andrewdaws.co: could not connect to host andrewdaws.info: could not connect to host andrewdaws.me: could not connect to host andrewdaws.tv: could not connect to host -andrewhowden.com: 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 andrewyg.net: could not connect to host @@ -898,6 +1046,8 @@ andyclark.io: 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 +andysroom.dynu.net: 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 @@ -910,13 +1060,19 @@ angeloroberto.ch: did not receive HSTS header angeloventuri.com: did not receive HSTS header angervillelorcher.fr: did not receive HSTS header anghami.com: did not receive HSTS header +anglertanke.de: could not connect to host anglictinatabor.cz: could not connect to host +angrut.com: did not receive HSTS header 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 +anguiao.com: could not connect to host +anim.ee: could not connect to host +animal-nature-human.com: could not connect to host animalnet.de: max-age too low: 7776000 animalstropic.com: could not connect to host +animatelluris.nl: could not connect to host anime1.top: could not connect to host anime1video.tk: could not connect to host animeday.ml: could not connect to host @@ -929,22 +1085,25 @@ anisekai.com: max-age too low: 2592000 anita-mukorom.hu: did not receive HSTS header anitklib.ml: could not connect to host anitube-nocookie.ch: could not connect to host -anivar.net: could not connect to host +anivar.net: did not receive HSTS header ankakaak.com: could not connect to host ankaraprofesyonelnakliyat.com: did not receive HSTS header ankaraprofesyonelnakliyat.com.tr: did not receive HSTS header ankitha.in: max-age too low: 0 +anlp.top: could not connect to host annabellaw.com: did not receive HSTS header annahmeschluss.de: did not receive HSTS header annarbor.group: did not receive HSTS header annetaan.fi: could not connect to host annevankesteren.com: could not connect to host annevankesteren.org: could not connect to host +annicascakes.nl: could not connect to host annrusnak.com: did not receive HSTS header annsbouncycastles.com: could not connect to host anomaly.ws: did not receive HSTS header anonboards.com: could not connect to host anonrea.ch: could not connect to host +anonukradio.org: could not connect to host anonymo.co.uk: could not connect to host anonymo.uk: could not connect to host anonymousstatecollegelulzsec.com: could not connect to host @@ -960,6 +1119,9 @@ 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 +anthony.codes: did not receive HSTS header +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 @@ -967,6 +1129,7 @@ antifraud.net.ru: could not connect to host antimatiere.space: could not connect to host antimine.kr: could not connect to host antipa.ch: could not connect to host +antirayapmalang.com: did not receive HSTS header antoine-roux.fr: did not receive HSTS header antoinebetas.be: max-age too low: 0 antoined.fr: did not receive HSTS header @@ -974,44 +1137,50 @@ 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 anyfood.fi: 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 api.mega.co.nz: could not connect to host apibot.de: could not connect to host apience.com: did not receive HSTS header +apila.us: could not connect to host +apis.blue: could not connect to host apis.google.com: did not receive HSTS header (error ignored - included regardless) apis.world: could not connect to host +apivia.fr: did not receive HSTS header +apkdv.com: 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 +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 @@ -1021,27 +1190,32 @@ 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 +appchive.net: could not connect to host appdb.cc: did not receive HSTS header appdrinks.com: could not connect to host appeldorn.me: did not receive HSTS header appengine.google.com: did not receive HSTS header (error ignored - included regardless) 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: could not connect to host applez.xyz: could not connect to host +appliancerepairlosangeles.com: did not receive HSTS header applic8.com: did not receive HSTS header +apply55gx.com: could not connect to host appointed.at: did not receive HSTS header appraisal-comps.com: could not connect to host appreciationkards.com: did not receive HSTS header +apprenticeships.gov: did not receive HSTS header approlys.fr: did not receive HSTS header apps-for-fishing.com: could not connect to host apps4all.sytes.net: could not connect to host appsbystudio.co.uk: did not receive HSTS header appsdash.io: could not connect to host +appson.co.uk: did not receive HSTS header apptoutou.com: could not connect to host appuro.com: did not receive HSTS header -appxcrypto.com: did not receive HSTS header aprpullmanportermuseum.org: did not receive HSTS header aptitude9.com: could not connect to host aqqrate.com: could not connect to host @@ -1051,41 +1225,52 @@ aquilalab.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 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 areallyneatwebsite.com: could not connect to host -arent.kz: could not connect to host +arent.kz: did not receive HSTS header arenzanaphotography.com: could not connect to host arewedubstepyet.com: did not receive HSTS header 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 arguggi.co.uk: could not connect to host +ariaartgallery.com: did not receive HSTS header ariacreations.net: did not receive HSTS header +ariege-pyrenees.net: did not receive HSTS header arifburhan.online: could not connect to host arifp.me: could not connect to host arinflatablefun.co.uk: could not connect to host arislight.com: could not connect to host +aristilabs.com: did not receive HSTS header +aristocrates.co: could not connect to host +aristocratps.com: did not receive HSTS header arithxu.com: did not receive HSTS header arka.gq: did not receive HSTS header arknodejs.com: could not connect to host arlen.io: could not connect to host arlen.se: could not connect to host +arlet.click: could not connect to host arlingtonwine.net: could not connect to host +arm-host.com: did not receive HSTS header 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 @@ -1094,8 +1279,9 @@ armored.ninja: did not receive HSTS header armory.consulting: could not connect to host armory.supplies: could not connect to host armsday.com: could not connect to host -armyofbane.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 @@ -1104,7 +1290,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 @@ -1113,6 +1298,7 @@ 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 @@ -1121,10 +1307,10 @@ 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 -artificial.army: could not connect to host artiming.com: could not connect to host artisanhd.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] artisavotins.com: could not connect to host @@ -1137,10 +1323,9 @@ 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 -arvindhariharan.me: did not receive HSTS header +arxell.com: 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 @@ -1150,44 +1335,46 @@ asana.studio: did not receive HSTS header asasuou.pw: could not connect to host asc16.com: could not connect to host aschaefer.net: could not connect to host -asciitable.tips: could not connect to host asdpress.cn: could not connect to host asepms.com: max-age too low: 7776000 +asge-handel.de: did not receive HSTS header ashlane-cottages.com: could not connect to host ashleakunowski.com: could not connect to host ashleyadum.com: could not connect to host ashleyfoley.photography: could not connect to host ashleymedway.com: could not connect to host +asian-archi.com.tw: did not receive HSTS header asianbet77.co: did not receive HSTS header asianbet77.net: did not receive HSTS header asisee.co.il: could not connect to host -ask.fedoraproject.org: did not receive HSTS header +asisee.photography: could not connect to host ask.pe: could not connect to host -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: could not connect to host -asmm.cc: did not receive HSTS header +asmik-armenie.com: 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 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 +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 assetsupervision.com: could not connect to host assindia.nl: could not connect to host +assistance-personnes-agees.ch: could not connect to host +assistcart.com: could not connect to host assurancesmons.be: did not receive HSTS header -astaninki.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [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 asthon.cn: could not connect to host astraalivankila.net: could not connect to host astral.gq: did not receive HSTS header +astral.org.pl: could not connect to host astrath.net: could not connect to host astrea-voetbal-groningen.nl: could not connect to host astrolpost.com: could not connect to host @@ -1208,25 +1395,31 @@ 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 ateliernihongo.ch: did not receive HSTS header ateliersantgervasi.com: did not receive HSTS header 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 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 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 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 +atrinik.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] attic118.com: could not connect to host attimidesigns.com: did not receive HSTS header attogproductions.com: did not receive HSTS header @@ -1234,11 +1427,12 @@ au-pair24.de: did not receive HSTS header au.search.yahoo.com: max-age too low: 172800 aubiosales.com: could not connect to host aucubin.moe: could not connect to host -audiense.com: did not receive HSTS header +audioonly.stream: could not connect to host audiovisualdevices.com.au: did not receive HSTS header audividi.shop: did not receive HSTS header aufmerksamkeitsstudie.com: could not connect to host aufprise.de: did not receive HSTS header +augaware.org: 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 @@ -1249,7 +1443,7 @@ 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 @@ -1257,8 +1451,7 @@ ausec.ch: could not connect to host 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 @@ -1273,8 +1466,8 @@ 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 -autism-osaka.org: could not connect to host auto-serwis.zgorzelec.pl: could not connect to host auto3d.cn: could not connect to host auto4trade.nl: could not connect to host @@ -1283,12 +1476,12 @@ 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 autojuhos.sk: could not connect to host automobiles5.com: could not connect to host autos-retro-plaisir.com: did not receive HSTS header -autosearch.me: could not connect to host +autosearch.me: did not receive HSTS header autosiero.nl: did not receive HSTS header autostock.me: could not connect to host autostop-occasions.be: could not connect to host @@ -1300,13 +1493,13 @@ 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 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 @@ -1314,9 +1507,12 @@ avg.club: did not receive HSTS header avi9526.pp.ua: could not connect to host aviacao.pt: did not receive HSTS header avidcruiser.com: did not receive HSTS header +avidmode-staging.com: did not receive HSTS header aviodeals.com: could not connect to host -avitres.com: could not connect to host +avitres.com: did not receive HSTS header +avmemo.com: could not connect to host avmo.pw: could not connect to host +avmoo.com: could not connect to host avonlearningcampus.com: could not connect to host avso.pw: could not connect to host avspot.net: could not connect to host @@ -1324,6 +1520,7 @@ 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 awf0.xyz: could not connect to host awg-mode.de: did not receive HSTS header @@ -1337,18 +1534,22 @@ 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 axiumacademy.com: did not receive HSTS header +axka.com: could not connect to host axolsoft.com: max-age too low: 10540800 +axtudo.com: did not receive HSTS header +axtux.tk: could not connect to host axxial.tk: could not connect to host ayahuascaadvisor.com: could not connect to host ayatk.com: did not receive HSTS header +ayesh.win: could not connect to host +aymericlagier.com: 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 @@ -1357,16 +1558,18 @@ azino777.ru: 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 +azun.pl: did not receive HSTS header +azuxul.fr: could not connect to host 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 b1236.com: could not connect to host b2b-nestle.com.br: could not connect to host b2bpromoteit.com: did not receive HSTS header b3orion.com: could not connect to host -b72.com: could not connect to host -b72.net: could not connect to host +b422edu.com: could not connect to host +b61688.com: could not connect to host b8a.me: could not connect to host b9520.com: could not connect to host b9568.com: could not connect to host @@ -1375,8 +1578,13 @@ b9886.com: could not connect to host b98886.com: could not connect to host b9930.com: could not connect to host b99520.com: could not connect to host -b9970.com: could not connect to host +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 b9winner.com: could not connect to host babelfisch.eu: could not connect to host babursahvizeofisi.com: could not connect to host @@ -1388,25 +1596,32 @@ 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 +backupsinop.com.br: did not receive HSTS header backyardbbqbash.com: did not receive HSTS header baconate.com: did not receive HSTS header +bad.horse: could not connect to host bad.show: could not connect to host 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: could not connect to host bagiobella.com: max-age too low: 0 baiduaccount.com: could not connect to host baildonhottubs.co.uk: could not connect to host @@ -1416,6 +1631,7 @@ 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] 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 @@ -1426,12 +1642,13 @@ baldwinkoo.com: could not connect to host baleares.party: could not connect to host balenciaspa.com: did not receive HSTS header balihai.com: did not receive HSTS header -balilingo.ooo: did not receive HSTS header +balilingo.ooo: could not connect to host ballbusting-cbt.com: could not connect to host +ballitolocksmith.com: could not connect to host balloonphp.com: could not connect to host +balnearionaturaspa.com: did not receive HSTS header balonmano.co: could not connect to host bals.org: did not receive HSTS header -balticer.de: did not receive HSTS header bambambaby.com.br: could not connect to host bamtoki.com: could not connect to host bamtoki.se: could not connect to host @@ -1443,58 +1660,69 @@ 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 banduhn.com: did not receive HSTS header -bangdream.ga: could not connect to host -bangzafran.com: did not receive HSTS header +bangzafran.com: could not connect to host bank: could not connect to host bankcircle.co.in: could not connect to host +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 +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 +barcouniforms.com: did not receive HSTS header bardiel.de: max-age too low: 0 -bardiharborow.com: did not receive HSTS header barely.sexy: could not connect to host -bargainmovingcompany.com: could not connect to host +bargainmovingcompany.com: did not receive HSTS header bariller.fr: did not receive HSTS header +baris-sagdic.com: could not connect to host barisi.me: could not connect to host +barnrats.com: could not connect to host baropkamp.be: did not receive HSTS header barprive.com: could not connect to host barqo.co: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] barracuda.blog: could not connect to host barrelhead.org: could not connect to host -barrett.ag: did not receive HSTS header +barrett.ag: could not connect to host 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 +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 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 batfoundry.com: could not connect to host +batonger.com: could not connect to host +batten.eu.org: could not connect to host +batteryservice.ru: did not receive HSTS header baud.ninja: could not connect to host baudairenergyservices.com: could not connect to host baum.ga: did not receive HSTS header baumstark.ca: could not connect to host -bayer-stefan.com: could not connect to host -bayerstefan.com: could not connect to host bayinstruments.com: could not connect to host bayrisch-fuer-anfaenger.de: did not receive HSTS header baysse.eu: did not receive HSTS header @@ -1503,6 +1731,7 @@ 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 +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 @@ -1513,23 +1742,32 @@ 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 +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 bcsytv.com: could not connect to host +bcvps.com: could not connect to host bcweightlifting.ca: could not connect to host +bdata.cl: did not receive HSTS header bddemir.com: could not connect to host bde-epitech.fr: could not connect to host bdenzer.com: did not receive HSTS header bdenzer.xyz: could not connect to host bdsmxxxpics.com: could not connect to host be-real.life: did not receive HSTS header +be9966.com: could not connect to host beach-inspector.com: did not receive HSTS header beachi.es: could not connect to host beaglewatch.com: could not connect to host @@ -1542,31 +1780,35 @@ 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: could not connect to host +becoast.fr: did not receive HSTS header becubed.co: could not connect to host bedabox.com: did not receive HSTS header bedeta.de: could not connect to host bedouille.com: could not connect to host bedreid.dk: did not receive HSTS header bedrijvenadministratie.nl: could not connect to host +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 +beethoveninlove.com: did not receive HSTS header 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 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 +belcompany.nl: did not receive HSTS header belewpictures.com: could not connect to host belgien.guide: could not connect to host belize-firmengruendung.com: could not connect to host @@ -1579,13 +1821,17 @@ belwederczykow.eu: could not connect to host bemcorp.de: did not receive HSTS header bemvindoaolar.com.br: did not receive HSTS header bemyvictim.com: max-age too low: 2678400 -ben-energy.com: could not connect to host +benchcast.com: could not connect to host bendechrai.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 @@ -1594,16 +1840,20 @@ benk.press: could not connect to host benny003.de: could not connect to host 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 +benzi.io: could not connect to host 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: could not connect to host beraru.tk: could not connect to host +beraten-entwickeln-steuern.de: could not connect to host berdu.id: did not receive HSTS header -berduri.com: 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 @@ -1611,6 +1861,7 @@ 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 +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 @@ -1624,20 +1875,25 @@ 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 -bestbatteriesonline.com: could not connect to host bestbeards.ca: could not connect to host bestbestbitcoin.com: could not connect to host +bestbonuses.co.uk: did not receive HSTS header +bestcellular.com: did not receive HSTS header bestellipticalmachinereview.info: 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 +bestparking.xyz: could not connect to host bestschools.top: did not receive HSTS header bestwarezone.com: could not connect to host bet990.com: could not connect to host @@ -1645,15 +1901,15 @@ betaclean.fr: did not receive HSTS header betafive.net: could not connect to host betakah.net: could not connect to host betamint.org: did not receive HSTS header -betcafearena.ro: could not connect to host +betcafearena.ro: did not receive HSTS header betformular.com: could not connect to host +bethanyduke.com: could not connect to host bethditto.com: did not receive HSTS header betkoo.com: could not connect to host betnet.fr: could not connect to host 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 @@ -1662,15 +1918,18 @@ 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 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 @@ -1682,10 +1941,15 @@ 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 +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 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 @@ -1696,8 +1960,10 @@ 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 @@ -1709,34 +1975,35 @@ 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 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 +bijoux.com.br: could not connect to host +bijouxbrasil.com.br: did not receive HSTS header bijouxdegriffe.com.br: could not connect to host bijugeral.com.br: could not connect to host bikelifetvkidsquads.co.uk: could not connect to host bikermusic.net: 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 billdestler.com: did not receive HSTS header -billgoldstein.name: 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 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 -binarycreations.scot: could not connect to host -binaryfigments.com: max-age too low: 86400 +binaryfigments.com: max-age too low: 7776000 binderapp.net: could not connect to host bingcheung.com: could not connect to host bingcheung.org: could not connect to host @@ -1745,12 +2012,10 @@ bingo9.net: could not connect to host bingofriends.com: could not connect to host bingostars.com: did not receive HSTS header binimo.com: could not connect to host -binsp.net: could not connect to host biocrafting.net: could not connect to host 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 @@ -1758,27 +2023,33 @@ biou.me: could not connect to host biovalue.eu: could not connect to host bip.gov.sa: could not connect to host birdandbranchnyc.com: max-age too low: 43200 +birkengarten.ch: could not connect to host birkman.com: did not receive HSTS header biscuits-rec.com: could not connect to host biscuits-shop.com: could not connect to host bismarck.moe: did not receive HSTS header bisterfeldt.com: did not receive HSTS header biswas.me: could not connect to host -bit.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 +bitbr.net: could not connect to host bitcantor.com: did not receive HSTS header bitchan.it: could not connect to host +bitclubfun.com: did not receive HSTS header bitcoin-casino-no-deposit-bonus.com: max-age too low: 0 bitcoin-class.com: could not connect to host bitcoin-daijin.com: could not connect to host +bitcoin.com: did not receive HSTS header 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 +bitcointhefts.com: 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 @@ -1791,19 +2062,20 @@ bithosting.io: 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: did not receive HSTS header +bitmon.net: could not connect to host bitnet.io: did not receive HSTS header +bitok.com: did not receive HSTS header bitplay.space: could not connect to host bitpod.de: could not connect to host bitrage.de: could not connect to host bitraum.io: could not connect to host -bitroll.com: did not receive HSTS header +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 bittervault.xyz: could not connect to host bituptick.com: did not receive HSTS header @@ -1812,31 +2084,33 @@ 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 +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 -bizzartech.com: could not connect to host +bizzartech.com: did not receive HSTS header bizzybeebouncers.co.uk: could not connect to host -bjgongyi.com: could not connect to host +bjgongyi.com: did not receive HSTS header +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 -bklaindia.com: 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-khat.com: could not connect to host +black-gay-porn.biz: could not connect to host black-octopus.ru: could not connect to host +blackapron.com.br: could not connect to host blackberrycentral.com: could not connect to host blackburn.link: could not connect to host +blackdesertsp.com: could not connect to host blackdiam.net: did not receive HSTS header -blackl.net: 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 -blacknova.io: could not connect to host -blackpayment.ru: did not receive HSTS header +blacknova.io: did not receive HSTS header +blackpayment.ru: could not connect to host blackphantom.de: could not connect to host blackscreen.me: could not connect to host blackunicorn.wtf: could not connect to host @@ -1846,17 +2120,20 @@ blantik.net: could not connect to host blarg.co: could not connect to host blauwwit.be: did not receive HSTS header blazeit.io: could not connect to host +blechpirat.name: did not receive HSTS header 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: max-age too low: 2592000 blha303.com.au: 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 blinkenlight.co.uk: could not connect to host blinkenlight.com.au: could not connect to host blmiller.com: did not receive HSTS header -blockchainced.com: could not connect to host blocksatz-medien.de: could not connect to host blockshopauto.com: could not connect to host blog-ritaline.com: could not connect to host @@ -1865,15 +2142,15 @@ 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 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 blogonblogspot.com: did not receive HSTS header +blok56.nl: did not receive HSTS header blokino.org: did not receive HSTS header blokuhaka.fr: did not receive HSTS header bloodyexcellent.com: did not receive HSTS header @@ -1887,17 +2164,21 @@ blucas.org: did not receive HSTS header blue17.co.uk: did not receive HSTS header bluebill.net: did not receive HSTS header bluecon.eu: did not receive HSTS header -bluefinger.nl: 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 -bluemosh.com: could not connect to host -blueoakart.com: could not connect to host +bluemoonroleplaying.com: 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 @@ -1906,19 +2187,21 @@ 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 +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 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 +boboates.com: did not receive HSTS header bodo-wolff.de: could not connect to host bodrumfarm.com: could not connect to host bodyblog.nl: did not receive HSTS header @@ -1927,22 +2210,26 @@ 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.co: could not connect to host bohan.life: could not connect to host bohyn.cz: could not connect to host boiadeirodeberna.com: could not connect to host boilesen.com: did not receive HSTS header bokeyy.com: could not connect to host +bokkeriders.com: could not connect to host bolainfoasia.com: did not receive HSTS header boltdata.io: could not connect to host boltn.uk: did not receive HSTS header -bolwerk.com.br: could not connect to host +bolwerk.com.br: did not receive HSTS header 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 +bondagefetishstore.com: could not connect to host bondtofte.dk: did not receive HSTS header +boneko.de: did not receive HSTS header +bonesserver.com: could not connect to host bonigo.de: did not receive HSTS header bonitabrazilian.co.nz: did not receive HSTS header bonnin.fr: did not receive HSTS header @@ -1957,58 +2244,74 @@ booked.holiday: could not connect to host bookingentertainment.com: did not receive HSTS header bookmakersfreebets.com.au: could not connect to host bookofraonlinecasinos.com: could not connect to host +bookourdjs.com: could not connect to host bookreport.ga: could not connect to host +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 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 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 borrelioz.com: did not receive HSTS header borscheid-wenig.com: did not receive HSTS header boschee.net: could not connect to host +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 boueki.jp: did not receive HSTS header boueki.org: did not receive HSTS header -boukoubengo.com: did not receive HSTS header +bouk.co: could not connect to host bounce-r-us.co.uk: did not receive HSTS header +bouncebeyondcastles.co.uk: did not receive HSTS header bounceboxspc.com: did not receive HSTS header bouncecoffee.com: did not receive HSTS header bouncehighpeak.co.uk: could not connect to host bouncelanduk.co.uk: did not receive HSTS header bouncemasters.co.uk: could not connect to host +bouncewithbovells.com: could not connect to host bouncing4joy.co.uk: could not connect to host bouncingbuzzybees.co.uk: could not connect to host +bouncourseplanner.net: 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 bouwbedrijfpurmerend.nl: did not receive HSTS header bowlsheet.com: did not receive HSTS header -bownty.pt: could not connect to host +bownty.pt: max-age too low: 0 boxcryptor.com: did not receive HSTS header boxdevigneron.fr: could not connect to host boxing-austria.eu: did not receive HSTS header boxintense.com: did not receive HSTS header boxit.es: did not receive HSTS header boxlitepackaging.com: did not receive HSTS header +boxmoe.cn: could not connect to host 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 +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 @@ -2025,25 +2328,26 @@ brainvation.de: did not receive HSTS header brakstad.org: 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 brandnewdays.nl: could not connect to host +brando753.xyz: could not connect to host brandon.so: could not connect to host +brandonlui.ml: could not connect to host brandons.site: could not connect to host brandontaylor-black.com: could not connect to host brandred.net: could not connect to host brandspray.com: 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 breeswish.org: 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 @@ -2060,22 +2364,27 @@ 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 broerweb.nl: could not connect to host broken-oak.com: could not connect to host brookechase.com: did not receive HSTS header brookframework.org: could not connect to host +brossman.it: could not connect to host +brouwerijkoelit.nl: 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 @@ -2083,11 +2392,14 @@ brrd.io: could not connect to host brrr.fr: could not connect to host brunix.net: did not receive HSTS header brunoonline.co.uk: could not connect to host +brunoramos.com: could not connect to host +brunoramos.org: could not connect to host 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 +bs.sb: could not connect to host bsagan.fr: did not receive HSTS header bsalyzer.com: could not connect to host bsc01.dyndns.org: could not connect to host @@ -2095,16 +2407,23 @@ bsdtips.com: could not connect to host bsdug.org: could not connect to host bsklabels.com: did not receive HSTS header bsktweetup.info: could not connect to host -bsociabl.com: could not connect to host bsohoekvanholland.nl: could not connect to host -bsquared.org: could not connect to host bsuess.de: could not connect to host -btc-e.com: did not receive HSTS header +bt78.cn: did not receive HSTS header +bt85.cn: could not connect to host +bt9.cc: did not receive HSTS header +bt96.cn: did not receive HSTS header +bt995.com: did not receive HSTS header +btaoke.com: could not connect to host +btc-e.com: could not connect to host btcdlc.com: could not connect to host btcgo.nl: did not receive HSTS header +btcontract.com: could not connect to host btcp.space: could not connect to host btcpot.ltd: did not receive HSTS header btku.org: could not connect to host +btserv.de: did not receive HSTS header +btth.live: could not connect to host btxiaobai.com: did not receive HSTS header bubba.cc: could not connect to host buben.tech: did not receive HSTS header @@ -2112,15 +2431,18 @@ bubulazi.com: did not receive HSTS header bubulazy.com: did not receive HSTS header buchheld.at: could not connect to host buchverlag-scholz.de: did not receive HSTS header +buck.com: could not connect to host bucket.tk: could not connect to host buckmulligans.com: did not receive HSTS header -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 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 @@ -2139,24 +2461,27 @@ buildsaver.co.za: did not receive HSTS header builmaker.com: did not receive HSTS header 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: did not receive HSTS header -bupu.ml: 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 @@ -2167,13 +2492,17 @@ 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 +busanhs.win: 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 @@ -2182,42 +2511,50 @@ 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 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 buturyu.org: did not receive HSTS header buvinghausen.com: max-age too low: 86400 buybaby.eu: could not connect to host -buybike.shop: could not connect to host buydesired.com: did not receive HSTS header buyessay.org: could not connect to host buyessays.net: could not connect to host -buyfox.de: did not receive HSTS header +buyessayscheap.com: could not connect to host +buyfox.de: could not connect to host buyharpoon.com: 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 +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 bvionline.eu: did not receive HSTS header bw81.xyz: could not connect to host bwear4all.de: 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 bx-web.com: did not receive HSTS header -bxdev.me: could not connect to host by1896.com: could not connect to host by1898.com: could not connect to host by1899.com: could not connect to host by4cqb.cn: could not connect to host -by77.com: could not connect to host +by77.com: did not receive HSTS header by777.com: did not receive HSTS header +bydisk.com: 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 @@ -2233,16 +2570,18 @@ bypassed.press: could not connect to host bypassed.pw: could not connect to host bypassed.rocks: could not connect to host bypassed.site: could not connect to host -bypassed.st: did not receive HSTS header +bypassed.st: could not connect to host bypassed.today: could not connect to host bypassed.works: could not connect to host bypassed.world: could not connect to host bypro.xyz: could not connect to host -byronwade.com: could not connect to host +byronkg.us: could not connect to host +byronr.com: did not receive HSTS header +byronwade.com: did not receive HSTS header +bysb.net: could not connect to host byte.chat: did not receive HSTS header byte.wtf: did not receive HSTS header -bytelog.org: could not connect to host -bytepen.com: 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 @@ -2250,6 +2589,7 @@ bytesund.biz: could not connect to host byteturtle.eu: did not receive HSTS header byurudraw.pics: 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 @@ -2258,35 +2598,40 @@ c2o2.xyz: could not connect to host c3-compose.com: could not connect to host c3.pm: could not connect to host c3b.info: could not connect to host -c3bbs.com: did not receive HSTS header +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 cabsites.com: could not connect to host cabusar.fr: could not connect to host +cachethome.com: could not connect to host +cachethq.io: did not receive HSTS header caconnect.org: could not connect to host cadao.me: did not receive HSTS header -cadburymovies.in.net: could not connect to host +cadburymovies.in.net: did not receive HSTS header cadenadg.gr: did not receive HSTS header -cadre.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-murr.de: did not receive HSTS header cafe-scientifique.org.ec: could not connect to host cafechesscourt.com: could not connect to host -caferagazzi.de: did not receive HSTS header +cafefresco.pe: did not receive HSTS header cafesg.net: could not connect to host +caibi.io: could not connect to host caim.cz: did not receive HSTS header caipai.fm: could not connect to host cairnterrier.com.br: could not connect to host -cajapopcorn.com: did not receive HSTS header +cais.de: did not receive HSTS header +caizx.com: did not receive HSTS header +cajapopcorn.com: max-age too low: 0 cake.care: could not connect to host cal.goip.de: could not connect to host calcularpagerank.com.br: could not connect to host calculatoaresecondhand.xyz: could not connect to host -calebmorris.com: could not connect to host +calebmorris.com: max-age too low: 60 calgaryconstructionjobs.com: did not receive HSTS header callabs.net: could not connect to host +callanbryant.co.uk: did not receive HSTS header calleveryday.com: could not connect to host callision.com: did not receive HSTS header callmereda.com: did not receive HSTS header @@ -2296,18 +2641,19 @@ 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 +calypso-tour.net: could not connect to host calypsogames.net: could not connect to host calyxinstitute.org: could not connect to host camashop.de: did not receive HSTS header camaya.net: did not receive HSTS header cambridgeanalytica.net: could not connect to host cambridgeanalytica.org: did not receive HSTS header -camda.online: could not connect to host camisadotorcedor.com.br: could not connect to host camjackson.net: did not receive HSTS header cammarkets.com: could not connect to host campaignelves.com: did not receive HSTS header campbellsoftware.co.uk: could not connect to host +campeoesdofutebol.com.br: did not receive HSTS header campfire.co.il: did not receive HSTS header campfourpaws.com: did not receive HSTS header campingcarlovers.com: could not connect to host @@ -2315,6 +2661,8 @@ campingdreams.com: did not receive HSTS header campus-cybersecurity.team: did not receive HSTS header campusportalng.com: did not receive HSTS header camsanalytics.com: could not connect to host +camshowhub.com: could not connect to host +camshowverse.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 @@ -2323,41 +2671,46 @@ 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 canifis.net: did not receive HSTS header cannarobotics.com: could not connect to host -canterbury.ws: did not receive HSTS header +canterbury.ws: could not connect to host canyonshoa.com: did not receive HSTS header caodecristachines.com.br: could not connect to host caoyu.info: did not receive HSTS header +capacent.is: did not receive HSTS header +capacitacionyautoempleo.com: did not receive HSTS header capecycles.co.za: did not receive HSTS header capeyorkfire.com.au: did not receive HSTS header capitalonecardservice.com: did not receive HSTS header -caps.is: could not connect to host +capitaltg.com: did not receive HSTS header +capogna.com: could not connect to host +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-rental24.com: did not receive HSTS header car-shop.top: did not receive HSTS header carano-service.de: did not receive HSTS header caraudio69.cz: could not connect to host 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 +carepassport.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 +carey.bio: did not receive HSTS header +carif-idf.net: could not connect to host +carif-idf.org: could not connect to host carlgo11.com: did not receive HSTS header -carlo.mx: did not receive HSTS header carlolly.co.uk: could not connect to host carlosalves.info: could not connect to host carloshmm.com: could not connect to host @@ -2365,17 +2718,18 @@ 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 -carpliyz.com: could not connect to host +caroli.biz: could not connect to host +carpliyz.com: did not receive HSTS header carrando.de: could not connect to host carredejardin.com: could not connect to host carroarmato0.be: did not receive HSTS header carsforbackpackers.com: could not connect to host -carsten.pw: could not connect to host +carsten.pw: did not receive HSTS header carstenfeuls.de: did not receive HSTS header carterorland.com: could not connect to host cartesunicef.be: did not receive HSTS header -carun.us: did not receive HSTS header carwashvapeur.be: could not connect to host +casadellecose.com: did not receive HSTS header casajardininsecticidas.com: did not receive HSTS header casamorelli.com.br: did not receive HSTS header casashopp.com.br: could not connect to host @@ -2387,35 +2741,36 @@ cashfortulsahouses.com: could not connect to host cashless.fr: did not receive HSTS header cashmyphone.ch: could not connect to host cashsector.ga: could not connect to host +casino-cash-flow.su: could not connect to host +casino-cashflow.ru: could not connect to host +casinocashflow.ru: could not connect to host casinolegal.pt: did not receive HSTS header casinolistings.com: could not connect to host casinoluck.com: could not connect to host casinoreal.com: could not connect to host casinostest.com: could not connect to host +casionova.org: did not receive HSTS header casioshop.eu: did not receive HSTS header -casjay.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: could not connect to host -casusgrillcaribbean.com: could not connect to host +castlejackpot.com: did not receive HSTS header +cat73.org: could not connect to host cata.ga: could not connect to host -catalin.pw: 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 catgirl.me: could not connect to host 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 +catinmay.com: did not receive HSTS header catnapstudios.com: could not connect to host catnmeow.com: could not connect to host 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 cavaleria.ro: did not receive HSTS header @@ -2424,14 +2779,17 @@ caveclan.org: did not receive HSTS header cavedevs.de: could not connect to host cavedroid.xyz: could not connect to host cavern.tv: did not receive HSTS header +cayafashion.de: did not receive HSTS header cayounglab.co.jp: did not receive HSTS header +cazes.info: did not receive HSTS header cbamo.org: did not receive HSTS header cbengineeringinc.com: max-age too low: 86400 -cbhq.net: could not connect to host cbi-epa.gov: could not connect to host +cc2729.com: did not receive HSTS header ccayearbook.com: could not connect to host ccblog.de: did not receive HSTS header -ccl-sti.ch: could not connect to host +ccja.ro: did not receive HSTS header +ccl-sti.ch: did not receive HSTS header ccretreatandfarm.com: did not receive HSTS header cctech.ph: could not connect to host cctld.com: could not connect to host @@ -2451,19 +2809,20 @@ cdt.org: did not receive HSTS header ce-agentur.de: 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 -cem.pw: could not connect to host -cemeteriat.com: did not receive HSTS header +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 @@ -2476,10 +2835,15 @@ 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 +centrodoinstalador.com.br: could not connect to host centrolavoro.org: did not receive HSTS header centsforchange.net: could not connect to host +century-group.com: could not connect to host ceoimon.com: did not receive HSTS header +ceoptique.com: could not connect to host cercevelet.com: did not receive HSTS header +ceres1.space: did not receive HSTS header ceresia.ch: could not connect to host ceritamalam.net: could not connect to host cerize.love: could not connect to host @@ -2487,28 +2851,35 @@ cernega.ro: did not receive HSTS header cerpa.com.br: 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 cesidianroot.eu: could not connect to host +cespri.com.pe: did not receive HSTS header +ceta.one: did not receive HSTS header cevrimici.com: could not connect to host +cf-tm.net: could not connect to host cf11.de: did not receive HSTS header cfcnexus.org: could not connect to host cfcproperties.com: did not receive HSTS header cfetengineering.com: could not connect to host -cfneia.org: could not connect to host +cfneia.org: did not receive HSTS header cfoitplaybook.com: could not connect to host +cfsh.tk: could not connect to host cganx.org: could not connect to host 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 +chad.ch: max-age too low: 2592000 chadklass.com: could not connect to host chahub.com: could not connect to host chainmonitor.com: could not connect to host -chalker.io: could not connect to host +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] @@ -2516,18 +2887,20 @@ 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 +channellife.co.nz: did not receive HSTS header +channellife.com.au: did not receive HSTS header channyc.com: did not receive HSTS header -chanshiyu.com: did not receive HSTS header chaos.fail: could not connect to host chaospott.de: did not receive HSTS header chaoswebs.net: did not receive HSTS header chaouby.com: could not connect to host +charakato.com: could not connect to host charge.co: could not connect to host chargejuice.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] charityclear.com: could not connect to host @@ -2540,36 +2913,40 @@ charnleyhouse.co.uk: did not receive HSTS header charonsecurity.com: could not connect to host charp.eu: could not connect to host chartstoffarm.de: did not receive HSTS header -chasafilli.ch: could not connect to host chaseganey.com: did not receive HSTS header chasing-coins.com: did not receive HSTS header chaska.co.za: did not receive HSTS header chasse-et-plaisir.com: did not receive HSTS header chat-porc.eu: did not receive HSTS header chatbot.me: did not receive HSTS header +chatbot.one: could not connect to host chatbots.email: could not connect to host +chateau-belvoir.com: 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 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 -cheapssl.com.tr: could not connect to host +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) +checkras.tk: could not connect to host checkyourmeds.com: did not receive HSTS header cheekylittlerascals.co.uk: did not receive HSTS header cheerflow.com: could not connect to host +cheesefusion.com: could not connect to host cheesetart.my: could not connect to host cheesypicsbooths.co.uk: could not connect to host cheetah85.de: could not connect to host @@ -2584,17 +2961,21 @@ chengtongled.com: did not receive HSTS header chensir.net: could not connect to host chepaofen.com: did not receive HSTS header cherekerry.com: could not connect to host -cherrydropscandycarts.co.uk: did not receive HSTS header +cherrydropscandycarts.co.uk: could not connect to host cherylsoleway.com: did not receive HSTS header chessreporter.nl: did not receive HSTS header chesterbrass.uk: did not receive HSTS header chiamata-aiuto.ch: could not connect to host +chiaramail.com: could not connect to host chib.chat: could not connect to host chicorycom.net: could not connect to host 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 @@ -2602,22 +2983,27 @@ china-line.org: could not connect to host chinternet.xyz: could not connect to host chiphell.com: did not receive HSTS header chirgui.eu: could not connect to host -chiropracticwpb.com: 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 +chocotough.nl: 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 +chollima.pro: could not connect to host chontalpa.pw: could not connect to host 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 +chr0me.sh: 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 @@ -2627,20 +3013,22 @@ 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 +chrismathys.com: could not connect to host chrisopperwall.com: did not receive HSTS header -chrisself.xyz: could not connect to host +chrisself.xyz: max-age too low: 0 christiaandruif.nl: could not connect to host christianbro.gq: could not connect to host christianhoffmann.info: could not connect to host christianhospitaltank.org: did not receive HSTS header -christianillies.de: could not connect to host christiansayswords.com: could not connect to host -christianscholz.eu: 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 chrisvicmall.com: did not receive HSTS header @@ -2649,24 +3037,27 @@ chromaxa.com: could not connect to host chrome: could not connect to host chrome-devtools-frontend.appspot.com: did not receive HSTS header (error ignored - included regardless) chrome.google.com: did not receive HSTS header (error ignored - included regardless) +chronic101.xyz: could not connect to host chronogram.me: did not receive HSTS header chronoproject.com: did not receive HSTS header chrst.ph: could not connect to host -chs.us: max-age too low: 0 +chs.us: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +chsh.moe: could not connect to host chua.cf: could not connect to host +chua.family: did not receive HSTS header chuckame.fr: did not receive HSTS header chulado.com: did not receive HSTS header chundelac.com: could not connect to host -churchux.co: did not receive HSTS header +churchux.co: could not connect to host churchwebcanada.ca: did not receive HSTS header churchwebsupport.com: did not receive HSTS header churrasqueirafacil.com.br: could not connect to host +chxdf.net: could not connect to host ci-labo.com.tw: max-age too low: 7889238 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 -cielly.com: 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 @@ -2675,12 +3066,15 @@ ciicutini.ro: did not receive HSTS header cim2b.de: could not connect to host cimalando.eu: could not connect to host cinartelorgu.com: did not receive HSTS header +cindey.io: could not connect to host cinefilia.tk: could not connect to host +cinelite.club: did not receive HSTS header cinema5.ru: did not receive HSTS header cinemaclub.co: could not connect to host +ciner.is: could not connect to host cinerama.com.br: did not receive HSTS header cintdirect.com: could not connect to host -cioconference.co.nz: did not receive HSTS header +cioconference.co.nz: could not connect to host cipher.co.th: did not receive HSTS header cipher.land: could not connect to host cipherli.st: did not receive HSTS header @@ -2689,32 +3083,36 @@ cipriano.nl: did not receive HSTS header cira.email: could not connect to host circ-logic.com: did not receive HSTS header circlebox.rocks: could not connect to host +cirfi.com: could not connect to host cirrohost.com: did not receive HSTS header ciscohomeanalytics.com: could not connect to host ciscommerce.net: could not connect to host citiagent.cz: could not connect to host citra-emu.org: did not receive HSTS header +citroner.blog: could not connect to host citybusexpress.com: did not receive HSTS header +cityofeastpointemi.gov: could not connect to host cityoflaurel.org: did not receive HSTS header +cityofwadley-ga.gov: could not connect to host citywalkr.com: could not connect to host +ciubotaru.tk: 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 +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 +clapping-rhymes.com: could not connect to host clara-baumert.de: could not connect to host claralabs.com: did not receive HSTS header -claretandbanter.uk: could not connect to host +claretandbanter.uk: did not receive HSTS header clarity-c2ced.appspot.com: did not receive HSTS header claritysrv.com: did not receive HSTS header clarksgaragedoorrepair.com: did not receive HSTS header @@ -2725,7 +3123,6 @@ 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 -claude.tech: could not connect to host claudearpel.fr: did not receive HSTS header claudio4.com: did not receive HSTS header claytoncondon.com: could not connect to host @@ -2737,9 +3134,9 @@ cleanstar.org: could not connect to host clear.ml: could not connect to host clearc.tk: could not connect to host clearchatsandbox.com: could not connect to host -clearkonjac.com: could not connect to host clearsky.me: did not receive HSTS header clearviewwealthprojector.com.au: could not connect to host +clementfevrier.fr: could not connect to host clemovementlaw.com: could not connect to host clerkendweller.uk: could not connect to host clevelandokla.com: could not connect to host @@ -2751,8 +3148,9 @@ 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: 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 @@ -2766,14 +3164,17 @@ clintonbloodworth.com: could not connect to host clintonbloodworth.io: could not connect to host clintwilson.technology: max-age too low: 2592000 clipped4u.com: could not connect to host +clnet.com.au: did not receive HSTS header clod-hacking.com: could not connect to host cloghercastles.co.uk: did not receive HSTS header +clorik.com: could not connect to host closient.com: did not receive HSTS header closingholding.com: 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 cloudapi.vc: could not connect to host cloudbased.info: did not receive HSTS header cloudbasedsite.com: did not receive HSTS header @@ -2782,10 +3183,9 @@ cloudbleed.info: could not connect to host cloudcert.org: did not receive HSTS header cloudcy.net: could not connect to host clouddesktop.co.nz: could not connect to host -cloudfiles.at: could not connect to host cloudfren.com: did not receive HSTS header cloudimag.es: could not connect to host -cloudimprovedtest.com: could not connect to host +cloudimproved.com: could not connect to host cloudlink.club: could not connect to host cloudmigrator365.com: did not receive HSTS header cloudns.com.au: could not connect to host @@ -2798,32 +3198,38 @@ 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 +cloudtocloud.tk: 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 -clovissantos.com: could not connect to host +clovissantos.com: did not receive HSTS header clowde.in: could not connect to host clownaroundbouncycastles.co.uk: did not receive HSTS header clownish.co.il: could not connect to host +clsimage.com: did not receive HSTS header clsimplex.com: did not receive HSTS header clubcall.com: did not receive HSTS header clubdeslecteurs.net: could not connect to host +clubefiel.com.br: did not receive HSTS header clubmix.co.kr: could not connect to host +cluefulca.com: could not connect to host +cluefulca.net: could not connect to host +cluefulca.org: could not connect to host cluj.apartments: could not connect to host -cluster.biz.tr: could not connect to host 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 +cm3.pw: could not connect to host cmangos.net: did not receive HSTS header cmc-versand.de: did not receive HSTS header cmcc.network: could not connect to host 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: could not connect to host -cms-weble.jp: did not receive HSTS header cmsbattle.com: could not connect to host cmscafe.ru: did not receive HSTS header cmskh.co.uk: could not connect to host @@ -2831,9 +3237,11 @@ cmso-cal.com: could not connect to host cmweller.com: could not connect to host 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 @@ -2843,10 +3251,10 @@ co-driversphoto.se: could not connect to host co-yutaka.com: could not connect to host coach-sportif.paris: did not receive HSTS header coachingconsultancy.com: did not receive HSTS header -coathangerstrangla.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -coathangerstrangler.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] cobaltlp.com: could not connect to host +cobcode.com: could not connect to host cobrax.net: could not connect to host +cocaine-import.agency: could not connect to host coccinellaskitchen.com: could not connect to host coccinellaskitchen.de: could not connect to host coccinellaskitchen.it: could not connect to host @@ -2856,9 +3264,10 @@ 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 +codabix.de: did not receive HSTS header codabix.net: could not connect to host code-35.com: could not connect to host code-digsite.com: could not connect to host @@ -2870,11 +3279,10 @@ 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 codelayer.ca: could not connect to host codelitmus.com: did not receive HSTS header codeloop.pw: could not connect to host -codelove.de: could not connect to host +codelove.de: did not receive HSTS header codemonkeyrawks.net: did not receive HSTS header codemperium.com: could not connect to host codenlife.xyz: could not connect to host @@ -2883,7 +3291,9 @@ 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 +codercy.com: could not connect to host coderhangout.com: could not connect to host +codersbistro.com: did not receive HSTS header codewiththepros.org: could not connect to host codewiz.xyz: could not connect to host codigosddd.com.br: did not receive HSTS header @@ -2893,20 +3303,24 @@ coffeeetc.co.uk: could not connect to host coffeestrategies.com: max-age too low: 5184000 cogniflex.com: did not receive HSTS header cogumelosmagicos.org: could not connect to host -cohesive.io: could not connect to host +cohesive.io: did not receive HSTS header coin-exchange.cz: could not connect to host coindam.com: could not connect to host -coins2001.ru: could not connect to host +coinessa.com: could not connect to host +coinjar-sandbox.com: could not connect to host colarelli.ch: could not connect to host +coldaddy.com: could not connect to host coldlostsick.net: could not connect to host coldwatericecream.com: did not receive HSTS header colearnr.com: could not connect to host +colincampbell.me: could not connect to host collablynk.com: could not connect to host collabra.email: did not receive HSTS header collard.tk: could not connect to host -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 @@ -2916,18 +3330,27 @@ collinsartworks.com: did not receive HSTS header collision.fyi: could not connect to host colmexpro.com: did not receive HSTS header colognegaming.net: could not connect to host +cololi.moe: max-age too low: 2592000 coloradocomputernetworking.net: could not connect to host colorcentertoner.com.br: did not receive HSTS header +coloringnotebook.com: could not connect to host colorlib.com: did not receive HSTS header colorunhas.com.br: did not receive HSTS header -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 comchezmeme.com: could not connect to host +comdotgame.com: could not connect to host comefollowme2016.com: did not receive HSTS header comeoncolleen.com: did not receive HSTS header comercialtrading.eu: could not connect to host +cometbot.cf: could not connect to host +cometrueunlimited.com: could not connect to host +comevius.com: could not connect to host +comevius.org: could not connect to host +comevius.xyz: could not connect to host comfortdom.ua: did not receive HSTS header +comfortmastersinsulation.com: did not receive HSTS header comfortticket.de: did not receive HSTS header comfy.cafe: could not connect to host comfy.moe: could not connect to host @@ -2938,19 +3361,18 @@ 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: 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 +comparatif-moto.fr: could not connect to host comparejewelleryprices.co.uk: could not connect to host comparetravelinsurance.com.au: did not receive HSTS header compassionate-biology.com: could not connect to host @@ -2959,18 +3381,18 @@ 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 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 compromised.com: could not connect to host +compros.me: could not connect to host compsmag.com: did not receive HSTS header comptrollerofthecurrency.gov: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] compucorner.com.mx: could not connect to host -computeremergency.com.au: did not receive HSTS header computertal.de: could not connect to host +comssa.org.au: did not receive HSTS header comyuno.com: did not receive HSTS header concentrade.de: did not receive HSTS header conceptatelier.de: could not connect to host @@ -2979,31 +3401,35 @@ concerts-metal.ch: did not receive HSTS header conclave.global: could not connect to host concord-group.co.jp: did not receive HSTS header concretehermit.com: did not receive HSTS header -conectalmeria.com: 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 conformal.com: could not connect to host -confucio.cl: could not connect to host +confuddledpenguin.com: did not receive HSTS header +cong5.net: max-age too low: 0 congz.me: could not connect to host +conkret.ch: could not connect to host conkret.co.uk: could not connect to host conkret.eu: could not connect to host conkret.in: did not receive HSTS header +conkret.mobi: could not connect to host connaitre-les-astres.com: did not receive HSTS header -connect-me.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 -conpins.nl: could not connect to host +conniesacademy.com: could not connect to host conrad.am: could not connect to host consciousandglamorous.com: could not connect to host consciousbrand.org.au: could not connect to host 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 +construct-trust.com: did not receive HSTS header constructive.men: could not connect to host -consultation.biz.tr: 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 @@ -3014,18 +3440,18 @@ 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 +contents.ga: did not receive HSTS header continuation.io: could not connect to host continuumgaming.com: could not connect to host contraout.com: could not connect to host controlcenter.gigahost.dk: did not receive HSTS header -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 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 -cool110.tk: could not connect to host -cool110.xyz: 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 @@ -3038,6 +3464,7 @@ cooxa.com: could not connect to host 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 @@ -3048,65 +3475,69 @@ cordial-restaurant.com: did not receive HSTS header core4system.de: could not connect to host coreapm.com: could not connect to host corecdn.org: could not connect to host +corecodec.com: 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 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 cornishcamels.com: did not receive HSTS header cornmachine.com: did not receive HSTS header -cornodo.com: could not connect to host coroasdefloresonline.com.br: could not connect to host +coropiacere.org: could not connect to host corozanu.ro: did not receive HSTS header corpoatletico.com.br: could not connect to host corporateencryption.com: could not connect to host corporatesubscriptions.com.au: did not receive HSTS header -correct.horse: did not receive HSTS header +correct.horse: could not connect to host correctpaardbatterijnietje.nl: did not receive HSTS header 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 +cosmeticosnet.com.br: did not receive HSTS header cosmiatria.pe: could not connect to host cosmoluziluminacion.com: did not receive HSTS header -cosmoss-departure.com: did not receive HSTS header -cosplayer.com: could not connect to host +cosmoss-departure.com: could not connect to host costow.club: did not receive HSTS header cotonea.de: did not receive HSTS header cougarsland.com: did not receive HSTS header coughlan.de: did not receive HSTS header counselling.network: 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 +coursables.com: did not receive HSTS header coursdeprogrammation.com: could not connect to host course.pp.ua: did not receive HSTS header course.rs: could not connect to host coursella.com: did not receive HSTS header courses.nl: could not connect to host courseworkbank.info: could not connect to host -cousincouples.com: max-age too low: 0 +cousincouples.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] cove.sh: could not connect to host covenantbank.net: could not connect to host +covenantmatrix.com: could not connect to host coverdat.com: could not connect to host coverduck.ru: could not connect to host coworkingmanifesto.com: did not receive HSTS header +cozitop.com.br: could not connect to host cozmaadrian.ro: could not connect to host cozy.io: did not receive HSTS header cozycloud.cc: did not receive HSTS header cpaneltips.com: could not connect to host cpbanq.com: could not connect to host -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 @@ -3115,40 +3546,49 @@ 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 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 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 creativeapple.ltd: did not receive HSTS header creativeartifice.com: did not receive HSTS header +creativecommons.cl: did not receive HSTS header creativecommonscatpictures.com: could not connect to host +creativefolks.co.uk: did not receive HSTS header creativephysics.ml: could not connect to host creativeplayuk.com: did not receive HSTS header creato.top: could not connect to host +creators.co: could not connect to host +crecips.com: could not connect to host crecket.me: could not connect to host credia.jp: did not receive HSTS header creditclear.com.au: did not receive HSTS header -creditreporttips.net: could not connect to host +creditreporttips.net: did not receive HSTS header crendontech.com: did not receive HSTS header +creorin.com: did not receive HSTS header crestoncottage.com: could not connect to host crewplanner.eu: did not receive HSTS header +crge.eu: max-age too low: 0 crimewatch.net.za: could not connect to host +crip-usk.ba: could not connect to host crisissurvivalspecialists.com: could not connect to host cristianhares.com: could not connect to host criticalaim.com: could not connect to host @@ -3158,45 +3598,47 @@ crmdemo.website: did not receive HSTS header crockett.io: did not receive HSTS header croco.vision: did not receive HSTS header croeder.net: could not connect to host +croisieres.discount: did not receive HSTS header +cromosomax.com: 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 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: could not connect to host +crt.cloud: could not connect to host crtvmgmt.com: could not connect to host crudysql.com: could not connect to host crufad.org: did not receive HSTS header -cruikshank.com.au: could not connect to host +cruikshank.com.au: did not receive HSTS header crushroom.com: max-age too low: 43200 cruzeiropedia.org: did not receive HSTS header cruzr.xyz: could not connect to host crypalert.com: could not connect to host crypt.guru: did not receive HSTS header cryptify.eu: could not connect to host +crypto-navi.org: did not receive HSTS header +crypto.graphics: did not receive HSTS header cryptobells.com: did not receive HSTS header cryptobin.org: could not connect to host cryptocaseproject.com: could not connect to host cryptodash.net: could not connect to host -cryptoegg.ca: could not connect to host -cryptofrog.co: could not connect to host +cryptodyno.ninja: could not connect to host cryptoisnotacrime.org: could not connect to host cryptojar.io: could not connect to host cryptolab.pro: could not connect to host -cryptolab.tk: could not connect to host -cryptolosophy.io: could not connect to host +cryptolab.tk: did not receive HSTS header cryptoparty.dk: could not connect to host cryptopartyatx.org: could not connect to host cryptopartynewcastle.org: could not connect to host +cryptopro.shop: could not connect to host cryptopush.com: did not receive HSTS header crysadm.com: could not connect to host crystalclassics.co.uk: did not receive HSTS header @@ -3209,7 +3651,8 @@ csawctf.poly.edu: could not connect to host cscau.com: did not receive HSTS header csehnyelv.hu: could not connect to host cselzer.com: did not receive HSTS header -cser.me: 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 @@ -3217,23 +3660,28 @@ csgo77.com: could not connect to host 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 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 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 -ctl.email: could not connect to host ctrl.blog: did not receive HSTS header +ctyi.me: could not connect to host cuanhua3s.com: did not receive HSTS header -cubecart.net: could not connect to host +cubebot.io: could not connect to host +cubecart.net: did not receive HSTS header +cubecraftstore.com: could not connect to host +cubecraftstore.net: could not connect to host cubela.tech: could not connect to host cubeserver.eu: could not connect to host cubewano.com: could not connect to host @@ -3244,19 +3692,22 @@ cujanovic.com: did not receive HSTS header cujba.com: could not connect to host culinae.nl: could not connect to host culture-school.top: did not receive HSTS header +cultureelbeleggen.nl: did not receive HSTS header +cultureroll.com: could not connect to host cumparama.com: did not receive HSTS header cumshots-video.ru: could not connect to host +cunha.be: could not connect to host cuni-cuni-club.com: did not receive HSTS header -cuni-rec.com: could not connect to host -cuntflaps.me: 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 +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 curiouscat.me: max-age too low: 2592000 curlyroots.com: did not receive HSTS header current.com: did not receive HSTS header @@ -3265,16 +3716,20 @@ cursosdnc.cl: did not receive HSTS header curveweb.co.uk: did not receive HSTS header cusfit.com: did not receive HSTS header custe.rs: could not connect to host +custerweb.com: could not connect to host customadesign.com: did not receive HSTS header customd.com: did not receive HSTS header customfilmworks.com: could not connect to host +customizeyourshower.com: could not connect to host custompapers.com: could not connect to host +customromlist.com: could not connect to host customwritings.com: could not connect to host cutelariafiveladeouro.com.br: did not receive HSTS header cutorrent.com: could not connect to host cuvva.insure: did not receive HSTS header +cuxpool.club: could not connect to host cvjm-memmingen.de: did not receive HSTS header -cvsoftub.com: could not connect to host +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 @@ -3285,19 +3740,24 @@ 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 +cyberdyne-industries.net: could not connect to host +cyberfrancais.ro: did not receive HSTS header cyberlab.team: did not receive HSTS header cyberpeace.nl: 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 +cybersantri.com: could not connect to host +cyberserver.org: could not connect to host cybershambles.com: could not connect to host +cybersmart.co.uk: did not receive HSTS header cyberspace.today: could not connect to host +cybertorsk.org: could not connect to host +cyberxpert.nl: could not connect to host cybit.io: did not receive HSTS header cyclehackluxembourgcity.lu: could not connect to host cyclingjunkies.com: could not connect to host @@ -3307,39 +3767,41 @@ 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 cypherpunk.ws: could not connect to host cyphertite.com: could not connect to host +cypressinheritancesaga.com: could not connect to host cytadel.fr: did not receive HSTS header -czakey.net: could not connect to host czaw.org: did not receive HSTS header czirnich.org: did not receive HSTS header -czk.mk: could not connect to host czlx.co: could not connect to host d-academia.com: did not receive HSTS header d-macindustries.com: did not receive HSTS header d-rickroll-e.pw: could not connect to host +d-toys.com.ua: could not connect to host +d.rip: max-age too low: 900 d00r.de: did not receive HSTS header d0xq.net: could not connect to host d1ves.io: did not receive HSTS header +d3njjcbhbojbot.cloudfront.net: did not receive HSTS header d3x.pw: could not connect to host d4rkdeagle.tk: could not connect to host -d4wson.com: could not connect to host d8studio.net: could not connect to host 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 +daemonslayer.net: could not connect to host 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 -daiyuu.jp: could not connect to host +daisuki.pw: did not receive HSTS header +daiwai.de: did not receive HSTS header dakerealestate.com: did not receive HSTS header dakl-shop.de: did not receive HSTS header dakotasilencer.com: did not receive HSTS header @@ -3349,14 +3811,16 @@ dalfiume.it: did not receive HSTS header dalingk.co: could not connect to host daltonedwards.me: could not connect to host dam74.com.ar: could not connect to host -damedrogy.cz: could not connect to host damianuv-blog.cz: 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 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 @@ -3366,6 +3830,7 @@ danieldk.eu: did not receive HSTS header danielgraziano.ca: could not connect to host danieliancu.com: could not connect to host danielkratz.com: max-age too low: 172800 +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 @@ -3374,18 +3839,18 @@ danishenanigans.com: could not connect to host dankeblog.com: could not connect to host danmark.guide: did not receive HSTS header dannycrichton.com: did not receive HSTS header -dannystevens.co.uk: 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 -daphne.informatik.uni-freiburg.de: did not receive HSTS header +dapim.co.il: did not receive HSTS header dargasia.is: could not connect to host +darinjohnson.ca: did not receive HSTS header dario.im: did not receive HSTS header -dariosirangelo.me: did not receive HSTS header dark-x.cf: could not connect to host darkanzali.pl: max-age too low: 0 darkdestiny.ch: could not connect to host +darkfire.ch: could not connect to host darkfriday.ddns.net: could not connect to host darkhole.cn: did not receive HSTS header darkishgreen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -3396,11 +3861,13 @@ 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 @@ -3411,20 +3878,28 @@ 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 +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 +datafd.com: could not connect to host +datafd.net: could not connect to host datahoarder.download: 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 +datapun.ch: did not receive HSTS header dataretention.solutions: could not connect to host datasharesystem.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] datasnitch.co.uk: could not connect to host datatekniikka.com: could not connect to host datedeposit.com: could not connect to host datengrab.ws: could not connect to host -datenlast.de: 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 @@ -3433,61 +3908,61 @@ datenschutzhelden.org: could not connect to host datine.com.br: could not connect to host datorb.com: could not connect to host datortipsen.se: did not receive HSTS header +datsound.ru: did not receive HSTS header datsumou-q.com: did not receive HSTS header daverandom.com: could not connect to host +davewut.ca: did not receive HSTS header +david-mallett.com: did not receive HSTS header davidandkailey.com: could not connect to host davidbrito.tech: could not connect to host davidglidden.eu: did not receive HSTS header 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 -davidmcevoy.org.uk: 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 -daw.nz: could not connect to host dawnofeden.org: did not receive HSTS header dawnson.is: could not connect to host dawnsonb.com: could not connect to host -day.vip: did not receive HSTS header +day.vip: could not connect to host daylightcompany.com: did not receive HSTS header days.one: could not connect to host daytonaseaside.com: did not receive HSTS header +db-sanity.com: could not connect to host db.gy: could not connect to host +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 dctxf.com: did not receive HSTS header dcuofriends.net: could not connect to host -dcw.io: could not connect to host +dcw.io: did not receive HSTS header dd.art.pl: could not connect to host -ddatsh.com: did not receive HSTS header +ddatsh.com: could not connect to host dden.website: could not connect to host dden.xyz: could not connect to host ddmeportal.com: could not connect to host ddns-anbieter.de: could not connect to host -ddocu.me: did not receive HSTS header +ddocu.me: could not connect to host ddos-mitigation.co.uk: could not connect to host ddos-mitigation.info: could not connect to host de-servers.de: could not connect to host deadmann.com: could not connect to host deadsoul.net: could not connect to host +deai-life.biz: could not connect to host debank.tv: did not receive HSTS header -debarrasantony.com: could not connect to host -debarrasasnieressurseine.com: could not connect to host -debarrasboulognebillancourt.com: could not connect to host -debarrasclichy.com: could not connect to host -debarrascolombes.com: could not connect to host -debarrasnanterre.com: could not connect to host debatch.se: could not connect to host debian-vhost.de: could not connect to host debiton.dk: could not connect to host @@ -3500,21 +3975,21 @@ 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 decomplify.com: did not receive HSTS header deconsolutions.com: did not receive HSTS header decoraid.com: did not receive HSTS header -decoratore.roma.it: did not receive HSTS header 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 +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 +deep.social: did not receive HSTS header deepcovelabs.net: could not connect to host deepcreampie.com: could not connect to host deepearth.uk: could not connect to host @@ -3522,28 +3997,32 @@ deeprecce.com: could not connect to host deeprecce.link: could not connect to host deeprecce.tech: could not connect to host deeps.cat: could not connect to host -deeps.me: did not receive HSTS header +deeps.me: could not connect to host 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 +defeestboek.nl: 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 deight.co: could not connect to host deight.in: could not connect to host dekasan.ru: could not connect to host delandalucia.com: did not receive HSTS header delayrefunds.co.uk: could not connect to host +delcopa.gov: could not connect to host deliberatedigital.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] deliver.moe: did not receive HSTS header deliverance.co.uk: could not connect to host @@ -3551,16 +4030,16 @@ deloittequant.com: could not connect to host deltaconcepts.de: could not connect to host delvj.org: could not connect to host demandware.com: did not receive HSTS header -demarche-expresse.com: could not connect to host +demarche-expresse.com: did not receive HSTS header demdis.org: could not connect to host demilitarized.ninja: could not connect to host +demmer.one: 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 -dengchangdong.com: could not connect to host denh.am: did not receive HSTS header denisjean.fr: could not connect to host dennispotter.eu: did not receive HSTS header @@ -3570,13 +4049,15 @@ dentaldomain.org: did not receive HSTS header dentaldomain.ph: did not receive HSTS header denvercybersecurity.com: did not receive HSTS header denverphilharmonic.org: did not receive HSTS header -denverprophit.us: did not receive HSTS header +denverprophit.us: could not connect to host depaco.com: did not receive HSTS header deped.blog: could not connect to host +depedshs.com: could not connect to host depedtayo.ph: could not connect to host depijl-mz.nl: did not receive HSTS header depixion.agency: could not connect to host depo.space: could not connect to host +deprobe.pro: could not connect to host dequehablamos.es: could not connect to host derbyshiredotnet.co.uk: did not receive HSTS header derchris.me: could not connect to host @@ -3601,8 +4082,9 @@ despora.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR despotika.de: could not connect to host desserteagleselvenar.tk: could not connect to host destinationbijoux.fr: could not connect to host +destinopiriapolis.com: did not receive HSTS header destom.be: could not connect to host -desuperheroes.co: could not connect to host +desveja.com.br: could not connect to host detalhecomercio.com.br: could not connect to host detechnologiecooperatie.nl: did not receive HSTS header detecte-fuite.ch: could not connect to host @@ -3614,9 +4096,11 @@ dethikiemtra.com: did not receive HSTS header detroitrocs.org: did not receive HSTS header detteflies.com: max-age too low: 7889238 detutorial.com: max-age too low: 36000 -deuchnord.fr: could not connect to host -deusu.de: could not connect to host -deusu.org: could not connect to host +deusu.org: did not receive HSTS header +deux.solutions: could not connect to host +deuxsol.co: could not connect to host +deuxsol.com: could not connect to host +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 @@ -3627,35 +4111,33 @@ 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: did not receive HSTS header develop.fitness: could not connect to host -developermail.io: did not receive HSTS header developersclub.website: could not connect to host developyourelement.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] devh.de: could not connect to host -deviltraxxx.de: could not connect to host +deviltracks.net: could not connect to host devin-balimuhac.de: did not receive HSTS header devincrow.me: could not connect to host -devinpacker.com: 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 +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 devops.moe: could not connect to host devopsconnected.com: could not connect to host -devpsy.info: could not connect to host devtestfan1.gov: could not connect to host devtub.com: could not connect to host devuan.org: did not receive HSTS header dewebwerf.nl: did not receive HSTS header dewin.io: could not connect to host -dezet-ev.de: could not connect to host dfixit.com: could not connect to host dfrance.com.br: did not receive HSTS header dfviana.com.br: max-age too low: 2592000 +dgby.org: did not receive HSTS header dggwp.de: did not receive HSTS header dharamkot.com: could not connect to host dharma.ai: did not receive HSTS header @@ -3669,7 +4151,8 @@ diablotine.rocks: could not connect to host diabolic.chat: 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 +dialoegue.com: did not receive HSTS header +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 @@ -3682,16 +4165,16 @@ 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 -dickpics.ru: could not connect to host -didierlaumen.be: could not connect to host -die-besten-weisheiten.de: did not receive HSTS header +dickord.club: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +didierlaumen.be: did not receive HSTS header +die-besten-weisheiten.de: could not connect to host +die-borts.ch: could not connect to host die-gruenen-teufel.de: could not connect to host dieb.photo: could not connect to host diejanssens.net: did not receive HSTS header diemogebhardt.com: could not connect to host +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 @@ -3699,16 +4182,20 @@ diewebstube.de: could not connect to host diezel.com: could not connect to host diferenca.com: did not receive HSTS header diggable.co: max-age too low: 2592000 -digihyp.ch: could not connect to host +digihyp.ch: did not receive HSTS header digikol.net: could not connect to host +diginota.com: did not receive HSTS header +digired.ro: could not connect to host digired.xyz: could not connect to host +digital1world.com: did not receive HSTS header digitalbank.kz: could not connect to host digitalcloud.ovh: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -digitalcraftmarketing.co.uk: did not receive HSTS header +digitalcuko.com: did not receive HSTS header digitaldaddy.net: did not receive HSTS header digitalero.rip: did not receive HSTS header +digitalewelten.de: could not connect to host 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 @@ -3722,16 +4209,18 @@ 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] +dillewijnzwapak.nl: could not connect to host dillynbarber.com: did not receive HSTS header dim.lighting: could not connect to host 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.me: could not connect to host +dingcc.com: could not connect to host dingcc.org: could not connect to host dingcc.xyz: could not connect to host +dingelbob-schuhcreme.gq: could not connect to host dingss.com: could not connect to host dinkum.online: could not connect to host dinotv.at: could not connect to host @@ -3739,8 +4228,8 @@ dintillat.fr: could not connect to host dinube.com: did not receive HSTS header dionysus.se: could not connect to host dipconsultants.com: could not connect to host -direct2uk.com: could not connect to host directhskincream.com: could not connect to host +directinsure.in: did not receive HSTS header directorinegocis.cat: could not connect to host directtwo.solutions: could not connect to host directtwosolutions.org: could not connect to host @@ -3748,10 +4237,10 @@ directwatertanks.co.uk: did not receive HSTS header direnv.net: did not receive HSTS header direwolfsoftware.ca: could not connect to host dirk-weise.de: could not connect to host +dirkwolf.de: could not connect to host dirtycat.ru: could not connect to host -dirtygeek.ovh: could not connect to host disadattamentolavorativo.it: could not connect to host -disarc.com: max-age too low: 0 +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 @@ -3760,7 +4249,7 @@ discountmetaux.fr: did not receive HSTS header discover-mercure.com: could not connect to host discoveringdocker.com: could not connect to host discoverrsv.com: did not receive HSTS header -discoverwellness.center: did not receive HSTS header +discoverwellness.center: could not connect to host discovery.lookout.com: did not receive HSTS header discoveryballoon.org: could not connect to host disking.co.uk: did not receive HSTS header @@ -3772,7 +4261,7 @@ dissieux.com: did not receive HSTS header dissimulo.me: 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 ditch.ch: could not connect to host ditrutoancau.vn: could not connect to host @@ -3780,29 +4269,30 @@ dittvertshus.no: could not connect to host diva-ey.com: could not connect to host divegearexpress.com.cn: 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: did not receive HSTS header +diz.in.ua: could not connect to host dizihocasi.com: could not connect to host dizorg.net: could not connect to host dj4et.de: could not connect to host djieno.com: could not connect to host +djsk.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] djul.net: could not connect to host djxmmx.net: did not receive HSTS header -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 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 @@ -3810,31 +4300,34 @@ 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 +dmmkenya.co.ke: could not connect to host dmtry.me: did not receive HSTS header dmwall.cn: could not connect to host dmz.ninja: could not connect to host +dnfc.rocks: could not connect to host dnmaze.com: could not connect to host +dns-manager.info: did not receive HSTS header dns.google.com: did not receive HSTS header (error ignored - included regardless) dnsbird.net: could not connect to host dnsbird.org: could not connect to host +dnscrypt.nl: could not connect to host dnscrypt.org: max-age too low: 0 dnsknowledge.com: did not receive HSTS header dnsql.io: could not connect to host do-do.tk: could not connect to host do-it.cz: could not connect to host -do67.de: could not connect to host -do67.net: 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 -dockerturkiye.com: max-age too low: 0 +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 docset.io: could not connect to host docufiel.com: could not connect to host -doculus.io: did not receive HSTS header +doculus.io: could not connect to host documentations-sociales.com: could not connect to host docxtemplater.com: did not receive HSTS header doesmycodehavebugs.today: could not connect to host @@ -3842,15 +4335,18 @@ doeswindowssuckforeveryoneorjustme.com: could not connect to host dogbox.se: could not connect to host dogcratereview.info: could not connect to host dogespeed.ga: could not connect to host -doggedbyirs.com: 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 +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.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 @@ -3859,7 +4355,7 @@ dolphin-cloud.com: could not connect to host dolphin-hosting.com: could not connect to host dolphincorp.co.uk: could not connect to host dolphinswithlasers.com: could not connect to host -dolt.xyz: did not receive HSTS header +dolt.xyz: could not connect to host domaine-aigoual-cevennes.com: did not receive HSTS header domainelaremejeanne.com: did not receive HSTS header domaris.de: did not receive HSTS header @@ -3870,18 +4366,20 @@ domfee.com: could not connect to host dominikanskarepubliken.guide: could not connect to host dominioanimal.com: could not connect to host dominique-mueller.de: could not connect to host +domytermpaper.com: could not connect to host don.yokohama: could not connect to host donateway.com: did not receive HSTS header dong8.top: could not connect to host +dongjingre.net: could not connect to host donhoward.org: did not receive HSTS header donmez.uk: could not connect to host donmez.ws: could not connect to host -donotcall.gov: did not receive HSTS header donotspampls.me: could not connect to host donotspellitgav.in: did not receive HSTS header +donpaginasweb.com: did not receive HSTS header donsbach-edv.de: did not receive HSTS header +dontcageus.org: could not connect to host 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 doobydude.us: could not connect to host @@ -3890,22 +4388,20 @@ doodlefinder.de: max-age too low: 600000 dooku.cz: could not connect to host doomleika.com: did not receive HSTS header doooonoooob.com: could not connect to host +doopdidoop.com: did not receive HSTS header +door.cards: could not connect to host dopost.it: could not connect to host -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 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 +dot.ro: did not receive HSTS header dotadata.me: could not connect to host dotb.dn.ua: did not receive HSTS header +dotbox.org: did not receive HSTS header dotbrick.co.th: did not receive HSTS header -dotconnor.com: 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 @@ -3922,23 +4418,24 @@ dovetailnow.com: could not connect to host dowc.org: did not receive HSTS header download.jitsi.org: did not receive HSTS header downsouthweddings.com.au: did not receive HSTS header +doxcelerate.com: could not connect to host doyoulyft.com: could not connect to host dpangerl.de: did not receive HSTS header -dpg.no: could not connect to host dps.srl: did not receive HSTS header dpsart.it: did not receive HSTS header +dr-knirr.de: could not connect to host dr2dr.ca: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -drabim.org: 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 dragonstower.net: could not connect to host dragonteam.ninja: could not connect to host -drahcro.uk: could not connect to host drainagebuizen.nl: did not receive HSTS header drakefortreasurer.sexy: could not connect to host drakensberg-tourism.com: did not receive HSTS header @@ -3946,31 +4443,34 @@ drakfot.se: could not connect to host dralexjimenez.com: did not receive HSTS header drastosasports.com.br: could not connect to host drawvesly.ovh: did not receive HSTS header +drbarnabus.com: could not connect to host drdevil.ru: could not connect to host dreadbyte.com: could not connect to host -dreadd.org: 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 dreaming.solutions: could not connect to host dreamlighteyeserum.com: could not connect to host -dreamof.net: could not connect to host dreamsforabetterworld.com.au: did not receive HSTS header +dreax.win: could not connect to host dredgepress.com: did not receive HSTS header -dreischneidiger.de: did not receive HSTS header -dreizwosechs.de: could not connect to host +dreischneidiger.de: could not connect to host drewgle.net: could not connect to host -drhopeson.com: could not connect to host +drhopeson.com: did not receive HSTS header drillnation.com.au: could not connect to host drinknaturespower.com: could not connect to host drinkvabeer.com: could not connect to host +dripdoctors.com: did not receive HSTS header drishti.guru: could not connect to host drive.xyz: could not connect to host +drivercopilot.com: did not receive HSTS header drivewithstatetransit.com.au: did not receive HSTS header driving-lessons.co.uk: could not connect to host drixn.cn: could not connect to host drixn.info: could not connect to host drixn.net: could not connect to host drizz.com.br: could not connect to host +drkmtrx.xyz: 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 @@ -3992,28 +4492,29 @@ 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: could not connect to host drtroyhendrickson.com: could not connect to host drtti.io: could not connect to host drturner.com.au: did not receive HSTS header +drubn.de: could not connect to host drugagodba.si: did not receive HSTS header drumbandesperanto.nl: could not connect to host +drump-truck.com: did not receive HSTS header drupal123.com: could not connect to host druznek.rocks: could not connect to host druznek.xyz: could not connect to host -dryan.com: did not receive HSTS header 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 -ds67.de: could not connect to host dshiv.io: could not connect to host -dsyunmall.com: could not connect to host -dtg-fonds.com: could not connect to host -dtg-fonds.de: could not connect to host -dtg-fonds.net: could not connect to host +dsne.com.mx: did not receive HSTS header +dsouzamusic.com: could not connect to host +dsuinnovation.com: could not connect to host +dsyunmall.com: did not receive HSTS header dtub.co: could not connect to host +dtx.sk: could not connect to host duan.li: could not connect to host +dubaosheng.com: could not connect to host dubik.su: did not receive HSTS header duckyubuntu.tk: could not connect to host ducohosting.com: did not receive HSTS header @@ -4021,10 +4522,6 @@ dudesunderwear.com.br: could not connect to host duelsow.eu: could not connect to host duelysthub.com: could not connect to host duerls.de: could not connect to host -dugnet.com: could not connect to host -dugnet.io: could not connect to host -dugnet.net: could not connect to host -dugnet.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 @@ -4032,18 +4529,19 @@ dukec.me: did not receive HSTS header dukefox.com: could not connect to host duks.com.br: did not receive HSTS header dullsir.com: did not receive HSTS header +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 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 duongpho.com: 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 -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 @@ -4053,39 +4551,40 @@ dwellstudio.com: did not receive HSTS header dwhd.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] dwnld.me: could not connect to host dycem-ns.com: did not receive HSTS header -dycoa.com: did not receive HSTS header +dycoa.com: could not connect to host 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 -dzet.de: 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 -dzsibi.com: could not connect to host dzytdl.com: did not receive HSTS header e-aut.net: could not connect to host e-baraxolka.ru: could not connect to host e-deca2.org: did not receive HSTS header e-isfa.eu: did not receive HSTS header e-mak.eu: could not connect to host +e-migration.ch: could not connect to host e-newshub.com: could not connect to host +e-planetelec.fr: did not receive HSTS header e-pokupki.eu: did not receive HSTS header e-rickroll-r.pw: could not connect to host e-sa.com: did not receive HSTS header -e-speak24.pl: did not receive HSTS header 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 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 eagle-aluminum.com: did not receive HSTS header eagle-yard.de: could not connect to host @@ -4096,19 +4595,22 @@ earga.sm: could not connect to host earlybirdsnacks.com: could not connect to host earth-people.org: could not connect to host earthrise16.com: could not connect to host -earvinkayonga.com: did not receive HSTS header -easelforart.com: could not connect to host easew.com: could not connect to host +east-line.su: could not connect to host eastcoastinflatables.co.uk: did not receive HSTS header easthokkaido-5airport.jp: did not receive HSTS header eastmidlandsstargazers.org.uk: did not receive HSTS header eastmontgroup.com: did not receive HSTS header +eastpeoria-il.gov: could not connect to host easy-factures.fr: could not connect to host easychiller.org: could not connect to host easykonto.de: could not connect to host easyplane.it: did not receive HSTS header -easysimplecrm.com: did not receive HSTS header +easyreal.ru: could not connect to host +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 @@ -4122,20 +4624,22 @@ 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 +ebop.ch: could not connect to host ebp2p.com: did not receive HSTS header -ebpglobal.com: did not receive HSTS header ebraph.com: could not connect to host ebrowz.com: could not connect to host ecake.in: could not connect to host ecc-kaufbeuren.de: could not connect to host eccux.com: could not connect to host +ecelembrou.ovh: could not connect to host ecfs.link: could not connect to host ecg.fr: could not connect to host echipstore.com: did not receive HSTS header echo.cc: could not connect to host -echomanchester.net: did not receive HSTS header -echoteen.com: did not receive HSTS header -eckro.com: did not receive HSTS header +echoactive.com: max-age too low: 7776000 +echomanchester.net: could not connect to host +eckro.com: could not connect to host +ecodigital.social: could not connect to host ecole-en-danger.fr: could not connect to host ecole-iaf.fr: could not connect to host ecole-maternelle-saint-joseph.be: could not connect to host @@ -4145,7 +4649,9 @@ ecomlane.com: could not connect to host ecomparemo.com: did not receive HSTS header 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 +ecosoftconsult.com: could not connect to host ecotruck-pooling.com: did not receive HSTS header ecrimex.net: did not receive HSTS header ectora.com: could not connect to host @@ -4163,18 +4669,23 @@ 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 editoraacademiacrista.com.br: could not connect to host edix.ru: could not connect to host edk.com.tr: did not receive HSTS header +edpubs.gov: could not connect to host edsh.de: did not receive HSTS header +eduardnikolenko.com: could not connect to host +eduardnikolenko.ru: could not connect to host 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 @@ -4184,6 +4695,7 @@ eduvance.in: did not receive HSTS header ee-terminals.com: could not connect to host eeb98.com: could not connect to host eeetrust.org: could not connect to host +eelsden.net: 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 @@ -4197,16 +4709,17 @@ 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 effectivepapers.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 +efficienthealth.com: could not connect to host +eftcorp.biz: did not receive HSTS header +egfl.org.uk: did not receive HSTS header egge.com: max-age too low: 0 -eggert.org: could not connect to host egit.co: could not connect to host ego-world.org: did not receive HSTS header egupova.ru: did not receive HSTS header @@ -4218,22 +4731,26 @@ ehrlichesbier.de: could not connect to host ehuber.info: could not connect to host eicfood.com: could not connect to host eidolonhost.com: did not receive HSTS header -eidolons.org: could not connect to host -eifelindex.de: could not connect to host +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 +einar.io: max-age too low: 86400 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 -einsitapis.com: did not receive HSTS header +einsit.com: could not connect to host +einsitapis.com: could not connect to host ejgconsultancy.co.uk: did not receive HSTS header -ejusu.com: did not receive HSTS header +ejuicelab.co.uk: did not receive HSTS header +ejusu.com: could not connect to host +ek.network: could not connect to host ekbanden.nl: could not connect to host ekobudisantoso.net: could not connect to host ekong366.com: could not connect to host -ekpyroticfrood.net: could not connect to host eksik.com: could not connect to host el-soul.com: did not receive HSTS header elaintehtaat.fi: did not receive HSTS header @@ -4242,17 +4759,19 @@ 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 +elbohlyart.com: did not receive HSTS header +eldietista.es: could not connect to host elearningpilot.com: did not receive HSTS header -electicofficial.com: could not connect to host +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 electricianforum.co.uk: did not receive HSTS header electricianumhlangarocks.co.za: did not receive HSTS header -electricienasnieres.fr: could not connect to host electricoperaduo.com: did not receive HSTS header electromc.com: could not connect to host eled.io: could not connect to host @@ -4262,16 +4781,16 @@ elementalict.com: did not receive HSTS header elementalrobotics.com: could not connect to host elemenx.com: did not receive HSTS header elemprendedor.com.ve: could not connect to host -elena-baykova.ru: did not receive HSTS header +elena-baykova.ru: could not connect to host elenag.ga: could not connect to host elenagherta.ga: could not connect to host elenoon.ir: max-age too low: 1 elenorsmadness.org: could not connect to host eleonorengland.com: did not receive HSTS header +elestanteliterario.com: did not receive HSTS header eletesstilus.hu: could not connect to host elevateandprosper.com: could not connect to host -elexel.ru: could not connect to host -elgacien.de: could not connect to host +elgacien.de: did not receive HSTS header elguillatun.cl: did not receive HSTS header elhall.pro: did not receive HSTS header elhall.ru: did not receive HSTS header @@ -4279,17 +4798,22 @@ elias-nicolas.com: could not connect to host eliasojala.me: did not receive HSTS header elimdengelen.com: did not receive HSTS header 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 -elitesensual.com.br: did not receive HSTS header -ellegaard.dk: could not connect to host +elitesensual.com.br: could not connect to host +elizeugomes.com.br: did not receive HSTS header 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 elpay.kz: did not receive HSTS header @@ -4300,18 +4824,23 @@ 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 -elyisus.info: 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 +emailcontrol.nl: did not receive HSTS header emanatepixels.com: could not connect to host emanga.su: did not receive HSTS header -emavok.eu: did not receive HSTS header +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: did not receive HSTS header 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 @@ -4322,7 +4851,9 @@ eminhuseynov.com: could not connect to host eminovic.me: could not connect to host emjainteractive.com: did not receive HSTS header emjimadhu.com: could not connect to host +emma-o.com: could not connect to host emmable.com: could not connect to host +emmaliddell.com: did not receive HSTS header emmanuelle-et-julien.ch: could not connect to host emmdy.com: did not receive HSTS header emmehair.com: could not connect to host @@ -4339,12 +4870,16 @@ employeestore.org: did not receive HSTS header emporiovinareal.com.br: could not connect to host empty-r.com: could not connect to host emptypath.com: did not receive HSTS header +emupedia.net: did not receive HSTS header +emyself.info: could not connect to host +emyself.org: did not receive HSTS header en4u.org: could not connect to host enaia.fr: did not receive HSTS header 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 +encoderx.uk: could not connect to host encontrebarato.com.br: did not receive HSTS header encrypted.google.com: did not receive HSTS header (error ignored - included regardless) encryptedaudience.com: could not connect to host @@ -4354,6 +4889,7 @@ endangeredwatch.com: could not connect to host endlessdark.net: max-age too low: 600 endlesshorizon.net: could not connect to host endlesstone.com: did not receive HSTS header +endofinternet.goip.de: could not connect to host endofnet.org: could not connect to host endohaus.ca: could not connect to host endohaus.com: could not connect to host @@ -4362,29 +4898,40 @@ 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 +enersaveapp.org: could not connect to host +enersec.co.uk: could not connect to host +enfoqueseguro.com: did not receive HSTS header +enginx.cn: could not connect to host englerts.de: did not receive HSTS header +englishclub.com: did not receive HSTS header 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 enjoystudio.ro: did not receive HSTS header +enlatte.com: could not connect to host +enlazaresbueno.cl: did not receive HSTS header +enlightened.si: did not receive HSTS header enoou.com: could not connect to host -enpalmademallorca.info: did not receive HSTS header +enord.fr: 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 +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 @@ -4392,37 +4939,52 @@ enumify.com: could not connect to host envelope.co.nz: could not connect to host enviam.de: did not receive HSTS header enviapresentes.com.br: could not connect to host -enviatufoto.com: max-age too low: 604800 environment.ai: could not connect to host +envoyglobal.com: did not receive HSTS header +envoyworld.com: did not receive HSTS header envygeeks.com: could not connect to host 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 +eosol.zone: could not connect to host epanurse.com: could not connect to host +epave.paris: could not connect to host epaygateway.net: could not connect to host ephe.be: could not connect to host ephry.com: could not connect to host epicmc.games: could not connect to host epitesz.co: did not receive HSTS header eposcloud.net: could not connect to host +eposmidlands.co.uk: could not connect to host +eposnewport.co.uk: could not connect to host +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 +epulsar.ru: max-age too low: 604800 eq8.net.au: could not connect to host eqib.nl: did not receive HSTS header eqim.me: could not connect to host eqorg.com: could not connect to host +equallyy.com: could not connect to host equalparts.eu: could not connect to host equate.net.au: did not receive HSTS header equatetechnologies.com.au: did not receive HSTS header equilibre-yoga-jennifer-will.com: could not connect to host equippers.de: did not receive HSTS header +equipsupply.com: did not receive HSTS header equitee.co: did not receive HSTS header equityflows.com: did not receive HSTS header er-music.com: could not connect to host erad.fr: could not connect to host erawanarifnugroho.com: did not receive HSTS header erclab.kr: could not connect to host +erecciontotalal100.com: could not connect to host erepublik-deutschland.de: did not receive HSTS header eressea.xyz: could not connect to host ericbond.net: could not connect to host @@ -4431,34 +4993,39 @@ ericloud.tk: could not connect to host ericorporation.com: did not receive HSTS header ericyl.com: did not receive HSTS header 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-zurich.ch: could not connect to host ernesto.at: could not connect to host eroimatome.com: could not connect to host eromixx.com: could not connect to host +eromon.net: could not connect to host +eroskines.com: did not receive HSTS header 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 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 -erwinvanlonden.net: did not receive HSTS header +ervaarjapan.nl: did not receive HSTS header +erverydown.ml: could not connect to host es8888.net: could not connect to host es888999.com: could not connect to host -esaborit.ddns.net: could not connect to host esafar.cz: did not receive HSTS header 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 +esb1314.net: could not connect to host +esb1668.com: could not connect to host esb16888.com: could not connect to host esb17888.com: could not connect to host esb222.net: could not connect to host esb555.com: could not connect to host +esb556.com: could not connect to host esb666.com: could not connect to host esb666.net: could not connect to host esb66666.com: could not connect to host @@ -4468,6 +5035,7 @@ esb777.cc: could not connect to host esb777.com: could not connect to host esb777.net: could not connect to host esb777.us: could not connect to host +esb8886.com: could not connect to host esb9588.info: did not receive HSTS header esb999.biz: could not connect to host esb999.com: could not connect to host @@ -4483,23 +5051,26 @@ esbuilders.co.nz: did not receive HSTS header escalate.eu: could not connect to host escapees.com: did not receive HSTS header escolaengenharia.com.br: did not receive HSTS header +escort-byuro.net: could not connect to host escort-fashion.com: could not connect to host escortdisplay.com: could not connect to host -escortshotsexy.com: max-age too low: 2592000 +escortshotsexy.com: could not connect to host 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 -esibun.net: could not connect to host +eshepperd.com: did not receive HSTS header +eshobe.com: did not receive HSTS header +eshtapay.com: could not connect to host esko.bar: could not connect to host -eskriett.com: could not connect to host esln.org: did not receive HSTS header 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 @@ -4510,9 +5081,11 @@ 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 essential12.com: could not connect to host essentialoilsimports.com: could not connect to host @@ -4521,13 +5094,17 @@ essenzialeenxovais.com.br: could not connect to host esseriumani.com: could not connect to host essexghosthunters.co.uk: did not receive HSTS header essplusmed.org: could not connect to host -essteebee.ch: could not connect to host estaciona.guru: could not connect to host +estaleiro.org: could not connect to host +estan.cn: could not connect to host estebanborges.com: did not receive HSTS header estespr.com: did not receive HSTS header +estetistarimini.it: did not receive HSTS header estilosapeca.com: could not connect to host estland.guide: could not connect to host estoqueinformatica.com.br: could not connect to host +estudio21pattern.com: could not connect to host +estudioamazonico.com: could not connect to host et-buchholz.de: could not connect to host et180.com: could not connect to host etangs-magazine.com: could not connect to host @@ -4538,6 +5115,7 @@ etenendrinken.nu: could not connect to host eternalsymbols.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] eternitylove.us: could not connect to host eth9.net: could not connect to host +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 @@ -4545,22 +5123,25 @@ ether.school: could not connect to host etheria-software.tk: did not receive HSTS header ethicalexploiting.com: did not receive HSTS header 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 +etincelle.ml: could not connect to host etk2000.com: did not receive HSTS header etmirror.top: could not connect to host etmirror.xyz: could not connect to host etoto.pl: did not receive HSTS header etproxy.tech: could not connect to host ets2mp.de: did not receive HSTS header +etskinner.com: did not receive HSTS header etsysecure.com: could not connect to host ettebiz.com: max-age too low: 0 etula.ga: could not connect to host etula.me: could not connect to host etys.no: did not receive HSTS header euanbaines.com: did not receive HSTS header -eucl3d.com: could not connect to host +eucl3d.com: did not receive HSTS header euclideanpostulates.xyz: could not connect to host eucollegetours.com: could not connect to host euexia.fr: could not connect to host @@ -4572,42 +5153,49 @@ 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 -euroapo.org: max-age too low: 3600 eurocamping.se: could not connect to host euroescortguide.com: could not connect to host +europapier.ua: did not receive HSTS header +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 +evangelosm.com: could not connect to host evanhandgraaf.nl: did not receive HSTS header evankurniawan.com: did not receive HSTS header +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 +everain.me: could not connect to host +everitoken.io: did not receive HSTS header everyarti.st: could not connect to host everybooks.com: could not connect to host everydaytherich.com: max-age too low: 7776000 -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 everytruckjob.com: did not receive HSTS header eveseat.net: could not connect to host eveshaiwu.com: could not connect to host evi.be: did not receive HSTS header +evilbeasts.ru: could not connect to host 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 @@ -4621,51 +5209,61 @@ ewex.org: could not connect to host eworksmedia.com: could not connect to host exampleessays.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 +exceltobarcode.com: could not connect to host +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 +exebouncycastles.co.uk: could not connect to host exembit.com: did not receive HSTS header exfiles.cz: did not receive HSTS header +exgaywatch.com: could not connect to host exgravitus.com: could not connect to host exno.co: could not connect to host -exo.do: could not connect to host +exnovin.co: max-age too low: 0 +exo.do: max-age too low: 0 +exocen.com: could not connect to host +exoticads.com: could not connect to host exousiakaidunamis.xyz: could not connect to host +expancio.com: max-age too low: 0 expanddigital.media: did not receive HSTS header expatads.com: could not connect to host expatriate.pl: did not receive HSTS header +expecting.com.br: could not connect to host experticon.com: did not receive HSTS header expertmile.com: did not receive HSTS header -explodie.org: could not connect to host explodingcamera.com: did not receive HSTS header exploit-db.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -exploit.cz: did not receive HSTS header -expo-designers.com: could not connect to host +expo-designers.com: did not receive HSTS header +expokohler.com: could not connect to host expoort.com.br: could not connect to host -expoundite.net: could not connect to host +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 +extendwings.com: could not connect to host exteriorservices.io: could not connect to host extramoney.cash: did not receive HSTS header extrathemeshowcase.net: could not connect to host extratorrent.cool: did not receive HSTS header -extratorrent.fyi: could not connect to host -extratorrent.red: could not connect to host +extratorrent.fyi: max-age too low: 0 +extratorrent.red: max-age too low: 0 extratorrent.world: could not connect to host extratorrentlive.xyz: could not connect to host extratorrents.tech: could not connect to host extreemhost.nl: did not receive HSTS header extremenetworking.net: could not connect to host +extremeservicesandrestoration.com: could not connect to host exy.pw: could not connect to host +eyasc.nl: did not receive HSTS header eyedarts.com: did not receive HSTS header eyeglassuniverse.com: did not receive HSTS header eyenote.gov: did not receive HSTS header eyes-of-universe.eu: did not receive HSTS header eyesoccer-didikh.rhcloud.com: could not connect to host +eyesonly.cc: did not receive HSTS header eytosh.net: could not connect to host ez.fi: could not connect to host +ezgamble.com: could not connect to host ezimoeko.net: could not connect to host ezmod.org: could not connect to host ezorgportaal.nl: could not connect to host @@ -4675,39 +5273,47 @@ f-rickroll-g.pw: could not connect to host f-s-u.co.uk: could not connect to host f00.ca: did not receive HSTS header f1bigpicture.com: could not connect to host +f2e.io: 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 +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 +fabmart.com: max-age too low: 7889238 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 +factor.cc: did not receive HSTS header factorable.net: did not receive HSTS header factorygw.com: did not receive HSTS header factorypartsdirect.com: could not connect to host -factureenlinea.com: did not receive HSTS header +factureenlinea.com: could not connect to host fadednet.com: could not connect to host 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 @@ -4715,17 +5321,19 @@ fairlyoddtreasures.com: did not receive HSTS header faisalshuvo.com: 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 falcibiosystems.org: did not receive HSTS header +falconfrag.com: could not connect to host 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 +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 @@ -4733,17 +5341,16 @@ fameuxhosting.co.uk: could not connect to host familie-sander.rocks: max-age too low: 600 familie-sprink.de: could not connect to host familie-zimmermann.at: could not connect to host +familletouret.fr: did not receive HSTS header famio.cn: did not receive HSTS header -fan.gov: could not connect to host fanflow.com: did not receive HSTS header -fansmade.art: did not receive HSTS header +fansmade.art: could not connect to host fant.dk: did not receive HSTS header fantasticgardenersmelbourne.com.au: did not receive HSTS header fantasticpestcontrolmelbourne.com.au: did not receive HSTS header fantasyfootballpundit.com: did not receive HSTS header fanyl.cn: 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] -faradji.nu: could not connect to host faraonplay5.com: could not connect to host faraonplay7.com: could not connect to host faraonplay8.com: could not connect to host @@ -4752,13 +5359,14 @@ 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-discreto.com: did not receive HSTS header 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 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 @@ -4774,18 +5382,24 @@ 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 faxreader.net: could not connect to host fayolle.info: did not receive HSTS header +fbf.gov: could not connect to host +fbi.pw: could not connect to host fbook.top: could not connect to host fbox.li: could not connect to host fcapartsdb.com: could not connect to host +fcitasc.com: could not connect to host fcp.cn: could not connect to host fdj.im: could not connect to host +fdm.ro: did not receive HSTS header fdt.name: did not receive HSTS header feard.space: could not connect to host fed51.com: did not receive HSTS header @@ -4796,26 +5410,26 @@ fedn.it: could not connect to host fedo.moe: could not connect to host feedstringer.com: could not connect to host feedthebot.com: did not receive HSTS header -feelmom.com: could not connect to host +feegg.com.br: 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 +feisbed.com: could not connect to host feist.io: could not connect to host feitobrasilcosmeticos.com.br: did not receive HSTS header felger-times.fr: could not connect to host -felicifia.org: could not connect to host feliwyn.fr: did not receive HSTS header +felixhefner.de: 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 fengyadi.com: could not connect to host -fengyi.tel: did not receive HSTS header 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 @@ -4826,6 +5440,7 @@ 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 fetclips.se: could not connect to host @@ -4833,12 +5448,13 @@ fetlife.com: could not connect to host fettbrot.tk: did not receive HSTS header feudaltactics.com: could not connect to host feuerwehr-dachaufsetzer.de: could not connect to host -fexmen.com: could not connect to host +fexmen.com: did not receive HSTS header +ff-bg.xyz: could not connect to host ffh.me: could not connect to host ffl123.com: did not receive HSTS header fgequipamentos.com.br: did not receive HSTS header fhsseniormens.club: could not connect to host -fi-sanki.co.jp: did not receive HSTS header +fi-sanki.co.jp: could not connect to host fibrasynormasdecolombia.com: did not receive HSTS header ficklenote.net: could not connect to host fics-twosigma.com: could not connect to host @@ -4851,31 +5467,37 @@ fiendishmasterplan.com: did not receive HSTS header fierman.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] fierman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] fierman.us: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -fifieldtech.com: could not connect to host fiftyshadesofluca.ml: could not connect to host fig.co: did not receive HSTS header fig.ms: could not connect to host fightr.co: could not connect to host +figura.cz: did not receive HSTS header figura.im: did not receive HSTS header figuurzagers.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] fiksel.info: could not connect to host fikt.space: 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: 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.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: could not connect to host 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 @@ -4890,7 +5512,6 @@ 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 finstererlebnis.de: could not connect to host finsterlebnis.de: did not receive HSTS header fiodental.com.br: did not receive HSTS header @@ -4899,35 +5520,35 @@ 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 fireinthedeep.com: could not connect to host firemail.io: could not connect to host -firenza.org: did not receive HSTS header fireorbit.de: did not receive HSTS header firepeak.ru: could not connect to host fireworkcoaching.com: did not receive HSTS header firexarxa.de: could not connect to host +firmament.space: could not connect to host firmenverzeichnis.nu: could not connect to host first-time-offender.com: could not connect to host firstchoicepool.com: did not receive HSTS header firstdogonthemoon.com.au: did not receive HSTS header firstforex.co.uk: did not receive HSTS header firstlook.org: did not receive HSTS header -fischers.it: could not connect to host -fischers.srv.br: could not connect to host fiscoeconti.it: did not receive HSTS header -fishfinders.info: did not receive HSTS header fiskestang.com: did not receive HSTS header fit4medien.de: did not receive HSTS header fitbylo.com: could not connect to host fitea.cz: could not connect to host +fitfitup.com: did not receive HSTS header fitiapp.com: could not connect to host fitnesswerk.de: could not connect to host fitqbe.com: did not receive HSTS header +fitseven.ru: did not receive HSTS header fitshop.com.br: could not connect to host fitsw.com: did not receive HSTS header +fiuxy.org: could not connect to host five.vn: did not receive HSTS header fivestarsitters.com: did not receive HSTS header fivestepfunnels.com: could not connect to host @@ -4956,7 +5577,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 -flagfic.com: did not receive HSTS header +flagfic.com: could not connect to host flags.ninja: could not connect to host flair.co: max-age too low: 7889238 flairbros.at: could not connect to host @@ -4969,22 +5590,30 @@ 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 +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 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: did not receive HSTS header +flixports.com: 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 +floj.tech: did not receive HSTS header +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 @@ -4996,6 +5625,7 @@ 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 +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 @@ -5003,45 +5633,52 @@ 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 -floydm.com: did not receive HSTS header +flox.io: could not connect to host +floydm.com: could not connect to host 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 +flyingspaghettimonsterdonationsfund.nl: could not connect to host +flyingyoung.top: 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] flyspace.ga: did not receive HSTS header +flyspace.ml: did not receive HSTS header flyss.net: could not connect to host fm83.nl: could not connect to host fm992.com: could not connect to host +fmovies.fyi: did not receive HSTS header fmovies.life: could not connect to host fnfpt.co.uk: could not connect to host fniephaus.com: did not receive HSTS header -fnncat.com: could not connect to host +fnncat.com: did not receive HSTS header fnvsecurity.com: could not connect to host fobc-usa.org: did not receive HSTS header focalforest.com: could not connect to host -foerster-kunststoff.de: did not receive HSTS header +foerster-kunststoff.de: could not connect to host fognini-depablo.eu: could not connect to host fohome.ca: could not connect to host fokan.ch: did not receive HSTS header foliekonsulenten.dk: did not receive HSTS header -folioapp.io: did not receive HSTS header -fondanastasia.ru: could not connect to host +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: could not connect to host foodbuddy.ch: could not connect to host -foodev.de: 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 @@ -5064,57 +5701,67 @@ forestfinance.fr: did not receive HSTS header foreveralone.io: could not connect to host foreveryoung.pt: did not receive HSTS header forex-dan.com: did not receive HSTS header +forexsignals7.com: could not connect to host forgix.com: 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 formula.cf: could not connect to host forplanetsake.com: could not connect to host -forschbach-janssen.de: could not connect to host +forplayers.pl: could not connect to host +forquilhinhanoticias.com.br: did not receive HSTS header forsyththeatre.com: could not connect to host +fortoglethorpega.gov: could not connect to host fortricks.in: did not receive HSTS header fortuna-loessnitz.de: could not connect to host fortuna-s.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] 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 -foshanshequ.com: could not connect to host fossewayflowers.co.uk: could not connect to host fossewayflowers.com: could not connect to host fossewaygardencentre.co.uk: did not receive HSTS header -fossgruppen.se: could not connect to host +fossgruppen.se: did not receive HSTS header +fossguard.com: could not connect to host fotiu.com: could not connect to host fotoallerlei.com: did not receive HSTS header fotocerita.net: could not connect to host 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: did not receive HSTS header +fox.my: could not connect to host +foxdev.io: could not connect to host foxelbox.com: did not receive HSTS header foxes.no: could not connect to host foxley-farm.co.uk: did not receive HSTS header foxley-seeds.co.uk: did not receive HSTS header foxleyseeds.co.uk: could not connect to host foxmay.co.uk: could not connect to host -foxtrot.pw: could not connect to host +foxterrier.com.br: could not connect to host +foxtrot.pw: did not receive HSTS header foxyslut.com: could not connect to host +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 +fragnic.com: could not connect to host 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 +frankedier.com: did not receive HSTS header +frankfurt-am-start.de: did not receive HSTS header +frankl.in: did not receive HSTS header franklinhua.com: could not connect to host franta.biz: did not receive HSTS header franta.email: did not receive HSTS header @@ -5126,7 +5773,7 @@ frasys.cloud: max-age too low: 2592000 frasys.io: could not connect to host fraudempire.com: could not connect to host freakyamazing.com: could not connect to host -freakyaweso.me: could not connect to host +freakyaweso.me: max-age too low: 86400 freakyawesome.band: could not connect to host freakyawesome.blog: could not connect to host freakyawesome.ca: could not connect to host @@ -5192,47 +5839,53 @@ 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 -freddythechick.uk: did not receive HSTS header +freddythechick.uk: could not connect to host fredliang.cn: could not connect to host -fredtec.ru: could not connect to host free8.xyz: could not connect to host freeasinlliure.org: did not receive HSTS header -freeassangenow.org: could not connect to host +freeassangenow.org: did not receive HSTS header freeben666.fr: could not connect to host +freeblog.me: could not connect to host freebookmakerbets.com.au: did not receive HSTS header freebus.org: could not connect to host +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 freelanced.co.za: could not connect to host 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 +freematthale.net: 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 +freesquare.net: did not receive HSTS header freethought.org.au: could not connect to host freeutopia.org: did not receive HSTS header +frenzel.dk: could not connect to host freqlabs.com: did not receive HSTS header freshfind.xyz: could not connect to host freshlymind.com: did not receive HSTS header +freshmaza.io: did not receive HSTS header +frettboard.com: did not receive HSTS header frezbo.com: could not connect to host frforms.com: did not receive HSTS header frickelboxx.de: could not connect to host 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 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 @@ -5248,12 +5901,15 @@ frost-ci.xyz: could not connect to host frostbytes.net: did not receive HSTS header frosty-gaming.xyz: could not connect to host frp-roleplay.de: could not connect to host +frprn.com: could not connect to host +frprn.xxx: could not connect to host frsis2017.com: could not connect to host +fruitscale.com: could not connect to host fruitusers.com: could not connect to host frumious.fyi: could not connect to host frusky.net: could not connect to host fs-gamenet.de: could not connect to host -fsf.moe: did not receive HSTS header +fsf.moe: could not connect to host fsfi.is: could not connect to host fsinf.at: did not receive HSTS header fspphoto.com: could not connect to host @@ -5261,7 +5917,8 @@ 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 @@ -5275,41 +5932,54 @@ fudanshi.org: could not connect to host fuelministry.com: did not receive HSTS header fugle.de: could not connect to host fuitedeau.ch: could not connect to host +fujianshipbuilding.com: could not connect to host +fujiorganics.com: did not receive HSTS header fukuko.biz: could not connect to host fukuko.xyz: could not connect to host fukuoka-cityliner.jp: did not receive HSTS header 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 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 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 +funtimebourne.co.uk: did not receive HSTS header fuorifuocogenova.it: did not receive HSTS header furi.ga: could not connect to host furiffic.com: did not receive HSTS header furnation.com: could not connect to host furnishedproperty.com.au: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +furnitureconcept.co.uk: could not connect to host +furry.agency: could not connect to host furry.be: did not receive HSTS header +fursuitbutts.com: could not connect to host furtivelook.com: did not receive HSTS header fusedrops.com: did not receive HSTS header fusionmate.com: could not connect to host +fuskator.com: could not connect to host +fussell.io: could not connect to host +futa.agency: could not connect to host futbol11.com: did not receive HSTS header futbolvivo.tv: did not receive HSTS header futos.de: could not connect to host @@ -5322,28 +5992,32 @@ 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 +fxtalk.cn: could not connect to host fxwebstudio.com.au: max-age too low: 0 -fyfywka.com: 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: 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 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 @@ -5354,10 +6028,13 @@ gablaxian.com: max-age too low: 2592000 gabriele-kluge.de: could not connect to host gaelleetarnaud.com: did not receive HSTS header gafachi.com: could not connect to host +gaff-rig.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] gaichanh.com: did not receive HSTS header +gailfellowsphotography.com: could not connect to host gainesvillegoneaustin.org: did not receive HSTS header -gaiserik.com: could not connect to host +gaiserik.com: did not receive HSTS header gaite.me: did not receive HSTS header +gajas18.com: could not connect to host gakkainavi4.com: could not connect to host galardi.org: could not connect to host galena.io: could not connect to host @@ -5378,7 +6055,6 @@ 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 @@ -5386,88 +6062,110 @@ 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: could not connect to host 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 +gamerezo.com: 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 -gamerz-stream.com: 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 gametium.com: could not connect to host gametium.es: could not connect to host gamhealth.net: could not connect to host -gamingmedia.eu: could not connect to host +gamingmedia.eu: did not receive HSTS header gamingreinvented.com: did not receive HSTS header gamoice.com: did not receive HSTS header gampenhof.de: could not connect to host gangnam-club.com: could not connect to host gangnam-karaoke.com: could not connect to host ganhonet.com.br: did not receive HSTS header -gaphag.ddns.net: could not connect to host -gar-nich.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 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 +garethkirk.com: could not connect to host +garethkirkreviews.com: could not connect to host garfieldairlines.net: did not receive HSTS header garten-bau.ch: did not receive HSTS header garten-diy.de: could not connect to host +gartenhauszentrum.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] gasbarkenora.com: could not connect to host gasnews.net: could not connect to host gasser-daniel.ch: did not receive HSTS header gastauftritt.net: did not receive HSTS header +gastritisolucion.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] gatapro.net: could not connect to host +gatemotorsumhlanga.co.za: 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.it: could not connect to host gautham.pro: could not connect to host gavick.com: did not receive HSTS header +gay-jays.com: could not connect to host +gay-sissies.com: could not connect to host gaycc.cc: could not connect to host 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 gdegem.org: did not receive HSTS header gdevpenze.ru: could not connect to host gdprhallofshame.com: could not connect to host +gdutnic.com: could not connect to host gdz-otvety.com: could not connect to host -gdz.tv: could not connect to host gear-acquisition-syndrome.community: could not connect to host +geaskb.nl: could not connect to host geblitzt.de: did not receive HSTS header gedankenbude.info: could not connect to host +gedankenworks.com: could not connect to host geekbaba.com: could not connect to host geekcast.co.uk: did not receive HSTS header -geekdt.com: could not connect to host +geekchimp.com: did not receive HSTS header +geekdt.com: did not receive HSTS header 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 geldteveel.eu: could not connect to host geli-graphics.com: did not receive HSTS header +gem-indonesia.net: max-age too low: 0 gemeinfreie-lieder.de: did not receive HSTS header gemsoftheworld.org: could not connect to host gemuplay.com: could not connect to host @@ -5477,7 +6175,7 @@ generationnext.pl: could not connect to host genesischangelog.com: could not connect to host geneve.guide: could not connect to host genia-life.de: could not connect to host -genie-seiner-generation.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 @@ -5487,28 +6185,31 @@ genuxation.com: could not connect to host genxbeats.com: did not receive HSTS header genyaa.com: could not connect to host genyhitch.com: did not receive HSTS header +geocommunicator.gov: could not connect to host geoffanderinmyers.com: did not receive HSTS header geoffdev.com: could not connect to host geoffmyers.com: did not receive HSTS header geoffreyrichard.com: could not connect to host geopals.net: did not receive HSTS header -georgeperez.me: could not connect to host +georgeperez.me: did not receive HSTS header georgesonarthurs.com.au: did not receive HSTS header -gerardobsd.com: could not connect to host +gerbyte.uk: 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 +germansoldiers.net: could not connect to host gers-authentique.com: could not connect to host +gerum.dynv6.net: did not receive HSTS header geschenkly.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] geschmackspiloten.de: did not receive HSTS header gesiwista.net: did not receive HSTS header +gestorehotel.com: did not receive HSTS header gesunde-smoothies.de: did not receive HSTS header gesundes-im-napf.de: did not receive HSTS header get-asterisk.ru: could not connect to host get-cctv.com: could not connect to host -get-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 @@ -5533,7 +6234,6 @@ 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 getlifti.com: could not connect to host @@ -5541,7 +6241,7 @@ getlittleapps.com: could not connect to host getlolaccount.com: did not receive HSTS header getmassage.com.ng: could not connect to host getmondo.co.uk: could not connect to host -geto.ml: could not connect to host +geto.ml: did not receive HSTS header getpake.com: could not connect to host getpop.org: did not receive HSTS header getpost.online: did not receive HSTS header @@ -5549,53 +6249,61 @@ 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 -getswadeshi.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 -getyeflask.com: could not connect to host +getweloop.io: did not receive HSTS header +getyou.onl: did not receive HSTS header getyourphix.tk: could not connect to host gevaulug.fr: could not connect to host gfbouncycastles.co.uk: did not receive HSTS header gfhgiro.nl: did not receive HSTS header +gflclan.ru: could not connect to host gfm.tech: could not connect to host gfoss.gr: could not connect to host -gfw.moe: did not receive HSTS header +gfw.moe: 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 gianlucapartengo.photography: did not receive HSTS header giant-powerfit.co.uk: did not receive HSTS header gibraltar-firma.com: did not receive HSTS header +giddyaunt.net: could not connect to host gidea.nu: could not connect to host +giduv.com: did not receive HSTS header giegler.software: did not receive HSTS header giftgofers.com: max-age too low: 2592000 +giftservices.nl: did not receive HSTS header gifzilla.net: could not connect to host gigacloud.org: could not connect to host gigawattz.com: could not connect to host 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 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 gintenreiter-photography.com: did not receive HSTS header @@ -5605,7 +6313,7 @@ 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 -girlsnet.work: could not connect to host +girlsgonesporty.com: 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 @@ -5622,14 +6330,15 @@ gixtools.uk: could not connect to host gizzo.sk: could not connect to host glabiatoren-kst.de: could not connect to host gladystudio.com: did not receive HSTS header -glahcks.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 +glicerina.online: did not receive HSTS header glittersjabloon.nl: did not receive HSTS header glitzmirror.com: could not connect to host glnpo.gov: could not connect to host @@ -5637,51 +6346,56 @@ 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 globalnomadvintage.com: could not connect to host globalperspectivescanada.com: could not connect to host +globalresistancecorporation.com: could not connect to host globalsites.nl: did not receive HSTS header globaltennis.ca: could not connect to host globalvisions-events.ch: could not connect to host globalvisions-events.com: could not connect to host -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 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: did not receive HSTS header gmanukyan.com: could not connect to host gmat.ovh: could not connect to host -gmoes.at: could not connect to host +gmoes.at: 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 +gnwp.eu: 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 +goapunks.net: did not receive HSTS header goarmy.eu: could not connect to host goat.chat: did not receive HSTS header goat.xyz: could not connect to host goben.ch: could not connect to host goblins.net: did not receive HSTS header goblinsatwork.com: could not connect to host +gocardless.com: did not receive HSTS header godrealms.com: could not connect to host 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 @@ -5695,6 +6409,7 @@ 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 @@ -5703,6 +6418,9 @@ golfburn.com: could not connect to host golocal-media.de: could not connect to host gomiblog.com: did not receive HSTS header gong8.win: could not connect to host +gongjianwei.com: could not connect to host +gonkar.com: did not receive HSTS header +gonzalesca.gov: did not receive HSTS header gonzalosanchez.mx: did not receive HSTS header goodeats.nyc: did not receive HSTS header goodfeels.net: could not connect to host @@ -5711,6 +6429,7 @@ 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) @@ -5730,14 +6449,16 @@ 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 +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: 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 @@ -5747,7 +6468,6 @@ 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 -gowe.wang: could not connect to host gozadentro.com: could not connect to host gozel.com.tr: did not receive HSTS header gpalabs.com: could not connect to host @@ -5757,56 +6477,64 @@ gplintegratedit.com: could not connect to host gpo.gov: did not receive HSTS header gpstuner.com: did not receive HSTS header graavaapi.elasticbeanstalk.com: could not connect to host +grabi.ga: could not connect to host gracechurchpc.net: 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: could not connect to host -grademypc.com: could not connect to host +grademymac.com: did not receive HSTS header +grademypc.com: did not receive HSTS header +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 +grandmasfridge.org: could not connect to host +grandwailea.com: did not receive HSTS header +granian.pro: could not connect to host grantedby.me: max-age too low: 0 granth.io: could not connect to host graph.no: did not receive HSTS header +graphified.nl: did not receive HSTS header graphite.org.uk: could not connect to host graphsearchengine.com: could not connect to host gratis-app.com: did not receive HSTS header gratisonlinesex.com: could not connect to host gravitation.pro: did not receive HSTS header gravito.nl: did not receive HSTS header -gravity-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 +greatergoodoffers.com: did not receive HSTS header greatfire.kr: could not connect to host greatideahub.com: did not receive HSTS header greatnet.de: did not receive HSTS header greatsong.net: did not receive HSTS header -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 greencardtalent.com: could not connect to host +greenconn.ca: could not connect to host +greenenergysolution.uk: did not receive HSTS header greenesting.ch: could not connect to host greenesting.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 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 +gregmarziomedia.co.za: did not receive HSTS header +gregmarziomedia.com: did not receive HSTS header +gregmilton.org: could not connect to host gregorytlee.me: could not connect to host grekland.guide: could not connect to host gremots.com: could not connect to host @@ -5817,8 +6545,8 @@ grettogeek.com: did not receive HSTS header greuel.online: could not connect to host greve.xyz: could not connect to host grevesgarten.de: could not connect to host +greyhash.se: could not connect to host greyline.se: could not connect to host -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 @@ -5836,7 +6564,7 @@ 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 groupe-cassous.com: did not receive HSTS header @@ -5846,30 +6574,34 @@ 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 +gruelang.org: could not connect to host gruenderwoche-dresden.de: did not receive HSTS header +grumples.biz: did not receive HSTS header grunex.com: did not receive HSTS header grupopgn.com.br: could not connect to host -grusig-geil.ch: could not connect to host +gruppoipl.it: did not receive HSTS header gryffin.ga: could not connect to host gryffin.ml: could not connect to host gryffin.tk: could not connect to host +grytics.com: did not receive HSTS header gs-net.at: could not connect to host gsm-map.com: could not connect to host gsmkungen.com: could not connect to host gsnort.com: did not receive HSTS header -gsoc.se: could not connect to host gtamodshop.org: could not connect to host gtanda.tk: could not connect to host gtech.work: did not receive HSTS header gtldna.com: could not connect to host +gtopala.net: could not connect to host gtraxapp.com: could not connect to host gts-schulsoftware.de: 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 guffrits.com: could not connect to host gugaltika-ipb.org: could not connect to host guge.gq: could not connect to host @@ -5877,19 +6609,20 @@ gugga.dk: could not connect to host guguke.net: did not receive HSTS header guidechecking.com: 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 gulfcoast-sandbox.com: could not connect to host gulitsky.me: could not connect to host gulleyperformancecenter.com: did not receive HSTS header -gulshankumar.net: did not receive HSTS header gumannp.de: did not receive HSTS header gummibande.noip.me: could not connect to host gunhunter.com: could not connect to host @@ -5897,7 +6630,9 @@ guniram.com: did not receive HSTS header gunnarhafdal.com: did not receive HSTS header gunnaro.com: could not connect to host guntbert.net: could not connect to host +guochang.xyz: 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 gurusupe.com: could not connect to host @@ -5907,12 +6642,14 @@ 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 +guthabenkarten-billiger.de: could not connect to host guts.me: did not receive HSTS header guts.moe: did not receive HSTS header +guvernalternativa.ro: could not connect to host guyot-tech.com: did not receive HSTS header gvchannel.xyz: could not connect to host -gvi.be: 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) @@ -5924,32 +6661,32 @@ 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.net: 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: did not receive HSTS header +habbo.life: 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 hac30.com: could not connect to host hack.cz: could not connect to host hack.li: could not connect to host +hackattack.com: did not receive HSTS header hackbubble.me: could not connect to host -hackdown.me: could not connect to host hacker.deals: could not connect to host hacker8.cn: could not connect to host hackercat.ninja: max-age too low: 2592000 -hackerforever.com: could not connect to host +hackerforever.com: did not receive HSTS header hackerone-ext-adroll.com: could not connect to host hackerspace-ntnu.no: did not receive HSTS header hackest.org: did not receive HSTS header @@ -5958,8 +6695,8 @@ 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 hadzic.co: could not connect to host haeckdesign.com: did not receive HSTS header @@ -5968,6 +6705,7 @@ haehnlein.at: could not connect to host haemmerle.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] haf.gr: could not connect to host hafoda.com: did not receive HSTS header +haggeluring.su: could not connect to host hahayidu.org: could not connect to host hail2u.net: did not receive HSTS header hainoni.com: did not receive HSTS header @@ -5976,13 +6714,13 @@ 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 @@ -6003,16 +6741,19 @@ handicapindeles.nl: did not receive HSTS header 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 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 @@ -6023,7 +6764,6 @@ haobo5555.com: could not connect to host haobo6666.com: could not connect to host haobo7777.com: could not connect to host haomwei.com: could not connect to host -haoqi.men: could not connect to host haoyugao.com: could not connect to host happist.com: did not receive HSTS header happix.nl: did not receive HSTS header @@ -6035,24 +6775,29 @@ hapsfordmill.co.uk: could not connect to host hapvm.com: could not connect to host haqaza.com.br: did not receive HSTS header harambe.site: could not connect to host -harbourweb.net: did not receive HSTS header -hardergayporn.com: could not connect to host +harbourweb.net: could not connect to host +hardeman.nu: 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 +harekaze.info: could not connect to host haribosupermix.com: could not connect to host hariome.com: did not receive HSTS header +haritsa.co.id: could not connect to host harlentimberproducts.co.uk: did not receive HSTS header -harmfarm.nl: could not connect to host 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 harschnitz.nl: did not receive HSTS header +hartie95.de: could not connect to host hartlep.eu: could not connect to host hartmancpa.com: did not receive HSTS header harvestrenewal.org: did not receive HSTS header +harveymilton.com: did not receive HSTS header harz.cloud: could not connect to host has.vision: could not connect to host hasabig.wang: could not connect to host @@ -6065,12 +6810,13 @@ 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 -hatarisecurity.co.ke: 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 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 @@ -6079,7 +6825,7 @@ 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 @@ -6088,6 +6834,8 @@ hazcod.com: could not connect to host haze-productions.com: could not connect to host haze.network: did not receive HSTS header haze.sucks: could not connect to host +hazeltime.com: could not connect to host +hazeltime.se: did not receive HSTS header hazyrom.net: could not connect to host hb1111.com: could not connect to host hb3333.com: could not connect to host @@ -6105,41 +6853,48 @@ 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 -hcstr.com: did not receive HSTS header +hcstr.com: could not connect to host hd1tj.org: did not receive HSTS header hdm.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] hdrboundless.com: could not connect to host -hdritalyphotos.com: did not receive HSTS header hdserver.info: did not receive HSTS header hdsmigrationtool.com: could not connect to host hduin.xyz: could not connect to host +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 healthcare6.com: did not receive HSTS header healthjoy.com: did not receive HSTS header +healthlabs.com: did not receive HSTS header +healthmatchapp.com: could not connect to host healthyandnaturalliving.com: could not connect to host healthycod.in: could not connect to host -healtious.com: could not connect to host +healtious.com: did not receive HSTS header hearingshofar.com: could not connect to host -heart.ge: did not receive HSTS header +heart.ge: could not connect to host heartlandrentals.com: did not receive HSTS header -hearty.cf: could not connect to host +hearty.cf: did not receive HSTS header hearty.ink: could not connect to host hearty.space: could not connect to host hearty.tech: could not connect to host hearty.tw: did not receive HSTS header +heartyapp.com: could not connect to host 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 -hebikhiv.nl: could not connect to host +hebriff.com: could not connect to host +hectorj.net: could not connect to host hedweb.com: could not connect to host heidilein.info: did not receive HSTS header heimnetze.org: could not connect to host @@ -6156,7 +6911,6 @@ hello-nestor.com: did not receive HSTS header helloanselm.com: did not receive HSTS header hellofilters.com: could not connect to host hellomouse.cf: did not receive HSTS header -hellomouse.net: could not connect to host hellomouse.tk: could not connect to host hellotandem.com: could not connect to host hellothought.net: could not connect to host @@ -6177,52 +6931,58 @@ helppresta.com: did not receive HSTS header helpverif.com: did not receive HSTS header helpwithmybank.gov: did not receive HSTS header helsingfors.guide: could not connect to host +helup.com: did not receive HSTS header hemlockhillscabinrentals.com: did not receive HSTS header hencagon.com: could not connect to host hendersonrealestatepros.com: did not receive HSTS header -hendric.us: did not receive HSTS header +henhenlu.com: could not connect to host +henkbrink.com: did not receive HSTS header henningkerstan.org: did not receive HSTS header henriknoerr.com: could not connect to host 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 herbertmouwen.nl: could not connect to host here.ml: could not connect to host here4funpartysolutions.ie: did not receive HSTS header -heribe-maruo.com: could not connect to host +heribe-maruo.com: did not receive HSTS header heritagedentistry.ca: did not receive HSTS header hermes-servizi.it: could not connect to host heroin.org.uk: could not connect to host herpaderp.net: did not receive HSTS header 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 +hetmer.cz: did not receive HSTS header +hetmer.net: could not connect to host heutger.net: did not receive HSTS header hex2013.com: did not receive HSTS header hexacon.io: could not connect to host -hexadecimal.tech: did not receive HSTS header +hexadecimal.tech: could not connect to host hexe.net: did not receive HSTS header hexhu.com: could not connect to host hexo.io: did not receive HSTS header hexobind.com: could not connect to host 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: max-age too low: 86400 hg71839.com: could not connect to host hg881.com: could not connect to host -hh-wolke.dedyn.io: did not receive HSTS header +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 @@ -6230,9 +6990,11 @@ 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 highlandparkcog.org: did not receive HSTS header +highperformancehvac.com: did not receive HSTS header highseer.com: did not receive HSTS header highsurf-miyazaki.com: could not connect to host hightechgadgets.net: could not connect to host @@ -6259,26 +7021,35 @@ 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: could not connect to host hipercultura.com: did not receive HSTS header -hiphop.ren: could not connect to host hiphopconvention.nl: could not connect to host +hipi.jp: could not connect to host hipnos.net: did not receive HSTS header hipnoseinstitute.org: did not receive HSTS header -hiqhub.co.uk: could not connect to host hiraku.me: did not receive HSTS header +hirefitness.co.uk: did not receive HSTS header +hireprofs.com: could not connect to host hiresuccessstaffing.com: did not receive HSTS header +hiretech.com: did not receive HSTS header +hirevets.gov: did not receive HSTS header hirokilog.com: could not connect to host hisingenrunt.se: did not receive HSTS header +hisnet.de: could not connect to host histoire-theatre.com: did not receive HSTS header history.pe: could not connect to host hitchunion.org: could not connect to host hitoy.org: did not receive HSTS header +hitrek.ml: could not connect to host hittipps.com: could not connect to host +hivatal-info.hu: could not connect to host +hj2999.com: could not connect to host hjes.com.ve: could not connect to host +hjf-immobilien.de: did not receive HSTS header +hjkhs.cn: did not receive HSTS header hknet.at: did not receive HSTS header hlacosedora.com: max-age too low: 7889238 -hloe0xff.ru: could not connect to host hlpublicidad.com: could not connect to host hlyue.com: did not receive HSTS header hm1ch.com: could not connect to host @@ -6288,13 +7059,14 @@ hmm.nyc: could not connect to host hoast.xyz: could not connect to host hobaugh.social: could not connect to host hobby-gamerz-community.de: did not receive HSTS header +hocassian.cn: did not receive HSTS header hochzeitshelferlein.de: did not receive HSTS header +hockey.academy: did not receive HSTS header hodamakade.com: could not connect to host hodne.io: could not connect to host hoekwoningverkopen.nl: could not connect to host hoelty.network: could not connect to host hoerbuecher-und-hoerspiele.de: could not connect to host -hoeveiligismijn.nl: did not receive HSTS header hoffens.se: could not connect to host hofiprojekt.cz: did not receive HSTS header hogar123.es: could not connect to host @@ -6310,37 +7082,39 @@ 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 +holy-hi.com: did not receive HSTS header 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-v.ind.in: could not connect to host +home-work-jobs.com: did not receive HSTS header homeandyarddetailing.com: 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 +homeoesp.org: did not receive HSTS header homeownersassociationmanagementla.com: did not receive HSTS header homeremodelingcontractorsca.com: did not receive HSTS header homesandal.com: did not receive HSTS header homeseller.co.uk: could not connect to host homesfordinner.ca: could not connect to host -homewatt.co.uk: could not connect to host 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 @@ -6348,18 +7122,17 @@ hoodoo.tech: could not connect to host hookandloom.com: did not receive HSTS header hookbin.com: could not connect to host hoopsacademyusa.com: could not connect to host -hooray.beer: could not connect to host -hoovism.com: did not receive HSTS header hopesb.org: did not receive HSTS header hopewellproperties.co.uk: did not receive HSTS header hopglass.eu: could not connect to host hopglass.net: could not connect to host +hopzone.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 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 @@ -6377,18 +7150,19 @@ 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 +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 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 +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 @@ -6404,64 +7178,75 @@ howtocuremysciatica.com: could not connect to host howtofreelance.com: did not receive HSTS header hozinga.de: could not connect to host hpctecnologias.com: did not receive HSTS header +hpeditor.tk: could not connect to host hpepub.asia: could not connect to host -hpepub.org: could not connect to host +hpepub.org: did not receive HSTS header hppub.info: could not connect to host hppub.org: could not connect to host hppub.site: could not connect to host 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 hrackydomino.cz: did not receive HSTS header hrfhomelottery.com: did not receive HSTS header -hrk.io: could not connect to host +hrobert.hu: could not connect to host hrtech.store: could not connect to host hrtraining.com.au: did not receive HSTS header +hru.gov: could not connect to host hschen.top: could not connect to host hserver.top: could not connect to host hsir.me: could not connect to host 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 hszhyy120.com: could not connect to host htlball.at: could not connect to host html-lab.tk: 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 huangguancq.com: could not connect to host huangh.com: could not connect to host +huangting.me: did not receive HSTS header huangzenghao.com: could not connect to host huarongdao.com: did not receive HSTS header hubert.systems: did not receive HSTS header -hubertmoszka.pl: could not connect to host +hubertmoszka.pl: max-age too low: 0 +hubrecht.at: could not connect to host +hubrick.com: could not connect to host hudhaifahgoga.co.za: could not connect to host hudingyuan.cn: could not connect to host hugocollignon.fr: could not connect to host huiser.nl: could not connect to host hukaloh.com: could not connect to host hukkatavara.com: could not connect to host -humankode.com: did not receive HSTS header +hulsoft.co.uk: could not connect to host +humanexperiments.com: could not connect to host +humblebee.es: could not connect to host humblefinances.com: could not connect to host humeurs.net: could not connect to host 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] +hunqz.com: could not connect to host +hunstoncanoeclub.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] 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 +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 @@ -6469,22 +7254,30 @@ hwcine.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 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: did not receive HSTS header +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 @@ -6494,18 +7287,18 @@ hypotheques24.ch: could not connect to host hysg.me: could not connect to host hyvive.com: could not connect to host hzh.pub: did not receive HSTS header -hztgzz.com: could not connect to host i--b.com: did not receive HSTS header -i-aloks.ru: could not connect to host i-jp.net: could not connect to host +i-meto.com: 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 i9multiequipamentos.com.br: did not receive HSTS header +ia1000.com: could not connect to host iacono.com.br: did not receive HSTS header iadttaveras.com: could not connect to host iain.tech: did not receive HSTS header @@ -6513,6 +7306,7 @@ iamokay.nl: did not receive HSTS header iamreubin.co.uk: did not receive HSTS header iamsoareyou.se: could not connect to host iamveto.com: did not receive HSTS header +ian.sh: did not receive HSTS header iapws.com: did not receive HSTS header iban.is: could not connect to host ibarf.nl: did not receive HSTS header @@ -6522,15 +7316,17 @@ ibestreview.com: 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 icabanken.se: did not receive HSTS header icaforsakring.se: did not receive HSTS header icasnetwork.com: did not receive HSTS header -iccpublisher.com: 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 @@ -6546,20 +7342,25 @@ 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 icnsoft.ga: did not receive HSTS header -icnsoft.me: could not connect to host +icnsoft.me: did not receive HSTS header +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 +idafauziyah.com: could not connect to host +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 @@ -6570,16 +7371,15 @@ idealmykonos.com: did not receive HSTS header idealvenir.com: did not receive HSTS header ideapaisajistas.es: did not receive HSTS header ideaplus.me: could not connect to host -ideasenfoto.com: max-age too low: 604800 ideasmeetingpoint.com: could not connect to host ideation-inc.co.jp: could not connect to host idedr.com: could not connect to host idemo.in: could not connect to host -idenamaislami.com: 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 +idgsupply.com: could not connect to host +idid.tk: could not connect to host idinby.dk: did not receive HSTS header idiopolis.org: could not connect to host idisplay.es: could not connect to host @@ -6588,11 +7388,11 @@ 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 iec.pe: could not connect to host 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 @@ -6600,63 +7400,65 @@ ifad.org: 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 -ifreetion.cn: did not receive HSTS header +ifreetion.cn: could not connect to host ifx.ee: could not connect to host ifxnet.com: could not connect to host ifxor.com: could not connect to host -iga-semi.jp: could not connect to host igamingforums.com: could not connect to host -igd.chat: did not receive HSTS header +igd.chat: could not connect to host igforums.com: could not connect to host -igi.codes: 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 +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 ihsbsd.tk: could not connect to host ihzys.com: could not connect to host +ii74.com: did not receive HSTS header 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 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 ikwilguidobellen.nl: could not connect to host ikzoekeengoedkopeauto.nl: could not connect to host ikzoekjeugdhulp.nl: did not receive HSTS header ilbuongiorno.it: did not receive HSTS header ildomani.it: did not receive HSTS header ileat.com: could not connect to host +ilemonrain.com: could not connect to host ilgi.work: could not connect to host -ilhansubasi.com: did not receive HSTS header ilii.me: could not connect to host -ilikerainbows.co: could not connect to host +ilikerainbows.co: did not receive HSTS header ilikerainbows.co.uk: could not connect to host ilikfreshweedstores.com: did not receive HSTS header ilmconpm.de: could not connect to host iloilofit.org: did not receive HSTS header ilona.graphics: did not receive HSTS header +iltec-prom.ru: could not connect to host iluvscotland.co.uk: did not receive HSTS header im-design.com.ua: did not receive HSTS header +imadalin.ro: could not connect to host image.tf: could not connect to host +imagecurl.com: could not connect to host +imagecurl.org: could not connect to host imaginarymakings.me: could not connect to host imakepoems.net: could not connect to host -imanhearts.com: did not receive HSTS header -imanolbarba.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +imanhearts.com: could not connect to host imanudin.net: did not receive HSTS header imbrian.org: could not connect to host ime.moe: could not connect to host @@ -6667,29 +7469,32 @@ 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.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 +immaternity.com: could not connect to host immersionwealth.com: could not connect to host -immigrationdirect.com.au: could not connect to host +immo-vk.de: did not receive HSTS header +immobiliarecapitani.com: did not receive HSTS header immobilien-wallat.de: could not connect to host immoprotect.ca: did not receive HSTS header immortals-co.com: did not receive HSTS header 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.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 @@ -6697,13 +7502,14 @@ 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 imperdintechnologies.com: could not connect to host imperialonlinestore.com: did not receive HSTS header imperialwebsolutions.com: did not receive HSTS header -implicitdenial.com: did not receive HSTS header +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 @@ -6716,26 +7522,33 @@ inbox.li: did not receive HSTS header inboxen.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] incendiary-arts.com: could not connect to host inceptionradionetwork.com: could not connect to host +incestporn.tv: could not connect to host inchomatic.com: did not receive HSTS header 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 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 indoorskiassen.nl: did not receive HSTS header +indostar303.com: did not receive HSTS header indredouglas.me: could not connect to host industreiler.com: could not connect to host industreiler.com.br: could not connect to host industriasrenova.com: could not connect to host industrybazar.com: max-age too low: 2592000 ineed.com.mt: could not connect to host +inetpub.cn: could not connect to host inexlog.fr: could not connect to host inexpensivecomputers.net: could not connect to host infcof.com: did not receive HSTS header -inference.biz.tr: could not connect to host +inff.info: 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 @@ -6746,23 +7559,27 @@ 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 influxus.com: could not connect to host info-bay.com: could not connect to host info-sys.tk: could not connect to host +infoamin.com: did not receive HSTS header +infocoin.es: did not receive HSTS header infoduv.fr: did not receive HSTS header -infopagina.es: did not receive HSTS header 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: could not connect to host infosoph.org: could not connect to host infotics.es: did not receive HSTS header -infovae-idf.com: did not receive HSTS header +infovae-idf.com: could not connect to host infoworm.org: could not connect to host +infradio.am: could not connect to host infranix.eu: max-age too low: 7360000 infruction.com: could not connect to host infura.co.th: could not connect to host @@ -6772,8 +7589,6 @@ ingesol.fr: did not receive HSTS header 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 -initramfs.io: could not connect to host injapan.nl: could not connect to host injertoshorticolas.com: did not receive HSTS header injigo.com: did not receive HSTS header @@ -6784,6 +7599,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 @@ -6791,19 +7607,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 +inorder.website: could not connect to host +inovatec.com: did not receive HSTS header inox.io: did not receive HSTS header inoxio.com: did not receive HSTS header inoxio.de: did not receive HSTS header inplacers.ru: did not receive HSTS header -inquisitive.io: could not connect to host +inquisitive.io: did not receive HSTS header insane-bullets.com: could not connect to host insane.zone: could not connect to host inschrijfformulier.com: could not connect to host @@ -6819,14 +7639,20 @@ 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 @@ -6834,37 +7660,41 @@ intelbet.es: did not receive HSTS header intelbet.ro: did not receive HSTS header intelldynamics.com: could not connect to host intelliance.eu: could not connect to host -interboursegeneva.ch: could not connect to host -interference.io: could not connect to host +interboursegeneva.ch: did not receive HSTS header +interchanges.io: max-age too low: 0 +interference.io: did not receive HSTS header 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 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 +internationalschoolnewyork.com: could not connect to host internaut.co.za: did not receive HSTS header -internet-aukcion.info: could not connect to host internet-pornografie.de: did not receive HSTS header internetbugbounty.org: did not receive HSTS header internetcasinos.de: could not connect to host internetcensus.org: could not connect to host 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 +interview-suite.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] 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 @@ -6872,18 +7702,20 @@ intimici.com.br: could not connect to host intimtoy.com.ua: could not connect to host intranetsec.fr: could not connect to host introvertedtravel.space: max-age too low: 0 -intrp.net: did not receive HSTS header -intxt.net: could not connect to host +intrp.net: could not connect to host +inusasha.de: could not connect to host invenio.software: 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 -invidio.us: did not receive HSTS header +invinoaustria.cz: did not receive HSTS header invinsec.cloud: did not receive HSTS header invinsec.com: max-age too low: 86400 +invis.net: could not connect to host invite24.pro: could not connect to host invuelto.com: did not receive HSTS header iodice.org: did not receive HSTS header @@ -6892,10 +7724,11 @@ ioiart.eu: could not connect to host iolife.dk: could not connect to host ionas-law.ro: did not receive HSTS header ionc.ca: could not connect to host +ionote.me: did not receive HSTS header iop.intuit.com: max-age too low: 86400 iora.fr: could not connect to host -iosmods.com: did not receive HSTS header iostips.ru: could not connect to host +iotfen.com: could not connect to host iotsms.io: could not connect to host ip-life.net: did not receive HSTS header ip.or.at: could not connect to host @@ -6909,8 +7742,7 @@ 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 @@ -6918,31 +7750,36 @@ 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 iptel.ro: could not connect to host 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 ipvsec.nl: could not connect to host iqcn.co: could not connect to host iqualtech.com: max-age too low: 7889238 ir-saitama.com: could not connect to host -iran-poll.org: could not connect to host +iran-poll.org: max-age too low: 0 +irandp.net: did not receive HSTS header iranianlawschool.com: could not connect to host iraqidinar.org: did not receive HSTS header -irazimina.ru: could not connect to host +irazimina.ru: did not receive HSTS header irccloud.com: did not receive HSTS header +iready.ro: could not connect to host irelandesign.com: could not connect to host irinkeby.nu: could not connect to host -irische-segenswuensche.info: 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 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 @@ -6952,16 +7789,12 @@ irun-telecom.co.uk: could not connect to host irvinepa.org: max-age too low: 10540800 is-a-furry.org: did not receive HSTS header isaackabel.cf: could not connect to host -isaackabel.ga: could not connect to host -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 isdf.me: could not connect to host isdown.cz: could not connect to host -isef-eg.com: could not connect to host -iserv.fr: did not receive HSTS header -iseulde.com: did not receive HSTS header +isef-eg.com: did not receive HSTS header +iserv.fr: could not connect to host +isfriday.com: could not connect to host ishadowsocks.ltd: could not connect to host ishillaryclintoninprisonyet.com: could not connect to host ishome.org: could not connect to host @@ -6971,45 +7804,69 @@ 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 islandoilsupply.com: max-age too low: 300 islandpumpandtank.com: did not receive HSTS header -islandzero.net: could not connect to host +islandzero.net: did not receive HSTS header +islazia.fr: did not receive HSTS header islief.com: could not connect to host -isocom.eu: could not connect to host +isntall.us: did not receive HSTS header isoface33.fr: did not receive HSTS header isogen5.com: could not connect to host isogram.nl: did not receive HSTS header isoroc-nidzica.pl: could not connect to host ispringcloud.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +ispweb.es: did not receive HSTS header +israkurort.com: could not connect to host issala.org: did not receive HSTS header isscouncil.com: could not connect to host isslshop.com: could not connect to host -istanbul.systems: did not receive HSTS header +istanbul.systems: could not connect to host 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 +isyu.xyz: could not connect to host it-cave.com: could not connect to host it-go.net: did not receive HSTS header it-labor.info: did not receive HSTS header +it-schamans.de: could not connect to host it-schwerin.de: could not connect to host +it-shamans.de: could not connect to host +it-shamans.eu: could not connect to host itad.top: could not connect to host +itbrief.co.nz: did not receive HSTS header +itbrief.com.au: did not receive HSTS header itchimes.com: did not receive HSTS header +itchy.nl: could not connect to host +itchybrainscentral.com: could not connect to host +itds-consulting.com: could not connect to host +itds-consulting.cz: could not connect to host +itds-consulting.eu: could not connect to host itechgeek.com: max-age too low: 0 items.lv: did not receive HSTS header itemton.com: could not connect to host itfaq.nl: did not receive HSTS header itfensi.net: max-age too low: 6307200 itforcc.com: did not receive HSTS header +ithakama.com: could not connect to host +itilo.de: did not receive HSTS header itinsight.hu: did not receive HSTS header +itiomassagem.com.br: did not receive HSTS header itisjustnot.cricket: could not connect to host itmanie.cz: could not connect to host +itnews-bg.com: could not connect to host +itogoyomi.com: did not receive HSTS header itos.asia: did not receive HSTS header itos.pl: did not receive HSTS header itpol.dk: did not receive HSTS header itpro-mg.de: could not connect to host +itproject.guru: did not receive HSTS header +itrack.in.th: 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 @@ -7022,20 +7879,19 @@ 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 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 -ivanilla.org: could not connect to host ivanpolchenko.com: could not connect to host ivi-co.com: max-age too low: 0 ivi-fertility.com: max-age too low: 0 ivi.es: max-age too low: 0 ivk.website: could not connect to host ivklombard.ru: did not receive HSTS header +ivxv.ee: could not connect to host ivyshop.com.br: could not connect to host -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 @@ -7045,44 +7901,54 @@ 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 +ixio.cz: could not connect to host iyinolaashafa.com: could not connect to host izdiwho.com: could not connect to host izolight.ch: could not connect to host izonemart.com: did not receive HSTS header izoox.com: did not receive HSTS header +izxxs.com: 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-dyck.de: could not connect to host +ja-publications.agency: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] ja-publications.com: did not receive HSTS header jaan.su: could not connect to host jaaxypro.com: could not connect to host +jability.ovh: did not receive HSTS header jackalworks.com: could not connect to host jackdoan.com: did not receive HSTS header jackfahnestock.com: could not connect to host jackops.com: could not connect to host -jackyyf.com: could not connect to host -jacobparry.ca: did not receive HSTS header -jacobsenarquitetura.com: max-age too low: 5184000 -jadopado.com: could not connect to host +jackrusselterrier.com.br: could not connect to host +jacobparry.ca: max-age too low: 0 +jadara.info: could not connect to host jaepinformatica.com: did not receive HSTS header jagido.de: did not receive HSTS header -jaguarwong.xyz: could not connect to host -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 -jakebeardsley.com: 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 +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: did not receive HSTS header 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 +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 @@ -7098,7 +7964,7 @@ jamesf.xyz: could not connect to host jamesforman.co.nz: did not receive HSTS header jameshale.me: did not receive HSTS header jamesheald.com: could not connect to host -jamesl.ml: could not connect to host +jamesl.ml: did not receive HSTS header jamesmaurer.com: did not receive HSTS header jamesrains.com: could not connect to host jameswarp.com: could not connect to host @@ -7119,8 +7985,6 @@ janmg.com: could not connect to host janosh.com: did not receive HSTS header janssen.fm: could not connect to host janus-engineering.de: did not receive HSTS header -janvari.com: could not connect to host -janvaribalint.com: could not connect to host janverlaan.nl: did not receive HSTS header jap-nope.de: did not receive HSTS header japan4you.org: could not connect to host @@ -7128,21 +7992,29 @@ japanbaths.com: could not connect to host japaneseemoticons.org: did not receive HSTS header japanesenames.biz: did not receive HSTS header japangids.nl: could not connect to host +japanphilosophy.com: did not receive HSTS header +japansm.com: could not connect to host japanwide.net: could not connect to host japaripark.com: could not connect to host +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 +jaredfraser.com: could not connect to host +jarivisual.com: did not receive HSTS header +jarl.ninja: could not connect to host jarnail.ca: could not connect to host -jaroslavc.eu: did not receive HSTS header jaroslavtrsek.cz: did not receive HSTS header -jarsater.com: could not connect to host +jarrodcastaing.com: did not receive HSTS header +jarrodcastaing.com.au: did not receive HSTS header +jarsater.com: did not receive HSTS header jartza.org: could not connect to host jasmineconseil.com: did not receive HSTS header jasoncosper.com: did not receive HSTS header +jasonian-photo.com: could not connect to host jasonradin.com: did not receive HSTS header -jasonrobinson.me: 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 jasonwindholz.com: could not connect to host jastoria.pl: did not receive HSTS header @@ -7153,37 +8025,41 @@ javachip.win: could not connect to host javan.ga: could not connect to host 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 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 -jayf.de: could not connect to host jayharris.ca: could not connect to host jaylen.com.ar: did not receive HSTS header jayna.design: did not receive HSTS header jayschulman.com: did not receive HSTS header jayscoaching.com: could not connect to host -jayshao.com: did not receive HSTS header +jayshao.com: could not connect to host 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 jcf-office.com: did not receive HSTS header +jcolideles.com: could not connect to host jcom-communication-system.biz: could not connect to host jcor.me: could not connect to host jcoscia.com: could not connect to host jcraft.us: did not receive HSTS header jctf.io: could not connect to host +jcyz.cf: could not connect to host jdav-leipzig.de: could not connect to host +jdcdirectsales.com.ph: could not connect to host jdfk.net: could not connect to host jdgonzalez95.com: did not receive HSTS header jdh8.org: did not receive HSTS header @@ -7191,50 +8067,57 @@ jdsf.tk: did not receive HSTS header jean-remy.ch: could not connect to host jebengotai.com: did not receive HSTS header jecho.cn: could not connect to host -jeepeg.com: could not connect to host +jedwarddurrett.com: could not connect to host +jeff.forsale: could not connect to host jeff.is: did not receive HSTS header jeff393.com: could not connect to host jeffersonregan.org: could not connect to host jeffhuxley.com: could not connect to host jeffreymagee.com: did not receive HSTS header +jeffsanders.com: did not receive HSTS header jehovahsays.net: could not connect to host jeil-makes.co.kr: could not connect to host -jekkt.com: max-age too low: 604800 jellow.nl: did not receive HSTS header jemoticons.com: did not receive HSTS header jenjoit.de: could not connect to host +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 +jeremyc.ca: could not connect to host 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 -jeroldirvin.com: could not connect to host +jeroenensanne.wedding: could not connect to host +jeroenvanderwal.nl: did not receive HSTS header +jeroldirvin.com: did not receive HSTS header jerrypau.ca: could not connect to host jesorsenville.com: did not receive HSTS header +jessevictors.com: could not connect to host jessicah.org: could not connect to host jesuisformidable.nl: could not connect to host jesuslucas.com: did not receive HSTS header jet-code.com: could not connect to host +jetbrains.pw: could not connect to host +jetflex.de: did not receive HSTS header jetlagphotography.com: could not connect to host +jetmirshatri.com: did not receive HSTS header jeton.com: did not receive HSTS header jetsetcharge.com: could not connect to host jetsetpay.com: could not connect to host -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 -jeugdkans.nl: 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] jewellerydesignstore.com: could not connect to host jewellerymarvels.com: did not receive HSTS header jez.nl: could not connect to host jfmel.com: did not receive HSTS header -jfmhero.me: could not connect to host -jfnllc.com: did not receive HSTS header +jfnllc.com: could not connect to host jfx.space: did not receive HSTS header jh-media.eu: could not connect to host jhburton.co.uk: could not connect to host @@ -7245,7 +8128,6 @@ jhermsmeier.de: could not connect to host jia1hao.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 jianjiantv.com: could not connect to host jiaqiang.vip: could not connect to host jichi.me: could not connect to host @@ -7258,15 +8140,18 @@ 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 +jimmynelson.com: did not receive HSTS header +jinancy.fr: could not connect to host 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 jisaku-homepage.com: did not receive HSTS header +jitlab.org: could not connect to host jitsi.org: did not receive HSTS header +jiveiaktivno.bg: did not receive HSTS header jiyue.com: did not receive HSTS header jiyuu-ni.com: could not connect to host jiyuu-ni.net: could not connect to host @@ -7276,24 +8161,29 @@ jkb.pics: could not connect to host jkbuster.com: could not connect to host jkng.eu: could not connect to host jko.works: could not connect to host +jkuvw.xyz: could not connect to host +jldp.org: did not receive HSTS header jlhmedia.com: did not receive HSTS header jm06.com: did not receive HSTS header jm22.com: could not connect to host jmb.lc: could not connect to host -jmdekker.it: could not connect to host -jmoreau.ddns.net: could not connect to host +jmotion.co.uk: did not receive HSTS header +jmpmotorsport.co.uk: did not receive HSTS header jmvbmx.ch: could not connect to host jn1.me: did not receive HSTS header -jncde.de: could not connect to host -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.biz.tr: could not connect to host +job-offer.de: could not connect to host jobers.ch: did not receive HSTS header jobers.pt: did not receive HSTS header jobflyapp.com: could not connect to host jobmedic.com: could not connect to host jobshq.com: did not receive HSTS header +jobss.co.uk: did not receive HSTS header jobtestprep.de: max-age too low: 0 jobtestprep.dk: max-age too low: 0 jobtestprep.fr: max-age too low: 0 @@ -7304,27 +8194,28 @@ jodel.ninja: could not connect to host joe-pagan.com: did not receive HSTS header joearodriguez.com: could not connect to host joecod.es: could not connect to host +joefixit.co.uk: could not connect to host joelgonewild.com: did not receive HSTS header -joellombardo.com: could not connect to host joerg-wellpott.de: did not receive HSTS header joetyson.io: could not connect to host +johand.io: could not connect to host johannaojanen.com: could not connect to host johannes-bugenhagen.de: did not receive HSTS header johannes-sprink.de: could not connect to host -johannesen.tv: could not connect to host 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 +johnmorganpartnership.co.uk: did not receive HSTS header johnrom.com: could not connect to host -johnsanchez.io: could not connect to host -johnsiu.com: could not connect to host +johnsiu.com: did not receive HSTS header johntomasowa.com: could not connect to host johnverkerk.com: could not connect to host +joinamericacorps.gov: could not connect to host jointoweb.com: could not connect to host jomp16.tk: could not connect to host -jonarcher.info: could not connect to host +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 @@ -7340,6 +8231,7 @@ 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 @@ -7350,59 +8242,68 @@ jornadasciberdefensa2016.es: could not connect to host jorovik.com: did not receive HSTS header jorrit.info: max-age too low: 0 josahrens.me: could not connect to host -josc.com.au: could not connect to host +jose.eti.br: did not receive HSTS header joseaveleira.es: did not receive HSTS header josecage.com: could not connect to host -josefottosson.se: max-age too low: 2592000 -josephre.es: did not receive HSTS header +josephre.es: max-age too low: 43200 joshi.su: could not connect to host joshplant.co.uk: could not connect to host joshstroup.me: could not connect to host joto.de: did not receive HSTS header jotpics.com: could not connect to host jottit.com: could not connect to host +jouetspetitechanson.com: could not connect to host journalof.tech: could not connect to host +joworld.net: could not connect to host joyceclerkx.com: could not connect to host joyjohnston.ca: did not receive HSTS header joyqi.com: did not receive HSTS header jpaglier.com: could not connect to host -jpbike.cz: did not receive HSTS header +jpbike.cz: could not connect to host jpcrochetapparel.com: could not connect to host jpeaches.xyz: could not connect to host -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 +js88.sg: could not connect to host jsanders.us: did not receive HSTS header jsbentertainment.nl: could not connect to host jsbevents.nl: could not connect to host jsblights.nl: could not connect to host -jsc7776.com: did not receive HSTS header +jsc7776.com: could not connect to host +jsdelivr.net: could not connect to host jsg-technologies.de: did not receive HSTS header jsjyhzy.cc: could not connect to host json-viewer.com: did not receive HSTS header jstelecom.com.br: did not receive HSTS header +jsuse.xyz: did not receive HSTS header jsvr.tk: could not connect to host -ju1ro.de: did not receive HSTS header +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 juchheim-methode.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +judge2020.com: did not receive HSTS header juiced.gs: did not receive HSTS header juka.pp.ua: could not connect to host juku-info.top: did not receive HSTS header 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 juliankirchner.ch: did not receive HSTS header julianwallmeroth.de: could not connect to host +julianxhokaxhiu.com: did not receive HSTS header 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 @@ -7414,52 +8315,59 @@ junaos.com: did not receive HSTS header junaos.xyz: did not receive HSTS header jundimax.com.br: could not connect to host junge-selbsthilfe.info: could not connect to host -jungleculture.co.za: could not connect to host +jungleculture.co.za: did not receive HSTS header junglegoat.xyz: did not receive HSTS header juniwalk.cz: could not connect to host junjung.me: could not connect to host junqtion.com: could not connect to host jupp0r.de: did not receive HSTS header -juridiqueo.com: could not connect to host -juristas.com.br: did not receive HSTS header -juristeo.com: could not connect to host +juridiqueo.com: did not receive HSTS header +juristeo.com: did not receive HSTS header jurke.com: did not receive HSTS header jurko.cz: could not connect to host +jurriaan.ninja: could not connect to host +just-a-clanpage.de: 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 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 justinlemay.com: could not connect to host justinrudio.com: did not receive HSTS header justlikethat.hosting: did not receive HSTS header justmy.website: did not receive HSTS header justnaw.co.uk: could not connect to host justonce.net: could not connect to host +justsome.info: did not receive HSTS header justudin.com: did not receive HSTS header justwood.cz: did not receive HSTS header justzz.xyz: could not connect to host jutella.de: did not receive HSTS header juul.xyz: could not connect to host +juventusclublugano.ch: could not connect to host juventusmania1897.com: could not connect to host juwairen.cn: could not connect to host +juzgalo.com: did not receive HSTS header jvn.com: did not receive HSTS header -jvoice.net: could not connect to host +jvoice.net: 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 +jxir.de: could not connect to host jysperm.me: did not receive HSTS header jznet.org: could not connect to host k-dev.de: could not connect to host k-rickroll-g.pw: could not connect to host k-wallet.com: did not receive HSTS header k1cp.com: could not connect to host +k33k00.com: did not receive HSTS header k38.cc: max-age too low: 3600 ka-clan.com: could not connect to host kaanduman.com: could not connect to host +kaany.io: could not connect to host kaasbijwijn.nl: did not receive HSTS header -kabinapp.com: could not connect to host +kabinapp.com: did not receive HSTS header kabuabc.com: could not connect to host +kabus.org: could not connect to host kackscharf.de: could not connect to host kadioglumakina.com.tr: did not receive HSTS header kadmec.com: did not receive HSTS header @@ -7468,75 +8376,76 @@ kahopoon.net: could not connect to host kai.cool: did not receive HSTS header 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: could not connect to host +kakoomedia.nl: could not connect to host kalami.nl: could not connect to host kaleidomarketing.com: did not receive HSTS header kaleidoskop-freiburg.de: did not receive HSTS header kalender.goip.de: could not connect to host kalilinux.tech: could not connect to host kaloix.de: could not connect to host -kam-serwis.pl: could not connect to host -kamagra-comprare.it: did not receive HSTS header -kamagra-italia.it: max-age too low: 3600 kamalame.co: could not connect to host kambodja.guide: could not connect to host kamcvicit.sk: could not connect to host kamikano.com: could not connect to host -kamikatse.net: could not connect to host kamitech.ch: could not connect to host kanaanonline.org: max-age too low: 86400 kanada.guide: could not connect to host kanagawachuo-hospital.jp: did not receive HSTS header kanar.nl: could not connect to host kancolle.me: could not connect to host -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 +kangkai.me: could not connect to host kangzaber.com: could not connect to host kaniklani.co.za: did not receive HSTS header -kanmitao.com: did not receive HSTS header +kanmitao.com: could not connect to host +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 kantv1.com: could not connect to host -kanuvu.de: did not receive HSTS header -kanzakiranko.jp: could not connect to host kanzlei-wirtschaftsrecht.berlin: max-age too low: 600000 +kanzshop.com: could not connect to host kaohub.com: could not connect to host kaomojis.net: did not receive HSTS header -kaotik4266.com: could not connect to host kaplatz.is: could not connect to host kapo.info: could not connect to host kappit.dk: could not connect to host kapucini.si: max-age too low: 0 -kaputt.com: could not connect to host +kaputt.com: max-age too low: 0 kapverde.guide: could not connect to host karamna.com: could not connect to host -karanjthakkar.com: did not receive HSTS header +karanastic.com: did not receive HSTS header 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: could not connect to host karjala-ski.ru: could not connect to host +karlis-kavacis.id.lv: did not receive HSTS header karloskontana.tk: could not connect to host karlproctor.co.uk: could not connect to host -karlstabo.se: max-age too low: 86400 -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 +karula.org: could not connect to host karuneshjohri.com: could not connect to host kashdash.ca: could not connect to host kashis.com.au: max-age too low: 0 -kat.al: could not connect to host +kat.al: max-age too low: 0 katalogakci.cz: did not receive HSTS header +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 @@ -7549,29 +8458,31 @@ 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 +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 kavinvin.me: could not connect to host -kawaiii.link: did not receive HSTS header kawaiiku.com: could not connect to host kawaiiku.de: could not connect to host kaydan.io: could not connect to host kayipmurekkep.com: could not connect to host 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 -kb3.net: did not receive HSTS header +kb88.com: could not connect to host kbfl.org: could not connect to host kcluster.io: 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 -keaneokelley.com: could not connect to host kearney.io: could not connect to host keechain.io: could not connect to host keeley.gq: could not connect to host @@ -7587,7 +8498,6 @@ 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 -keithws.net: 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 @@ -7603,7 +8513,6 @@ 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 -kensparkesphotography.com: did not receive HSTS header kentacademiestrust.org.uk: did not receive HSTS header kepler-seminar.de: did not receive HSTS header kerangalam.com: did not receive HSTS header @@ -7615,11 +8524,12 @@ kernelmode.io: did not receive HSTS header kernl.us: did not receive HSTS header keshausconsulting.com: could not connect to host keskeces.com: did not receive HSTS header +kessel-runners.com: could not connect to host kesteren.com: could not connect to host kevindekoninck.com: could not connect to host -kevinmeijer.nl: could not connect to host +kevinfoley.cc: could not connect to host +kevinfoley.org: could not connect to host kevinmoreland.com: could not connect to host -kevinmorssink.nl: 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 @@ -7632,23 +8542,25 @@ kgb.us: could not connect to host 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 -kiapps.ovh: could not connect to host kickass-proxies.org: could not connect to host kickass.al: could not connect to host kickasstorrents.gq: could not connect to host kickerplaza.nl: did not receive HSTS header -kid-dachau.de: did not receive HSTS header +kid-dachau.de: max-age too low: 600000 kidbacker.com: could not connect to host kidkat.cn: could not connect to host -kiel-kind.de: could not connect to host +kidswallstickers.com.au: could not connect to host kiel-media.de: did not receive HSTS header kielderweather.org.uk: did not receive HSTS header +kielwi.gov: could not connect to host kienlen.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] kieranweightman.me: could not connect to host +kiesuwcursus.nl: did not receive HSTS header kievradio.com: could not connect to host kikuzuki.org: could not connect to host kiladera.be: did not receive HSTS header @@ -7658,44 +8570,45 @@ kimberg.co.uk: did not receive HSTS header kimberlybeautysoapcompany.com: 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 -kinomoto.me: 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 kintzingerfilm.de: did not receive HSTS header kionetworks.com: did not receive HSTS header -kipin.fr: could not connect to host +kipin.fr: did not receive HSTS header kipira.com: could not connect to host kiraboshi.xyz: could not connect to host -kirainmoe.com: did not receive HSTS header kirara.eu: could not connect to host -kirill.ws: could not connect to host +kircp.com: could not connect to host +kirito.kr: did not receive HSTS header kirkforsenate.com: could not connect to host kirkpatrickdavis.com: could not connect to host 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 +kisskiss.ch: could not connect to host kisstyle.ru: did not receive HSTS header kisun.co.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] kita.id: did not receive HSTS header @@ -7710,42 +8623,53 @@ 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 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: could not connect to host 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 kjaermaxi.me: did not receive HSTS header kjg-bachrain.de: could not connect to host kjoglum.me: could not connect to host kkull.tv: could not connect to host -kkzxak47.com: 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 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 +kliqsd.com: could not connect to host +kloentrup.de: max-age too low: 604800 klunkergarten.org: could not connect to host -klva.cz: could not connect to host +km-net.pl: did not receive HSTS header +kmdev.me: did not receive HSTS header knapen.io: max-age too low: 604800 knccloud.com: could not connect to host kngk-azs.ru: 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 +kniwweler.com: could not connect to host knnet.ch: could not connect to host knowdebt.org: did not receive HSTS header +knowledgehook.com: did not receive HSTS header knowledgesnap.com: could not connect to host knowledgesnapsites.com: could not connect to host knownsec.cf: could not connect to host @@ -7755,18 +8679,17 @@ kodexplorer.ml: could not connect to host kodiaklabs.org: could not connect to host kodokushi.fr: could not connect to host koen.io: max-age too low: 86400 -koenleemans.nl: did not receive HSTS header -koenrouwhorst.nl: did not receive HSTS header koenvdheuvel.me: could not connect to host +koerper-wie-seele.de: did not receive HSTS header koerperimpuls.ch: did not receive HSTS header koez-mangal.ch: could not connect to host koezmangal.ch: could not connect to host koik.io: could not connect to host koirala.net: could not connect to host -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 -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 komikito.com: could not connect to host @@ -7774,6 +8697,7 @@ kompetenzwerft.de: did not receive HSTS header konata.us: could not connect to host kongbaofang.com: could not connect to host konicaprinterdriver.com: could not connect to host +konings.it: could not connect to host konkurs.ba: could not connect to host kontakthuman.hu: did not receive HSTS header kontaxis.network: could not connect to host @@ -7781,24 +8705,27 @@ konventseliten.se: could not connect to host koop-bremen.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] koopjesnel.nl: could not connect to host koordinate.net: could not connect to host +kopio.jp: did not receive HSTS header koppelvlak.net: could not connect to host kopular.com: could not connect to host kori.ml: did not receive HSTS header koriyoukai.net: did not receive HSTS header kornersafe.com: did not receive HSTS header korni22.org: could not connect to host +korobkovsky.ru: could not connect to host korsanparti.org: could not connect to host kostuumstore.nl: could not connect to host kostya.net: did not receive HSTS header +kotakoo.id: could not connect to host +kother.org: could not connect to host +kotomei.moe: could not connect to host kotonehoko.net: could not connect to host kotorimusic.ga: could not connect to host kotovstyle.ru: could not connect to host -kottur.is: could not connect to host koukni.cz: did not receive HSTS header kourpe.online: could not connect to host kousaku.jp: could not connect to host kouten-jp.com: could not connect to host -kovals.sk: could not connect to host kozmik.co: could not connect to host kpdyer.com: did not receive HSTS header kpebetka.net: did not receive HSTS header @@ -7810,7 +8737,9 @@ krasavchik.by: could not connect to host krasota.ru: did not receive HSTS header krausen.ca: did not receive HSTS header kravelindo-adventure.com: could not connect to host +kraynik.com: could not connect to host krayx.com: could not connect to host +krc.link: could not connect to host kream.io: did not receive HSTS header kreavis.com: did not receive HSTS header kreb.io: could not connect to host @@ -7822,42 +8751,51 @@ krestanskydarek.cz: [Exception... "Component returned failure code: 0x80004005 ( 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 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 +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] +kroon.email: could not connect to host +krouzkyliduska.cz: could not connect to host kruegerrand-wert.de: did not receive HSTS header krunut.com: did not receive HSTS header +kryha.io: did not receive HSTS header krypteia.org: could not connect to host kryptomech.com: could not connect to host +ks88.com: could not connect to host +ksero.center: could not connect to host ksfh-mail.de: could not connect to host ksham.net: could not connect to host ksk-agentur.de: did not receive HSTS header kstan.me: could not connect to host kswcosmetics.com: could not connect to host kswriter.com: could not connect to host -kteen.info: could not connect to host +kteen.info: did not receive HSTS header ktube.yt: could not connect to host ku.io: did not receive HSTS header kuba.guide: could not connect to host +kubiwa.net: could not connect to host kubusadvocaten.nl: could not connect to host -kuchenfeelisa.de: did not receive HSTS header kuchenschock.de: did not receive HSTS header -kucheryavenkovn.ru: could not connect to host +kucheryavenkovn.ru: did not receive HSTS header kucom.it: did not receive HSTS header kuechenplan.online: could not connect to host -kuehnel.org: max-age too low: 604800 kueulangtahunanak.net: could not connect to host kuko-crews.org: could not connect to host kultmobil.se: did not receive HSTS header +kum.com: could not connect to host kummerlaender.eu: did not receive HSTS header kundenerreichen.com: did not receive HSTS header kundenerreichen.de: did not receive HSTS header +kundo.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +kunstfehler.at: max-age too low: 86400 +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 @@ -7866,41 +8804,50 @@ kura.io: 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 -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 +kuttler.eu: did not receive HSTS header kuwago.io: could not connect to host +kuzdrowiu24.pl: did not receive HSTS header kvt.berlin: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -kweddingplanning.com: 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 +kxind.cn: could not connect to host kyanite.co: could not connect to host kyberna.xyz: could not connect to host kykoonn.net: did not receive HSTS header -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 +kyliehunt.com: did not receive HSTS header kylling.io: could not connect to host kymo.org: did not receive HSTS header +kynaston.org.uk: could not connect to host kyochon.fr: could not connect to host kyonagashima.com: did not receive HSTS header +kyoto-k9.com: did not receive HSTS header kyouko.nl: could not connect to host kyujin-office.net: could not connect to host kzjnet.com: could not connect to host 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-serendipite.fr: did not receive HSTS header labaia.info: could not connect to host +laballoons.com: max-age too low: 7889238 labella-umbrella.com: did not receive HSTS header labelleza.com.br: could not connect to host labfox.de: did not receive HSTS header @@ -7915,58 +8862,56 @@ laboutiquemarocaineduconvoyeur.ma: could not connect to host labrador-retrievers.com.au: did not receive HSTS header labrasaq8.com: did not receive HSTS header labs.directory: could not connect to host -labs.moscow: could not connect to host +labs.moscow: did not receive HSTS header lacarpesaintaubinoise.fr: did not receive HSTS header lacasa.fr: could not connect to host lacasseroy.com: could not connect to host lacaverne.nl: could not connect to host lacentral.com: did not receive HSTS header -lachlankidson.net: could not connect to host 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 +ladybugjam.com: could not connect to host ladylikeit.com: could not connect to host ladylucks.co.uk: could not connect to host laemen.com: did not receive HSTS header laemen.nl: could not connect to host laf.in.net: could not connect to host lafamillemusique.fr: did not receive HSTS header -lafema.de: could not connect to host laforetenchantee.ch: could not connect to host lafr4nc3.xyz: could not connect to host lagalerievirtuelle.fr: did not receive HSTS header lagier.xyz: could not connect to host lagoza.name: could not connect to host +laguinguette.fr: did not receive HSTS header 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 lamaland.ru: did not receive HSTS header lambda-complex.org: could not connect to host lambdafive.co.uk: could not connect to host lamomebijou.paris: did not receive HSTS header lampl.info: could not connect to host lamtv.com.mx: could not connect to host -lan.biz.tr: 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 +lanbyte.se: did not receive HSTS header lancehoteis.com: did not receive HSTS header lancehoteis.com.br: did not receive HSTS header -lancork.net: did not receive HSTS header 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 landscapingmedic.com: did not receive HSTS header langenbach.rocks: could not connect to host @@ -7980,17 +8925,25 @@ lanzainc.xyz: could not connect to host laobox.fr: could not connect to host laohei.org: could not connect to host laospage.com: did not receive HSTS header +lapakus.com: could not connect to host +laperfumista.es: could not connect to host +lapetition.be: could not connect to host laplaceduvillage.net: could not connect to host laquack.com: could not connect to host +laraveldirectory.com: could not connect to host lared.ovh: did not receive HSTS header laredsemanario.com: could not connect to host larky.top: could not connect to host +larsgujord.no: did not receive HSTS header +larsmerke.de: did not receive HSTS header lasepiataca.com: did not receive HSTS header lasercloud.ml: could not connect to host lashstuff.com: did not receive HSTS header lasnaves.com: did not receive HSTS header -lasst-uns-beten.de: did not receive HSTS header +lasst-uns-beten.de: could not connect to host +lastharo.com: could not connect to host latable-bowling-vire.fr: did not receive HSTS header +latabledebry.be: could not connect to host latamarissiere.eu: could not connect to host lateliercantaldeco.fr: could not connect to host latelierdekathy.com: could not connect to host @@ -8002,10 +8955,12 @@ lathamlabs.org: could not connect to host lathen-wahn.de: did not receive HSTS header latinred.com: could not connect to host latitude42technology.com: did not receive HSTS header +latour-managedcare.ch: could not connect to host latus.xyz: could not connect to host laufcampus.com: did not receive HSTS header laufseminare-laufreisen.com: did not receive HSTS header lauftrainer-ausbildung.com: did not receive HSTS header +launchpadder2.com: could not connect to host laurel4th.org: did not receive HSTS header laurelspaandlash.com: did not receive HSTS header laureltv.org: did not receive HSTS header @@ -8015,11 +8970,16 @@ 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 +lawformt.com: max-age too low: 2592000 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: did not receive HSTS header 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 lazytux.de: did not receive HSTS header @@ -8031,21 +8991,25 @@ lbrt.xyz: could not connect to host lclarkpdx.com: could not connect to host lcti.biz: could not connect to host 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 +leadgenie.me: could not connect to host +leadinfo.com: did not receive HSTS header +leadstart.org: did not receive HSTS header leakedminecraft.net: could not connect to host leakreporter.net: could not connect to host leaks.directory: could not connect to host leanclub.org: could not connect to host leaodarodesia.com.br: could not connect to host leardev.de: did not receive HSTS header -learn-smart.uk: did not receive HSTS header learnedhacker.com: could not connect to host learnedovo.com: did not receive HSTS header learnfrenchfluently.com: could not connect to host -learningman.top: did not receive HSTS header 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 @@ -8053,17 +9017,24 @@ 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 leetsaber.com: did not receive HSTS header legal.farm: could not connect to host +legalcontrol.info: could not connect to host legaleus.co.uk: could not connect to host legalisepeacebloom.com: could not connect to host legalrobot-uat.com: could not connect to host +legalsen.com: did not receive HSTS header legaltip.eu: could not connect to host legarage.org: did not receive HSTS header legavenue.com.br: did not receive HSTS header @@ -8071,8 +9042,9 @@ legendary.camera: did not receive HSTS header legitaxi.com: did not receive HSTS header legymnase.eu: did not receive HSTS header lehtinen.xyz: could not connect to host +leigh.life: did not receive HSTS header leighneithardt.com: could not connect to host -leilautourdumon.de: did not receive HSTS header +leiming.co: could not connect to host leinir.dk: did not receive HSTS header leitner.com.au: did not receive HSTS header lelehei.com: could not connect to host @@ -8080,10 +9052,7 @@ 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 -lemonthy.com: could not connect to host -lemp.io: did not receive HSTS header +lemp.io: could not connect to host lenders.direct: could not connect to host lengyelnyelvoktatas.hu: could not connect to host lengyelul.hu: could not connect to host @@ -8099,6 +9068,7 @@ lenzw.de: did not receive HSTS header leob.in: could not connect to host leon-jaekel.com: could not connect to host leonardcamacho.me: could not connect to host +leonhooijer.nl: could not connect to host leonmahler.consulting: did not receive HSTS header leopold.email: could not connect to host leopoldina.net: did not receive HSTS header @@ -8108,24 +9078,27 @@ lepiquillo.fr: did not receive HSTS header lepont.pl: could not connect to host lerasenglish.com: max-age too low: 0 lerlivros.online: could not connect to host -lerner.moscow: could not connect to host +lerner.moscow: did not receive HSTS header les-corsaires.net: could not connect to host les-voitures-electriques.com: max-age too low: 2592000 +lesbiansslaves.com: could not connect to host +lesbofight.com: could not connect to host lescomptoirsdepierrot.com: could not connect to host lesdouceursdeliyana.com: could not connect to host lesecuadors.com: did not receive HSTS header -lesformations.net: did not receive HSTS header +lesformations.net: could not connect to host lesh.eu: could not connect to host -lesliekearney.com: could not connect to host +lesjardinsdubanchet.fr: could not connect to host +lesliekearney.com: did not receive HSTS header lesperlesdunet.fr: could not connect to host lesquatredauphins.fr: did not receive HSTS header lesquerda.cat: did not receive HSTS header lessing.consulting: did not receive HSTS header +let-go.cc: max-age too low: 0 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 letreview.ph: could not connect to host letsgetintouch.com: could not connect to host @@ -8148,8 +9121,9 @@ lexpartsofac.com: could not connect to host lez-cuties.com: could not connect to host lezdomsm.com: could not connect to host lfaz.org: could not connect to host -lfullerdesign.com: could not connect to host lg21.co: could not connect to host +lgbtqventures.com: did not receive HSTS header +lgbtventures.com: did not receive HSTS header lgiswa.com.au: did not receive HSTS header lgrs.com.au: did not receive HSTS header lgsg.us: could not connect to host @@ -8177,11 +9151,12 @@ 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 librechan.net: could not connect to host +librends.org: could not connect to host libricks.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] librisulibri.it: did not receive HSTS header licence-registry.com: could not connect to host @@ -8189,21 +9164,23 @@ 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 liebach.me: did not receive HSTS header liebestarot.at: did not receive HSTS header lied8.eu: could not connect to host liehuojun.com: could not connect to host -liemen.net: did not receive HSTS header lietaer.eu: did not receive HSTS header life-time.nl: did not receive HSTS header -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 +lifeinsurances.pro: did not receive HSTS header +lifeinsurances24.com: did not receive HSTS header lifemarque.co.uk: did not receive HSTS header +lifenexto.com: could not connect to host lifeng.us: did not receive HSTS header lifeskillsdirect.com: did not receive HSTS header lifestyler.me: could not connect to host @@ -8211,42 +9188,49 @@ 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 -lightworx.io: did not receive HSTS header +lighttp.com: could not connect to host +lightworx.io: could not connect to host lignemalin.com: could not connect to host lignemax.com: did not receive HSTS header lignenet.com: did not receive HSTS header +lijero.co: could not connect to host like.lgbt: could not connect to host +likenewhearing.com.au: could not connect to host likenosis.com: could not connect to host lila.pink: did not receive HSTS header -lilapmedia.com: could not connect to host +lilapmedia.com: did not receive HSTS header lilismartinis.com: could not connect to host -lillpopp.eu: did not receive HSTS header +lillpopp.eu: max-age too low: 10 lilpwny.com: could not connect to host lilycms.com: could not connect to host lilygreen.co.za: did not receive HSTS header limalama.eu: max-age too low: 1 limeyeti.com: could not connect to host -limiteddata.co.uk: did not receive HSTS header -limitget.com: could not connect to host +limiteddata.co.uk: could not connect to host +limitget.com: did not receive HSTS header limodo-shop.de: did not receive HSTS header limpens.net: did not receive HSTS header limpido.it: could not connect to host +limunana.com: could not connect to host +lincsbouncycastlehire.co.uk: did not receive HSTS header lindberg.io: did not receive HSTS header -lindholmen.club: did not receive HSTS header +linden.me: did not receive HSTS header lineauniformes.com.br: could not connect to host +linernotekids.com: did not receive HSTS header linext.cn: could not connect to host lingerie.net.br: did not receive HSTS header lingerielovers.com.br: did not receive HSTS header -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 @@ -8258,9 +9242,11 @@ 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 +linostassi.net: could not connect to host linpx.com: 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.sb: could not connect to host linuxandstuff.de: could not connect to host linuxcode.net: could not connect to host @@ -8268,18 +9254,21 @@ 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 -lionlyrics.com: 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 @@ -8293,37 +9282,40 @@ 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 +liujunyang.com: could not connect to host liukang.tech: could not connect to host -liushuyu.tk: could not connect to host 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 livrariahugodesaovitor.com.br: could not connect to host lixiang.one: could not connect to host +lixiaojiang.ga: could not connect to host lixingcong.com: could not connect to host liyang.pro: did not receive HSTS header lizzythepooch.com: did not receive HSTS header lkiserver.com: could not connect to host llamasweet.tech: could not connect to host lll.st: could not connect to host -llslb.com: could not connect to host llvm.us: could not connect to host +lmcm.io: could not connect to host lmrcouncil.gov: could not connect to host ln.io: could not connect to host lnbeauty.ru: max-age too low: 0 lnoldan.com: could not connect to host -loacg.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 loansonline.today: could not connect to host loanstreet.be: could not connect to host @@ -8332,25 +9324,30 @@ lobosdomain.ddns.net: could not connect to host lobosdomain.no-ip.info: could not connect to host lobste.rs: did not receive HSTS header locais.org: could not connect to host +localblitz.com: did not receive HSTS header localchum.com: could not connect to host +localdata.us: did not receive HSTS header localdrive.me: could not connect to host localnetwork.nz: could not connect to host location-fichier-email.com: 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 locker3.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 @@ -8359,11 +9356,9 @@ 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 -logicoma.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 @@ -8378,21 +9373,29 @@ lognot.net: could not connect to host logymedia.com: could not connect to host loisircreatif.net: did not receive HSTS header lojadocristaozinho.com.br: did not receive HSTS header +lojadoprazer.com.br: could not connect to host +lojahunamarcenaria.com.br: could not connect to host +lojamulticapmais.com.br: did not receive HSTS header lojashowdecozinha.com.br: could not connect to host lojasviavento.com.br: could not connect to host lojavalcapelli.com.br: could not connect to host -loli.bz: did not receive HSTS header -loli.vip: could not connect to host +loli.bz: could not connect to host +loli.com: could not connect to host +loli.vip: did not receive HSTS header lolicon.info: could not connect to host lolicore.ch: could not connect to host lolidunno.com: could not connect to host +lolis.stream: could not connect to host lollaconcept.com.br: could not connect to host +lonasdigital.com: did not receive HSTS header 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 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 @@ -8400,21 +9403,21 @@ lookupclose.com: did not receive HSTS header looneymooney.com: could not connect to host loongsg.xyz: could not connect to host loperetti.ch: could not connect to host -loposchokk.com: could not connect to host loqyu.co: could not connect to host lordgun.com: could not connect to host lordjevington.co.uk: did not receive HSTS header losebellyfat.pro: could not connect to host +losrascadoresparagatos.com: did not receive HSTS header loss.no: could not connect to host lostandcash.com: could not connect to host lostarq.com: could not connect to host 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 @@ -8422,9 +9425,11 @@ lotuscloud.de: did not receive HSTS header lotuscloud.org: could not connect to host louduniverse.net: did not receive HSTS header louiewatch.com: could not connect to host +louisvillevmug.info: could not connect to host love-schna.jp: could not connect to host love4taylor.eu.org: could not connect to host loveable.de: could not connect to host +loveamber.me: could not connect to host loveandloyalty.se: could not connect to host lovelifelovelive.com: could not connect to host lovelive-anime.tk: could not connect to host @@ -8436,6 +9441,7 @@ lovelycorral.com: did not receive HSTS header lovelyfriends.org: did not receive HSTS header 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 lovingpenguin.com: did not receive HSTS header lowhangingfruitgrabber.com: could not connect to host @@ -8444,10 +9450,12 @@ lowtherpavilion.co.uk: did not receive HSTS header 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 lpgram.ga: could not connect to host lpm-uk.com: did not receive HSTS header 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 @@ -8456,6 +9464,7 @@ lsp-sports.de: did not receive HSTS header lstma.com: could not connect to host lsvih.com: did not receive HSTS header lswim.com: did not receive HSTS header +lsws.de: 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 @@ -8467,21 +9476,23 @@ lubot.net: could not connect to host lucas-garte.com: did not receive HSTS header lucascantor.com: did not receive HSTS header lucascodes.com: could not connect to host -lucasgaland.com: could not connect to host +lucassoler.com.ar: could not connect to host lucaterzini.com: could not connect to host 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 ludwig.click: did not receive HSTS header lufthansaexperts.com: max-age too low: 2592000 +luganskservers.net: could not connect to host luis-checa.com: could not connect to host -luisgf.es: could not connect to host luisv.me: could not connect to host luk.photo: could not connect to host lukasunger.cz: could not connect to host lukasunger.net: could not connect to host lukaszdolan.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 @@ -8490,7 +9501,7 @@ luma.pink: could not connect to host 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 +luminancy.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 @@ -8500,7 +9511,7 @@ lunight.ml: could not connect to host 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 @@ -8508,28 +9519,31 @@ luripump.se: could not connect to host lusis.fr: did not receive HSTS header lusis.net: could not connect to host lustrumxi.nl: could not connect to host +luteijn.biz: did not receive HSTS header luther.fi: could not connect to host -luxcraft.eng.br: 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 +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 +lwhate.com: 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 lylares.com: did not receive HSTS header +lynkos.com: did not receive HSTS header lyonelkaufmann.ch: did not receive HSTS header -lyonl.com: could not connect to host +lyonl.com: did not receive HSTS header 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 lzkill.com: did not receive HSTS header lzqii.cn: could not connect to host -lzzr.me: did not receive HSTS header m-ali.xyz: did not receive HSTS header +m-edmondson.co.uk: did not receive HSTS header m-generator.com: could not connect to host m-rickroll-v.pw: could not connect to host m-warrior.tk: could not connect to host @@ -8547,7 +9561,6 @@ maartenprovo.be: did not receive HSTS header maartenterpstra.xyz: could not connect to host mac-torrents.me: did not receive HSTS header mac-world.pl: did not receive HSTS header -mac.biz.tr: could not connect to host macandtonic.com: did not receive HSTS header macbolo.com: could not connect to host macchaberrycream.com: could not connect to host @@ -8556,41 +9569,48 @@ 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 +machinelearningjavascript.com: could not connect to host mack.space: could not connect to host macleodnc.com: did not receive HSTS header macsandcheesedreams.com: could not connect to host macustar.eu: did not receive HSTS header -madandpissedoff.com: could not connect to host +madandpissedoff.com: did not receive HSTS header madcatdesign.de: did not receive HSTS header maddin.ga: could not connect to host madebyfalcon.co.uk: did not receive HSTS header madebymagnitude.com: did not receive HSTS header -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 +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 +maelstrom.ninja: could not connect to host +maerzpa.de: did not receive HSTS header mafamane.com: could not connect to host mafiareturns.com: max-age too low: 2592000 magazinedabeleza.net: could not connect to host magebankin.com: did not receive HSTS header magenx.com: did not receive HSTS header magia360.com: did not receive HSTS header -magical.rocks: could not connect to host magicball.co: could not connect to host +magieamour.com: did not receive HSTS header +magieblanche.fr: did not receive HSTS header magnacumlaude.co: could not connect to host magneticanvil.com: did not receive HSTS header +magosmedellin.com: could not connect to host magyarokegyhelyen.hu: did not receive HSTS header mahamed91.pw: could not connect to host mahansexcavating.com: did not receive HSTS header 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) @@ -8602,23 +9622,23 @@ mailhost.it: could not connect to host mailing-femprendedores.com: did not receive HSTS header mailing-jbgg.com: 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 maintainerheaven.ch: could not connect to host maisalto.ind.br: could not connect to host maitriser-son-stress.com: could not connect to host -majkl.xyz: could not connect to host -majkl578.cz: could not connect to host majncloud.tk: could not connect to host make-pizza.info: could not connect to host makedonien.guide: could not connect to host 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 +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 malamutedoalasca.com.br: could not connect to host maldiverna.guide: could not connect to host maleexcel.com: did not receive HSTS header @@ -8629,16 +9649,18 @@ malfait.nl: could not connect to host malgraph.net: could not connect to host malibubeachrecoverycenter.com: could not connect to host maljaars-media.nl: could not connect to host +malkaso.com.ua: could not connect to host +mallner.me: could not connect to host malmstroms-co.se: could not connect to host malone.link: could not connect to host maltes.website: could not connect to host malvy.kiev.ua: could not connect to host -malware.watch: did not receive HSTS header -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 +mamadoma.com.ua: could not connect to host mamaison.io: could not connect to host mamastore.eu: could not connect to host mamaxi.org: did not receive HSTS header @@ -8647,21 +9669,25 @@ 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 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 -managewp.org: could not connect to host -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 @@ -8676,55 +9702,67 @@ 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 -manuel-schefczyk.de: could not connect to host -manylots.ru: could not connect to host +manuel7espejo.com: did not receive HSTS header +manuelrueger.de: could not connect to host +manutrol.com.br: did not receive HSTS header +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 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 +marcaixala.me: could not connect to host +marcaudefroy.com: could not connect to host +marcberman.co: did not receive HSTS header +marcberndtgen.de: could not connect to host 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: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] marco01809.net: could not connect to host marcoececilia.it: did not receive HSTS header marcofinke.de: could not connect to host marcontrol.com: did not receive HSTS header -marcoslater.com: did not receive HSTS header marcosteixeira.tk: could not connect to host marcschlagenhauf.de: could not connect to host marcus-scheffler.com: did not receive HSTS header marcush.de: could not connect to host +marcusserver.synology.me: did not receive HSTS header mardelcupon.com: could not connect to host mare92.cz: could not connect to host +mareklecian.cz: did not receive HSTS header +margan.ch: could not connect to host margaretrosefashions.co.uk: could not connect to host mariacristinadoces.com.br: did not receive HSTS header mariannematthew.com: could not connect to host 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 +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: could not connect to host markllego.com: could not connect to host marko-fenster24.de: did not receive HSTS header markorszulak.com: did not receive HSTS header @@ -8734,7 +9772,6 @@ 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 -markuskeppeler.no-ip.biz: could not connect to host markusueberallassetmanagement.de: could not connect to host markusueberallconsulting.de: could not connect to host markusweimar.de: did not receive HSTS header @@ -8743,6 +9780,7 @@ marleyresort.com: 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 marshut.net: could not connect to host martialc.be: could not connect to host martiert.com: could not connect to host @@ -8756,22 +9794,31 @@ martinkup.cz: did not receive HSTS header martinp.no: could not connect to host martinrogalla.com: did not receive HSTS header martins.im: could not connect to host -marumagic.com: did not receive HSTS header +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 +maskim.fr: could not connect to host 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 +mastepinnelaand.nl: did not receive HSTS header +masteragenasia.com: could not connect to host +masteragenasia.net: did not receive HSTS header masterapi.ninja: did not receive HSTS header masterhaus.bg: did not receive HSTS header masteringtheterminal.com: did not receive HSTS header @@ -8794,11 +9841,8 @@ masty.nl: could not connect to host masumreza.tk: could not connect to host mat99.dk: could not connect to host matarrosabierzo.com: could not connect to host -matatall.com: did not receive HSTS header -maternalsafety.org: did not receive HSTS header mateusmeyer.com.br: could not connect to host mateuszpilszek.pl: could not connect to host -matheo-schefczyk.de: could not connect to host mathers.ovh: did not receive HSTS header mathias.re: did not receive HSTS header mathijskingma.nl: could not connect to host @@ -8806,7 +9850,6 @@ matildajaneclothing.com: did not receive HSTS header matillat.ovh: did not receive HSTS header matlabjo.ir: could not connect to host matomeplus.co: could not connect to host -matratzentester.com: did not receive HSTS header matrict.com: could not connect to host matrip.de: could not connect to host matrix.ac: could not connect to host @@ -8818,14 +9861,18 @@ mattberryman.com: did not receive HSTS header matterconcern.com: could not connect to host matthew-carson.info: could not connect to host matthewemes.com: did not receive HSTS header +matthewgrow.com: did not receive HSTS header matthewprenger.com: could not connect to host matthewtester.com: did not receive HSTS header matthiassteen.be: could not connect to host matthiasweiler.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -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 +mattwservices.co.uk: max-age too low: 2592000 matty.digital: did not receive HSTS header +matze.co: did not receive HSTS header matze.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] maultrom.ml: could not connect to host maupiknik.com: did not receive HSTS header @@ -8834,26 +9881,29 @@ 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 +maxfox.me: could not connect to host +maxhoechtl.at: could not connect to host maxhorvath.com: could not connect to host maxibanki.ovh: could not connect to host maxicore.co.za: could not connect to host maxima.at: did not receive HSTS header maximelouet.me: did not receive HSTS header -maximov.space: did not receive HSTS header +maximov.space: could not connect to host maxkeller.io: did not receive HSTS header maxmachine.ind.br: could not connect to host +maxrandolph.com: could not connect to host maxserver.com: did not receive HSTS header +maxwellflynn.com: could not connect to host +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 mayoristassexshop.com: did not receive HSTS header -mazurlabs.tk: could not connect to host mazyun.com: did not receive HSTS header mazz-tech.com: could not connect to host -mbanq.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] mbconsultancy.nu: did not receive HSTS header mbdrogenbos-usedcars.be: could not connect to host -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 @@ -8861,34 +9911,38 @@ 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 +mccarty.io: could not connect to host mccordworks.com: did not receive HSTS header mcdanieldevelopmentservices.com: could not connect to host mcdonalds.ru: did not receive HSTS header mcga.media: could not connect to host mcgavocknissanwichitaparts.com: could not connect to host -mchopkins.net: could not connect to host +mchan.us: 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 mclab.su: max-age too low: 2592000 mclist.it: could not connect to host -mcmillansedationdentistry.com: did not receive HSTS header +mclyr.com: could not connect to host mcnoobs.pro: could not connect to host mcooperlaw.com: did not receive HSTS header +mcqyy.com: could not connect to host 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 mdfnet.se: did not receive HSTS header mdscomp.net: did not receive HSTS header mdwftw.com: could not connect to host -me-dc.com: did not receive HSTS header +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 @@ -8898,9 +9952,9 @@ mecenat-cassous.com: did not receive HSTS header mechok.ru: could not connect to host medallia.io: could not connect to host media-access.online: did not receive HSTS header +media-courses.com: could not connect to host mediacru.sh: max-age too low: 0 mediadandy.com: could not connect to host -mediaexpert.fr: did not receive HSTS header mediafinancelab.org: could not connect to host mediamag.am: max-age too low: 0 mediastorm.us: did not receive HSTS header @@ -8909,47 +9963,42 @@ 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: max-age too low: 3600 medpot.net: did not receive HSTS header +medsindex.com: max-age too low: 2592000 medstreaming.com: 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 megakiste.de: could not connect to host megam.host: could not connect to host -megamarkey.de: did not receive HSTS header megashur.se: did not receive HSTS header -megauction.tk: could not connect to host +megasystem.cl: did not receive HSTS header 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 +meiju.video: did not receive HSTS header meincloudspeicher.de: could not connect to host meine-reise-gut-versichert.de: did not receive HSTS header meinebo.it: could not connect to host meisterritter.de: did not receive HSTS header meizufans.eu: could not connect to host +mekongeye.com: could not connect to host melakaltenegger.at: did not receive HSTS header melangebrasil.com: could not connect to host -melaniebilodeau.com: 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 -melina-schefczyk.de: could not connect to host melodic.com.au: could not connect to host melody-lyrics.com: could not connect to host melonstudios.net: could not connect to host @@ -8959,10 +10008,13 @@ melvinlammerts.nl: could not connect to host melvinlow.com: did not receive HSTS header memberpress.com: did not receive HSTS header members.mayfirst.org: did not receive HSTS header +membersonline.org: did not receive HSTS header memdoc.org: could not connect to host memeblast.ninja: could not connect to host memepasmal.org: could not connect to host +memes.nz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [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 @@ -8972,9 +10024,13 @@ menotag.com: did not receive HSTS header mensachterdepatient.nl: max-age too low: 2592000 mensmaximus.de: 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 +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 @@ -8984,13 +10040,16 @@ mercedes-benz-usedcars.be: could not connect to host mercury-studio.com: did not receive HSTS header mereckas.com: could not connect to host meredithkm.info: did not receive HSTS header +meremobil.dk: did not receive HSTS header +merenita.eu: did not receive HSTS header mergozzo.com: did not receive HSTS header merimatka.fi: could not connect to host meritz.rocks: could not connect to host +merloat.club: could not connect to host mersinunivercity.com: could not connect to host merson.me: could not connect to host +mertak.cz: did not receive HSTS header 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 @@ -8998,17 +10057,20 @@ messagescelestes.ca: did not receive HSTS header metadistribution.com: did not receive HSTS header 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 -meteosherbrooke.com: did not receive HSTS header meteosky.net: could not connect to host meter.md: could not connect to host +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 +metrobriefs.com: could not connect to host metzgerei-birkenhof.de: could not connect to host meu-smartphone.com: did not receive HSTS header meucosmetico.com.br: could not connect to host @@ -9017,7 +10079,7 @@ meupedido.online: could not connect to host meusigno.com: could not connect to host mexbt.com: could not connect to host mexicanbusinessweb.mx: did not receive HSTS header -mexicansbook.ru: could not connect to host +mexicansbook.ru: did not receive HSTS header mexior.nl: could not connect to host meyeraviation.com: could not connect to host mfcatalin.com: could not connect to host @@ -9027,6 +10089,7 @@ mfiles.pl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_ mfrsgb45.org: did not receive HSTS header mft.global: could not connect to host mfxer.com: could not connect to host +mgcraft.net: could not connect to host mgdigital.fr: did not receive HSTS header mgiay.com: did not receive HSTS header mgoessel.de: did not receive HSTS header @@ -9039,15 +10102,18 @@ 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 -michael-schefczyk.de: could not connect to host -michael-schilling.de: did not receive HSTS header -michaelcullen.name: 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 michaeldemuth.com: could not connect to host michaelfitzpatrickruth.com: did not receive HSTS header +michaelizquierdo.com: max-age too low: 0 michaelklos.nl: could not connect to host michaelmorpurgo.com: did not receive HSTS header -michaeln.net: did not receive HSTS header +michaeln.net: could not connect to host +michaels-homepage-service.de: could not connect to host michaelscrivo.com: did not receive HSTS header michaelsulzer.com: did not receive HSTS header michaelsulzer.eu: did not receive HSTS header @@ -9057,19 +10123,22 @@ michalborka.cz: could not connect to host michalkral.tk: could not connect to host michalvasicek.cz: did not receive HSTS header michasfahrschule.com: could not connect to host -michel.pt: did not receive HSTS header +michel.pt: could not connect to host +michele.ml: could not connect to host michelledonelan.co.uk: did not receive HSTS header michiganmetalartwork.com: max-age too low: 7889238 mico.world: could not connect to host miconware.de: could not connect to host micro-dv.ru: could not connect to host -micro-rain-systems.com: could not connect to host +micro-rain-systems.com: did not receive HSTS header +microbiote-insectes-vecteurs.group: did not receive HSTS header microblading.pe: could not connect to host microdesic.com: could not connect to host -microme.ga: 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 midirs.org: did not receive HSTS header +midlandgate.de: could not connect to host midonet.org: did not receive HSTS header midriversmotorsllc.com: did not receive HSTS header midterm.us: could not connect to host @@ -9084,14 +10153,17 @@ 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: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +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: could not connect to host +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 @@ -9101,7 +10173,6 @@ mikeology.org: could not connect to host mikepair.net: could not connect to host mikes.tk: could not connect to host 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 mikro-inwestycje.co.uk: did not receive HSTS header @@ -9116,17 +10187,26 @@ milesgeek.com: did not receive HSTS header military-portal.cz: did not receive HSTS header militarycarlot.com: did not receive HSTS header militaryconsumer.gov: did not receive HSTS header +milkingit.net: could not connect to host millibitcoin.jp: could not connect to host millionairessecrets.com: could not connect to host +millions25.com: could not connect to host +millions26.com: could not connect to host +millions27.com: could not connect to host millstep.de: did not receive HSTS header milonga.tips: could not connect to host +mim.properties: could not connect to host mimbeim.com: did not receive HSTS header -mimithedog.com: could not connect to host +mimm.gov: did not receive HSTS header mimoderoupa.pt: could not connect to host min.kiwi: could not connect to host +minacssas.com: could not connect to host minantavla.se: could not connect to host mind.sh: did not receive HSTS header +mindbodycontinuum.com: could not connect to host +mindcell.no: could not connect to host mindcraft.ga: could not connect to host +mindwork.space: could not connect to host mine.world: could not connect to host minecraft-forum.cf: could not connect to host minecraft-forum.ga: could not connect to host @@ -9144,10 +10224,10 @@ minecraftvoter.com: could not connect to host minecrell.net: max-age too low: 172800 mineover.es: could not connect to host minetude.com: could not connect to host +mingkyaa.com: could not connect to host mingo.nl: max-age too low: 2592000 mingy.ddns.net: could not connect to host mingyueli.com: could not connect to host -minh.at: did not receive HSTS header minhanossasenhora.com.br: could not connect to host mini-piraten.de: did not receive HSTS header minikneet.nl: did not receive HSTS header @@ -9161,12 +10241,15 @@ minnesotadata.com: could not connect to host minor.news: could not connect to host minora.io: could not connect to host minoris.se: did not receive HSTS header +minorshadows.net: did not receive HSTS header +mintea-noua.ro: could not connect to host mipiaci.co.nz: did not receive HSTS header mipiaci.com.au: did not receive HSTS header 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 @@ -9176,7 +10259,7 @@ misconfigured.io: could not connect to host miscreant.me: could not connect to host misericordiasegrate.org: did not receive HSTS header misgluteosperfectos.com: did not receive HSTS header -misiondelosangeles-mailing.com: did not receive HSTS header +misiondelosangeles-mailing.com: could not connect to host misiru.jp: could not connect to host missrain.tw: could not connect to host missycosmeticos.com.br: could not connect to host @@ -9186,13 +10269,13 @@ misterl.net: did not receive HSTS header misuzu.moe: could not connect to host mitarbeiter-pc.de: did not receive HSTS header mitchellrenouf.ca: could not connect to host -mitchelmore.ca: could not connect to host mitior.net: could not connect to host mitm-software.badssl.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 @@ -9203,23 +10286,27 @@ 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 mkw.st: could not connect to host +mlcambiental.com.br: did not receive HSTS header mlcdn.co: 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 +mmarnitz.de: could not connect to host +mmcc.pe: did not receive HSTS header mmgazhomeloans.com: did not receive HSTS header mmilog.hu: could not connect to host mmmm.com: could not connect to host mmstick.tk: could not connect to host -mnd.sc: could not connect to host mnec.io: could not connect to host mneeb.de: could not connect to host mnemotiv.com: could not connect to host @@ -9227,6 +10314,7 @@ mnetworkingsolutions.co.uk: could not connect to host mnmt.no: did not receive HSTS header mnwt.nl: 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 mobile-gesundheit.org: could not connect to host @@ -9234,14 +10322,15 @@ 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 @@ -9251,22 +10340,28 @@ mockmyapp.com: could not connect to host mocloud.eu: could not connect to host mocloud.win: could not connect to host mocsuite.club: could not connect to host +mocurio.com: could not connect to host +modalrakyat.com: could not connect to host +modalrakyat.id: did not receive HSTS header modaperuimport.com: could not connect to host +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 moe.pe: could not connect to host +moe.wtf: could not connect to host moe4sale.in: did not receive HSTS header moebel-nagel.de: did not receive HSTS header moebel-vergleichen.com: did not receive HSTS header @@ -9277,6 +10372,7 @@ 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: could not connect to host mogry.net: did not receive HSTS header mohio.co.nz: did not receive HSTS header moho.kr: could not connect to host @@ -9286,13 +10382,15 @@ mojapraca.sk: did not receive HSTS header mojefilmy.xyz: could not connect to host mojizuri.jp: max-age too low: 86400 mokadev.com: did not receive HSTS header -mols.me: did not receive HSTS header +molokai.org: could not connect to host +mols.me: could not connect to host +momento.co.id: did not receive HSTS header momfulfilled.com: could not connect to host 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 @@ -9301,6 +10399,7 @@ monautoneuve.fr: did not receive HSTS header mondar.io: could not connect to host mondopoint.com: did not receive HSTS header mondwandler.de: could not connect to host +moneoci.com.br: could not connect to host moneromerchant.com: could not connect to host moneycrownmedia.com: could not connect to host moneyfactory.gov: did not receive HSTS header @@ -9310,31 +10409,30 @@ monicabeckstrom.no: could not connect to host monika-sokol.de: did not receive HSTS header 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 -monkieteel.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +monkieteel.nl: max-age too low: 2592000 monochrometoys.com: could not connect to host monodukuri.cafe: did not receive HSTS header monodzukuri.cafe: did not receive HSTS header -monoseis-monotica.gr: max-age too low: 300 monotsuku.com: could not connect to host monozukuri.cafe: did not receive HSTS header -monsieurbureau.com: max-age too low: 0 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 moonless.net: could not connect to host moonloupe.com: could not connect to host +moonrhythm.info: could not connect to host +moonrhythm.io: did not receive HSTS header moonysbouncycastles.co.uk: could not connect to host moosemanstudios.com: could not connect to host moov.is: could not connect to host -moovablestorage.com: could not connect to host moparcraft.com: could not connect to host moparcraft.org: could not connect to host moparisthebest.biz: could not connect to host @@ -9345,23 +10443,25 @@ mor.cloud: could not connect to host mor.gl: could not connect to host mordrum.com: could not connect to host moreserviceleads.com: did not receive HSTS header +morespacestorage.com.au: did not receive HSTS header morethanadream.lv: could not connect to host morfitronik.pl: could not connect to host morganestes.com: max-age too low: 0 morganino.eu: could not connect to host -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 +morrodafumacanoticias.com.br: did not receive HSTS header morz.org: max-age too low: 0 mosaique-lachenaie.fr: could not connect to host moskva.guide: did not receive HSTS header moso.io: did not receive HSTS header mostlyharmless.at: could not connect to host +mostlyinfinite.com: did not receive HSTS header mostwuat.com: could not connect to host motherbase.io: could not connect to host motherboard.services: could not connect to host @@ -9371,7 +10471,9 @@ 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 motovio.de: did not receive HSTS header motransportinfo.com: did not receive HSTS header mottvd.com: could not connect to host @@ -9382,36 +10484,39 @@ moumaobuchiyu.com: could not connect to host mountainadventureseminars.com: did not receive HSTS header mountainmusicpromotions.com: did not receive HSTS header movabletype.net: max-age too low: 3600 -move.mil: did not receive HSTS header +moveltix.net: could not connect to host movepin.com: could not connect to host -movie4k.fyi: could not connect to host +movie4k.fyi: max-age too low: 0 movie4k.life: could not connect to host -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 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 moyu.host: did not receive HSTS header mozart-game.cz: could not connect to host mozartgame.cz: could not connect to host -mozgb.ru: did not receive HSTS header +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 mpi-sa.fr: did not receive HSTS header mpkossen.com: did not receive HSTS header mpn.poker: did not receive HSTS header +mpreserver.com: could not connect to host mpserver12.org: could not connect to host +mpu-giessen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +mqas.net: could not connect to host mr-coffee.net: could not connect to host mr-hosting.com: could not connect to host -mr-nachhilfe.de: did not receive HSTS header mrafrohead.com: could not connect to host mrawe.com: could not connect to host mrburtbox.com: could not connect to host @@ -9420,9 +10525,7 @@ 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 -mrjooz.com: did not receive HSTS header mrksk.com: could not connect to host mrleonardo.com: did not receive HSTS header mrliu.me: could not connect to host @@ -9430,45 +10533,47 @@ mrnh.tk: could not connect to host mrnonz.com: max-age too low: 0 mrparker.pw: did not receive HSTS header mrpopat.in: did not receive HSTS header -mrpropop.com: did not receive HSTS header -mrs-shop.com: did not receive HSTS header +mrpropop.com: max-age too low: 0 mruganiepodspacja.pl: could not connect to host msc-seereisen.net: could not connect to host msgallery.tk: could not connect to host 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: did not receive HSTS header +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: could not connect to host +mtcgf.com: did not receive HSTS header +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 -muenchberger.com: could not connect to host +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] +muchohentai.com: could not connect to host muffet.pw: could not connect to host 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 +multiterm.org: could not connect to host multivpn.cn.com: could not connect to host multivpn.com.de: could not connect to host multivpn.com.ua: could not connect to host multivpn.fr: could not connect to host +multiworldsoftware.com: did not receive HSTS header mumei.space: did not receive HSTS header +mundoadulto.com.br: did not receive HSTS header mundoalpha.com.br: did not receive HSTS header -mundodapoesia.com: did not receive HSTS header munecoscabezones.com: did not receive HSTS header munich-rage.de: did not receive HSTS header munkiepus.com: did not receive HSTS header @@ -9487,12 +10592,17 @@ murraycolin.org: could not connect to host murrayrun.com: did not receive HSTS header mursu.directory: could not connect to host murz.tv: could not connect to host +murzik.space: could not connect to host +muscleangels.com: could not connect to host +musearchengine.com: could not connect to host museminder2.com: did not receive HSTS header -museumstreak.com: did not receive HSTS header +museumstreak.com: could not connect to host musewearflipflops.com: could not connect to host mushman.tk: could not connect to host mushroomandfern.com: could not connect to host musi.cx: could not connect to host +musicaconleali.it: did not receive HSTS header +musiccitycats.com: did not receive HSTS header musikkfondene.no: did not receive HSTS header musikzug-bookholzberg.de: did not receive HSTS header muslimbanter.co.za: could not connect to host @@ -9500,11 +10610,13 @@ mustika.cf: did not receive HSTS header mutamatic.com: could not connect to host mutuelle-obligatoire-pme.fr: did not receive HSTS header 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 +mwohlfarth.de: did not receive HSTS header mxawei.cn: could not connect to host mxlife.org: could not connect to host my-demo.co: could not connect to host @@ -9518,13 +10630,16 @@ 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: could not connect to host mybudget.xyz: could not connect to host mybuilderinlondon.co.uk: did not receive HSTS header mybusiness.cm: did not receive HSTS header -mycamda.com: could not connect to host mychocolateweightloss.com: could not connect to host myclientsplus.com: did not receive HSTS header mycollab.net: could not connect to host +mycolorado.gov: could not connect to host mycontrolmonitor.com: could not connect to host mycoted.com: did not receive HSTS header myday.eu.com: did not receive HSTS header @@ -9534,12 +10649,14 @@ mydmdi.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR mydnaresults.com: could not connect to host mydnatest.com: did not receive HSTS header mydriversedge.com: did not receive HSTS header +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 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 @@ -9547,7 +10664,9 @@ mygov.scot: did not receive HSTS header mygpsite.com: did not receive HSTS header mygreatjob.eu: 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 +myhostname.net: did not receive HSTS header +myicare.org: did not receive HSTS header myiocc.org: did not receive HSTS header myip.tech: max-age too low: 2592000 mykolab.com: did not receive HSTS header @@ -9555,7 +10674,7 @@ mykreuzfahrt.de: could not connect to host mylene-chandelier.me: did not receive HSTS header mylighthost.com: did not receive HSTS header mylocalsearch.co.uk: did not receive HSTS header -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] +mylotto.co.nz: could not connect to host mymp3singer.co: could not connect to host mymp3singer.net: could not connect to host mymp3singer.site: could not connect to host @@ -9563,7 +10682,7 @@ 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 @@ -9576,40 +10695,50 @@ 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 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 +mysongbird.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] myspa.asia: did not receive HSTS header mystery-science-theater-3000.de: did not receive HSTS header mysteryblog.de: did not receive HSTS header +mysterysear.ch: could not connect to host mystown.org: could not connect to host mystudy.me: could not connect to host mytc.fr: could not connect to host mythlogic.com: did not receive HSTS header mythslegendscollection.com: did not receive HSTS header mytravelblog.de: could not connect to host +mywallets.io: could not connect to host myweb360.de: did not receive HSTS header -myxbox.gr: did not receive HSTS header -myzone.com: did not receive HSTS header +mywebinar.io: could not connect to host +mywebpanel.nl: did not receive HSTS header +myxbox.gr: max-age too low: 0 +myzone.com: max-age too low: 0 mzlog.win: could not connect to host mzorn.photography: could not connect to host n-rickroll-e.pw: could not connect to host +n-x.info: 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 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 +n7.education: did not receive HSTS header na.hn: did not receive HSTS header naano.org: could not connect to host nabru.co.uk: did not receive HSTS header @@ -9623,16 +10752,18 @@ 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 +nailedithomebuilders.com: did not receive HSTS header +nais.me: did not receive HSTS header najedlo.sk: could not connect to host +nakada4610.com: could not connect to host nakamastreamingcommunity.com: could not connect to host nakhonidc.com: could not connect to host nakitbonus2.com: could not connect to host nakliyatsirketi.biz: could not connect to host nakuro.de: could not connect to host nalao-company.com: did not receive HSTS header -nalifornia.com: 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 @@ -9641,58 +10772,65 @@ 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 namikawatetsuji.jp: could not connect to host -namorico.me: could not connect to host +namorico.me: max-age too low: 0 nan.ci: did not receive HSTS header nan.zone: could not connect to host -nanami.moe: did not receive HSTS header +nanami.moe: could not connect to host +nanch.com: could not connect to host nanderson.me: could not connect to host nanfangstone.com: could not connect to host nani.io: did not receive HSTS header naniki.co.uk: could not connect to host nanogeneinc.com: could not connect to host nanokamo.com: did not receive HSTS header +nanosingularity.com: could not connect to host nanrenba.net: could not connect to host nanto.eu: could not connect to host 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: did not receive HSTS header +narindal.ch: 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 +nasme.tk: could not connect to host +nasmocopati.com: did not receive HSTS header nasralmabrooka.com: did not receive HSTS header 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 +natalt.org: could not connect to host natalydanilova.com: max-age too low: 300 nataniel-perissier.fr: could not connect to host nate.sh: could not connect to host natenom.com: max-age too low: 7200 natenom.de: max-age too low: 7200 natenom.name: max-age too low: 7200 -nathankonopinski.com: could not connect to host nathanmfarrugia.com: did not receive HSTS header nationalmall.gov: could not connect to host nationwidevehiclecontracts.co.uk: did not receive HSTS header natur-udvar.hu: could not connect to host -natural-progesterone.net: did not receive HSTS header +natural-progesterone.net: could not connect to host naturalcommission.com: could not connect to host naturblogg.no: did not receive HSTS header naturecoaster.com: did not receive HSTS header +naturline.com: did not receive HSTS header natuterra.com.br: could not connect to host natuurbehangnederland.nl: could not connect to host nauck.org: did not receive HSTS header naudles.me: could not connect to host nav.jobs: could not connect to host naval.tf: could not connect to host -navdeep.ca: could not connect to host +navegos.net: did not receive HSTS header naviaddress.io: did not receive HSTS header naviteq.eu: could not connect to host +navitime.me: could not connect to host navjobs.com: could not connect to host nawroth.info: could not connect to host nax.io: did not receive HSTS header @@ -9701,18 +10839,19 @@ nba2kqq.com: could not connect to host nbb.io: could not connect to host nbg-ha.de: could not connect to host nbis.gov: could not connect to host +nbl.org.tw: could not connect to host nbrown.us: could not connect to host +nbtparse.org: could not connect to host nc2c.com: could not connect to host -nc99.co: could not connect to host ncc60205.info: could not connect to host ncdesigns-studio.com: could not connect to host -ncea.net.au: did not receive HSTS header nchristo.com: did not receive HSTS header +ncloud.freeddns.org: could not connect to host +nclvle.co.uk: did not receive HSTS header ncpc.gov: could not connect to host ncpw.gov: did not receive HSTS header ncrmnt.org: did not receive HSTS header -nct.org.uk: could not connect to host -nctx.co.uk: did not receive HSTS header +nct.org.uk: did not receive HSTS header ndmath.club: could not connect to host ndtblog.com: could not connect to host ndtmarket.place: could not connect to host @@ -9722,6 +10861,7 @@ near.st: did not receive HSTS header nearbiwa.com: did not receive HSTS header nearon.nl: could not connect to host neavision.de: did not receive HSTS header +nebracy.com: could not connect to host nebulousenhanced.com: could not connect to host necesitodinero.org: could not connect to host necio.ca: could not connect to host @@ -9729,30 +10869,39 @@ 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 -neecist.org: could not connect to host +needle.net.nz: could not connect to host +needle.nz: 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] 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 +neilwynne.com: did not receive HSTS header nejnamc.org: did not receive HSTS header neko-life.com: did not receive HSTS header neko.li: could not connect to host +neko.ml: could not connect to host nekoku.io: could not connect to host nekox.ml: 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 -nemunai.re: could not connect to host +nemplex.win: could not connect to host neoani.me: did not receive HSTS header +neocoding.com: did not receive HSTS header neocyd.com: could not connect to host neofelhz.space: could not connect to host neojames.me: could not connect to host neonisi.com: could not connect to host neonnuke.tech: did not receive HSTS header neosolution.ca: did not receive HSTS header +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 @@ -9760,10 +10909,8 @@ 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 -nerull7.info: could not connect to host nesantuoka.lt: could not connect to host -nestedquotes.ca: could not connect to host +nesbase.com: 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 @@ -9776,34 +10923,37 @@ netbrief.ml: did not receive HSTS header netbuzz.ru: could not connect to host netde.jp: could not connect to host netdego.jp: could not connect to host +neteraser.de: 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 netmagik.com: did not receive HSTS header netprofile.com.au: did not receive HSTS header netresourcedesign.com: could not connect to host -netronome.com: did not receive HSTS header 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 -networking4all.net: max-age too low: 0 +nettplusultra-rhone.fr: did not receive HSTS header 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 +netzvieh.de: could not connect to host netzzwerg4u.de: did not receive HSTS header neuch.info: did not receive HSTS header neueonlinecasino2016.com: could not connect to host neuralgic.net: could not connect to host neuro-plus-100.com: could not connect to host +neuronasdigitales.com: could not connect to host neuronfactor.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -neurotransmitter.net: could not connect to host neutralvehicle.com: did not receive HSTS header +neva.li: could not connect to host nevadafiber.net: could not connect to host never-afk.de: did not receive HSTS header neveta.com: could not connect to host @@ -9813,47 +10963,56 @@ 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: max-age too low: 0 +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 +newmed.com.br: could not connect to host newparadigmventures.net: did not receive HSTS header -newpoke.net: did not receive HSTS header +newpathintegratedtherapy.com: did not receive HSTS header +newpoke.net: could not connect to host newportpropertygroup.com: could not connect to host news4c.com: did not receive HSTS header +newsaboutgames.de: could not connect to host newsquantified.com: max-age too low: 0 newstarnootropics.com: 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 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 -nextgenthemes.com: did not receive HSTS header +nextend.net: could not connect to host +nextend.org: could not connect to host nexth.de: could not connect to host nexth.net: did not receive HSTS header nexth.us: could not connect to host nexthop.co.jp: could not connect to host nexthop.co.th: did not receive HSTS header +nextlevel-it.co.uk: could not connect to host nextpages.de: could not connect to host nextproject.us: could not connect to host nextshutter.com: did not receive HSTS header -nexus-vienna.at: could not connect to host nexusbyte.de: could not connect to host -nexuscorporation.in: could not connect to host +nexuscorporation.in: did not receive HSTS header nfhome.be: did not receive HSTS header +nfls.io: could not connect to host +nfluence.org: could not connect to host nfo.so: could not connect to host +nfrost.me: could not connect to host ng-firewall.com: did not receive HSTS header ng-security.com: could not connect to host ngiemboon.net: could not connect to host ngine.ch: did not receive HSTS header +nginxconfig.com: could not connect to host nginxnudes.com: could not connect to host nginxyii.tk: could not connect to host nglr.org: could not connect to host @@ -9866,6 +11025,8 @@ nhus.de: max-age too low: 172800 niallator.com: could not connect to host nibiisclaim.com: could not connect to host nicestresser.fr: could not connect to host +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 @@ -9873,41 +11034,52 @@ nicolaeiotcu.ro: could not connect to host 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 +nicolasklotz.de: could not connect to host +nicoleoquendo.com: max-age too low: 2592000 niconiconi.xyz: could not connect to host +nicoobook.com: did not receive HSTS header nicorevin.ru: could not connect to host nidux.com: did not receive HSTS header -niduxcomercial.com: could not connect to host +niedersetz.de: could not connect to host nien.chat: could not connect to host nien.com.tw: could not connect to host nienfun.com: could not connect to host 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 +niggo.eu: could not connect to host nightsnack.cf: could not connect to host +nightwinds.tk: could not connect to host niho.jp: did not receive HSTS header -nikcub.com: could not connect to host +nikcub.com: did not receive HSTS header +niki.ai: did not receive HSTS header nikksno.io: could not connect to host niklas.host: could not connect to host +niklasanderson.com: could not connect to host niklaslindblad.se: did not receive HSTS header nikobradshaw.com: could not connect to host nikolaichik.photo: did not receive HSTS header nikolasbradshaw.com: could not connect to host nilianwo.com: could not connect to host niloxy.com: did not receive HSTS header +nimidam.com: could not connect to host 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 +ninjaworld.co.uk: 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 +nipe-systems.de: 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 +nippon.fr: could not connect to host +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 @@ -9915,9 +11087,11 @@ nishaswonderland.nl: did not receive HSTS header nishikino-maki.com: could not connect to host nishisbma.com: could not connect to host nitaonline.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +niva.synology.me: could not connect to host niveldron.com: could not connect to host nixien.fr: could not connect to host nixmag.net: could not connect to host +nixne.st: could not connect to host nkadvertising.online: could not connect to host nkautoservice.nl: did not receive HSTS header nkb.in.th: could not connect to host @@ -9925,42 +11099,52 @@ nlegall.fr: did not receive HSTS header nll.fi: could not connect to host nmadda.com: did not receive HSTS header nmctest.net: could not connect to host +nmgb.ga: could not connect to host +nmgb.ml: could not connect to host nmsnj.com: did not receive HSTS header nmueller.at: could not connect to host +nn78.com: did not receive HSTS header nnote.net: could not connect to host 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 -nocit.dk: could not connect to host noclegi-online.pl: did not receive HSTS header noctinus.tk: could not connect to host -nodari.com.ar: could not connect to host node-core-app.com: could not connect to host nodebrewery.com: could not connect to host nodechate.xyz: could not connect to host +nodecompat.com: could not connect to host nodefiles.com: could not connect to host +nodefoo.com: 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 +nodum.io: did not receive HSTS header noegoph.com: did not receive HSTS header 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 -nokia.la: 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 +nomagic.software: could not connect to host 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 @@ -9968,15 +11152,19 @@ nopol.de: could not connect to host norad.sytes.net: could not connect to host norandom.com: could not connect to host norb.at: could not connect to host -norden.eu.org: could not connect to host nordic-survival.de: did not receive HSTS header nordiccasinocommunity.com: did not receive HSTS header nordlicht.photography: did not receive HSTS header +noref.tk: could not connect to host norge.guide: could not connect to host +normalady.com: could not connect to host +normandgascon.com: did not receive HSTS header normanschwaneberg.de: did not receive HSTS header north.supply: could not connect to host northcutt.com: did not receive HSTS header -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 @@ -9987,6 +11175,8 @@ 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 @@ -9998,12 +11188,14 @@ 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 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: could not connect to host +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 @@ -10011,26 +11203,29 @@ 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 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 +npm.li: could not connect to host +npol.de: did not receive HSTS header npool.org: could not connect to host nq7.pl: could not connect to host +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 +nrnjn.xyz: could not connect to host +nrvn.cc: did not receive HSTS header nrvnastudios.com: could not connect to host nsbfalconacademy.org: could not connect to host nsdev.cn: could not connect to host @@ -10038,30 +11233,29 @@ 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 ntse.xyz: could not connect to host nu3.at: did not receive HSTS header nu3.ch: did not receive HSTS header nu3.co.uk: could not connect to host -nu3.com: did not receive HSTS header nu3.de: did not receive HSTS header nu3.fr: did not receive HSTS header nube.ninja: did not receive HSTS header -nubeslayer.com: did not receive HSTS header -nuclear-crimes.com: could not connect to host -nuclearcrimes.com: could not connect to host -nuclearcrimes1.com: could not connect to host +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 @@ -10071,15 +11265,18 @@ nullpro.com: could not connect to host numericacu.com: did not receive HSTS header numero-di-telefono.it: could not connect to host numista.com: did not receive HSTS header +numm.fr: did not receive HSTS header nuovamoda.al: could not connect to host -nup.pw: could not connect to host +nup.pw: max-age too low: 0 nupef.org.br: did not receive HSTS header nurserybook.co: did not receive HSTS header nurture.be: did not receive HSTS header nusatrip-api.com: did not receive HSTS header +nusku.biz: 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 @@ -10087,37 +11284,37 @@ nuwaterglobal.com: did not receive HSTS header nvlop.xyz: did not receive HSTS header nwa.xyz: could not connect to host nweb.co.nz: 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 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 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 -nys-hk.com: did not receive HSTS header 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 nzmk.cz: could not connect to host -nzquakes.maori.nz: could not connect to host +nzquakes.maori.nz: did not receive HSTS header o-rickroll-y.pw: could not connect to host o0o.one: did not receive HSTS header oaksbloom.com: could not connect to host oasis-conference.org.nz: could not connect to host -oasis.mobi: could not connect to host +oasis.mobi: did not receive HSTS header 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] obdolbacca.ru: could not connect to host oben.pl: did not receive HSTS header oberam.de: could not connect to host oberhof.co: could not connect to host oberhofjuice.com: could not connect to host -oberoi.de: max-age too low: 600000 objectif-leger.com: did not receive HSTS header oblikdom.pro: did not receive HSTS header oblikdom.ru: did not receive HSTS header @@ -10127,6 +11324,7 @@ 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] @@ -10134,15 +11332,16 @@ occupymedia.org: could not connect to host ochaken.cf: could not connect to host ocmeulebeke.be: did not receive HSTS header ocrami.us: did not receive HSTS header +octal.es: could not connect to host octanio.com: could not connect to host -octo.im: could not connect to host octocat.ninja: could not connect to host octod.tk: could not connect to host -octofox.de: did not receive HSTS header +octohost.net: did not receive HSTS header oddmouse.com: could not connect to host odin.xxx: could not connect to host odinkapital.no: did not receive HSTS header 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 @@ -10153,9 +11352,11 @@ ofer.site: did not receive HSTS header 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 offshore-firma.org: could not connect to host offshore-unternehmen.com: could not connect to host offshorefirma-gruenden.com: could not connect to host @@ -10164,16 +11365,16 @@ 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 -oglen.ca: 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: max-age too low: 0 ohohrazi.com: did not receive HSTS header ohreally.de: could not connect to host ohsocool.org: did not receive HSTS header @@ -10181,9 +11382,14 @@ oiepoie.nl: could not connect to host oinky.ddns.net: could not connect to host oishioffice.com: did not receive HSTS header ojbk.eu: could not connect to host +ojeremy.com: did not receive HSTS header ojls.co: could not connect to host +okad-center.de: did not receive HSTS header +okad.de: did not receive HSTS header +okad.eu: did not receive HSTS header okane.love: could not connect to host okashi.me: could not connect to host +okaz.de: 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 @@ -10191,22 +11397,30 @@ 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 oldschool-criminal.com: did not receive HSTS header oldtimer-trifft-flugplatz.de: did not receive HSTS header +olifant.fr: did not receive HSTS header oliverdunk.com: did not receive HSTS header -oliverfaircliff.com: could not connect to host +olivlabs.com: could not connect to host ollehbizev.co.kr: could not connect to host +ols.io: did not receive HSTS header olswangtrainees.com: could not connect to host olympe-transport.fr: did not receive HSTS header omacostudio.com: could not connect to host omarh.net: could not connect to host +omarsuniagamusic.ga: could not connect to host +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 +omniasl.com: could not connect to host omnigon.network: could not connect to host omnilab.tech: could not connect to host 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 omyogarishikesh.com: did not receive HSTS header @@ -10216,11 +11430,11 @@ 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 -onedot.nl: could not connect to host onefour.co: could not connect to host onehourloan.com: could not connect to host onehourloan.sg: did not receive HSTS header -onelawsuit.com: did not receive HSTS header +oneiros.cc: could not connect to host +onelawsuit.com: could not connect to host oneminutefilm.tv: did not receive HSTS header onemusou.com: could not connect to host onepathnetwork.com: max-age too low: 7776000 @@ -10228,27 +11442,30 @@ onepluscamps.com: did not receive HSTS header onepopstore.com: could not connect to host onespiritinc.com: did not receive HSTS header onet.space: could not connect to host -onetech.it: did not receive HSTS header onetly.com: could not connect to host onetwentyseven001.com: did not receive HSTS header onewebdev.info: could not connect to host 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 online-casino.eu: did not receive HSTS header online-scene.com: did not receive HSTS header -online-wetten.de: did not receive HSTS header +online-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 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 onlinewetten.de: could not connect to host @@ -10256,8 +11473,10 @@ only-roses.co.uk: did not receive HSTS header only-roses.com: max-age too low: 2592000 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 onovlena.dn.ua: could not connect to host onpatient.com: did not receive HSTS header @@ -10276,7 +11495,7 @@ 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 @@ -10288,15 +11507,19 @@ opcaobolsas.com.br: 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 -opencad.io: did not receive HSTS header +openacademies.com: could not connect to host +openas.org: did not receive HSTS header +openbankproject.com: did not receive HSTS header openclub24.ru: could not connect to host openconcept.no: did not receive HSTS header openconnect.com.au: could not connect to host opendesk.cc: did not receive HSTS header openevic.info: could not connect to host opengateway.fr: did not receive HSTS header +openiocdb.com: could not connect to host openmetals.com: could not connect to host openmind-shop.de: did not receive HSTS header +openmirrors.cf: could not connect to host openpriv.pw: could not connect to host openprovider.nl: did not receive HSTS header openrainbow.org: could not connect to host @@ -10307,71 +11530,83 @@ opensourcehouse.net: could not connect to host openspace.xxx: did not receive HSTS header opensrd.com: could not connect to host openssf.org: did not receive HSTS header -opentexon.com: could not connect to host +opentexon.com: did not receive HSTS header openxmpp.com: could not connect to host +operad.fr: could not connect to host opiates.net: did not receive HSTS header -opic.gov: could not connect to host opim.ca: did not receive HSTS header opinion8td.com: did not receive HSTS header opinionicentrifuga.it: could not connect to host opinionipannolini.it: could not connect to host opioids.com: could not connect to host +oportunidadesemfoco.com.br: could not connect to host +opp.ag: did not receive HSTS header +oppag.com.br: did not receive HSTS header opperwall.net: could not connect to host -opportunitycorps.org: max-age too low: 43200 +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 optenhoefel.de: could not connect to host +optiekzien.nl: did not receive HSTS header optimal-e.com: did not receive HSTS header -optimist.bg: could not connect to host optimista.soy: could not connect to host +optimize-jpg.com: could not connect to host optometriepunt.nl: did not receive HSTS header optumrxhealthstore.com: could not connect to host opunch.org: did not receive HSTS header oracaodocredo.com.br: could not connect to host orangekey.tk: could not connect to host +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 originalmockups.com: did not receive HSTS header originalsport.com.br: could not connect to host -originpc.com: 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 oroweatorganic.com: could not connect to host +ortho-graz.at: could not connect to host orthodoxy.lt: did not receive HSTS header -orum.in: could not connect to host +ortodonciaian.com: did not receive HSTS header +orui.com.br: could not connect to host +orz.uno: did not receive HSTS header osaiyuwu.com: could not connect to host -oscarmashauri.com: could not connect to host +oscarmashauri.com: did not receive HSTS header oscillation-services.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -oscloud.com: 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 +osereso.tn: could not connect to host osha-kimi.com: did not receive HSTS header oshanko.de: could not connect to host oshinagaki.jp: could not connect to host oslfoundation.org: did not receive HSTS header +oslinux.net: could not connect to host +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 @@ -10379,32 +11614,38 @@ ostendorf.com: did not receive HSTS header osticketawesome.com: did not receive HSTS header ostrov8.com: could not connect to host oswaldmattgroup.com: did not receive HSTS header +otako.pl: did not receive HSTS header otakuworld.de: could not connect to host +otakuyun.com: did not receive HSTS header +otchecker.com: could not connect to host other98.com: did not receive HSTS header 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 otinane.eu: could not connect to host +otmns.net: could not connect to host otokonna.com: could not connect to host otrsdemo.hu: did not receive HSTS header +ottoproject.io: did not receive HSTS header ottospora.nl: could not connect to host -ouaibe.qc.ca: could not connect to host +ouowo.gq: did not receive HSTS header ourbank.com: max-age too low: 2592000 ourchoice2016.com: could not connect to host -outdooradventures.pro: did not receive HSTS header +outdooradventures.pro: could not connect to host outdoorproducts.com: max-age too low: 7889238 outreachbuddy.com: could not connect to host outsider.im: could not connect to host -outurnate.com: could not connect to host -ouvirmusica.com.br: could not connect to host +outurnate.com: did not receive HSTS header +ouvirmusica.com.br: did not receive HSTS header ovenapp.io: did not receive HSTS header over25tips.com: did not receive HSTS header -overclockers.ge: could not connect to host 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 +overture.london: did not receive HSTS header +ovpn.to: could not connect to host ovuscloud.de: could not connect to host ovwane.com: could not connect to host owennelson.me: max-age too low: 2592000 @@ -10415,8 +11656,9 @@ 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 @@ -10429,17 +11671,36 @@ 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 p1c.pw: could not connect to host -p22.co: did not receive HSTS header +p2av.com: could not connect to host p3.marketing: did not receive HSTS header p3in.com: could not connect to host p3ter.fr: did not receive HSTS header p8r.de: did not receive HSTS header paavolastudio.com: did not receive HSTS header +pablo.im: did not receive HSTS header +pablo.scot: did not receive HSTS header +pablo.sh: did not receive HSTS header +pabloarteaga.co.uk: did not receive HSTS header +pabloarteaga.com: did not receive HSTS header +pabloarteaga.com.es: did not receive HSTS header +pabloarteaga.es: did not receive HSTS header +pabloarteaga.eu: did not receive HSTS header +pabloarteaga.info: did not receive HSTS header +pabloarteaga.me: did not receive HSTS header +pabloarteaga.name: did not receive HSTS header +pabloarteaga.net: did not receive HSTS header +pabloarteaga.nom.es: did not receive HSTS header +pabloarteaga.org: did not receive HSTS header +pabloarteaga.science: did not receive HSTS header +pabloarteaga.tech: did not receive HSTS header +pabloarteaga.uk: did not receive HSTS header +pabloarteaga.xyz: did not receive HSTS header pablocamino.tk: could not connect to host -pablofain.com: did not receive HSTS header pablorey-art.com: did not receive HSTS header -pachaiyappas.org: could not connect to host +paceda.nl: could not connect to host +pachaiyappas.org: did not receive HSTS header packair.com: did not receive HSTS header +packer.io: did not receive HSTS header packetapp.ru: could not connect to host packetcrash.net: could not connect to host packlane.com: did not receive HSTS header @@ -10448,15 +11709,16 @@ 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 +pagedesignshop.com: did not receive HSTS header pagerate.io: could not connect to host pages-tocaven.com: could not connect to host pagetoimage.com: could not connect to host -paginapolitica.ro: could not connect to host +paginapolitica.ro: did not receive HSTS header pagure.org: could not connect to host -pahlawanpulsa.com: did not receive HSTS header pahnid.com: could not connect to host paigeglass.com: did not receive HSTS header paino.cloud: could not connect to host @@ -10465,12 +11727,14 @@ paintingat.com: could not connect to host paio2-rec.com: could not connect to host paio2.com: did not receive HSTS header 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 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 @@ -10484,16 +11748,18 @@ 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 +panlex.org: did not receive HSTS header panni.me: could not connect to host panoranordic.net: could not connect to host panos.io: did not receive HSTS header 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 @@ -10501,22 +11767,27 @@ 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 +paperhoney.by: could not connect to host 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 paradise-engineers.com: could not connect to host -paragon.edu: did not receive HSTS header +paragon.edu: could not connect to host parakranov.ru: did not receive HSTS header paranormalweirdo.com: could not connect to host +paranoxer.hu: could not connect to host +parav.xyz: did not receive HSTS header pardnoy.com: could not connect to host parent5446.us: could not connect to host parentmail.co.uk: did not receive HSTS header parfum-baza.ru: did not receive HSTS header -paris-cyber.fr: did not receive HSTS header -parisbloom.com: did not receive HSTS header +paris-cyber.fr: could not connect to host parisdimanche.com: did not receive HSTS header parishome.jp: could not connect to host parisvox.info: did not receive HSTS header @@ -10529,9 +11800,15 @@ 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 +partage.ovh: could not connect to host +parteaga.com: did not receive HSTS header +parteaga.net: did not receive HSTS header +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 +partiwatch.com: could not connect to host +partnerbeam.com: could not connect to host partnercardservices.com: did not receive HSTS header partnerwerk.de: did not receive HSTS header partyhaus.ovh: could not connect to host @@ -10543,11 +11820,9 @@ 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 pasportaservo.org: 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: could not connect to host passwordbox.com: did not receive HSTS header @@ -10563,22 +11838,23 @@ pasteros.io: could not connect to host pastie.se: could not connect to host pastorcanadense.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 patriaco.net: did not receive HSTS header patrick.dark.name: could not connect to host +patrick21.ch: could not connect to host patrickbusch.net: could not connect to host patrickneuro.de: could not connect to host +patrickquinn.ca: did not receive HSTS header +patrickschneider.me: could not connect to host patt.us: did not receive HSTS header 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 paulproell.at: did not receive HSTS header paulrudge.codes: could not connect to host paulshir.com: could not connect to host @@ -10587,12 +11863,14 @@ 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 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) @@ -10600,24 +11878,22 @@ paymon.tj: could not connect to host paypod.org: could not connect to host payroll.ch: could not connect to host paytwopay.com: could not connect to host +payzwin.com: did not receive HSTS header pb-design.ch: could not connect to host pbapp.net: did not receive HSTS header pbbr.com: did not receive HSTS header pbcknd.ml: could not connect to host pbcomp.com.au: did not receive HSTS header -pbprint.ru: did not receive HSTS header -pbqs.site: could not connect to host -pbreen.co.uk: could not connect to host +pbprint.ru: 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-tablet.com: max-age too low: 0 pc-tweak.de: did not receive HSTS header pcat.io: could not connect to host pcfun.net: did not receive HSTS header pchax.net: could not connect to host pchospital.cc: could not connect to host +pcmedia.co.nz: did not receive HSTS header pcvirusclear.com: could not connect to host pdamsidoarjo.co.id: could not connect to host pdevio.com: could not connect to host @@ -10630,18 +11906,21 @@ peakapp.nl: could not connect to host pebblesdemo.com: could not connect to host pecot.fr: did not receive HSTS header peekops.com: could not connect to host +peen.ch: could not connect to host peerherrmann.de: could not connect to host -peerless.ae: could not connect to host -peinard.net: 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 -penfold.fr: could not connect to host pengisatelier.net: could not connect to host pengui.uk: could not connect to host penguinclientsystem.com: did not receive HSTS header @@ -10650,23 +11929,29 @@ 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: 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 people-mozilla.org: could not connect to host +peoplerange.com: could not connect to host +peoplesbankal.com: did not receive HSTS header peperiot.com: did not receive HSTS header pepper.dog: could not connect to host pepperhead.com: did not receive HSTS header pepperworldhotshop.de: did not receive HSTS header -pepsicoemployeepreferencesurvey.com: could not connect to host +pepsicoemployeepreferencesurvey.com: did not receive HSTS header per-pedes.at: did not receive HSTS header perdel.cn: could not connect to host pereuda.com: could not connect to host +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 @@ -10684,28 +11969,33 @@ 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: could not connect to host pet-life.top: did not receive HSTS header 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 -peterkshultz.com: did not receive HSTS header +peteboc.com: max-age too low: 0 +peterfolta.net: 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 +petrachuk.ru: could not connect to host petrkrapek.cz: did not receive HSTS header -petrolplus.ru: max-age too low: 7776000 petrovsky.pro: could not connect to host petsittersservices.com: could not connect to host -pettsy.com: 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 pewboards.com: could not connect to host @@ -10723,8 +12013,8 @@ pgpm.io: could not connect to host pgregg.com: did not receive HSTS header pgtb.be: could not connect to host phalconist.com: could not connect to host -pharmacie-fr.org: did not receive HSTS header pharmgkb.org: could not connect to host +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 @@ -10733,7 +12023,6 @@ 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 philadelphiacandies.com: did not receive HSTS header philadelphiadancefoundation.org: could not connect to host philipmordue.co.uk: could not connect to host @@ -10743,6 +12032,8 @@ 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: could not connect to host phoebe.co.nz: did not receive HSTS header phoenicis.com.ua: did not receive HSTS header phoenix.dj: did not receive HSTS header @@ -10755,21 +12046,25 @@ photographyforchange.com: could not connect to host photographyforchange.org: could not connect to host photops.fr: could not connect to host photosoftware.nl: could not connect to host -phototag.org: could not connect to host +phototag.org: did not receive HSTS header php-bach.org: could not connect to host +phpdistribution.com: did not receive HSTS header phperformances.fr: did not receive HSTS header phpfashion.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +phr34kz.pw: did not receive HSTS header phrasing.me: could not connect to host +phryneas.de: did not receive HSTS header +phumin.in.th: did not receive HSTS header phuong.faith: could not connect to host -physicaltherapist.com: did not receive HSTS header pi-box.ml: could not connect to host 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 @@ -10780,45 +12075,56 @@ picscare.co.uk: did not receive HSTS header picshare.nz: could not connect to host pidatacenters.com: did not receive HSTS header pidomex.com: did not receive HSTS header +piedfeed.com: did not receive HSTS header 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 +piils.fr: did not receive HSTS header +pikalongwar.com: did not receive HSTS header +pikimusic.moe: could not connect to host 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 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 +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 pirateahoy.eu: could not connect to host -piratebit.tech: max-age too low: 0 +piratebay.ml: could not connect to host +piratebit.tech: could not connect to host piratedb.com: could not connect to host piratedot.com: could not connect to host piratelist.online: could not connect to host piratenlogin.de: could not connect to host piratepay.io: could not connect to host piratepay.ir: could not connect to host -pirateproxy.pe: could not connect to host +pirateproxy.pe: max-age too low: 0 pirateproxy.sx: did not receive HSTS header pirateproxy.vip: could not connect to host pirati.cz: max-age too low: 604800 piratte.net: did not receive HSTS header -pirganj24.com: did not receive HSTS header -pirlitu.com: could not connect to host +pirganj24.com: could not connect to host +pirlitu.com: did not receive HSTS header pisexy.me: did not receive HSTS header pisidia.de: could not connect to host pitchup.com: did not receive HSTS header @@ -10826,67 +12132,83 @@ pitonarms.com: could not connect to host pitsstop.nu: 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 +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 pixi.chat: could not connect to host pixi.me: did not receive HSTS header -pixlfox.com: could not connect to host +pizala.de: could not connect to host pizzadoc.ch: could not connect to host +pj00100.com: could not connect to host +pj00200.com: did not receive HSTS header +pj00300.com: did not receive HSTS header +pj00400.com: did not receive HSTS header +pj00600.com: did not receive HSTS header +pj00700.com: did not receive HSTS header +pj00800.com: did not receive HSTS header +pj009.com: did not receive HSTS header +pj00900.com: did not receive HSTS header +pj02.com: did not receive HSTS header pj83.duckdns.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] pj881988.com: could not connect to host -pjbet.mg: did not receive HSTS header -pjili.com: did not receive HSTS header +pjbet.mg: could not connect to host +pjsec.tk: could not connect to host pkautodesign.com: did not receive HSTS header +pkbjateng.or.id: could not connect to host +pko.ch: did not receive HSTS header pkschat.com: could not connect to host +pksps.com: could not connect to host plaasprodukte.com: could not connect to host placefade.com: could not connect to host placehold.co: did not receive HSTS header placollection.org: could not connect to host plaettliaktion.ch: did not receive HSTS header plagiarismcheck.org: max-age too low: 604800 +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 planete-secu.com: could not connect to host planetromeo.com: could not connect to host planktonholland.com: did not receive HSTS header planpharmacy.com: could not connect to host plant.ml: could not connect to host -plantroon.com: could not connect to host +plantroon.com: did not receive HSTS header plass.hamburg: could not connect to host +plasti-pac.ch: did not receive HSTS header plasvilledescartaveis.com.br: could not connect to host platform.lookout.com: could not connect to host +platinumpeek.com: did not receive HSTS header platomania.eu: did not receive HSTS header play: could not connect to host play.google.com: did not receive HSTS header (error ignored - included regardless) playdreamcraft.com.br: did not receive HSTS header playerhunter.com: did not receive HSTS header -playflick.com: did not receive HSTS header +playflick.com: could not connect to host +playkh.com: did not receive HSTS header playmaker.io: did not receive HSTS header playmaza.live: did not receive HSTS header 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 -pleaseuseansnisupportedbrowser.ml: could not connect to host -pleasure-science.com: could not connect to host +playyou.be: could not connect to host +please-deny.me: 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 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 +ploader.ru: max-age too low: 604800 plogable.co: could not connect to host plomberierenga.com: max-age too low: 2592000 plombirator.kz: did not receive HSTS header @@ -10895,12 +12217,18 @@ 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: could not connect to host +plumbingboksburg.co.za: did not receive HSTS header +plumbingman.com.au: did not receive HSTS header +plumplat.com: did not receive HSTS header +plus-digital.net: did not receive HSTS header plus-u.com.au: did not receive HSTS header plus.sandbox.google.com: did not receive HSTS header (error ignored - included regardless) plus1s.tk: could not connect to host +plushev.com: did not receive HSTS header plussizereviews.com: could not connect to host plut.org: did not receive HSTS header +pluth.org: did not receive HSTS header +plymouthglassgallery.com: did not receive HSTS header plymouthsoftplay.co.uk: could not connect to host pm13-media.cz: could not connect to host pmac.pt: could not connect to host @@ -10908,19 +12236,21 @@ pmbremer.de: 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 pneusgppremium.com.br: did not receive HSTS header pnukee.com: did not receive HSTS header po.gl: could not connect to host pocakdrops.com: did not receive HSTS header 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 pogoswine.com: could not connect to host pogs.us: could not connect to host poiema.com.sg: did not receive HSTS header @@ -10928,6 +12258,7 @@ 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 pokeduel.me: did not receive HSTS header pokomichi.com: did not receive HSTS header @@ -10950,45 +12281,66 @@ pollpodium.nl: could not connect to host polsport.live: did not receive HSTS header polycoise.com: could not connect to host polycrypt.us: could not connect to host -polymorph.rs: could not connect to host polypho.nyc: could not connect to host polysage.org: could not connect to host polytechecosystem.vc: could not connect to host +pomardaserra.com: could not connect to host pomfe.co: could not connect to host pompefunebrilariviera.it: could not connect to host pompompoes.com: did not receive HSTS header pondof.fish: could not connect to host -poneytelecom.org: did not receive HSTS header +poneytelecom.org: could not connect to host 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 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 +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 -pornstars.me: could not connect to host +pornimg.net: could not connect to host +pornless.biz: could not connect to host +pornmax.net: could not connect to host +porno-gif.ru: could not connect to host +pornohub.su: could not connect to host +pornolab-net.appspot.com: could not connect to host +pornoserver.eu: could not connect to host +pornport.org: could not connect to host +pornsocket.com: could not connect to host +pornstars.me: did not receive HSTS header +pornteddy.com: could not connect to host +pornultra.net: could not connect to host porschen.fr: could not connect to host port.social: could not connect to host +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 +portaluniversalista.org: did not receive HSTS header +portalveneza.com.br: did not receive HSTS header +portalzine.de: did not receive HSTS header portefeuillesignalen.nl: did not receive HSTS header +portraitsystem.biz: did not receive HSTS header poshpak.com: max-age too low: 86400 positivesobrietyinstitute.com: did not receive HSTS header +post.we.bs: did not receive HSTS header post4me.at: could not connect to host postback.io: did not receive HSTS header postcardpayment.com: could not connect to host @@ -10997,20 +12349,17 @@ 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 -potenzmittel-levitra.com: max-age too low: 300 -potenzmittel-webshop.com: max-age too low: 3600 potenzmittelblog.info: could not connect to host -potenzpillen-kaufen.biz: did not receive HSTS header -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 pourmesloisirs.com: could not connect to host pourout.org: did not receive HSTS header poussinooz.fr: could not connect to host @@ -11028,50 +12377,62 @@ powersergunited.com: could not connect to host powersergunited.org: could not connect to host powershellmagic.com: could not connect to host powershift.ne.jp: did not receive HSTS header -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 -pozzo-balbi.com: did not receive HSTS header -ppoozl.com: could not connect to host +pozzitiv.ro: could not connect to host +pozzo-balbi.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 +ppy.la: could not connect to host ppy3.com: did not receive HSTS header -practicallabs.com: could not connect to host practodev.com: could not connect to host pratinav.xyz: could not connect to host prattpokemon.com: could not connect to host -praxis-research.info: did not receive HSTS header +praxis-research.info: could not connect to host +prazeresdavida.com.br: could not connect to host precedecaritas.com.br: could not connect to host precisionaeroimaging.com: did not receive HSTS header prediksisydney.com: could not connect to host +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 +preio.cn: could not connect to host preisser-it.de: did not receive HSTS header preisser.it: did not receive HSTS header -preissler.co.uk: could not connect to host prekladysanca.cz: could not connect to host prelist.org: did not receive HSTS header +premaritalsex.info: could not connect to host 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 prescriptionrex.com: did not receive HSTS header +presentesdegrife.com.br: could not connect to host presidentials2016.com: could not connect to host press-anime-nenkan.com: did not receive HSTS header -press-presse.ca: did not receive HSTS header -pressenews.net: did not receive HSTS header +pressakey.de: did not receive HSTS header +pressenews.net: could not connect to host pressfreedomfoundation.org: did not receive HSTS header +prestburyscouts.org.uk: did not receive HSTS header prestigeeventshire.co.uk: could not connect to host +prestonapp.com: could not connect to host prettygrouse.com: did not receive HSTS header prettyphotoart.de: did not receive HSTS header prettytunesapp.com: could not connect to host +pretwolk.nl: could not connect to host pretzlaff.info: did not receive HSTS header preworkout.me: could not connect to host prgslab.net: could not connect to host @@ -11080,10 +12441,11 @@ pridoc.se: did not receive HSTS header prifo.se: could not connect to host prijsvergelijken.ml: could not connect to host prilock.com: did not receive HSTS header -primaconsulting.net: could not connect to host primecaplending.com: could not connect to host +primordialsnooze.com: could not connect to host primotiles.co.uk: did not receive HSTS header -prinbanat.ngo: could not connect to host +prinbanat.ngo: did not receive HSTS header +princeagency.com: could not connect to host princeofwhales.com: did not receive HSTS header princessbackpack.de: could not connect to host princessmargaretlotto.com: did not receive HSTS header @@ -11091,12 +12453,10 @@ 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 priolkar.com: could not connect to host prism-communication.com: could not connect to host pristineevents.co.uk: did not receive HSTS header pritchett.xyz: could not connect to host -privacyforjournalists.org.au: 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 @@ -11105,16 +12465,20 @@ privategiant.com: could not connect to host privatstunden.express: 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-image.de: did not receive HSTS header pro-zone.com: could not connect to host +proact-it.co.uk: could not connect to host proactive.run: could not connect to host +procens.us: could not connect to host procode.gq: could not connect to host 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 profi-durchgangsmelder.de: did not receive HSTS header profinetz.de: could not connect to host @@ -11123,7 +12487,7 @@ profloorstl.com: did not receive HSTS header 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 @@ -11134,23 +12498,23 @@ 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-splash.com: max-age too low: 0 project-stats.com: could not connect to host projectascension.io: could not connect to host projectasterk.com: could not connect to host +projectcastle.tech: did not receive HSTS header projectdp.net: could not connect to host projectherogames.xyz: could not connect to host projectl1b1t1na.tk: could not connect to host projectmercury.space: could not connect to host projectte.ch: could not connect to host projectvault.ovh: did not receive HSTS header -projectx.top: did not receive HSTS header +projectx.top: could not connect to host projekt-umbriel.de: could not connect to host projektik.cz: did not receive HSTS header projektzentrisch.de: could not connect to host projetoresecia.com: could not connect to host prokop.ovh: could not connect to host -prolan.pw: 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 @@ -11158,6 +12522,7 @@ 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 @@ -11170,31 +12535,37 @@ 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 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 +protempore.fr: 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] -proveits.me: could not connect to host -provisionaldriving.com: could not connect to host -provitacare.com: could not connect to host +provence-appartements.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: max-age too low: 0 proxybay.info: did not receive HSTS header -proxybay.top: max-age too low: 0 +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 +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 @@ -11205,7 +12576,6 @@ ps-qa.com: could not connect to host ps-x.ru: could not connect to host pscleaningsolutions.co.uk: could not connect to host pseudo.coffee: could not connect to host -pshostpk.com: did not receive HSTS header psicologia.co.ve: could not connect to host psicologoforensebarcelona.com: did not receive HSTS header psicosalud.online: could not connect to host @@ -11218,7 +12588,6 @@ 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 psynapse.net.au: could not connect to host ptn.moscow: could not connect to host ptonet.com: could not connect to host @@ -11248,11 +12617,13 @@ punchr-kamikazee.rhcloud.com: could not connect to host punchunique.com: did not receive HSTS header punkdns.top: could not connect to host puppydns.com: did not receive HSTS header -purahealthyliving.com: could not connect to host +purahealthyliving.com: did not receive HSTS header purbd.com: did not receive HSTS header +pureessentialoil.biz: max-age too low: 300 +pureholisticliving.me: could not connect to host purewebmasters.com: could not connect to host +purikore.com: could not connect to host purplehippie.in: did not receive HSTS header -purplez.pw: did not receive HSTS header purpoz.com.br: could not connect to host purpspc.com: could not connect to host purrfectcams.com: did not receive HSTS header @@ -11284,65 +12655,79 @@ pzme.me: could not connect to host q-rickroll-u.pw: could not connect to host q2.si: did not receive HSTS header q8mp3.me: did not receive HSTS header +qadmium.com: could not connect to host qadmium.tk: could not connect to host +qamrulhaque.com: could not connect to host qazcloud.com: could not connect to host +qbeing.info: could not connect to host qbik.de: did not receive HSTS header qbin.io: did not receive HSTS header qbnt.ca: could not connect to host -qccqld.org.au: could not connect to host +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 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 +qqrss.com: could not connect to host +qqvips.com: could not connect to host +qqvrsmart.cn: could not connect to host qrara.net: did not receive HSTS header qredo.com: did not receive HSTS header 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 qto.com: could not connect to host +qto.net: could not connect to host qto.org: could not connect to host +quaedam.org: could not connect to host quail.solutions: could not connect to host quakerlens.com: did not receive HSTS header quality1.com.br: did not receive HSTS header qualityology.com: did not receive HSTS header quanglepro.com: could not connect to host quangngaimedia.com: did not receive HSTS header -quanjinlong.cn: could not connect to host +quanjinlong.cn: did not receive HSTS header quantacloud.ch: 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: could not connect to host quarryhillrentals.com: did not receive HSTS header +quarus.net: could not connect to host quebecmailbox.com: could not connect to host queenbrownie.com.br: could not connect to host queenshaflo.com: could not connect to host quelmandataire.fr: did not receive HSTS header +querkommentar.de: could not connect to host queroreceitasoberana.com.br: did not receive HSTS header queryplayground.com: could not connect to host +questionable.host: could not connect to host questions-admin.com: did not receive HSTS header questionyu.com: did not receive HSTS header questsandrewards.com: could not connect to host @@ -11350,6 +12735,7 @@ quic.fr: did not receive HSTS header quickandroid.tools: could not connect to host quickpayservice.com: could not connect to host quietus.gq: could not connect to host +quikrmovies.to: could not connect to host quikstorhawaii.com: max-age too low: 300 quimsertek.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] quizionic.com: could not connect to host @@ -11359,53 +12745,57 @@ quotehex.com: could not connect to host quotemaster.co.za: could not connect to host quranserver.net: could not connect to host qwallet.ca: did not receive HSTS header +qwaser.fr: could not connect to host +qweepi.de: could not connect to host +qwertyatom100.me: could not connect to host qwilink.me: did not receive HSTS header -qybot.cc: could not connect to host +qybot.cc: did not receive HSTS header r-ay.club: did not receive HSTS header -r-ay.cn: 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 r10n.com: did not receive HSTS header r15.me: did not receive HSTS header -r18.moe: did not receive HSTS header -r3bl.me: could not connect to host +r18.moe: could not connect to host +r3nt3r.com: did not receive HSTS header r40.us: 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] -rabotaescort.com: could not connect to host racasdecachorro.org: could not connect to host +raceviewcycles.com: could not connect to host +raceviewequestrian.com: could not connect to host rackblue.com: could not connect to host racktear.com: did not receive HSTS header -racoo.net: did not receive HSTS header -rad-route.de: did not receive HSTS header +raconteur.net: did not receive HSTS header +rad-route.de: could not connect to host raddavarden.nu: could not connect to host radicaleducation.net: could not connect to host -radioheteroglossia.com: did not receive HSTS header -radiorsvp.com: could not connect to host +radtke.bayern: did not receive HSTS header rafaelcz.de: could not connect to host ragingserenity.com: did not receive HSTS header 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.rocks: could not connect to host -railgun.com.cn: could not connect to host +raiffeisen-kosovo.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +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 +rakugaki.cn: could not connect to host ramarka.de: could not connect to host -ramezanloo.com: could not connect to host -ramitmittal.com: 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 ramon-c.nl: could not connect to host ramonj.nl: could not connect to host -ramsor-gaming.de: could not connect to host randomcage.com: did not receive HSTS header randomcloud.net: could not connect to host randomhero.cloud: could not connect to host @@ -11415,19 +12805,20 @@ ranegroup.hosting: could not connect to host rankthespot.com: could not connect to host 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.pw: could not connect to host -rapidemobile.com: 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 +rasing.me: could not connect to host raspass.me: did not receive HSTS header raspberry.us: could not connect to host -raspberryultradrops.com: did not receive HSTS header rastreador.com.es: did not receive HSTS header +rastreie.net: did not receive HSTS header ratajczak.fr: could not connect to host rate-esport.de: could not connect to host rathorian.fr: could not connect to host @@ -11438,12 +12829,13 @@ ratuseks.us: could not connect to host rauchenwald.net: could not connect to host raucris.ro: could not connect to host raulfraile.net: could not connect to host +rautermods.net: could not connect to host ravage.fm: did not receive HSTS header raven.lipetsk.ru: could not connect to host ravengergaming.ga: could not connect to host ravengergaming.net: could not connect to host ravenx.me: could not connect to host -ravkr.duckdns.org: max-age too low: 360000 +ravkr.duckdns.org: could not connect to host ravse.dk: could not connect to host raw-diets.com: did not receive HSTS header rawet.se: could not connect to host @@ -11461,18 +12853,20 @@ rbhighinc.org: could not connect to host rbose.org: could not connect to host rbqcloud.com: could not connect to host rbti.me: could not connect to host +rbtvshitstorm.is: did not receive HSTS header rbxcatalog.com: could not connect to host rc4.io: could not connect to host rc7.ch: could not connect to host rcafox.com: could not connect to host -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 rdyrda.fr: could not connect to host re-customer.net: could not connect to host re-wilding.com: could not connect to host @@ -11480,10 +12874,12 @@ reachr.com: could not connect to host reactdatepicker.com: did not receive HSTS header reactor92.com: could not connect to host reader.ga: could not connect to host +readify.com.au: did not receive HSTS header readism.io: could not connect to host -readityourself.net: 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 @@ -11491,29 +12887,32 @@ 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 +realincest.tv: could not connect to host really.io: could not connect to host 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 -realum.com: could not connect to host -realum.de: could not connect to host -realum.eu: could not connect to host -realum.net: 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 recetasfacilesdehacer.com: did not receive HSTS header rechat.com: did not receive HSTS header rechenwerk.net: could not connect to host -recommended.reviews: could not connect to host +recht-freundlich.de: did not receive HSTS header +rechtenliteratuurleiden.nl: could not connect to host recompiled.org: max-age too low: 7776000 +recreation.gov: did not receive HSTS header recruitsecuritytraining.co.uk: could not connect to host recruitsecuritytraining.com: could not connect to host rectoraudiparts.com: could not connect to host @@ -11529,26 +12928,26 @@ redhorsemountainranch.com: did not receive HSTS header redicabo.de: could not connect to host 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 redmbk.com: did not receive HSTS header +redneck-gaming.de: did not receive HSTS header redner.cc: did not receive HSTS header 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 redstarsurf.com: did not receive HSTS header reducerin.ro: did not receive HSTS header -redwoodpaddle.es: did not receive HSTS header -redwoodpaddle.pt: could not connect to host redy.host: 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 @@ -11563,61 +12962,64 @@ 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 +registryplus.nl: did not receive HSTS header regoul.com: did not receive HSTS header regsec.com: could not connect to host rehabthailand.nl: could not connect to host -rei.ki: did not receive HSTS header 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 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 -relaxhavefun.com: 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: could not connect to host -remedioskaseros.com: did not receive HSTS header remedium.de: could not connect to host remedyrehab.com: did not receive HSTS header rememberthis.co.za: could not connect to host 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 +reneclemens.nl: could not connect to host rengarenkblog.com: could not connect to host renideo.fr: could not connect to host renkhosting.com: could not connect to host +renlen.nl: 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 rentacarcluj.xyz: did not receive HSTS header +rentalmed.com.br: 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 +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 @@ -11633,11 +13035,15 @@ reporturi.io: did not receive HSTS header 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 +reprolife.co.uk: did not receive HSTS header +reptilauksjonen.no: could not connect to host +republicmo.gov: could not connect to host +repustate.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] reqognize.com: could not connect to host +request-trent.com: could not connect to host res-rheingau.de: did not receive HSTS header res42.com: could not connect to host +resc.la: could not connect to host research.md: could not connect to host reseponline.info: did not receive HSTS header reserve-online.net: did not receive HSTS header @@ -11655,17 +13061,19 @@ restaurantmangal.ch: could not connect to host restchart.com: did not receive HSTS header restioson.me: could not connect to host restopro.nyc: did not receive HSTS header -restoreresearchstudy.com: did not receive HSTS header +restoreresearchstudy.com: could not connect to host resultsdate.news: could not connect to host retcor.net: could not connect to host reth.ch: could not connect to host +retireyourpassword.org: did not receive HSTS header +retogroup.com: could not connect to host retropage.co: did not receive HSTS header retrowave.eu: could not connect to host rets.org.br: did not receive HSTS header 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 -revapost.fr: 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 @@ -11673,32 +13081,41 @@ reverie.pw: could not connect to host review.info: did not receive HSTS header reviewbestseller.com: did not receive HSTS header reviewjust.com: did not receive HSTS header -reviewspedia.org: could not connect to host +reviewspedia.org: did not receive HSTS header revistapequenosolhares.com.br: could not connect to host revolutionhive.com: could not connect to host revtut.net: could not connect to host 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 rhering.de: could not connect to host +rhetthenckel.com: max-age too low: 0 rhiskiapril.com: did not receive HSTS header +rhodes.ml: could not connect to host rhodesianridgeback.com.br: could not connect to host rhodosdreef.nl: could not connect to host riaucybersolution.net: did not receive HSTS header ribopierre.fr: could not connect to host -ricardo.nu: could not connect to host riceglue.com: could not connect to host richamorindonesia.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] richardb.me: could not connect to host -richardbloomfield.blog: did not receive HSTS header +richardcrosby.co.uk: did not receive HSTS header +richardharpur.com: did not receive HSTS header +richardhicks.us: could not connect to host richeza.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +richie.link: did not receive HSTS header 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 +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 @@ -11707,12 +13124,13 @@ 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 +riesenmagnete.de: could not connect to host rievo.net: did not receive HSTS header +rigabeerbike.lv: could not connect to host right-to-love.name: did not receive HSTS header right2.org: could not connect to host righteousendeavour.com: could not connect to host @@ -11720,14 +13138,15 @@ righttoknow.ie: 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 +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 +ripple.com: did not receive HSTS header rippleunion.com: could not connect to host -riqy86.nl: could not connect to host -ris.fi: 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 @@ -11740,21 +13159,25 @@ rivermendhealthcenters.com: did not receive HSTS header riversideauto.net: did not receive HSTS header riverstyxgame.com: could not connect to host rivlo.com: could not connect to host +rixzz.ovh: could not connect to host rj.gg: could not connect to host 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 +roaddoc.de: did not receive HSTS header roadfeast.com: could not connect to host roan24.pl: did not receive HSTS header +rob.uk.com: did not receive HSTS header robertabittle.com: could not connect to host -robertayamashita.com: could not connect to host -robertayamashita.com.br: could not connect to host -robertbln.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 @@ -11765,54 +13188,63 @@ 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 +rocket-wars.de: did not receive HSTS header rocketnet.ml: could not connect to host rockeyscrivo.com: did not receive HSTS header rocksberg.net: could not connect to host rockz.io: did not receive HSTS header rodarion.pl: could not connect to host rodehutskors.net: could not connect to host +rodinneodpoledne2018.cz: did not receive HSTS header rodney.id.au: did not receive HSTS header -rodneybrooksjr.com: did not receive HSTS header rodosto.com: did not receive HSTS header +roelbazuin.com: did not receive HSTS header roelf.org: did not receive HSTS header roeper.party: could not connect to host roesemann.email: could not connect to host +roffe.nu: did not receive HSTS header rofrank.space: could not connect to host rogeiro.net: could not connect to host rogerdat.ovh: could not connect to host +roguefortgame.com: could not connect to host +rohanbassett.com: could not connect to host rohankrishnadev.in: could not connect to host rohlik.cz: did not receive HSTS header +roiscroll.com: did not receive HSTS header roketix.co.uk: did not receive HSTS header -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] 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: could not connect to host romanticschemermovie.com: 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 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 +ronvandordt.info: could not connect to host ronwo.de: max-age too low: 1 -roo.ie: could not connect to host +roo.ie: did not receive HSTS header rool.me: did not receive HSTS header roolevoi.ru: could not connect to host room-checkin24.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] roosteroriginals.com: could not connect to host +roosterpgplus.nl: did not receive HSTS header rootbsd.at: could not connect to host rootforum.org: did not receive HSTS header rootrelativity.com: could not connect to host 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 @@ -11822,6 +13254,7 @@ rospa100.com: did not receive HSTS header rossclark.com: did not receive HSTS header rossen.be: 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 @@ -11834,15 +13267,18 @@ 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 +royal876.com: could not connect to host royalhop.co: could not connect to host royalpub.net: did not receive HSTS header royalsignaturecruise.com: could not connect to host +royaltube.net: could not connect to host roychan.org: max-age too low: 0 royzez.com: could not connect to host rozalisbengal.ro: could not connect to host rozeapp.nl: could not connect to host rpasafrica.com: could not connect to host rr.in.th: could not connect to host +rritv.com: could not connect to host rrke.cc: did not receive HSTS header rrom.me: did not receive HSTS header rs-devdemo.host: could not connect to host @@ -11851,29 +13287,30 @@ rsampaio.info: did not receive HSTS header rsf.io: could not connect to host rsi.im: did not receive HSTS header rskuipers.com: did not receive HSTS header +rsldb.com: could not connect to host rsmaps.org: could not connect to host -rstraining.co.uk: could not connect to host +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 rtho.me: did not receive HSTS header rtvi.com: did not receive HSTS header +ru-music.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] rubbereggs.ca: could not connect to host rubbix.net: could not connect to host -rubbleremovalsbenoni.co.za: did not receive HSTS header rubecodeberg.com: could not connect to host -ruben.am: did not receive HSTS header rubendv.be: did not receive HSTS header rubens.cloud: did not receive HSTS header -rubenschulz.nl: could not connect to host +rubenschulz.nl: did not receive HSTS header rubi-ka.net: max-age too low: 0 ruborr.se: did not receive HSTS header -ruby-auf-schienen.de: could not connect to host rubysecurity.org: did not receive HSTS header rubyshop.nl: could not connect to host -rucnerobene.eu: could not connect to host +rudelune.fr: could not connect to host rudeotter.com: did not receive HSTS header -rue-de-la-vieille.fr: max-age too low: 0 +ruderverein-gelsenkirchen.de: could not connect to host +rue-de-la-vieille.fr: did not receive HSTS header +rueg.eu: could not connect to host ruflay.ru: could not connect to host rugirlfriend.com: could not connect to host rugs.ca: did not receive HSTS header @@ -11883,27 +13320,30 @@ ruig.jp: could not connect to host ruitershoponline.nl: did not receive HSTS header ruja.dk: did not receive HSTS header rukhaiyar.com: could not connect to host +rullzer.com: did not receive HSTS header +rumlager.de: max-age too low: 600000 rummel-platz.de: could not connect to host rumoterra.com.br: could not connect to host run-forrest.run: could not connect to host runawebinar.nl: could not connect to host runcarina.com: could not connect to host rundumcolumn.xyz: could not connect to host -runementors.com: could not connect to host runhardt.eu: did not receive HSTS header runtl.com: did not receive HSTS header runtondev.com: did not receive HSTS header ruobiyi.com: could not connect to host ruqu.nl: could not connect to host rusadmin.biz: did not receive HSTS header +rushball.net: could not connect to host rusl.me: could not connect to host -rusmolotok.ru: could not connect to host russmarshall.com: could not connect to host rustbyexample.com: did not receive HSTS header rustfanatic.com: did not receive HSTS header ruurdboomsma.nl: could not connect to host ruxit.com: did not receive HSTS header +rva.gov: could not connect to host rvg.zone: could not connect to host +rvolve.net: could not connect to host rw-solutions.tech: could not connect to host rwanderlust.com: did not receive HSTS header rxprep.com: did not receive HSTS header @@ -11921,54 +13361,64 @@ 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 s1mplescripts.de: could not connect to host +s1ris.org: did not receive HSTS header s3cases.com: did not receive HSTS header s3n.se: could not connect to host -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 -sabtunes.com: did not receive HSTS header sac-shop.com: did not receive HSTS header +sacharidovejednotky.eu: did not receive HSTS header +sachk.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] saco-ceso.com: could not connect to host sadiejanehair.com: could not connect to host +saenforcement.agency: could not connect to host safari-afrique.com: did not receive HSTS header -safe.moe: did not receive HSTS header +safe.space: could not connect to host safedevice.net: did not receive HSTS header safelist.eu: did not receive HSTS header safemovescheme.co.uk: could not connect to host +safemt.gov: could not connect to host safepay.io: could not connect to host saferedirect.link: could not connect to host saferedirectlink.com: could not connect to host safersurfing.eu: did not receive HSTS header safesecret.info: did not receive HSTS header -safetyrisk.net: did not receive HSTS header safewings-nh.nl: could not connect to host +safezone.cc: max-age too low: 0 safing.me: could not connect to host -safnah.com: did not receive HSTS header +safnah.com: could not connect to host sagarhandicraft.com: could not connect to host +sagemontchurch.org: did not receive HSTS header sageth.com: could not connect to host sah3.net: could not connect to host sail-nyc.com: did not receive HSTS header saint-astier-triathlon.com: did not receive HSTS header saintjohnlutheran.church: did not receive HSTS header +saintmichelqud.com: did not receive HSTS header saintw.com: could not connect to host sairai.bid: could not connect to host -saitrance.com: 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 +sakuraplay.com: did not receive HSTS header salaervergleich.com: did not receive HSTS header sale.sh: could not connect to host +saleaks.org: could not connect to host salearnership.co.za: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] saleslift.pl: did not receive HSTS header +salishseawhalewatching.ca: could not connect to host +salixcode.com: could not connect to host sallysubs.com: could not connect to host +salmo23.com.br: could not connect to host +salon-claudia.ch: could not connect to host salonestella.it: could not connect to host salserocafe.com: did not receive HSTS header salserototal.com: could not connect to host saltedskies.com: could not connect to host saltra.online: could not connect to host +saltro.nl: did not receive HSTS header salvaalocombia.com: could not connect to host salverainha.org: could not connect to host salzamt.tk: could not connect to host @@ -11976,35 +13426,41 @@ samanthahumphreysstudio.com: did not receive HSTS header 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 saml2.com: could not connect to host samlamac.com: could not connect to host samm.com.au: did not receive HSTS header +sammenlignakasser.dk: did not receive HSTS header sammyjohnson.com: could not connect to host samp.im: could not connect to host sampcup.com: could not connect to host -sampoznay.ru: did not receive HSTS header +sampoznay.ru: could not connect to host samraskauskas.com: could not connect to host +samrobertson.co.uk: 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 +samvanderkris.com: could not connect to host sanael.net: could not connect to host +sanalbayrak.com: could not connect to host +sanandreasstories.com: did not receive HSTS header sanasalud.org: could not connect to host sanatfilan.com: did not receive HSTS header sanatrans.com: could not connect to host -sand-islets.de: did not receive HSTS header +sanderknape.com: did not receive HSTS header +sandhaufen.tk: could not connect to host sandviks.com: did not receive HSTS header -sanglierhurlant.fr: could not connect to host sanguoxiu.com: could not connect to host sanhei.ch: did not receive HSTS header -sanik.my: did not receive HSTS header +sanik.my: could not connect to host +sanipousse.com: 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 @@ -12016,22 +13472,24 @@ 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 sarangsemutbandung.com: could not connect to host sarindia.com: could not connect to host sarindia.de: could not connect to host -sarink.eu: 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 -saro.me: did not receive HSTS header saruwebshop.co.za: could not connect to host sat.rent: did not receive HSTS header sat7a-riyadh.com: did not receive HSTS header @@ -12045,8 +13503,8 @@ satrent.se: did not receive HSTS header satriyowibowo.my.id: did not receive HSTS header 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 @@ -12054,22 +13512,25 @@ 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 +saxotex.de: did not receive HSTS header 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 @@ -12077,6 +13538,7 @@ sby.de: did not receive HSTS header sc4le.com: could not connect to host scaffoldhirefourways.co.za: did not receive HSTS header scaffoldhirerandburg.co.za: did not receive HSTS header +scaffoldhiresandton.co.za: did not receive HSTS header scala.click: did not receive HSTS header scannabi.com: could not connect to host 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] @@ -12087,18 +13549,18 @@ schalkoortbv.nl: 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 -schefczyk.com: could not connect to host -schefczyk.de: could not connect to host -schefczyk.eu: could not connect to host schermreparatierotterdam.nl: did not receive HSTS header +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] -schneider-electric.tg: could not connect to host +schneider-electric.tg: did not receive HSTS header schnell-abnehmen.tips: did not receive HSTS header schnell-gold.com: did not receive HSTS header scholl.io: could not connect to host +school.in.th: could not connect to host schooli.io: could not connect to host schooltrends.co.uk: did not receive HSTS header schoolze.com: did not receive HSTS header @@ -12109,10 +13571,13 @@ schreiber-netzwerk.eu: did not receive HSTS header schreibnacht.de: did not receive HSTS header schreinerei-wortmann.de: did not receive HSTS header schrikdraad.net: did not receive HSTS header +schritt4fit.de: did not receive HSTS header 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 +schutterijschinveld.nl: could not connect to host schwarzkopfforyou.de: did not receive HSTS header schwarzwaldcon.de: could not connect to host schweiz.guide: could not connect to host @@ -12140,6 +13605,7 @@ 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 +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 @@ -12148,7 +13614,6 @@ scramble.io: did not receive HSTS header scrambler.in: could not connect to host scrapings.net: could not connect to host screencaster.io: did not receive HSTS header -screenplay.jp: max-age too low: 0 screenresolution.space: could not connect to host screensaversplanet.com: did not receive HSTS header scribbleserver.com: could not connect to host @@ -12161,15 +13626,16 @@ scriptict.nl: could not connect to host scriptjunkie.us: could not connect to host scrollstory.com: did not receive HSTS header scruffymen.com: could not connect to host -scrumbleship.com: did not receive HSTS header -sctm.at: could not connect to host +scrumplex.net: did not receive HSTS header sdhmanagementgroup.com: could not connect to host sdia.ru: could not connect to host sdl-corporatesite-staging.azurewebsites.net: did not receive HSTS header sdmoscow.ru: could not connect to host +sdocast.com: could not connect to host sdrobs.com: did not receive HSTS header sdsl-speedtest.de: could not connect to host se7ensins.com: did not receive HSTS header +sea-godzilla.com: could not connect to host seadus.ee: could not connect to host seanationals.org: did not receive HSTS header seanchaidh.org: could not connect to host @@ -12177,19 +13643,27 @@ 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] sebastian-bair.de: could not connect to host +sebastian-lutsch.de: could not connect to host sebastian-schmidt.me: did not receive HSTS header sebastianhampl.de: could not connect to host sebastianpedersen.com: did not receive HSTS header sebastiensenechal.com: did not receive HSTS header sebi.cf: could not connect to host sebster.com: did not receive HSTS header +sec44.com: could not connect to host +sec44.net: could not connect to host +sec44.org: could not connect to host +sec4share.me: did not receive HSTS header secandtech.com: could not connect to host +secanje.nl: did not receive HSTS header seccomp.ru: did not receive HSTS header seceye.cn: could not connect to host +secitem.at: did not receive HSTS header secitem.de: could not connect to host +secitem.eu: did not receive HSTS header secnet.ga: could not connect to host secondary-survivor.com: could not connect to host secondary-survivor.help: could not connect to host @@ -12203,9 +13677,9 @@ secondpay.nl: could not connect to host secondspace.ca: 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 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 @@ -12225,6 +13699,10 @@ 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 securityglance.com: could not connect to host securityinet.biz: did not receive HSTS header @@ -12232,11 +13710,15 @@ 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 +securitystrata.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 +securitywithoutborders.org: could not connect to host 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 @@ -12249,6 +13731,7 @@ seehimnaked.com: could not connect to host seehimnude.com: could not connect to host seehisnudes.com: could not connect to host seele.ca: could not connect to host +seemeasaperson.com: did not receive HSTS header seen.life: could not connect to host sehenderson.com: did not receive HSTS header seida.at: could not connect to host @@ -12265,7 +13748,6 @@ seleondar.ru: 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: could not connect to host selfserverx.com: could not connect to host selitysvideot.fi: did not receive HSTS header selldorado.com: could not connect to host @@ -12280,6 +13762,7 @@ 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 +senemusique.com: did not receive HSTS header senmonsyoku.top: did not receive HSTS header sens2lavie.com: did not receive HSTS header senseofnumber.co.uk: did not receive HSTS header @@ -12287,10 +13770,13 @@ 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 +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 seohochschule.de: could not connect to host +seokay.com: did not receive HSTS header +seolaba.io: could not connect to host seomarketingdeals.com: did not receive HSTS header seomen.biz: could not connect to host seomobo.com: could not connect to host @@ -12303,15 +13789,16 @@ sep23.ru: could not connect to host 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 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 +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 servecrypt.com: could not connect to host servecrypt.net: could not connect to host servecrypt.ru: could not connect to host @@ -12325,35 +13812,49 @@ serverlauget.no: could not connect to host servermonkey.nl: could not connect to host servfefe.com: could not connect to host servicevie.com: did not receive HSTS header +servpanel.de: did not receive HSTS header servu.de: did not receive HSTS header servx.ru: did not receive HSTS header +serwusik.pl: 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 setuid.de: could not connect to host setuid.io: 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 +sexplicit.co.uk: did not receive HSTS header sexshopfacil.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: could not connect to host +seydaozcan.com: did not receive HSTS header seyr.it: could not connect to host -seyr.me: could not connect to host sfashion.si: did not receive HSTS header +sfaturiit.ro: 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 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 -shadow-socks.org: could not connect to host +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 @@ -12378,24 +13879,32 @@ 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 shang-yu.cn: could not connect to host -shankangke.com: did not receive HSTS header shanxiapark.com: could not connect to host shanyhs.com: did not receive HSTS header shapesedinburgh.co.uk: did not receive HSTS header shardsoft.com: could not connect to host +shareeri.com: could not connect to host shareimg.xyz: could not connect to host sharejoy.cn: did not receive HSTS header +sharemessage.net: could not connect to host shareoine.com: did not receive HSTS header sharepass.pw: could not connect to host sharepic.xyz: could not connect to host sharesplitter.com: could not connect to host shareworx.net: could not connect to host sharezen.de: could not connect to host +shariahlawcenter.com: could not connect to host +shariahlawcenter.org: could not connect to host +sharialawcenter.com: could not connect to host +sharialawcenter.org: could not connect to host sharingcode.com: did not receive HSTS header sharpe-practice.co.uk: could not connect to host -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 @@ -12403,13 +13912,13 @@ shawnbsmith.me: did not receive HSTS header shawnh.net: could not connect to host shawnstarrcustomhomes.com: did not receive HSTS header shawnwilson.info: could not connect to host -shellj.me: did not receive HSTS header +shazbots.org: could not connect to host shellsec.pw: did not receive HSTS header -shengrenyu.com: could not connect to host +shemissed.me: did not receive HSTS header shentengtu.idv.tw: could not connect to host shep.co.il: did not receive HSTS header sheratan.web.id: could not connect to host -shereallyheals.com: could not connect to host +shereallyheals.com: did not receive HSTS header shermantank.biz: did not receive HSTS header shervik.ga: could not connect to host shethbox.com: could not connect to host @@ -12419,24 +13928,22 @@ shg-pornographieabhaengigkeit.de: did not receive HSTS header shiatsu-institut.ch: could not connect to host shibainu.com.br: could not connect to host shibe.club: 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 shiftnrg.org: did not receive HSTS header shiftplanning.com: did not receive HSTS header shiinko.com: could not connect to host shikinobi.com: did not receive HSTS header -shimo.im: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] shindorei.fr: could not connect to host shinebijoux.com.br: could not connect to host shinju.moe: could not connect to host -shinko-osaka.jp: could not connect to host shinobi-fansub.ro: could not connect to host shiona.xyz: could not connect to host shipinsight.com: did not receive HSTS header 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 +shirao.jp: could not connect to host shiroki-k.net: could not connect to host shirosaki.org: could not connect to host shiseki.top: did not receive HSTS header @@ -12448,9 +13955,9 @@ shlemenkov.by: could not connect to host shm-forum.org.uk: could not connect to host sho-tanaka.jp: did not receive HSTS header shocksrv.com: did not receive HSTS header +shoemuse.com: did not receive HSTS header shooshosha.com: could not connect to host shootpooloklahoma.com: could not connect to host -shopatkei.com: could not connect to host shopdopastor.com.br: could not connect to host shopherbal.co.za: could not connect to host shopods.com: did not receive HSTS header @@ -12464,12 +13971,14 @@ shorten.ninja: could not connect to host shortpath.com: could not connect to host shortr.li: could not connect to host shota.party: could not connect to host -shotonwhat.com: 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 +shoxmusic.net: did not receive HSTS header shred.ch: could not connect to host shredoptics.ch: could not connect to host shtorku.com: could not connect to host @@ -12489,44 +13998,51 @@ 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 -sictame-tigf.org: did not receive HSTS header +sicklepod.com: could not connect to host +sictame-tigf.org: 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 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 +signsdance.uk: could not connect to host sigsegv.run: did not receive HSTS header +sihaizixun.net: could not connect to host siikarantacamping.fi: did not receive HSTS header sijimi.cn: could not connect to host -sijmenschoon.nl: could not connect to host +sijmenschoon.nl: did not receive HSTS header sikatehtaat.fi: could not connect to host siku.pro: could not connect to host -silent.live: could not connect to host silentcircle.com: did not receive HSTS header silentcircle.org: could not connect to host silentexplosion.de: could not connect to host silentlink.io: could not connect to host -silentmode.com: max-age too low: 7889238 +silentmode.com: max-age too low: 0 silicagelpackets.ca: did not receive HSTS header +silke-hunde.de: did not receive HSTS header +silkon.net: max-age too low: 604800 silqueskineyeserum.com: could not connect to host 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.md: 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 @@ -12538,7 +14054,9 @@ 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 simpan.id: could not connect to host simpeo.fr: did not receive HSTS header @@ -12560,14 +14078,17 @@ sin30.net: could not connect to host sincai666.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 sinful.pw: could not connect to host singee.site: could not connect to host +singerwang.com: could not connect to host +singles-berlin.de: could not connect to host singul4rity.com: could not connect to host sinkip.com: 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 sintesysglobal.com: did not receive HSTS header sinusbot.online: did not receive HSTS header sion.moe: did not receive HSTS header @@ -12578,7 +14099,10 @@ 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 +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 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] @@ -12589,16 +14113,19 @@ sitennisclub.com: did not receive HSTS header siterip.org: could not connect to host sites.google.com: did not receive HSTS header (error ignored - included regardless) sitesforward.com: did not receive HSTS header -sitesko.de: did not receive HSTS header -sitesource101.com: did not receive HSTS header +sitesource101.com: could not connect to host sitesten.com: 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 -sjdaws.com: could not connect to host +sja-se-training.com: could not connect to host +sjdtaxi.com: did not receive HSTS header sjhyl11.com: could not connect to host sjsc.fr: did not receive HSTS header +sjsmith.id.au: did not receive HSTS header +sjzebs.com: did not receive HSTS header +sjzget.com: did not receive HSTS header +sjzybs.com: did not receive HSTS header skandiabanken.no: did not receive HSTS header skaraborgsassistans.com: did not receive HSTS header skarox.com: could not connect to host @@ -12607,6 +14134,8 @@ skarox.eu: could not connect to host skarox.net: could not connect to host skarox.ru: could not connect to host skates.guru: did not receive HSTS header +skday.com: did not receive HSTS header +sketchywebsite.net: max-age too low: 0 ski-insurance.com.au: did not receive HSTS header skidstresser.com: could not connect to host skiinstructor.services: did not receive HSTS header @@ -12614,6 +14143,7 @@ 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 +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 @@ -12623,27 +14153,33 @@ 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 +skomski.org: did not receive HSTS header skotty.io: did not receive HSTS header skpdev.net: could not connect to host +skrimix.tk: could not connect to host skrivande.co: could not connect to host -skullhouse.nyc: did not receive HSTS header +skullhouse.nyc: could not connect to host sky-aroma.com: could not connect to host skyasker.cn: could not connect to host -skyasker.com: did not receive HSTS header +skyasker.com: could not connect to host +skybloom.com: could not connect to host +skybound.link: did not receive HSTS header skyflix.me: could not connect to host 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: did not receive HSTS header 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 -sl1pkn07.wtf: could not connect to host -slab.com: did not receive HSTS header +sl1pkn07.wtf: max-age too low: 2592000 slaps.be: could not connect to host slash-dev.de: did not receive HSTS header slash64.co.uk: could not connect to host @@ -12653,46 +14189,58 @@ 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 +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 slightfuture.click: could not connect to host slightfuture.com: did not receive HSTS header 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 slope.haus: could not connect to host +slotboss.co.uk: did not receive HSTS header slovakiana.sk: did not receive HSTS header +slovenskycestovatel.sk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] slovoice.org: could not connect to host slowfood.es: did not receive HSTS header slowsociety.org: could not connect to host slse.ca: max-age too low: 0 +sluimann.de: could not connect to host sluplift.com: did not receive HSTS header -slycurity.de: did not receive HSTS header +slycurity.de: could not connect to host slytech.ch: could not connect to host smallcdn.rocks: could not connect to host smallchat.nl: could not connect to host -smalldata.tech: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -smallplanet.ch: could not connect to host +smallcloudsolutions.co.za: 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 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] +smartmeal.ru: 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: could not connect to host smartrak.co.nz: did not receive HSTS header +smartshoppers.es: 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 @@ -12701,14 +14249,15 @@ smi-a.me: could not connect to host smileawei.com: could not connect to host smimea.com: did not receive HSTS header smirkingwhorefromhighgarden.pro: could not connect to host -smith.is: could not connect to host +smithchow.com: did not receive HSTS header 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 +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 @@ -12717,21 +14266,25 @@ 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 -smx.net.br: could not connect to host snafarms.com: did not receive HSTS header snailing.org: could not connect to host +snake.dog: did not receive HSTS header 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 +snazel.co.uk: could not connect to host +sneak.berlin: did not receive HSTS header +sneaker.date: could not connect to host sneed.company: could not connect to host +sneezry.com: did not receive HSTS header snekchat.moe: could not connect to host snelwerk.be: could not connect to host sng.my: could not connect to host 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 @@ -12739,12 +14292,16 @@ snod.land: did not receive HSTS header snoozedds.com: max-age too low: 600 snoqualmiefiber.org: could not connect to host snovey.com: could not connect to host +snow-online.de: could not connect to host snowdy.eu: could not connect to host snowdy.link: could not connect to host +snowplane.net: did not receive HSTS header +snowyluma.com: could not connect to host 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 +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 @@ -12755,24 +14312,24 @@ socialfacecook.com: could not connect to host socialgrowing.cl: did not receive HSTS header socialhead.io: could not connect to host socialhub.com: did not receive HSTS header -socialmirror.app: did not receive HSTS header -socialprize.com: could not connect to host +socialprize.com: did not receive HSTS header socialspirit.com.br: did not receive HSTS header socialworkout.com: could not connect to host socialworkout.net: could not connect to host socialworkout.org: could not connect to host socialworkout.tv: could not connect to host -socketize.com: could not connect to host +socketize.com: did not receive HSTS header sockeye.cc: could not connect to host socomponents.co.uk: could not connect to host sodacore.com: could not connect to host soe-server.com: could not connect to host softballsavings.com: did not receive HSTS header softclean.pt: did not receive HSTS header +softplaynation.co.uk: did not receive HSTS header sogeek.me: could not connect to host sogravatas.net.br: could not connect to host -soia.ca: 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 @@ -12781,51 +14338,54 @@ 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 -solidus.systems: could not connect to host +solidus.systems: did not receive HSTS header solidwebnetworks.co.uk: did not receive HSTS header solinter.com.br: did not receive HSTS header 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 +solos.im: could not connect to host solosmusic.xyz: could not connect to host solsystems.ru: did not receive HSTS header +solus-project.com: could not connect to host solutive.fi: did not receive HSTS header -solve-it.se: did not receive HSTS header solymar.co: could not connect to host some.rip: max-age too low: 6307200 somebodycares.org: did not receive HSTS header +somepills.com: did not receive HSTS header someshit.xyz: could not connect to host something-else.cf: could not connect to host somethingnew.xyz: could not connect to host 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 sonialive.com: did not receive HSTS header sonic.network: did not receive HSTS header sonicrainboom.rocks: could not connect to host +sonix.dk: could not connect to host sonja-daniels.com: could not connect to host sonja-kowa.de: could not connect to host sonyforum.no: did not receive HSTS header soobi.org: did not receive HSTS header soondy.com: did not receive HSTS header -soontm.de: could not connect to host +soph.us: could not connect to host soply.com: could not connect to host soporte.cc: could not connect to host sorenam.com: could not connect to host sorensen-online.com: could not connect to host -sorincocorada.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] +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 +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 @@ -12833,15 +14393,19 @@ soulcraft.bz: could not connect to host soulema.com: could not connect to host soulfulglamour.uk: could not connect to host soulsteer.com: could not connect to host +soundbytemedia.com: did not receive HSTS header +soundedj.com.br: could not connect to host soundforsound.co.uk: did not receive HSTS header +soundgasm.net: could not connect to host soundsecurity.io: could not connect to host -souqtajmeel.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] sourcecode.love: could not connect to host sourcelair.com: did not receive HSTS header sourcitec.com: did not receive HSTS header +sous-surveillance.net: could not connect to host southcoastkitesurf.co.uk: did not receive HSTS header southcoastswords.com: did not receive HSTS header southernjamusa.com: did not receive HSTS header +southernlights.xyz: could not connect to host southgale.condos: could not connect to host southside-crew.club: could not connect to host southworcestershiregpservices.co.uk: could not connect to host @@ -12863,7 +14427,6 @@ 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 spangehlassociates.com: did not receive HSTS header @@ -12883,53 +14446,61 @@ spcx.eu: could not connect to host spdysync.com: could not connect to host specialedesigns.com: could not connect to host specialistnow.com.au: did not receive HSTS header +spectreattack.com: did not receive HSTS header speculor.net: could not connect to host +spedition-transport-umzug.de: could not connect to host spedplus.com.br: did not receive HSTS header speed-mailer.com: could not connect to host speedcounter.net: could not connect to host 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 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 +spillmaker.no: did not receive HSTS header spilsbury.io: could not connect to host spineandscoliosis.com: did not receive HSTS header +spinner.dnshome.de: could not connect to host +spiralschneiderkaufen.de: could not connect to host spirit-dev.net: max-age too low: 0 spirit-hunters-germany.de: did not receive HSTS header spiritbionic.ro: could not connect to host spiritfanfics.com: did not receive HSTS header -spisoggrin.dk: did not receive HSTS header +spisoggrin.dk: could not connect to host spitefultowel.com: did not receive HSTS header spitfireuav.com: could not connect to host spititout.it: could not connect to host split.is: could not connect to host splunk.zone: could not connect to host spokonline.com: could not connect to host +spolwind.de: 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 -sportakrobatik.at: could not connect to host +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 sportsmanadvisor.com: could not connect to host -sportwette.eu: did not receive HSTS header spot-events.com: could not connect to host spotifyripper.tk: could not connect to host spotlightsrule.com: could not connect to host @@ -12943,17 +14514,19 @@ sprk.fitness: did not receive HSTS header sproing.ca: max-age too low: 0 spron.in: could not connect to host sproutconnections.com: could not connect to host -sprueche-zum-valentinstag.de: 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 +spykedigital.com: could not connect to host sqetsa.com: did not receive HSTS header -sqroot.eu: could not connect to host +sqkaccountancy.co.uk: did not receive HSTS header sqshq.de: did not receive HSTS header squaddraft.com: did not receive HSTS header +squadlinx.com: did not receive HSTS header square.gs: could not connect to host -squarelab.it: did not receive HSTS header +squareonebgc.com.ph: could not connect to host squatldf.org: could not connect to host squids.space: could not connect to host squirtlesbians.net: could not connect to host @@ -12971,7 +14544,7 @@ 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 -ssco.xyz: did not receive HSTS header +ssco.xyz: could not connect to host ssconn.com: could not connect to host ssh.nu: could not connect to host sshool.at: could not connect to host @@ -12979,8 +14552,7 @@ 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 +sspanda.com: did not receive HSTS header ssrvpn.tech: could not connect to host sss3s.com: could not connect to host ssworld.ga: could not connect to host @@ -12989,39 +14561,45 @@ stabletoken.com: could not connect to host staceyhankeinc.com: did not receive HSTS header stackfiles.io: could not connect to host stackhub.cc: could not connect to host +stacktile.io: could not connect to host stadionmanager.com: could not connect to host stadjerspasonline.nl: could not connect to host -stadtbauwerk.at: did not receive HSTS header -stadtbuecherei-bad-wurzach.de: 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 +standoutbooks.com: did not receive HSTS header standuppaddlesports.com.au: did not receive HSTS header stannahtrapliften.nl: did not receive HSTS header +star-citizen.wiki: did not receive HSTS header +star-killer.net: could not connect to host star-stuff.de: did not receive HSTS header +star.do: did not receive HSTS header 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 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 -starsam80.net: could not connect to host starsbattle.net: could not connect to host starteesforsale.co.za: did not receive HSTS header startup.melbourne: could not connect to host @@ -13029,7 +14607,9 @@ startuplevel.com: could not connect to host startuponcloud.com: max-age too low: 2678400 startuppeople.co.uk: could not connect to host startupum.ru: could not connect to host +starwatches.eu: could not connect to host stash.ai: did not receive HSTS header +stassi.ch: did not receive HSTS header state-of-body-and-mind.com: could not connect to host state-sponsored-actors.net: could not connect to host statementinsertsforless.com: did not receive HSTS header @@ -13044,16 +14624,16 @@ staticisnoise.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 staxflax.tk: could not connect to host stayokhotelscdc-mailing.com: could not connect to host -stb-schefczyk.de: 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 steelbea.ms: could not connect to host @@ -13062,6 +14642,7 @@ 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 stem.is: did not receive HSTS header stepbystep3d.com: did not receive HSTS header steph-autoecole.ch: did not receive HSTS header @@ -13076,10 +14657,12 @@ sterjoski.com: did not receive HSTS header stesti.cz: could not connect to host stevechekblain.win: could not connect to host stevengoodpaster.com: could not connect to host +stevenkwan.me: could not connect to host stevensheffey.me: could not connect to host stevensononthe.net: did not receive HSTS header -steventruesdell.com: could not connect to host stewartremodelingadvantage.com: could not connect to host +stewonet.nl: did not receive HSTS header +stge.uk: could not connect to host sticklerjs.org: could not connect to host stickmy.cn: could not connect to host stickswag.cf: could not connect to host @@ -13087,18 +14670,20 @@ 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 +stilecop.com: did not receive HSTS header stilettomoda.com.br: could not connect to host stillblackhat.id: could not connect to host stillyarts.com: did not receive HSTS header stinkytrashhound.com: could not connect to host stirlingpoon.net: could not connect to host stirlingpoon.xyz: could not connect to host -stitthappens.com: could not connect to host +stitthappens.com: did not receive HSTS header 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 stmbgr.com: could not connect to host stn.me.uk: did not receive HSTS header @@ -13108,14 +14693,16 @@ 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 stole-my.bike: could not connect to host stole-my.tv: could not connect to host stomadental.com: did not receive HSTS header stonecutterscommunity.com: could not connect to host +stonemain.eu: could not connect to host stonemanbrasil.com.br: could not connect to host stopakwardhandshakes.org: could not connect to host -stopbreakupnow.org: did not receive HSTS header 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 @@ -13132,31 +14719,34 @@ str0.at: did not receive HSTS header strangeplace.net: did not receive HSTS header strangescout.me: did not receive HSTS header strasweb.fr: did not receive HSTS header -strathewerd.de: did not receive HSTS header strbt.de: could not connect to host strchr.com: did not receive HSTS header stream-ing.xyz: could not connect to host stream.pub: could not connect to host +streamblur.net: could not connect to host streamdesk.ca: did not receive HSTS header streamer.tips: did not receive HSTS header streamingeverywhere.com: could not connect to host streamingmagazin.de: could not connect to host +streamlineautogroup.com: could not connect to host streampanel.net: did not receive HSTS header +streams.dyndns.org: could not connect to host streamthemeeting.com: did not receive HSTS header 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 strictlysudo.com: could not connect to host strife.tk: could not connect to host strila.me: could not connect to host -striptizer.tk: did not receive HSTS header +striptizer.tk: 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 @@ -13166,15 +14756,17 @@ studenttravel.cz: did not receive HSTS header studer.su: could not connect to host studinf.xyz: could not connect to host studio-panic.com: did not receive HSTS header -studiocn.cn: 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 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 stugb.de: did not receive HSTS header stumeta2018.de: could not connect to host stupidstatetricks.com: could not connect to host @@ -13184,13 +14776,17 @@ sturge.co.uk: did not receive HSTS header stuudium.life: could not connect to host stylenda.com: could not connect to host stylle.me: could not connect to host -stytt.com: could not connect to host +stytt.com: did not receive HSTS header +suaraangin.com: could not connect to host suareforma.com: could not connect to host +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 subtitle.rip: could not connect to host @@ -13199,11 +14795,10 @@ subzerolosangeles.com: did not receive HSTS header subzerotech.co.uk: could not connect to host successwithflora.com: could not connect to host succubus.network: could not connect to host +succubus.xxx: could not connect to host suche.org: could not connect to host suchprogrammer.net: did not receive HSTS header sudo.im: could not connect to host -sudo.li: did not receive HSTS header -sudokian.io: could not connect to host sudosu.fr: could not connect to host suempresa.cloud: could not connect to host suffts.de: did not receive HSTS header @@ -13217,20 +14812,25 @@ summer.ga: could not connect to host summitbankofkc.com: did not receive HSTS header summitmasters.net: did not receive HSTS header sumoscout.de: did not receive HSTS header +sun-wellness-online.com.vn: did not receive HSTS header sun.re: could not connect to host suncountrymarine.com: did not receive HSTS header sundaycooks.com: max-age too low: 2592000 suneilpatel.com: could not connect to host +sunfeathers.net: could not connect to host sunfireshop.com.br: could not connect to host sunlandsg.vn: did not receive HSTS header sunnyfruit.ru: could not connect to host sunriseafricarelief.com: did not receive HSTS header +sunset.im: did not receive HSTS header sunshinepress.org: could not connect to host sunxchina.com: could not connect to host sunyanzi.tk: could not connect to host +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 @@ -13238,14 +14838,19 @@ super-ripped-power.com: could not connect to host super-slim-coffee.com: could not connect to host superbabysitting.ch: could not connect to host superbike.tw: could not connect to host +superbowlkneel.com: could not connect to host +superbshare.com: could not connect to host supercastlessouthsydney.com.au: could not connect to host supercreepsvideo.com: did not receive HSTS header superiorfloridavacation.com: could not connect to host superklima.ro: did not receive HSTS header -superlandnetwork.de: did not receive HSTS header +superlandnetwork.de: could not connect to host superlentes.com.br: could not connect to host +supermarx.nl: could not connect to host supernovabrasil.com.br: did not receive HSTS header +supernt.lt: could not connect to host superpase.com: could not connect to host +supersahnetorten.de: could not connect to host supersalescontest.nl: did not receive HSTS header superschnappchen.de: could not connect to host supersecurefancydomain.com: could not connect to host @@ -13253,20 +14858,23 @@ supertramp-dafonseca.com: did not receive HSTS header superuser.fi: could not connect to host superwally.org: could not connect to host 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: did not receive HSTS header -surasak.org: could not connect to host +supweb.ovh: could not connect to host surasak.xyz: could not connect to host suraya.online: 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 +survivebox.fr: did not receive HSTS header susastudentenjobs.de: could not connect to host susconam.org: could not connect to host suseasky.com: did not receive HSTS header +sushi.roma.it: did not receive HSTS header +sushifrick.de: could not connect to host sushiwereld.be: did not receive HSTS header suspiciousdarknet.xyz: could not connect to host sussexwebdesigns.com: could not connect to host @@ -13275,39 +14883,45 @@ 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 +sve-hosting.nl: could not connect to host +svenbacia.me: could not connect to host svenskacasino.com: did not receive HSTS header svenskaservern.se: could not connect to host +svetdrzaku.cz: did not receive HSTS header svetjakonadlani.cz: did not receive HSTS header +svetzitrka.cz: did not receive HSTS header sviz.pro: could not connect to host svj-stochovska.cz: could not connect to host svjvn.cz: could not connect to host swacp.com: could not connect to host swaggerdile.com: could not connect to host +swagsocial.net: could not connect to host swaleacademiestrust.org.uk: max-age too low: 2592000 swallsoft.co.uk: could not connect to host swallsoft.com: could not connect to host swanseapartyhire.co.uk: 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 -swerve-media-testbed-03.co.uk: could not connect to host swfloshatraining.com: could not connect to host 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 +swingular.com: could not connect to host swissentreprises.ch: could not connect to host +swisstechassociation.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 @@ -13316,21 +14930,24 @@ 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 +sychov.pro: could not connect to host sydgrabber.tk: could not connect to host -syha.org.uk: could not connect to host sykl.us: could not connect to host +sylvaincombe.net: could not connect to host sylvangarden.org: could not connect to host sylvanorder.com: could not connect to host -synackr.com: did not receive HSTS header +symetria.io: max-age too low: 2592000 +synackr.com: could not connect to host synapticconsulting.co.uk: could not connect to host syncaddict.net: could not connect to host syncappate.com: could not connect to host syncclinicalstudy.com: could not connect to host syncer.jp: did not receive HSTS header +synchrocube.com: could not connect to host +synchtu.be: could not connect to host syncmylife.net: could not connect to host syncserve.net: did not receive HSTS header syneic.com: did not receive HSTS header @@ -13350,14 +14967,16 @@ 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: did not receive HSTS header syy.hk: did not receive HSTS header szaszm.tk: could not connect to host szerbnyelvkonyv.hu: could not connect to host szlovaknyelv.hu: could not connect to host szlovennyelv.hu: could not connect to host szongott.net: did not receive HSTS header -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 @@ -13370,30 +14989,32 @@ 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 +tabhui.com: could not connect to host tabino.top: 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 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 taichi-jade.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] taidu.news: could not connect to host +tailandfur.com: did not receive HSTS header tailify.com: did not receive HSTS header -tailpuff.net: did not receive HSTS header tails.com.ar: could not connect to host taim.io: could not connect to host takebackyourstate.com: could not connect to host takebackyourstate.net: could not connect to host takebackyourstate.org: could not connect to host takebonus.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -takedownthissite.com: could not connect to host takinet.kr: could not connect to host takusan.ru: could not connect to host talenthero.io: did not receive HSTS header @@ -13405,16 +15026,17 @@ 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 -tam7t.com: did not receive HSTS header -tamaraboutique.com: could not connect to host -tamasszabo.net: did not receive HSTS header +talsi.eu: could not connect to host +tam7t.com: could not connect to host tamersunion.org: did not receive HSTS header tamex.xyz: could not connect to host +tamriel-rebuilt.org: could not connect to host tandarts-haarlem.nl: did not receive HSTS header tandblekningidag.com: could not connect to host -tandk.com.vn: did not receive HSTS header +tandem-trade.ru: could not connect to host tangerine.ga: could not connect to host tangibilizing.com: could not connect to host tangiblesecurity.com: did not receive HSTS header @@ -13424,16 +15046,16 @@ tangzhao.net: 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: 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: 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 taravancil.com: did not receive HSTS header tarek.link: could not connect to host targaryen.house: could not connect to host @@ -13444,18 +15066,18 @@ taskstats.com: could not connect to host tasmansecurity.com: could not connect to host tassup.com: could not connect to host tasta.ro: did not receive HSTS header -tasticfilm.com: could not connect to host +tasticfilm.com: did not receive HSTS header tastyyy.co: could not connect to host tasyacherry-anal.com: could not connect to host 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 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 +taxiindenbosch.nl: did not receive HSTS header taxmadras.com: could not connect to host taxsnaps.co.nz: did not receive HSTS header taxspeaker.com: did not receive HSTS header @@ -13463,12 +15085,13 @@ 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 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 tcwebvn.com: could not connect to host @@ -13487,7 +15110,6 @@ tdsbhack.tk: could not connect to host teacherph.net: could not connect to host teachforcanada.ca: did not receive HSTS header tealdrones.com: did not receive HSTS header -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 @@ -13495,23 +15117,30 @@ teambeoplay.co.uk: did not receive HSTS header teamblueridge.org: could not connect to host teamdaylo.xyz: could not connect to host teamhood.io: did not receive HSTS header +teamnetsol.com: did not receive HSTS header teampoint.cz: could not connect to host teams.microsoft.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] teamsocial.co: did not receive HSTS header -teamup.rocks: did not receive HSTS header teamx-gaming.de: could not connect to host teamzeus.cz: could not connect to host teaparty.id: could not connect to host -tearoy.faith: 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-clips.com: did not receive HSTS header tech-finder.fr: could not connect to host 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 +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 +techendeavors.com: could not connect to host techfactslive.com: did not receive HSTS header techhipster.net: could not connect to host techhub.ml: could not connect to host @@ -13522,40 +15151,49 @@ 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 +techniclab.net: could not connect to host +techniclab.org: could not connect to host +techniclab.ru: could not connect to host technikrom.org: did not receive HSTS header technogroup.cz: did not receive HSTS header technosavvyport.com: did not receive HSTS header technosuport.com: did not receive HSTS header +technoswag.ca: could not connect to host technotonic.com.au: did not receive HSTS header techpointed.com: could not connect to host techpro.net.br: did not receive HSTS header techproud.com: did not receive HSTS header techreview.link: could not connect to host -techtoy.store: could not connect to host +techtoy.store: did not receive HSTS header techtrackerpro.com: could not connect to host techtraveller.com.au: did not receive HSTS header +techtuts.info: could not connect to host techunit.org: could not connect to host tecit.ch: could not connect to host tecnidev.com: could not connect to host tecnimotos.com: did not receive HSTS header tecnogaming.com: did not receive HSTS header tecture.de: did not receive HSTS header -tedovo.com: did not receive HSTS header +tedovo.com: could not connect to host 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: did not receive HSTS header tefl.io: did not receive HSTS header tegelsensanitaironline.nl: did not receive HSTS header tehotuotanto.net: did not receive HSTS header tehplace.club: could not connect to host +tehranperfume.com: 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 +teknologi.or.id: did not receive HSTS header 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 tel-dithmarschen.de: did not receive HSTS header teleallarme.ch: could not connect to host telecharger-itunes.com: could not connect to host @@ -13564,6 +15202,7 @@ telecharger-winrar.com: could not connect to host telefisk.org: did not receive HSTS header telefonnummer.online: could not connect to host telefonogratuito.com: did not receive HSTS header +telefonsinyalguclendirici.com: did not receive HSTS header telefoonnummerinfo.nl: could not connect to host telekollektiv.org: could not connect to host telescam.com: could not connect to host @@ -13571,40 +15210,43 @@ teleshop.be: could not connect to host teletechnology.in: did not receive HSTS header teletra.ru: could not connect to host telfordwhitehouse.co.uk: did not receive HSTS header -tellingua.com: did not receive HSTS header +tellingua.com: could not connect to host +teltonica.com: did not receive HSTS header +telugu4u.net: could not connect to host temasa.net: did not receive HSTS header 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 tennisapp.org: could not connect to host tennispensacola.com: could not connect to host tensei-slime.com: did not receive HSTS header tensionup.com: could not connect to host +tent.io: could not connect to host tentins.com: could not connect to host teodio.cl: did not receive HSTS header teoleonie.com: did not receive HSTS header teos.online: could not connect to host teoskanta.fi: could not connect to host -tepid.org: could not connect to host teranga.ch: did not receive HSTS header -terminalvelocity.co.nz: could not connect to host +tercerapuertoaysen.cl: could not connect to host terra-x.net: could not connect to host terra.by: 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-dns.eu: could not connect to host test02.dk: did not receive HSTS header testadron.com: could not connect to host testandroid.xyz: could not connect to host @@ -13612,8 +15254,11 @@ testbawks.com: could not connect to host testbirds.cz: could not connect to host testbirds.sk: could not connect to host testdomain.ovh: could not connect to host +testi.info: did not receive HSTS header testnode.xyz: could not connect to host +testosterone-complex.com: could not connect to host testovaci.ml: could not connect to host +testpornsite.com: could not connect to host tetrafinancial-commercial-business-equipment-financing.com: did not receive HSTS header tetrafinancial-energy-mining-equipment-financing.com: did not receive HSTS header tetrafinancial-healthcare-medical-equipment-financing.com: did not receive HSTS header @@ -13621,33 +15266,32 @@ tetrafinancial-manufacturing-industrial-equipment-financing.com: did not receive tetrafinancial-news.com: did not receive HSTS header tetrafinancial-technology-equipment-software-financing.com: did not receive HSTS header tetramax.eu: did not receive HSTS header -tetrarch.co: could not connect to host tetsai.com: could not connect to host teufelsystem.de: could not connect to host +teulon.eu: could not connect to host teuniz.nl: did not receive HSTS header texte-zur-taufe.de: did not receive HSTS header textoplano.xyz: could not connect to host textracer.dk: could not connect to host -tf2stadium.com: could not connect to host +tezcam.tk: could not connect to host +tf2stadium.com: did not receive HSTS header tfcoms-sp-tracker-client.azurewebsites.net: could not connect to host tffans.com: could not connect to host 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 +th3nd.com: could not connect to host thackert.myfirewall.org: could not connect to host thagki9.com: did not receive HSTS header -thai.land: did not receive HSTS header +thai.land: could not connect to host thaianthro.com: max-age too low: 0 thaigirls.xyz: could not connect to host thaihostcool.com: did not receive HSTS header -thailandpropertylisting.com: did not receive HSTS header thailandpropertylistings.com: did not receive HSTS header thalmann.fr: did not receive HSTS header -thalskarth.com: 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 @@ -13657,26 +15301,30 @@ the-digitale.com: did not receive HSTS header the-earth-yui.net: could not connect to host the-finance-blog.com: could not connect to host the-gist.io: could not connect to host -the-paddies.de: did not receive HSTS header +the-paddies.de: could not connect to host the-sky-of-valkyries.com: could not connect to host the.ie: max-age too low: 0 the420vape.org: could not connect to host theamateurs.net: did not receive HSTS header -theamp.com: did not receive HSTS header +theamp.com: could not connect to host theater.cf: could not connect to host theavenuegallery.com: did not receive HSTS header thebakingclass.com: max-age too low: 60 +thebarrens.nu: could not connect to host thebasementguys.com: could not connect to host thebeautifulmusic.net: did not receive HSTS header thebeginningisnye.com: could not connect to host -theberkshirescompany.com: did not receive HSTS header +theberkshirescompany.com: could not connect to host thebigfail.net: could not connect to host 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 @@ -13685,16 +15333,21 @@ 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 +thecskr.in: did not receive HSTS header thecsw.com: did not receive HSTS header +thecuriousdev.com: did not receive HSTS header thedailyupvote.com: could not connect to host thedarkartsandcrafts.com: could not connect to host +thedebug.life: did not receive HSTS header thedevilwearswibra.nl: did not receive HSTS header +thediamondcenter.com: did not receive HSTS header thedominatorsclan.com: did not receive HSTS header 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 @@ -13704,27 +15357,29 @@ theexpatriate.de: could not connect to host theeyeopener.com: did not receive HSTS header thefarbeyond.com: 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 thehiddenbay.cc: could not connect to host -thehiddenbay.eu: could not connect to host -thehiddenbay.me: could not connect to host +thehiddenbay.eu: max-age too low: 0 +thehiddenbay.me: max-age too low: 0 thehiddenbay.net: could not connect to host thehighersideclothing.com: did not receive HSTS header thehistory.me: could not connect to host -thehonorguard.org: did not receive HSTS header thehoopsarchive.com: could not connect to host theimagesalon.com: max-age too low: 43200 theinvisibletrailer.com: could not connect to host -theitsage.com: did not receive HSTS header +thej0lt.com: 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 @@ -13738,11 +15393,15 @@ themarble.co: could not connect to host themaster.site: did not receive HSTS header themathbehindthe.science: could not connect to host themathematician.uk: could not connect to host +themeaudit.com: could not connect to host +themenzentrisch.de: could not connect to host themerchandiser.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] themesurgeons.net: could not connect to host themicrocapital.com: could not connect to host +themilanlife.com: could not connect to host themoderate.xyz: could not connect to host thenextstep.events: could not connect to host +thenichecast.com: could not connect to host thenorthschool.org.uk: did not receive HSTS header thenrdhrd.nl: could not connect to host theodorejones.info: could not connect to host @@ -13751,10 +15410,8 @@ theokonst.tk: did not receive HSTS header theosblog.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] theosophie-afrique.org: could not connect to host theoverfly.co: could not connect to host -thepaffy.de: could not connect to host thepartywarehouse.co.uk: did not receive HSTS header thepcweb.tk: could not connect to host -thepeninsulaires.com: could not connect to host thepiratebay.al: could not connect to host thepiratebay.poker: could not connect to host thepiratebay.tech: could not connect to host @@ -13762,49 +15419,59 @@ theposhfudgecompany.co.uk: could not connect to host theprincegame.com: could not connect to host theprivacysolution.com: could not connect to host thequillmagazine.org: could not connect to host +therewill.be: could not connect to host therise.ca: max-age too low: 300 thermique.ch: could not connect to host theroamingnotary.com: did not receive HSTS header therockawaysny.com: did not receive HSTS header +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 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 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 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 thezonders.com: did not receive HSTS header thgros.fr: could not connect to host +thibautcharles.net: did not receive HSTS header +thienteakee.com: did not receive HSTS header thierfreund.de: did not receive HSTS header -thierryhayoz.ch: could not connect to host +thingies.site: could not connect to host thinkcash.nl: could not connect to host thinkcoding.de: could not connect to host thinkcoding.org: could not connect to host 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: did not receive HSTS header +thirdworld.moe: could not connect to host thirty5.net: did not receive HSTS header -thirtyspot.com: 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 @@ -13814,23 +15481,23 @@ 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 -thomas-prior.com: could not connect to host 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 +thomspooren.nl: could not connect to host thorbis.com: could not connect to host thorbiswebsitedesign.com: could not connect to host thorgames.nl: did not receive HSTS header thorncreek.net: did not receive HSTS header thot.space: could not connect to host +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 @@ -13838,41 +15505,46 @@ 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 -thunderfield-boat.co.uk: could not connect to host +thuviensoft.net: 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 -tianxing.pro: could not connect to host +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 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 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 tightlineproductions.com: did not receive HSTS header tigit.co.nz: could not connect to host +tiki-god.co.uk: could not connect to host tikutiku.pl: could not connect to host tildebot.com: could not connect to host tilient.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -tilkah.com.au: 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 -timco.cloud: could not connect to host +timcamara.com: could not connect to host +timdebruijn.nl: did not receive HSTS header time-river.xyz: could not connect to host +time.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] timeatlas.com: did not receive HSTS header timer.fit: could not connect to host timersuite.com: could not connect to host @@ -13884,6 +15556,8 @@ timeserver2.de: could not connect to host timeserver3.de: could not connect to host timestamp.io: did not receive HSTS header timestamp.uk: could not connect to host +timetab.org: could not connect to host +timhieubenh.net: could not connect to host timhjalpen.se: could not connect to host timklefisch.de: did not receive HSTS header timmy.ws: could not connect to host @@ -13896,12 +15570,13 @@ 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 +tinkerers-trunk.co.za: did not receive HSTS header +tioat.net: could not connect to host tipiakers.club: could not connect to host -tipps-fuer-den-haushalt.de: 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 @@ -13911,8 +15586,10 @@ 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 +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 @@ -13920,6 +15597,8 @@ tju.me: could not connect to host tkappertjedemetamorfose.nl: could not connect to host tkarstens.de: did not receive HSTS header tkhw.tk: could not connect to host +tkjg.fi: could not connect to host +tkn.tokyo: could not connect to host tkonstantopoulos.tk: could not connect to host tkts.cl: could not connect to host tlach.cz: did not receive HSTS header @@ -13927,14 +15606,17 @@ 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 +tloxygen.com: 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 +tmconnects.com: could not connect to host tmdc.ddns.net: could not connect to host tmhlive.com: could not connect to host +tmhr.moe: could not connect to host tmin.cf: could not connect to host tmitchell.io: could not connect to host tmprod.com: did not receive HSTS header @@ -13942,30 +15624,37 @@ tmtradingmorocco.ma: could not connect to host tnb-plattform.de: could not connect to host tncnanet.com.br: could not connect to host tno.io: could not connect to host +to2mbn.org: could not connect to host tobaby.com.br: could not connect to host tobaccore.eu: could not connect to host tobaccore.sk: could not connect to host +tobedo.net: could not connect to host tobias-bielefeld.de: did not receive HSTS header tobiasbergius.se: could not connect to host tobiasmathes.com: could not connect to host tobiasmathes.name: could not connect to host tobiasofficial.at: could not connect to host tobiassachs.cf: could not connect to host -tobiassachs.de: 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 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 tokenloan.com: could not connect to host +tokfun.com: 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 @@ -13974,16 +15663,20 @@ tokoindo.top: could not connect to host tokoone.com: did not receive HSTS header tokotamz.net: could not connect to host tokotimbangandigitalmurah.web.id: did not receive HSTS header -tokototech.com: could not connect to host tokoyo.biz: could not connect to host tollmanz.com: did not receive HSTS header -tollsjekk.no: 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 +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 @@ -13991,12 +15684,15 @@ tommsy.com: did not receive HSTS header tommy-bordas.fr: did not receive HSTS header tommyads.com: could not connect to host tommyweber.de: did not receive HSTS header +tomoyaf.com: did not receive HSTS header tomphill.co.uk: could not connect to host +tomy.icu: could not connect to host tonburi.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] tongmu.me: could not connect to host +tonguetechnology.com: could not connect to host toniharant.de: could not connect to host toomanypillows.com: could not connect to host -tooolroc.org: could not connect to host +top-solar-info.de: could not connect to host top-stage.net: could not connect to host top10mountainbikes.info: could not connect to host topanlage.de: could not connect to host @@ -14013,19 +15709,20 @@ topnovini.com: did not receive HSTS header toppik.com.br: could not connect to host topservercccam.com: did not receive HSTS header topshelfguild.com: could not connect to host +topshoptools.com: could not connect to host toptenthebest.com: did not receive HSTS header toptranslation.com: did not receive HSTS header topwin.la: could not connect to host topyx.com: did not receive HSTS header tor2web.org: could not connect to host torbay.ga: could not connect to host +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: max-age too low: 0 torrentgamesps2.info: could not connect to host torrenttop100.net: could not connect to host torrentz.website: could not connect to host @@ -14047,17 +15744,18 @@ totot.net: did not receive HSTS header 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 -touhou.cc: did not receive HSTS header +touchtable.nl: did not receive HSTS header +tougetu.com: could not connect to host touray-enterprise.ch: could not connect to host -tournaire.fr: did not receive HSTS header +tournaire.fr: max-age too low: 0 tourpeer.com: did not receive HSTS header toursandtransfers.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] tousproducteurs.fr: did not receive HSTS header towaway.ru: could not connect to host -town-farm.surrey.sch.uk: 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 @@ -14065,20 +15763,23 @@ toxme.se: did not receive HSTS header toymania.de: could not connect to host toyotamotala.se: could not connect to host tpbcdn.com: could not connect to host -tpblist.xyz: could not connect to host +tpblist.xyz: max-age too low: 0 tpbunblocked.org: could not connect to host tpe-edu.com: could not connect to host tpms4u.at: did not receive HSTS header tppdebate.org: did not receive HSTS header trabajarenperu.com: did not receive HSTS header +tracalada.cl: did not receive HSTS header tracetracker.com: did not receive HSTS header tracetracker.no: did not receive HSTS header +tracewind.top: could not connect to host track.plus: could not connect to host trackdays4fun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] tracker-gps.ch: could not connect to host -trackingstream.com: did not receive HSTS header +trackmeet.io: did not receive HSTS header tracktivity.com.au: did not receive HSTS header trade-smart.ru: 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 @@ -14086,54 +15787,51 @@ tradingcentre.com.au: did not receive HSTS header tradinghope.com: could not connect to host tradingrooms.com: did not receive HSTS header traditional-knowledge.tk: did not receive HSTS header -tradiz.org: could not connect to host traeningsprojekt.dk: did not receive HSTS header trafficquality.org: could not connect to host -traffictigers.com: did not receive HSTS header +traffictigers.com: could not connect to host traforet.win: could not connect to host train-track.co.uk: did not receive HSTS header traindb.nl: did not receive HSTS header -trainhorns.us: did not receive HSTS header training4girls.ru: could not connect to host traininglist.org: could not connect to host trainingproviderresults.gov: could not connect to host -trainline.at: could not connect to host -trainline.cn: could not connect to host -trainline.com.br: could not connect to host -trainline.com.pt: could not connect to host -trainline.cz: could not connect to host trainline.dk: could not connect to host trainline.io: could not connect to host -trainline.nl: could not connect to host -trainline.no: could not connect to host -trainline.pl: 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 -tran.pw: did not receive HSTS header 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 +transfile.fr: could not connect to host transformify.org: did not receive HSTS header transgendernetwerk.nl: did not receive HSTS header +transitmoe.io: could not connect to host transl8.eu: did not receive HSTS header translate.googleapis.com: did not receive HSTS header (error ignored - included regardless) +translateblender.ru: could not connect to host transmithe.net: could not connect to host transportal.sk: did not receive HSTS header transsexualpantyhose.com: could not connect to host -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-dealz.de: did not receive HSTS header travel-kuban.ru: did not receive HSTS header -travel1x1.com: could not connect to host +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 +travelpricecheck.com: max-age too low: 0 travotion.com: could not connect to host trazosdearte.com: did not receive HSTS header treasuredinheritanceministry.com: did not receive HSTS header +treatment.org: could not connect to host treatprostatewithhifu.com: could not connect to host treeby.net: could not connect to host treehousebydesign.com: did not receive HSTS header @@ -14141,15 +15839,19 @@ 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 +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 +trevsanders.co.uk: did not receive HSTS header 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 triddi.com: could not connect to host tridimage.com: did not receive HSTS header @@ -14162,29 +15864,33 @@ trinitytechdev.com: did not receive HSTS header 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 trisportas.lt: did not receive HSTS header tristanfarkas.one: could not connect to host 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] 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] -truckgpsreviews.com: did not receive HSTS header +trpg.wiki: could not connect to host 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 trusteecar.com: did not receive HSTS header trustmeimfancy.com: could not connect to host +trustocean.com: did not receive HSTS header +try2services.cm: 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 @@ -14192,9 +15898,10 @@ trynowrinkleseyeserum.com: could not connect to host tryoneday.co: did not receive HSTS header tryti.me: could not connect to host ts2.se: could not connect to host -ts3-dns.me: could not connect to host +ts3-dns.me: did not receive HSTS header 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 @@ -14209,10 +15916,10 @@ 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 +ttwt.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 @@ -14224,16 +15931,19 @@ 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 +tufilo.com: could not connect to host +tugers.com: did not receive HSTS header tuja.hu: could not connect to host +tulenceria.es: could not connect to host tulsameetingroom.com: could not connect to host -tuminauskas.lt: did not receive HSTS header -tunai.id: could not connect to host 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 tupizm.com: could not connect to host +turdnagel.com: could not connect to host turismo.cl: could not connect to host turkiet.guide: could not connect to host turkrock.com: did not receive HSTS header @@ -14245,18 +15955,20 @@ turtlementors.com: could not connect to host turtles.ga: could not connect to host tusb.ml: did not receive HSTS header tussengelegenwoningverkopen.nl: could not connect to host -tuthowto.com: did not receive HSTS header +tuthowto.com: could not connect to host +tutiendaroja.com: did not receive HSTS header +tutiendarosa.com: did not receive HSTS header tutorio.ga: could not connect to host tutu.ro: could not connect to host tuturulianda.com: did not receive HSTS header tuvalie.com: did not receive HSTS header tuxhound.org: could not connect to host -tuxplace.nl: could not connect to host tv.search.yahoo.com: could not connect to host tvc.red: could not connect to host tverdohleb.com: could not connect to host tvoru.com.ua: did not receive HSTS header -tvtubeflix.com: could not connect to host +tvs-virtual.cz: did not receive HSTS header +tvtubeflix.com: did not receive HSTS header tvz-materijali.com: could not connect to host tw2-tools.ga: could not connect to host twarog.cc: could not connect to host @@ -14274,26 +15986,32 @@ 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 +twisted-brains.org: could not connect to host +twittelzie.nl: could not connect to host twitter.ax: could not connect to host twogo.com: did not receive HSTS header +twojfaktum.pl: could not connect to host +twolanedesign.com: did not receive HSTS header twolinepassbrewing.com: could not connect to host twolivelife.com: could not connect to host twoo.com: could not connect to host twotube.ie: could not connect to host -twuni.org: could not connect to host tx041cap.org: could not connect to host txbi.de: could not connect to host txclimbers.com: could not connect to host @@ -14306,19 +16024,25 @@ tykoon.com: could not connect to host tyler.coach: could not connect to host tyler.rs: could not connect to host tylercoach.com: could not connect to host -tylerharcourt.ca: max-age too low: 86400 tylerharcourt.com: could not connect to host tylerharcourt.org: did not receive HSTS header tylerharcourt.xyz: could not connect to host tylerjharcourt.com: could not connect to host tyleromeara.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 +tyreis.com: did not receive HSTS header tyrelius.com: could not connect to host tyroproducts.eu: did not receive HSTS header tyskland.guide: could not connect to host +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 @@ -14329,30 +16053,35 @@ ubalert.com: could not connect to host uber.com.au: did not receive HSTS header ubercalculator.com: did not receive HSTS header uberfunction.com: did not receive HSTS header +ubertt.org: could not connect to host ubicloud.de: could not connect to host ubicv.com: could not connect to host ublox.com: did not receive HSTS header ubtce.com: could not connect to host -ubuntuhot.com: could not connect to host -udruga-point.hr: did not receive HSTS header -ueba1085.jp: could not connect to host +ubuntuhot.com: did not receive HSTS header +uc.ac.id: did not receive HSTS header +uclanmasterplan.co.uk: did not receive HSTS header +udbhav.me: could not connect to host uefeng.com: did not receive HSTS header uega.net: did not receive HSTS header +uerdingen.info: did not receive HSTS header uesociedadlimitada.com: could not connect to host ueu.me: could not connect to host ufgaming.com: did not receive HSTS header uflixit.com: did not receive HSTS header +ufo.moe: did not receive HSTS header ufotable.uk: could not connect to host ugcdn.com: could not connect to host +uggedal.com: could not connect to host ugisgutless.com: could not connect to host ugo.ninja: could not connect to host ugosadventures.com: could not connect to host uhasseltctf.ga: could not connect to host -uhlhosting.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -uhm.io: did not receive HSTS header -uhuru-market.com: could not connect to host +uhm.io: could not connect to host +uhuru-market.com: did not receive HSTS header +uicchy.com: could not connect to host uitslagensoftware.nl: did not receive HSTS header -ukas.com: 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 @@ -14360,22 +16089,26 @@ 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 +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 -unapolegetic.co: did not receive HSTS header +ump45.moe: could not connect to host +umsolugar.com.br: did not receive HSTS header unart.info: could not connect to host unbanthe.net: could not connect to host unblockat.tk: did not receive HSTS header @@ -14385,38 +16118,43 @@ 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 +unblockedbay.info: max-age too low: 0 +unblockerproxy.site: did not receive HSTS header +unblockerproxy.top: did not receive HSTS header unblockmy.party: could not connect to host unblockmy.tech: could not connect to host unblockmy.xyz: could not connect to host -unblockmyproxy.site: could not connect to host +unblockmyproxy.site: did not receive HSTS header unblockthe.site: could not connect to host unblockthe.top: could not connect to host unccdesign.club: could not connect to host unclegen.xyz: could not connect to host +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 unefuite.ch: could not connect to host unfiltered.nyc: could not connect to host ungern.guide: could not connect to host unhu.fr: could not connect to host uni-games.com: could not connect to host uni2share.com: could not connect to host +unicefcards.at: did not receive HSTS header unicefkaarten.be: did not receive HSTS header unicefkort.dk: did not receive HSTS header unicooo.com: could not connect to host unicorn.li: could not connect to host unicorncloud.org: could not connect to host unifiednetwork.me: could not connect to host +uniformebateriasheliar.com.br: could not connect to host uniformecomgas.com.br: could not connect to host uniformehope.com.br: did not receive HSTS header uniformehumboldt.com.br: did not receive HSTS header @@ -14424,29 +16162,37 @@ uniformespousoalegre.com.br: did not receive HSTS header unikitty-on-tour.com: could not connect to host unikrn.com: could not connect to host unionstationapp.com: could not connect to host -unipig.de: 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 university4industry.com: did not receive HSTS header +universogay.com: could not connect to host univstore.win: could not connect to host univz.com: could not connect to host +unix.se: did not receive HSTS header unixtime.pro: could not connect to host +unknownbreakup.com: max-age too low: 2592000 unknownphenomena.net: could not connect to host +unleash.pw: could not connect to host +unlogis.ch: could not connect to host unmanaged.space: could not connect to host +unmarkdocs.co: could not connect to host +uno.fi: did not receive HSTS header unplugg3r.dk: could not connect to host unravel.ie: could not connect to host -uns.vn: could not connect to host +unripple.com: could not connect to host unschoolrules.com: did not receive HSTS header +unstablewormhole.ltd: did not receive HSTS header unstockd.org: could not connect to host unsupervised.ca: did not receive HSTS header unsystem.net: could not connect to host unterkunft.guru: did not receive HSTS header +unterschicht.tv: could not connect to host untoldstory.eu: did not receive HSTS header +unveiledgnosis.com: could not connect to host unwiredbrain.com: could not connect to host unwomen.is: did not receive HSTS header unyq.me: did not receive HSTS header @@ -14454,16 +16200,18 @@ 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: did not receive HSTS header +upandclear.org: max-age too low: 0 +upay.ru: could not connect to host upboard.jp: could not connect to host -upgauged.com: could not connect to host 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 uprotect.it: could not connect to host upstats.eu: could not connect to host -uptic.net: did not receive HSTS header +uptakedigital.com.au: max-age too low: 2592000 +uptic.net: could not connect to host +uptogood.org: could not connect to host upupming.site: did not receive HSTS header ur-lauber.de: did not receive HSTS header urban-garden.lt: could not connect to host @@ -14471,48 +16219,59 @@ urban-garden.lv: could not connect to host urbanmic.com: could not connect to host urbpic.com: could not connect to host urcentral.org: could not connect to host +url.cab: could not connect to host urlachershop.com.br: did not receive HSTS header +urlakite.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] urlchomp.com: did not receive HSTS header urology.wiki: did not receive HSTS header -urphp.com: could not connect to host -ursae.co: did not receive HSTS header -us-immigration.com: could not connect to host +urphp.com: did not receive HSTS header +us-immigration.com: did not receive HSTS header usaab.org: did not receive HSTS header 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 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 -usimmigration.us: could not connect to host +userify.com: did not receive HSTS header uslab.io: could not connect to host +usleep.net: could not connect to host usparklodging.com: did not receive HSTS header usportsgo.com: could not connect to host usr.nz: did not receive HSTS header +usuluddin.ga: did not receive HSTS header +utdscanner.com: did not receive HSTS header +uteam.it: could not connect to host +utilio.nl: max-age too low: 2592000 utilitronium-shockwave.com: could not connect to host -utleieplassen.no: could not connect to host +utitreatment.com: did not receive HSTS header +utleieplassen.no: did not receive HSTS header utopiagalaxy.space: could not connect to host +utopialgb.org.uk: could not connect to host utopian-surgery.com: could not connect to host 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 +uvolejniku.cz: did not receive HSTS header uwesander.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] uwfreelanceopticien.nl: could not connect to host -uwsoftware.be: did not receive HSTS header +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 @@ -14524,12 +16283,14 @@ 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 +v2bv.win: could not connect to host v2ex.us: could not connect to host -v4s.ro: could not connect to host +v4s.ro: did not receive HSTS header v4veedu.com: could not connect to host v5wz.com: did not receive HSTS header -v5xp.com: did not receive HSTS header +v5xp.com: could not connect to host v7.cl: could not connect to host v789xl.com: did not receive HSTS header vaaddress.co: could not connect to host @@ -14545,14 +16306,16 @@ vaddder.com: could not connect to host vadennissanofhinesvilleparts.com: could not connect to host vadik.me: could not connect to host vadodesign.nl: did not receive HSTS header +vagaerg.com: did not receive HSTS header +vagaerg.net: did not receive HSTS header vaibhavchatarkar.com: could not connect to host +val-sec.com: could not connect to host valaeris.de: did not receive HSTS header -valasi.eu: could not connect to host valecnatechnika.cz: could not connect to host valenhub.com: could not connect to host valenhub.es: could not connect to host valenscaelum.com: could not connect to host -valesdev.com: did not receive HSTS header +valesdev.com: max-age too low: 0 valethound.com: could not connect to host valhallacostarica.com: could not connect to host valhallamovement.com: did not receive HSTS header @@ -14571,14 +16334,13 @@ vanderkley.it: 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 -vanetv.com: did not receive HSTS header +vanetv.com: could not connect to host vangeluwedeberlaere.be: did not receive HSTS header -vanitas.xyz: did not receive HSTS header +vanhaos.com: could not connect to host +vanitas.xyz: could not connect to host vanitynailworkz.com: could not connect to host vanlaanen.com: did not receive HSTS header vansieleghem.com: could not connect to host -vante.me: could not connect to host -vantru.is: could not connect to host vapecraftinc.com: did not receive HSTS header vapemania.eu: could not connect to host vapeshopsupply.com: max-age too low: 7889238 @@ -14587,35 +16349,47 @@ variablyconstant.com: could not connect to host varta.io: could not connect to host vasa-webstranka.sk: did not receive HSTS header vasanth.org: could not connect to host +vase-eroticke-povidky.cz: could not connect to host +vastgoedcultuurfonds.nl: did not receive HSTS header vastkustenrunt.se: did not receive HSTS header +vatsalyagoel.com: did not receive HSTS header +vatsim-uk.co.uk: did not receive HSTS header +vatsim.uk: did not receive HSTS header vavai.net: did not receive HSTS header +vavouchers.com: could not connect to host +vawltstorage.com: did not receive HSTS header vayaport.com: could not connect to host vbest.net: could not connect to host vbhelp.org: did not receive HSTS header vbulletin-russia.com: could not connect to host vbulletinrussia.com: could not connect to host +vcdn.xyz: could not connect to host vcdove.com: could not connect to host +vcelin-na-doliku.cz: could not connect to host vconcept.ch: could not connect to host vconcept.me: could not connect to host vcr.re: could not connect to host 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 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: did not receive HSTS header 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 vehicleuplift.co.uk: did not receive HSTS header vekenz.com: could not connect to host velasense.com: could not connect to host @@ -14633,20 +16407,19 @@ venninvestorplatform.com: did not receive HSTS header venoom.eu: did not receive HSTS header vensl.org: could not connect to host venturepro.com: did not receive HSTS header -venturum.com: could not connect to host -venturum.de: could not connect to host -venturum.eu: could not connect to host -venturum.net: 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 verdeandco.co.uk: could not connect to host -verdict.gg: 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 +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 @@ -14659,61 +16432,68 @@ 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: could not connect to host 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 -viagra-kaufen.biz: did not receive HSTS header -viasinc.com: did not receive HSTS header +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 +vician.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] vicianovi.cz: could not connect to host viciousviscosity.xyz: could not connect to host victorenxovais.com.br: could not connect to host victoriapemberton.com: did not receive HSTS header +victoriaville.ca: did not receive HSTS header vid.me: did not receive HSTS header -vidadu.com: did not receive HSTS header vidb.me: could not connect to host vidbuchanan.co.uk: did not receive HSTS header -viddiaz.com: did not receive HSTS header +viddiaz.com: could not connect to host videnskabsklubben.dk: did not receive HSTS header videoload.co: could not connect to host videomuz.com: could not connect to host videorullen.se: could not connect to host +videosxgays.com: could not connect to host videotogel.net: could not connect to host videoueberwachung-set.de: did not receive HSTS header vider.ga: could not connect to host vidid.net: could not connect to host vidiproject.com: did not receive HSTS header +vidister.de: 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 +vieaw.com: could not connect to host viennan.net: could not connect to host -vientos.coop: could not connect to host vietnam-lifer.com: could not connect to host vietnamchevrolet.net: did not receive HSTS header vietnamphotographytours.com: did not receive HSTS header +vieux.pro: could not connect to host viewsea.com: max-age too low: 0 vigilo.cf: could not connect to host vigilo.ga: could not connect to host 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 -viktorsvantesson.net: could not connect to host +viktor-machnik.de: could not connect to host +viktorsvantesson.net: did not receive HSTS header viladochurrasco.com.br: could not connect to host vilaydin.com: did not receive HSTS header vilight.com.br: could not connect to host +villa-anna-cilento.de: could not connect to host +villa-bellarte.de: did not receive HSTS header villacarmela.com.br: did not receive HSTS header villainsclothing.com.au: could not connect to host +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 -vinagro.sk: could not connect to host vinasec.se: could not connect to host vinbet.org: could not connect to host vinbet000.com: could not connect to host @@ -14726,38 +16506,40 @@ 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 vinesauce.info: could not connect to host vinetalk.net: could not connect to host vinicius.sl: could not connect to host viniferawineclub.com: did not receive HSTS header +vinihk.com: did not receive HSTS header vinogradovka.com: did not receive HSTS header vio.no: did not receive HSTS header violenceinterrupted.org: did not receive HSTS header violet-letter.delivery: could not connect to host +violetraven.co.uk: could not connect to host viosey.com: could not connect to host -vioye.com: did not receive HSTS header +vioye.com: could not connect to host viperdns.com: could not connect to host 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 -virtualcloud.ddns.net: could not connect to host 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 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 @@ -14765,70 +16547,86 @@ vissersgrootboek.nl: did not receive HSTS header vistarait.com: could not connect to host visualvotes.co.uk: could not connect to host vitagenda.nl: could not connect to host +vital-tel.co.uk: did not receive HSTS header vitalamin.at: could not connect to host vitalamin.ch: could not connect to host vitalita.cz: did not receive HSTS header vitalorange.com: did not receive HSTS header vitalthings.de: could not connect to host +vitamaxxi.com.br: could not connect to host vitapingu.de: could not connect to host vitta.me: did not receive HSTS header vitzro.kr: could not connect to host viva-french.com: did not receive HSTS header -vivanosports.com.br: did not receive HSTS header vivasports.com.br: could not connect to host +viveconsalud.club: could not connect to host vivocloud.com: could not connect to host vivoregularizafacil.com.br: did not receive HSTS header -vivoseg.com: 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 +vkirichenko.name: 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: could not connect to host vlzbazar.ru: could not connect to host vmrdev.com: could not connect to host vmstan.com: did not receive HSTS header +vndb.org: could not connect to host vocab.guru: could not connect to host +vocalsynth.space: could not connect to host voceinveste.com: did not receive HSTS header vogt.tech: could not connect to host -voice-of-design.com: could not connect to host voicesuk.co.uk: did not receive HSTS header -void-it.nl: could not connect to host -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 +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 +vokativy.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] 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 +volkerwesselswave.nl: did not receive HSTS header volkswurst.de: did not receive HSTS header -voltimax.com: could not connect to host +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 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: could not connect to host +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 +vorm2.com: did not receive HSTS header 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 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 @@ -14837,6 +16635,8 @@ vpnhot.com: could not connect to host vpnzoom.com: did not receive HSTS header vps-szerver-berles.hu: could not connect to host vpsmojo.com: could not connect to host +vqporn.com: could not connect to host +vranjske.co.rs: could not connect to host vratny.space: could not connect to host vriendenvoordeel.com: did not receive HSTS header vrijstaandhuis-in-alphen-aan-den-rijn-kopen.nl: could not connect to host @@ -14851,40 +16651,54 @@ 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 +vrtak-cz.net: could not connect to host +vrtouring.org: could not connect to host vrzl.pro: could not connect to host +vsamsonov.com: could not connect to host vsc-don-stocksport.de: did not receive HSTS header +vtuber-schedule.info: could not connect to host vucdn.com: could not connect to host vulnerabilities.io: could not connect to host -vumetric.com: could not connect to host vuosaarenmontessoritalo.fi: did not receive HSTS header vvl.me: did not receive HSTS header +vvzero.cf: could not connect to host +vw-touranclub.cz: could not connect to host vwoforangeparts.com: could not connect to host +vwt-event.nl: could not connect to host vxapps.com: could not connect to host vxml.club: could not connect to host +vxz.me: could not connect to host +vykup-car.ru: could not connect to host vynedmusic.com: could not connect to host vyshivanochka.in.ua: could not connect to host vysvetluju.cz: could not connect to host vyvybean.cf: could not connect to host vyvygen.com: did not receive HSTS header +vyzner.cz: could not connect to host vzk.io: could not connect to host w10club.com: could not connect to host w2gshop.com.br: could not connect to host -w4.no: did not receive HSTS header w4a.fr: could not connect to host +w4b.in: could not connect to host w4xzr.top: could not connect to host w4xzr.xyz: could not connect to host w9rld.com: did not receive HSTS header wabifoggynuts.com: could not connect to host 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 wait.moe: could not connect to host waixingrenfuli7.vip: could not connect to host wakapp.de: could not connect to host wakened.net: did not receive HSTS header +waldkinder-ilmenau.de: did not receive HSTS header walkeryoung.ca: could not connect to host walkingforhealth.org.uk: did not receive HSTS header wallabag.it: did not receive HSTS header @@ -14893,8 +16707,8 @@ wallacequinn.co.uk: did not receive HSTS header wallet.google.com: did not receive HSTS header (error ignored - included regardless) wallsblog.dk: could not connect to host walnutgaming.co.uk: could not connect to host +walter.lc: 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 @@ -14903,36 +16717,42 @@ wanda79.com: could not connect to host wanda96.com: could not connect to host wanda97.com: could not connect to host wanda98.com: could not connect to host +wandercue.com: did not receive HSTS header wangjiatun.com.tw: could not connect to host wangkezun.com: could not connect to host wangqiliang.xn--fiqs8s: could not connect to host wangql.cn: could not connect to host wanquanojbk.com: did not receive HSTS header wantshow.com.br: did not receive HSTS header +wanvi.net: did not receive HSTS header +wanybug.cn: could not connect to host +wapgu.cc: could not connect to host wapjt.cn: could not connect to host wapking.live: could not connect to host wapt.fr: did not receive HSTS header warandpeace.xyz: could not connect to host warcraftjournal.org: could not connect to host wardsegers.be: did not receive HSTS header -warehost.de: did not receive HSTS header +warehost.de: could not connect to host warekon.com: could not connect to host warekon.dk: could not connect to host warezaddict.com: could not connect to host warhistoryonline.com: did not receive HSTS header warlions.info: could not connect to host +warmestwishes.ca: could not connect to host +warnings.xyz: could not connect to host warped.com: did not receive HSTS header warren.sh: could not connect to host 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 +wasserburg.dk: 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 +watchtv-online.pw: max-age too low: 0 watchweasel.com: could not connect to host waterforlife.net.au: did not receive HSTS header waterpoint.com.br: could not connect to host @@ -14941,26 +16761,31 @@ watsonhall.uk: could not connect to host wattechweb.com: did not receive HSTS header wavefloatrooms.com: did not receive HSTS header wavefrontsystemstech.com: could not connect to host -wavesoftime.com: could not connect to host waxlrs.com: could not connect to host waylaydesign.com: did not receive HSTS header waylee.net: did not receive HSTS header wbit.co.il: did not receive HSTS header wbut.ml: could not connect to host +wcwcg.net: could not connect to host wdesk.com: did not receive HSTS header wdmg.com.ua: max-age too low: 604800 -wdt.io: did not receive HSTS header +wdrl.info: did not receive HSTS header +wdt.io: could not connect to host we.serveftp.net: could not connect to host +wealthcentral.com.au: did not receive HSTS header wealthformyhealth.com: did not receive HSTS header wear2work.nl: could not connect to host -wearedisneyland.com: did not receive HSTS header +wearedisneyland.com: could not connect to host 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: could not connect to host 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-vision.de: did not receive HSTS header web4all.fr: did not receive HSTS header web4pro.fr: could not connect to host @@ -14971,10 +16796,10 @@ webapps.directory: could not connect to host webart-factory.de: could not connect to host webassadors.com: could not connect to host 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 webdesign-kronberg.de: did not receive HSTS header -webdesignsandiego.com: 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 @@ -14983,7 +16808,8 @@ webeconomia.it: did not receive HSTS header webelement.sk: did not receive HSTS header weberjulia.com: could not connect to host webfronten.dk: did not receive HSTS header -webgaff.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +webgaff.com: could not connect to host +webgap.me: did not receive HSTS header webgreat.de: max-age too low: 3600 webhackspro.com: could not connect to host webhelyesarcu.hu: did not receive HSTS header @@ -14995,6 +16821,7 @@ 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: could not connect to host @@ -15009,69 +16836,82 @@ webnosql.com: could not connect to host webperformance.ru: could not connect to host webproshosting.tk: could not connect to host webpublica.pt: could not connect to host +webreslist.com: could not connect to host websandbox.uk: could not connect to host +websectools.com: could not connect to host +webseo.de: did not receive HSTS header websiteadvice.com.au: did not receive HSTS header websitedesign.bg: did not receive HSTS header websitesabq.com: did not receive HSTS header -websmartmedia.co.uk: did not receive HSTS header +websouthdesign.com: could not connect to host 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 +webtobesocial.de: could not connect to host webukhost.com: could not connect to host webuni.hu: did not receive HSTS header webveloper.com: did not receive HSTS header -webwork.pw: could not connect to host +webwolf.co.za: could not connect to host +webwork.pw: did not receive HSTS header webypass.xyz: could not connect to host webzanem.com: could not connect to host wecanfindit.co.za: could not connect to host +wecanvisit.com: could not connect to host wedding-m.jp: did not receive HSTS header +weddingalbumsdesign.com: did not receive HSTS header weddingenvelopes.co.uk: did not receive HSTS header weddingibiza.nl: could not connect to host wedotrains.club: did not receive HSTS header weebsr.us: could not connect to host weed.ren: could not connect to host -week.report: 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] +weeknummers.be: could not connect to host wegenaer.nl: could not connect to host +wegner.no: could not connect to host weicn.org: did not receive HSTS header -weightreviews.com: did not receive HSTS header +weightreviews.com: could not connect to host weiji.ga: could not connect to host weiler.xyz: could not connect to host -weiming.ddns.net: could not connect to host +weimaraner.com.br: could not connect to host weinhandel-preissler.de: could not connect to host +weirdserver.com: could not connect to host weiyuz.com: max-age too low: 6585555 weizenke.im: could not connect to host wejumall.com: could not connect to host wekibe.de: could not connect to host welby.cat: did not receive HSTS header -welches-kinderfahrrad.de: did not receive HSTS header +welches-kinderfahrrad.de: could not connect to host +welcomescuba.com: did not receive HSTS header 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 weltentreff.com: could not connect to host weltmeisterschaft.net: could not connect to host weme.eu: could not connect to host wendalyncheng.com: did not receive HSTS header -wendigo.pl: could not connect to host -wenode.net: could not connect to host +wengebowuguan.com: could not connect to host +wenode.net: did not receive HSTS header wentu.ml: could not connect to host wenz.io: did not receive HSTS header wer.sh: could not connect to host @@ -15079,18 +16919,19 @@ werdeeintimo.de: could not connect to host wereldplanner.nl: could not connect to host werhatunsverraten.eu: could not connect to host werken-bij-inwork.nl: could not connect to host -werkenbijkfc.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 +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 -westcanal.net: could not connect to host 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 westlinwinds.com: could not connect to host westsussexconnecttosupport.org: could not connect to host westtulsa.com: could not connect to host @@ -15105,38 +16946,46 @@ wetthost.com: could not connect to host wetttipps.com: could not connect to host wetttipps.de: could not connect to host wevahoo.com: could not connect to host -wevg.org: could not connect to host +wevg.org: did not receive HSTS header wevolver.com: did not receive HSTS header wewillgo.com: could not connect to host wewillgo.org: did not receive HSTS header wewlad.me: could not connect to host +weyland.tech: did not receive HSTS header wezl.net: did not receive HSTS header wf-training-master.appspot.com: did not receive HSTS header (error ignored - included regardless) 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] 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 +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 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 -whiteshadowimperium.com: could not connect to host -whitestagforge.com: could not connect to host +whitestagforge.com: did not receive HSTS header +whitewinterwolf.com: could not connect to host whoclicks.net: could not connect to host +whoisamitsingh.com: did not receive HSTS header whoisapi.online: could not connect to host +whoiscuter.ml: could not connect to host +whoiscutest.ml: could not connect to host wholebites.com: max-age too low: 7889238 +wholelotofbounce.co.uk: did not receive HSTS header wholikes.us: could not connect to host whoneedstobeprimaried.today: could not connect to host whoownsmyavailability.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -15148,7 +16997,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 @@ -15157,7 +17006,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 @@ -15170,9 +17019,9 @@ wilhelm-nathan.de: could not connect to host willcipriano.com: could not connect to host willeminfo.ch: did not receive HSTS header willemsjort.be: did not receive HSTS header +william.gg: did not receive HSTS header william.si: did not receive HSTS header williamboundsltd.com: could not connect to host -williamle.com: did not receive HSTS header williamsapiens.com: could not connect to host williamtm.design: could not connect to host willkommen-fuerstenberg.de: could not connect to host @@ -15181,17 +17030,21 @@ wilsonovi.com: could not connect to host winaes.com: did not receive HSTS header winclient.cn: could not connect to host windholz.us: could not connect to host +windows10insider.com: did not receive HSTS header windowsforum.com: did not receive HSTS header windowstech.it: did not receive HSTS header windowwellexperts.com: did not receive HSTS header +windrunner.se: could not connect to host winds.cf: could not connect to host windwoodmedia.com: could not connect to host windwoodweb.com: could not connect to host -wine-importer.ru: could not connect to host +wine-importer.ru: did not receive HSTS header winebid.com: could not connect to host winecodeavocado.com: could not connect to host +wineonthewall.com: max-age too low: 300 +winepress.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] wineworksonline.com: could not connect to host -winfield.me.uk: did not receive HSTS header +winfield.me.uk: could not connect to host winfieldchen.me: did not receive HSTS header winged.io: did not receive HSTS header wingos.net: could not connect to host @@ -15199,25 +17052,31 @@ wingumd.net: could not connect to host winnersports.co: could not connect to host winpack.cf: could not connect to host winpack.eu.org: could not connect to host +winportal.cz: did not receive HSTS header winsec.nl: could not connect to host winshiplending.com: could not connect to host winsufi.biz: could not connect to host wintercircle.co: max-age too low: 60 -wintermeyer-consulting.de: 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: did not receive HSTS header +wireframesoftware.com: could not connect to host wireless-emergency-stop.com: did not receive HSTS header +wirelesswatch.com.au: could not connect to host +wiretrip.io: did not receive HSTS header wirkaufendeinau.to: could not connect to host wisak.eu: could not connect to host wisdomize.me: could not connect to host +wiseflat.com: did not receive HSTS header wiseloan.com: did not receive HSTS header wishcert.com: could not connect to host wishesbee.com: could not connect to host wissl.org: could not connect to host witae.com: could not connect to host withgoogle.com: did not receive HSTS header (error ignored - included regardless) +withlocals.com: did not receive HSTS header withmy.beer: could not connect to host withoutacrystalball.com: did not receive HSTS header withustrading.com: did not receive HSTS header @@ -15237,20 +17096,25 @@ wmawri.com: did not receive HSTS header wmcuk.net: did not receive HSTS header wmfinanz.com: could not connect to host wmoda.com.br: could not connect to host +wnmed.com.au: did not receive HSTS header wnmm.nl: could not connect to host wnnc.co.uk: could not connect to host +woaiuhd.com: could not connect to host wobblylang.org: could not connect to host wochenentwicklung.com: did not receive HSTS header +wochennummern.de: could not connect to host wod-stavby.cz: could not connect to host wodice.com: could not connect to host wohnungsbau-ludwigsburg.de: did not receive HSTS header woima.fi: max-age too low: 604800 -wokeai.net: did not receive HSTS header +wokeai.net: could not connect to host woktoss.com: could not connect to host wolfemg.com: could not connect to host wolfenland.net: did not receive HSTS header wolfesden.com: could not connect to host wolfram.io: could not connect to host +wolfsden.cz: could not connect to host +wolkenspeicher.org: could not connect to host wollekorb.de: could not connect to host womf.org: did not receive HSTS header womosale.de: could not connect to host @@ -15262,43 +17126,53 @@ 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 +woomai.net: did not receive HSTS header woomu.me: 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 +worf.in: 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 +workissime.com: did not receive HSTS header workpermit.com.vn: could not connect to host -workray.com: 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 worldchess.london: could not connect to host -worldfree4.org: could not connect to host +worldfree4.org: did not receive HSTS header worldlist.org: could not connect to host worldpovertysolutions.org: did not receive HSTS header 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 +woshiluo.site: 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-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 +wpenhance.com: could not connect to host +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 @@ -15321,6 +17195,9 @@ 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 @@ -15331,15 +17208,18 @@ wsdcap.com: could not connect to host wsor.group: did not receive HSTS header wss.com.ve: could not connect to host wsscompany.com.ve: could not connect to host +wssv.ch: could not connect to host +wstudio.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 +wtwk.com: did not receive HSTS header +wubify.com: did not receive HSTS header wubocong.com: could not connect to host wubthecaptain.eu: could not connect to host wuchipc.com: could not connect to host -wufupay.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +wufupay.com: could not connect to host wuhengmin.com: could not connect to host wulpi.it: did not receive HSTS header +wumai.cloud: could not connect to host wumbo.kiwi: could not connect to host wundtherapie-schulung.de: could not connect to host wurzelzwerg.net: could not connect to host @@ -15349,21 +17229,22 @@ wvr-law.de: did not receive HSTS header wvw698.com: max-age too low: 2592000 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: did not receive HSTS header +www-66136.com: did not receive HSTS header www-68277.com: could not connect to host www-746.com: could not connect to host www-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-9995.com: could not connect to host +www-djbet.com: could not connect to host +www-jinshavip.com: could not connect to host 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] @@ -15379,7 +17260,6 @@ 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 @@ -15396,43 +17276,51 @@ 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 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 +wxzm.sx: could not connect to host wy6.org: did not receive HSTS header wybmabiity.com: could not connect to host wygluszanie.eu: could not connect to host 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 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 -x1616.tk: could not connect to host +x1be.win: could not connect to host 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 -xanax.pro: could not connect to host +x69.biz: could not connect to host +x69x.net: could not connect to host +xanadu-golf.cz: did not receive HSTS header 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 xbind.io: could not connect to host +xboxdownloadthat.com: could not connect to host xchangeinfo.com: could not connect to host xchating.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 +xecure.zone: could not connect to host +xecureit.com: 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 @@ -15440,8 +17328,10 @@ 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 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 xia100.xyz: could not connect to host @@ -15451,12 +17341,12 @@ xiaody.me: could not connect to host xiaolan.me: could not connect to host xiaolvmu.com: could not connect to host xiaolvmu.me: could not connect to host -xiaomionline24.pl: could not connect to host xiaoxiao.im: could not connect to host -xiaxuejin.cn: did not receive HSTS header +xiaxuejin.cn: could not connect to host +xiazhanjian.com: could not connect to host +xice.cf: could not connect to host xilegames.com: could not connect to host -xiliant.com: did not receive HSTS header -ximage.me: did not receive HSTS header +ximage.me: could not connect to host ximens.me: could not connect to host xinbiji.cn: could not connect to host xinex.cz: could not connect to host @@ -15464,22 +17354,26 @@ 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 +xiongx.cn: did not receive HSTS header +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 -xjoin.de: could not connect to host +xjoi.net: did not receive HSTS header xlaff.com: could not connect to host -xlboo.com: did not receive HSTS header +xlboo.com: could not connect to host xlfblog.com: did not receive HSTS header xlinar.com: could not connect to host +xmerak.com: 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 +xmv.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] +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 @@ -15490,10 +17384,12 @@ 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 @@ -15507,13 +17403,16 @@ xn--cckvb1cwa0c5br5e2d2711k.net: could not connect to host xn--datenrettung-mnchen-jbc.com: did not receive HSTS header xn--dckya4a0bya6x.com: could not connect to host xn--dckya4a0bya6x.jp: could not connect to host +xn--dk8haaa.ws: could not connect to host xn--e--0g4aiy1b8rmfg3o.jp: could not connect to host xn--e--4h4axau6ld4lna0g.com: could not connect to host xn--e--ig4a4c3f6bvc5et632i.com: could not connect to host xn--e--k83a5h244w54gttk.xyz: could not connect to host xn--ekr87w7se89ay98ezcs.biz: did not receive HSTS header +xn--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 @@ -15525,11 +17424,12 @@ 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 @@ -15540,7 +17440,6 @@ 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--r77hya.ga: could not connect to host -xn--rlcus7b3d.xn--xkc2dl3a5ee0h: could not connect to host xn--rt-cja.eu: could not connect to host xn--sdkwa9azd389v01ya.com: did not receive HSTS header xn--srenpind-54a.dk: could not connect to host @@ -15566,37 +17465,52 @@ xn--ykrp42k.com: could not connect to host xn--yoamomisuasbcn-ynb.com: could not connect to host xn--zck9a4b352yuua.jp: did not receive HSTS header xng.io: did not receive HSTS header +xnu.kr: could not connect to host xobox.me: could not connect to host +xoda.pw: could not connect to host xoffy.com: did not receive HSTS header xom.party: could not connect to host xombra.com: could not connect to host xor-a.net: could not connect to host +xotika.tv: could not connect to host 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 xpressprint.com.br: max-age too low: 90 -xpwn.cz: could not connect to host -xq55.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +xpwn.cz: 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 -xtream-hosting.com: did not receive HSTS header +xtream-hosting.com: could not connect to host xtream-hosting.de: could not connect to host xtream-hosting.eu: could not connect to host xtreamhosting.eu: could not connect to host +xtremegaming.it: could not connect to host xtrim.ru: did not receive HSTS header xtzone.be: could not connect to host +xuanmeishe.top: could not connect to host +xuc.me: did not receive HSTS header 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 -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 @@ -15607,22 +17521,27 @@ xy7373.com: could not connect to host xyndrac.net: max-age too low: 2592000 xynex.us: could not connect to host xynta.ch: could not connect to host -xza.fr: 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 -yarchives.jp: could not connect to host +yaoidreams.com: could not connect to host +yaporn.tv: could not connect to host +yarchives.jp: max-age too low: 0 yard-fu.com: could not connect to host yardbird.us: could not connect to host yarnhookup.com: did not receive HSTS header @@ -15630,17 +17549,16 @@ 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 -ybresson.com: could not connect to host ybscareers.co.uk: 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: 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 @@ -15650,32 +17568,34 @@ yepbitcoin.com: could not connect to host yesdevnull.net: did not receive HSTS header yesfone.com.br: 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: max-age too low: 86400 yhori.xyz: could not connect to host yibaoweilong.top: could not connect to host yibin0831.com: could not connect to host yikzu.cn: could not connect to host +yimgo.fr: 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 +yingyj.com: could not connect to host yinhe12.net: did not receive HSTS header yippie.nl: could not connect to host yizhu.com: could not connect to host yjsoft.me: could not connect to host +ylilauta.org: could not connect to host ylk.io: could not connect to host ynode.co: did not receive HSTS header ynsn.nl: could not connect to host yntongji.com: could not connect to host yob.vn: could not connect to host -yobbelwobbel.de: could not connect to host yobst.tk: could not connect to host 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 @@ -15687,66 +17607,80 @@ 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 yomepre.com: could not connect to host yopers.com: did not receive HSTS header yorkshireterrier.com.br: could not connect to host -yorname.ml: could not connect to host +yorname.ml: did not receive HSTS header yoru.me: could not connect to host -yoticonnections.com: could not connect to host yotilabs.com: could not connect to host youcaitian.com: did not receive HSTS header youcancraft.de: could not connect to host youcanfuckoff.xyz: could not connect to host youcontrol.ru: could not connect to host +youdowell.com: did not receive HSTS header youfencun.com: did not receive HSTS header +youjizz.bz: could not connect to host youlend.com: did not receive HSTS header 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 yourgame.co.il: did not receive HSTS header youri.me: could not connect to host yourlovesong.com.mx: could not connect to host -yourname.xyz: did not receive HSTS header +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 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] -yslbeauty.com: did not receive HSTS header +yspeo.com: max-age too low: 2592000 +ysx.me.uk: did not receive HSTS header +ytb.zone: did not receive HSTS header +ytbmp3.com: did not receive HSTS header +ytbmp4.com: did not receive HSTS header ytcuber.xyz: could not connect to host ythyth.com: max-age too low: 2592000 +ytpak.com: could not connect to host ytvwld.de: did not receive HSTS header yu7.jp: did not receive HSTS header +yuanbenlian.com: did not receive HSTS header yudan.com.br: could not connect to host yude.ml: could not connect to host -yue2.net: did not receive HSTS header 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: max-age too low: 0 yui.cat: did not receive HSTS header +yuka.one: could not connect to host +yuki-portfolio.com: did not receive HSTS header yukijinji.moe: did not receive HSTS header yukiminami.net: could not connect to host +yukimochi.com: could not connect to host 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 @@ -15757,26 +17691,41 @@ 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 yutabon.com: could not connect to host +yutaron.tokyo: did not receive HSTS header yuushou.com: could not connect to host yux.fr: could not connect to host yux.io: did not receive HSTS header +yuxingxin.com: did not receive HSTS header yuzu.tk: did not receive HSTS header ywei.org: could not connect to host ywyz.tech: could not connect to host +yya.bid: could not connect to host +yya.men: could not connect to host +yyrss.com: could not connect to host z-coder.com: could not connect to host 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 +zabszk.net: could not connect to host 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 -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 @@ -15786,7 +17735,9 @@ 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 +zapmaster14.com: 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 @@ -15799,6 +17750,7 @@ zdravotnickasluzba.eu: could not connect to host zdrowiepaleo.pl: did not receive HSTS header zdx.ch: max-age too low: 0 zeb.fun: could not connect to host +zebibyte.cn: did not receive HSTS header zebrababy.cn: could not connect to host zebry.nl: did not receive HSTS header zecrypto.com: could not connect to host @@ -15812,13 +17764,14 @@ 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 zeno-system.com: did not receive HSTS header zenpayroll.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 @@ -15826,7 +17779,7 @@ zenwears.com: could not connect to host zenycosta.com: could not connect to host zepect.com: did not receive HSTS header zera.com.au: could not connect to host -zerekin.net: did not receive HSTS header +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 @@ -15835,19 +17788,22 @@ 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 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: 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 +zhangsir.net: did not receive HSTS header zhaochen.xyz: could not connect to host zhaojin97.cn: could not connect to host zhendingresources.com: did not receive HSTS header @@ -15855,9 +17811,10 @@ zhengouwu.com: could not connect to host zhenmeish.com: could not connect to host zhh.in: 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 zhome.info: could not connect to host zhoujiashu.com: could not connect to host zhuji.com: could not connect to host @@ -15869,20 +17826,22 @@ zi0r.com: did not receive HSTS header zian.online: could not connect to host zicklam.com: could not connect to host zigcore.com.br: could not connect to host +zii.bz: 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 +zinniamay.com: could not connect to host zippy-download.com: could not connect to host zippy-download.de: could not connect to host zirtue.io: could not connect to host +zitrone44.de: did not receive HSTS header zivagold.com: did not receive HSTS header -zivver.com: could not connect to host zivy-ruzenec.cz: could not connect to host +zivyruzenec.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] 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 zjubtv.com: could not connect to host zjutv.com: could not connect to host zkillboard.com: did not receive HSTS header @@ -15899,16 +17858,17 @@ 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 zolotoy-standart.com.ua: did not receive HSTS header zombiesecured.com: could not connect to host zomiac.pp.ua: could not connect to host zonadebolsa.es: did not receive HSTS header -zonadigital.co: 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 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 zoofit.com.au: did not receive HSTS header @@ -15916,32 +17876,42 @@ zoological-gardens.eu: could not connect to host zoomingin.net: max-age too low: 5184000 zoommailing.com: did not receive HSTS header zoorigin.com: did not receive HSTS header +zooxdata.com: could not connect to host +zorig.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] +zorki.nl: did not receive HSTS header zortium.report: could not connect to host zorz.info: could not connect to host zoznamrealit.sk: did not receive HSTS header +zpy.fun: could not connect to host zq789.com: could not connect to host zqhong.com: could not connect to host zqjs.tk: could not connect to host +zqwqz.com: could not connect to host +zrhdwz.cn: could not connect to host zrkr.de: could not connect to host zrn.in: did not receive HSTS header ztan.tk: could not connect to host ztcaoll222.cn: could not connect to host ztytian.com: could not connect to host zuan-in.com: could not connect to host +zubro.net: could not connect to host zuckerfloh.de: did not receive HSTS header zudomc.me: could not connect to host zuehlcke.de: could not connect to host zukix.com: could not connect to host zulu7.com: did not receive HSTS header -zumazar.ru: 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 +zwembadheeten.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] zx1168.com: could not connect to host zx2268.com: could not connect to host +zxavier.com: did not receive HSTS header +zxc.science: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] zxity.co.uk: could not connect to host zxity.ltd: could not connect to host zxity.uk: could not connect to host @@ -15954,5 +17924,4 @@ zyso.org: could not connect to host 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 16dd59d71..c18b16599 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(1544002174024000); +const PRTime gPreloadListExpirationTime = INT64_C(1550274566598000); class nsSTSPreload { @@ -32,22 +32,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "00550055.net", true }, { "00660066.net", true }, { "00770077.net", true }, - { "00778899.com", true }, + { "0086286.com", true }, { "00990099.net", 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 }, @@ -65,31 +60,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, @@ -115,10 +100,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "083912.com", true }, { "083957.com", true }, { "083960.com", true }, - { "083962.com", true }, { "083965.com", true }, { "083967.com", true }, - { "086628.com", true }, + { "08detaxe.fr", true }, { "09115.com", true }, { "0916app.com", true }, { "09892.net", true }, @@ -136,11 +120,12 @@ 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 }, + { "0x48.pw", true }, { "0x52.net", true }, - { "0x5f3759df.cf", true }, { "0x7d.com", true }, { "0x7fffffff.net", true }, { "0x90.io", true }, @@ -150,7 +135,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 }, @@ -158,8 +142,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "100-downloads.com", true }, { "10000v.ru", true }, { "1000minds.com", true }, - { "1000serien.com", false }, - { "1001firms.com", true }, + { "1000serien.com", true }, + { "1001carats.fr", true }, + { "1001kartini.com", true }, { "1001kerstpakketten.com", false }, { "1001mv.com", true }, { "10086.nl", true }, @@ -182,23 +167,22 @@ 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 }, + { "10xiuxiu.com", true }, { "110110110.net", true }, { "112112112.net", true }, { "112app.nl", true }, { "112hz.com", true }, { "113113113.net", true }, { "114514ss.com", true }, + { "1177107.com", true }, { "118118118.net", true }, - { "11bt.cc", true }, { "11dzon.com", true }, { "11loc.de", true }, { "11scc.com", true }, @@ -214,9 +198,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "123bearing.co.uk", true }, { "123bearing.com", true }, { "123bearing.eu", true }, - { "123comparer.fr", false }, + { "123comparer.fr", true }, { "123djdrop.com", true }, { "123midterm.com", true }, + { "123opstalverzekeringen.nl", true }, { "123pay.ir", false }, { "123plons.nl", true }, { "123roulement.be", true }, @@ -227,18 +212,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "124133.com", true }, { "124633.com", true }, { "125m125.de", true }, + { "1288366.com", true }, { "1288fc.com", true }, { "12photos.eu", true }, { "12thmanrising.com", true }, { "12vpn.net", true }, { "130.ua", true }, - { "130978.com", true }, { "132kv.ch", true }, - { "13318522.com", true }, { "1359826938.rsc.cdn77.org", true }, - { "1391kj.com", true }, { "1395kj.com", true }, - { "1396.net", true }, { "13th-dover.uk", true }, { "143533.com", true }, { "143633.com", true }, @@ -266,6 +248,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "149733.com", true }, { "14it.de", true }, { "14x3.de", true }, + { "15-10.com", true }, { "1511774230.rsc.cdn77.org", true }, { "152433.com", true }, { "154233.com", true }, @@ -274,26 +257,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "156433.com", true }, { "1590284872.rsc.cdn77.org", true }, { "1600esplanade.com", true }, + { "160887.com", true }, { "1644091933.rsc.cdn77.org", true }, { "1661237.com", true }, - { "1689886.com", true }, + { "166166.com", true }, { "168bo9.com", true }, { "168bo9.net", true }, + { "16book.org", true }, { "1750studios.com", false }, - { "17hats.com", true }, { "1811559.com", true }, { "1844329061.rsc.cdn77.org", true }, { "1876996.com", true }, - { "18888msc.com", true }, { "188da.com", true }, { "188dv.com", true }, + { "1895media.com", true }, { "189dv.com", true }, { "189fc.com", true }, { "18celebration.com", true }, { "18celebration.org", true }, { "18f.gov", true }, { "18f.gsa.gov", false }, - { "19216811.online", true }, { "192168ll.repair", true }, { "192433.com", true }, { "1972969867.rsc.cdn77.org", true }, @@ -304,12 +287,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1a-werkstattgeraete.de", true }, { "1ab-machinery.com", true }, { "1aim.com", true }, - { "1b1.pl", true }, { "1c-power.ru", true }, { "1cover.co.nz", true }, { "1cover.com.au", true }, { "1e9.nl", true }, { "1f123.net", true }, + { "1fach-digital.de", true }, { "1hourproofreading.com", true }, { "1it.click", true }, { "1js.de", true }, @@ -317,21 +300,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1km.ro", true }, { "1kmi.co", true }, { "1ll.uk", true }, + { "1lord1faith.com", true }, { "1m.duckdns.org", true }, { "1montre.fr", true }, { "1morebounce.co.uk", true }, { "1nfr.com", false }, + { "1oaklasvegas.com", true }, { "1of16.de", true }, { "1on1on1.de", true }, { "1on1on1.tv", true }, { "1panorama.ru", true }, { "1para.net", true }, + { "1password.ca", true }, { "1password.com", true }, + { "1password.eu", 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 }, @@ -339,68 +326,78 @@ 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 }, { "1whw.co.uk", true }, { "1wirelog.de", true }, { "1wl.uk", true }, { "2.wtf", true }, - { "200fcw.com", true }, - { "2018.wales", true }, + { "200.network", true }, + { "2012.ovh", true }, { "2048-spiel.de", true }, { "20at.com", true }, { "20denier.com", true }, - { "21.co.uk", true }, { "215dy.net", true }, { "21sthammersmith.org.uk", true }, { "21x9.org", true }, { "2222yh.com", true }, - { "22bt.cc", true }, { "22digital.agency", true }, { "22scc.com", true }, { "230beats.com", true }, + { "23333.link", true }, { "2333666.xyz", true }, { "2333blog.com", true }, { "233abc.com", true }, { "233blog.com", true }, + { "233boy.com", true }, + { "233bwg.com", true }, + { "233hugo.com", true }, { "233ss.net", true }, { "233vps.com", true }, { "24-7.jp", true }, { "245meadowvistaway.com", true }, { "246060.ru", true }, - { "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 }, { "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 }, { "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 }, + { "297computers.com", true }, { "298da.com", true }, { "2991236.com", true }, + { "2au.ru", true }, + { "2bad2c0.de", 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 }, @@ -408,10 +405,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2c-t-7.com", true }, { "2c-t-8.com", true }, { "2cash.ru", true }, + { "2chan.eu", true }, + { "2chan.jp", true }, { "2cv-fahrer.de", true }, { "2fm.ie", true }, { "2fraud.pro", true }, - { "2gen.com", true }, + { "2g1s.net", true }, + { "2h-nagoya.org", true }, { "2heartsbookings.co.uk", true }, { "2hypeenterprises.com", true }, { "2kgwf.fi", true }, @@ -422,13 +422,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "2ulcceria.nl", true }, { "2wheel.com", true }, + { "2y.fi", true }, { "3-dot-careapp1-146314.appspot.com", true }, { "300m.com", false }, { "302422.com", true }, @@ -439,13 +440,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "304squadron.org", true }, { "3056999.com", true }, { "309422.com", true }, - { "30yearmortgagerates.net", true }, + { "30hzcollective.com", 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 }, @@ -524,24 +526,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 }, { "388da.com", true }, - { "38blog.com", true }, { "390422.com", true }, { "392422.com", true }, { "393335.ml", true }, @@ -550,6 +554,7 @@ 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 }, @@ -566,6 +571,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3circlefunding.ch", true }, { "3countiescastlehire.co.uk", true }, { "3cs.ch", true }, + { "3deeplearner.com", true }, { "3djuegos.com", true }, { "3dmedium.de", true }, { "3dmusiclab.nl", true }, @@ -575,8 +581,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3haeuserprojekt.org", true }, { "3haueserprojekt.org", true }, { "3hl0.net", true }, + { "3ik.us", true }, { "3james.com", true }, { "3logic.ru", true }, + { "3lot.ru", true }, { "3n5b.com", true }, { "3os.ooo", true }, { "3phase.pw", true }, @@ -602,44 +610,51 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3tribes.co.uk", true }, { "3typen.tv", true }, { "3v4l.org", true }, - { "3weekdietworks.com", true }, { "4-1-where.com", true }, - { "40-grad.de", true }, - { "4000milestare.com", true }, + { "4-it.de", 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 }, - { "42day.info", true }, - { "42entrepreneurs.fr", true }, { "439050.com", true }, - { "441jj.com", false }, + { "440887.com", true }, + { "442887.com", true }, + { "443887.com", true }, { "4444yh.com", true }, + { "444887.com", true }, + { "445887.com", true }, { "448da.com", true }, { "44scc.com", true }, - { "44sec.com", true }, - { "4500.co.il", false }, { "451.ooo", true }, { "4553s.com", true }, { "4553vip.com", true }, - { "478933.com", true }, + { "4706666.com", true }, + { "4716666.com", true }, + { "4726666.com", true }, + { "4736666.com", true }, + { "4756666.com", true }, + { "4786666.com", true }, { "47essays.com", true }, { "491mhz.net", true }, { "49889.com", true }, { "49dollaridahoregisteredagent.com", true }, + { "4c-haircare.com", true }, { "4decor.org", true }, { "4everproxy.com", true }, { "4eyes.ch", true }, { "4fit.ro", true }, + { "4flex.info", true }, { "4freepress.com", true }, { "4g-server.eu", false }, { "4garage.com.br", true }, @@ -658,14 +673,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 }, @@ -692,8 +709,8 @@ 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 }, @@ -705,12 +722,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "51877.net", true }, { "519422.com", true }, { "51acg.eu.org", true }, + { "51tiaojiu.com", true }, { "5214889.com", true }, { "5214889.net", true }, { "524022.com", true }, { "524622.com", true }, { "524922.com", true }, { "525.info", true }, + { "52hentai.ml", true }, { "52kb365.com", true }, { "52ncp.net", true }, { "52sykb.com", true }, @@ -725,24 +744,26 @@ 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 }, + { "55639.com", true }, + { "55797.com", true }, { "558da.com", true }, - { "55bt.cc", true }, { "55scc.com", true }, { "576422.com", true }, { "579422.com", true }, + { "57he.com", true }, { "57wilkie.net", true }, { "583422.com", true }, { "585422.com", true }, @@ -760,15 +781,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "5percentperweek.com", true }, { "5starbouncycastlehire.co.uk", true }, - { "5thchichesterscouts.org.uk", true }, { "5w5.la", true }, { "5y.fi", true }, { "602422.com", true }, @@ -827,17 +848,14 @@ 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 }, + { "64bitservers.net", false }, { "651422.com", true }, { "652422.com", true }, { "6541166.com", true }, @@ -853,22 +871,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6547766.com", true }, { "6548855.com", true }, { "6548877.com", true }, + { "656088.com", true }, { "659422.com", true }, + { "65d88.com", true }, + { "66136.com", true }, { "6616fc.com", true }, - { "66205.net", true }, { "6633445.com", true }, { "6652566.com", true }, { "6660111.ru", true }, { "6664553.com", true }, { "666668722.com", true }, { "6666yh.com", true }, + { "666omg.com", true }, + { "6677.us", true }, { "668da.com", true }, + { "66bwf.com", true }, { "670422.com", true }, { "671422.com", true }, { "672422.com", true }, { "673422.com", true }, { "676422.com", true }, - { "67899876.com", true }, { "679422.com", true }, { "680422.com", true }, { "686848.com", true }, @@ -884,15 +906,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6997896.com", true }, { "69butterfly.com", true }, { "69fps.gg", true }, - { "6ird.com", true }, + { "69wasted.net", true }, { "6lo.zgora.pl", true }, { "6pm.com", true }, { "6t-montjoye.org", true }, { "6w6.la", true }, - { "6z3.net", true }, { "700.az", true }, { "704233.com", true }, + { "7045.com", true }, { "704533.com", true }, + { "7045h.com", true }, { "704633.com", true }, { "712433.com", true }, { "713433.com", true }, @@ -913,25 +936,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "736433.com", true }, { "738433.com", true }, { "739433.com", true }, - { "73info.com", true }, + { "73info.com", false }, { "740833.com", true }, { "741833.com", true }, { "742833.com", true }, { "743833.com", true }, { "74th.jp", true }, + { "755k3.com", true }, + { "7570.com", true }, { "762.ch", true }, - { "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 }, { "7careconnect.com", true }, { "7delights.com", true }, { "7delights.in", true }, @@ -939,31 +962,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7graus.pt", true }, { "7kicks.com", true }, { "7kovrikov.ru", true }, - { "7nw.eu", true }, { "7proxies.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 }, + { "818bwf.com", true }, { "818da.com", true }, - { "8206688.com", true }, + { "8349822.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.am", true }, { "8722am.com", true }, { "8722cn.com", true }, { "8722hk.com", true }, @@ -973,11 +999,70 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8818k3.com", true }, { "8833445.com", true }, { "88522am.com", true }, + { "887.ag", true }, + { "8876138.com", true }, + { "8876520.com", true }, + { "8876578.com", true }, + { "8876598.com", true }, + { "8876655.com", true }, + { "8876660.com", true }, + { "8876687.com", true }, + { "8876770.com", true }, + { "8876775.com", true }, + { "8876776.com", true }, + { "8876779.com", true }, + { "8876818.com", true }, + { "8876822.com", true }, + { "8876838.com", true }, + { "8876858.com", true }, + { "8876866.com", true }, + { "8876879.com", true }, + { "8876881.com", true }, + { "8876882.com", true }, + { "8876883.com", true }, + { "8876898.com", true }, + { "8876900.com", true }, + { "8876991.com", true }, + { "8876992.com", true }, + { "8876996.com", true }, + { "8880013.com", true }, + { "8880021.com", true }, + { "8880023.com", true }, + { "8880025.com", true }, + { "8880057.com", true }, + { "8880059.com", true }, + { "8880067.com", true }, + { "8880083.com", true }, + { "8880100.com", true }, + { "8884553.com", true }, + { "8886737.com", true }, + { "8886739.com", true }, + { "8886793.com", true }, + { "8886806.com", true }, + { "8886860.com", true }, { "888888722.com", true }, { "88889822.com", true }, { "8888esb.com", true }, { "8888yh.com", true }, + { "8889457.com", true }, + { "8889458.com", true }, + { "8889466.com", true }, + { "8889563.com", true }, + { "8889709.com", true }, + { "8889729.com", true }, + { "8889792.com", true }, + { "8889807.com", true }, + { "8889809.com", true }, + { "8889819.com", true }, + { "8889870.com", true }, + { "8889881.com", true }, + { "8889890.com", true }, + { "8889893.com", true }, + { "8889903.com", true }, + { "8889910.com", true }, + { "888bwf.com", true }, { "888msc.vip", true }, + { "88bwf.com", true }, { "8901178.com", true }, { "8901178.net", true }, { "8910899.com", true }, @@ -988,13 +1073,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8917818.net", true }, { "8951889.com", true }, { "8951889.net", true }, - { "8989k3.com", true }, { "8992088.com", true }, { "8992088.net", true }, { "8ack.de", true }, { "8ackprotect.com", true }, { "8da188.com", true }, { "8da2017.com", true }, + { "8da222.com", true }, { "8da88.com", true }, { "8da999.com", true }, { "8dabet.com", true }, @@ -1007,12 +1092,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8tech.com.hk", true }, { "8thportsmouth.org.uk", true }, { "8tuffbeers.com", true }, - { "8ung.online", true }, + { "8xx.bet", true }, + { "8xx888.com", true }, + { "8xxbet.net", true }, { "9-11commission.gov", true }, { "903422.com", true }, { "905422.com", true }, { "90r.jp", true }, - { "910kj.com", true }, { "9118.com", true }, { "911commission.gov", true }, { "912422.com", true }, @@ -1020,9 +1106,9 @@ 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 }, @@ -1035,7 +1121,6 @@ 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 }, @@ -1050,18 +1135,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -1074,13 +1157,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "99rst.org", true }, { "9bingo.net", true }, { "9farm.com", true }, - { "9iwan.net", true }, + { "9fvip.net", true }, { "9jajuice.com", true }, { "9pkfz.com", true }, - { "9ss6.com", true }, + { "9riddles.com", true }, { "9tolife.be", true }, { "9uelle.jp", true }, - { "9vies.ca", true }, { "9vx.org", true }, { "9won.kr", true }, { "9y.at", true }, @@ -1092,8 +1174,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a-little-linux-box.at", true }, { "a-msystems.com", true }, { "a-oben.org", true }, - { "a-shafaat.ir", true }, { "a-starbouncycastles.co.uk", true }, + { "a-wife.net", true }, + { "a-ztransmission.com", true }, { "a0print.nl", true }, { "a1bouncycastlehire.com", true }, { "a1jumpandbounce.co.uk", true }, @@ -1106,7 +1189,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a4sound.com", true }, { "a632079.me", true }, { "a7m2.me", true }, - { "a8q.org", true }, { "aa-tour.ru", true }, { "aa1718.net", true }, { "aa6688.net", true }, @@ -1114,6 +1196,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aabanet.com.br", true }, { "aaben-bank.dk", true }, { "aabenbank.dk", true }, + { "aacfree.com", true }, { "aagetransport.no", true }, { "aalalbayt.com", true }, { "aalalbayt.net", true }, @@ -1126,8 +1209,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aanmpc.com", true }, { "aaomidi.com", true }, { "aapas.org.ar", true }, - { "aardvarksolutions.co.za", true }, { "aarkue.eu", true }, + { "aaron.cm", true }, { "aaron.xin", true }, { "aaronhorler.com", true }, { "aaronhorler.com.au", true }, @@ -1136,13 +1219,16 @@ 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 }, { "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 }, @@ -1158,14 +1244,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abckam.com", true }, { "abcpartyhire.com", true }, { "abcstudio.com.au", true }, + { "abdel.me", true }, + { "abdelsater.net", true }, { "abdullah.pw", 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 }, @@ -1182,6 +1269,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abilymp06.net", true }, { "abimelec.com", true }, { "abinyah.com", true }, + { "abitidalavoro.roma.it", true }, { "abitur97ag.de", true }, { "abiturma.de", true }, { "ablak-nyilaszaro.info", true }, @@ -1215,6 +1303,7 @@ 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 }, @@ -1227,22 +1316,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aboutyou.ch", true }, { "aboutyou.de", true }, { "aboutyou.nl", true }, + { "aboveaverageplumbing.com", true }, { "abox-kb.com", true }, { "abpis.hr", true }, { "abracadabra.co.jp", false }, { "abrakidabra.com.br", true }, - { "abraxan.pro", true }, { "abrilect.com", true }, { "abristolgeek.co.uk", true }, { "abseits.org", true }, { "absolem.cc", true }, + { "absoluteautobody.com", true }, + { "absolutedouble.co.uk", true }, { "absolutehaitian.com", true }, { "absolutehosting.co.za", true }, { "absolutelyinflatables.co.uk", true }, { "absoluterush.net", true }, - { "absolutewaterproofingsolutions.com", true }, { "absolutewebdesigns.com", true }, { "abstraction21.com", true }, + { "absturztau.be", true }, + { "absturztaube.ch", true }, { "absynthe-inquisition.fr", true }, { "abthorpe.org", true }, { "abulanov.com", true }, @@ -1260,13 +1352,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -1282,6 +1377,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "accessoirescheveuxchic.com", true }, { "accessoripersmartphone.it", true }, { "accme.co", true }, + { "accoladescreens.com.au", true }, { "accord-application.com", true }, { "accordiondoor.com", true }, { "accounts.firefox.com", true }, @@ -1289,25 +1385,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "accpodcast.com", true }, { "accredit.ly", true }, { "accudraftpaintbooths.com", true }, + { "accurateautobodywa.com", true }, { "accuritconsulting.com", true }, { "accuritpresence.com", true }, + { "accutint.com", true }, { "ace.media", true }, { "ace.one", true }, { "acealters.com", true }, { "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 }, + { "acfo.org", true }, + { "acg.social", true }, { "acg18.us", false }, { "acgtalktw.com", true }, { "achalay.org", true }, @@ -1319,16 +1419,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "achterstieg.dedyn.io", true }, { "achtzehn.eu", true }, { "achtzehnterachter.de", true }, + { "achtzig20.de", true }, { "achwo.de", true }, + { "acid.ninja", true }, { "acidbin.co", true }, { "aciety.com", true }, { "aciksite.com", true }, + { "ackermann.ch", true }, { "ackis.duckdns.org", false }, + { "acklandstainless.com.au", 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 }, @@ -1337,18 +1442,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acoshift.me", true }, { "acourse.io", true }, { "acousti-tech.com", true }, + { "acousticalsolutions.com", true }, { "acoustics.network", true }, { "acoustics.tech", true }, { "acoustique-tardy.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 }, @@ -1360,12 +1466,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acsbbs.org", true }, { "acsc.gov.au", true }, { "acsemb.org", true }, - { "acsihostingsolutions.com", true }, { "acsports.ca", true }, { "actc.org.uk", true }, { "actc81.fr", true }, { "actgruppe.de", true }, { "actiefgeld.nl", true }, + { "actioncleaningnd.com", true }, { "actionlabs.net", true }, { "actionmadagascar.ch", true }, { "actionsack.com", true }, @@ -1375,16 +1481,23 @@ 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 }, + { "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 }, + { "actualadmins.com", true }, + { "actualidadecommerce.com", true }, + { "actualidadgadget.com", true }, + { "actualidadiphone.com", true }, + { "actualidadkd.com", true }, + { "actualidadmotor.com", true }, { "acuica.co.uk", false }, { "acul.me", true }, { "acupofsalt.tv", true }, @@ -1420,10 +1533,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "adapt-elektronik.com", true }, { "adapt.de", true }, { "adaptablesecurity.org", true }, @@ -1437,19 +1550,22 @@ 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 }, { "adelebeals.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 }, @@ -1458,7 +1574,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adimaja.com", true }, { "adinariversloveschool.com", true }, { "adingenierie.fr", true }, - { "adint.net", true }, { "adiponectinsupplement.info", true }, { "adiponectinsupplement.net", true }, { "adjagu.org", true }, @@ -1470,6 +1585,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adm-sarov.ru", true }, { "adme.co.il", true }, { "admin-serv.net", true }, + { "admin.casa", true }, { "admin.fedoraproject.org", true }, { "admin.google.com", true }, { "admin.stg.fedoraproject.org", true }, @@ -1477,50 +1593,50 @@ static const nsSTSPreload kSTSPreloadList[] = { { "administratorserwera.pl", true }, { "adminlinux.pl", true }, { "admino.cz", true }, - { "adminwerk.com", true }, { "adminwiki.fr", true }, + { "admirable.one", true }, { "admody.com", true }, { "admongo.gov", true }, + { "adnanoktar.com", true }, { "adnanotoyedekparca.com", true }, { "adnot.am", true }, { "adnseguros.es", true }, - { "adoniscabaret.co.uk", 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 }, { "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 }, { "advancedoneroofing.com", true }, { "advancedprotectionkey.com", true }, { "advancedprotectionsecuritykey.com", true }, + { "advancedsurgicalconsultantsllc.com", true }, { "advancedweb.hu", true }, { "advanceworx.com", true }, { "advancis.net", true }, @@ -1530,6 +1646,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "advelty.cz", true }, { "advenacs.com.au", true }, { "advenapay.com", true }, + { "adventaholdings.com", true }, { "advento.bg", true }, { "adventure-inn.com", true }, { "adventureally.com", true }, @@ -1540,14 +1657,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adventurenow.nl", true }, { "adventures.de", true }, { "adventureswithlillie.ca", true }, + { "advertis.biz", true }, { "advicepro.org.uk", true }, { "advocate-europe.eu", true }, { "advocaten-avocats.be", true }, { "advocatenalkmaar.org", true }, + { "advocator.ca", true }, { "advocoeurdehaan.nl", true }, + { "advogatech.com.br", true }, { "advokat-romanov.com", true }, { "advtran.com", true }, { "adware.pl", true }, + { "adwokatkosterka.pl", true }, + { "adwokatzdunek.pl", true }, { "adws.io", true }, { "adxperience.com", true }, { "adzuna.at", true }, @@ -1565,36 +1687,44 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adzuna.pl", true }, { "adzuna.ru", true }, { "adzuna.sg", true }, + { "ae-construction.co.uk", true }, { "aebian.org", true }, { "aecexpert.fr", true }, + { "aefcleaning.com", true }, { "aegee-utrecht.nl", true }, { "aegisalarm.co.uk", true }, { "aegisalarm.com", true }, { "aegisalarms.co.uk", true }, { "aegisalarms.com", true }, + { "aegisinsight.com", true }, { "aegrel.ee", true }, { "aehe.us", true }, { "aei.co.uk", true }, - { "aelurus.com", true }, + { "aelisya.ch", true }, { "aeon.co", true }, { "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 }, @@ -1602,10 +1732,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aextron.org", true }, { "af-internet.nl", true }, { "afavre.io", true }, - { "afb24.de", true }, { "afbeelding.im", true }, { "afbeeldinguploaden.nl", true }, - { "afeefzarapackages.com", true }, + { "afcompany.it", true }, + { "afcurgentcarelyndhurst.com", true }, { "affichagepub3.com", true }, { "affiliatefeatures.com", true }, { "affiliateroyale.com", true }, @@ -1614,7 +1744,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "affinitysync.com", true }, { "affissioni.roma.it", true }, { "affittacamere.roma.it", true }, + { "affittialmare.it", true }, + { "affloc.com", true }, { "affordableazdivorce.com", true }, + { "affordableblindsexpress.com", true }, + { "affordableenergyadvocates.com", true }, + { "affordableenvironmental.net", true }, { "affordablehealthquotesforyou.com", true }, { "affordablekilimanjaro.com", true }, { "affordablemudjacking.com", true }, @@ -1626,7 +1761,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aficionados.com.br", true }, { "afinadoronline.com.br", true }, { "afinaudio.com", true }, - { "aflamtorrent.com", true }, { "aflfreebets.com", true }, { "aflowershop.ca", true }, { "afmt.fr", true }, @@ -1648,19 +1782,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afterskool.eu", true }, { "afuh.de", true }, { "afva.net", true }, - { "afzco.asia", 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 }, + { "agemfis.com", true }, { "agenceklic.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 }, { "agent-grow.com", true }, { "agent6.com.au", true }, { "agentprocessing.com", true }, @@ -1669,11 +1808,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agglo-sion.ch", true }, { "aggr.pw", true }, { "agia.ad", true }, - { "agiairini.cz", true }, { "agiapelagia.com", true }, { "agic-geneve.ch", true }, + { "agic.io", true }, { "agilebits.com", true }, - { "agilebits.net", false }, { "agilecraft.com", true }, { "agileui.com", true }, { "agiley.se", true }, @@ -1681,7 +1819,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agilob.net", true }, { "aging.gov", true }, { "agingstats.gov", true }, - { "aginion.net", true }, { "agiserv.fr", true }, { "agliamici.it", true }, { "agnesk.blog", true }, @@ -1689,6 +1826,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agoravox.fr", true }, { "agoravox.it", true }, { "agoravox.tv", true }, + { "agostinhoenascimento.com.br", true }, { "agotnes.com", true }, { "agouraelectrical.com", true }, { "agouraelectrician.com", true }, @@ -1704,32 +1842,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agouralighting.com", true }, { "agouraoutdoorlighting.com", true }, { "agr.asia", true }, - { "agracan.com", true }, + { "agrajag.nl", true }, { "agrarking.de", true }, { "agrarshop4u.de", true }, { "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 }, - { "agroyard.com.ua", true }, + { "agroxxi.ru", true }, { "agsb.ch", true }, + { "agscinemas.com", true }, + { "agscinemasapp.com", true }, { "agung-furniture.com", true }, { "agwa.name", true }, + { "agy.cl", true }, { "ahd.com", false }, - { "aheng.me", true }, { "ahero4all.org", true }, - { "ahiru3.com", true }, + { "ahkubiak.ovh", true }, { "ahlaejaba.com", true }, + { "ahlz.sk", true }, { "ahmad.works", true }, { "ahmadly.com", true }, { "ahmedabadflowermall.com", true }, + { "ahmedcharles.com", true }, { "ahmerjamilkhan.org", true }, - { "ahmetozer.org", true }, { "ahosi.com", true }, { "ahoy.travel", true }, { "ahoyconference.com", true }, @@ -1738,20 +1880,26 @@ 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 }, { "aibenzi.com", true }, + { "aibiying.com", true }, + { "aicial.co.uk", true }, { "aidanapple.com", true }, + { "aidanmitchell.co.uk", true }, + { "aidanmitchell.uk", true }, { "aidanmontare.net", true }, { "aide-valais.ch", true }, { "aiden.link", true }, { "aidhan.net", true }, { "aids.gov", true }, { "aie.de", true }, - { "aiforsocialmedia.com", true }, { "aifriccampbell.com", true }, { "aigcev.org", true }, { "aigenpul.se", true }, + { "aignermunich.com", true }, + { "aignermunich.de", true }, { "aignermunich.jp", true }, { "aiicy.org", true }, { "aiida.se", true }, @@ -1763,10 +1911,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "aimgroup.co.tz", true }, + { "aimi-salon.com", true }, { "aimotive.com", true }, + { "aimstoreglobal.com", true }, { "aintevenmad.ch", true }, { "aiois.com", true }, { "aipbarcelona.com", true }, @@ -1774,17 +1926,83 @@ static const nsSTSPreload kSTSPreloadList[] = { { "air-shots.ch", true }, { "air-we-go.co.uk", true }, { "airbly.com", true }, + { "airbnb.ae", true }, + { "airbnb.at", true }, + { "airbnb.be", 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 }, + { "airconsalberton.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 }, @@ -1794,6 +2012,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "airi-tabei.com", true }, { "airicy.com", true }, { "airikai.com", true }, + { "airlibre-parachutisme.com", true }, { "airlinesettlement.com", true }, { "airmail.cc", true }, { "airmaxinflatables.com", true }, @@ -1801,13 +2020,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "airpbx.com", true }, { "airplay-inflatable-hire.co.uk", true }, { "airplayradio.nl", true }, - { "airportlimototoronto.com", true }, { "airpurifierproductsonline.com", true }, { "airrestoration.ch", true }, - { "airsick.guide", true }, { "airsoft.ch", true }, + { "airswap.io", true }, + { "airtimerewards.co.uk", true }, { "airvpn.org", true }, { "airvuz.com", true }, + { "airwaystorage.net", true }, + { "airweb.top", true }, { "airwegobouncycastles.co.uk", true }, { "airwolfthemes.com", true }, { "ais.fashion", true }, @@ -1815,15 +2036,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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", false }, - { "aixxe.net", true }, { "aizxxs.com", true }, { "aizxxs.net", true }, { "ajapaik.ee", true }, @@ -1845,6 +2065,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aka.ms", true }, { "akachanikuji.com", true }, { "akademeia.moe", true }, + { "akademie-frankfurt.de", true }, { "akalashnikov.ru", true }, { "akamon.ac.jp", true }, { "akaoma.com", true }, @@ -1856,26 +2077,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "akhealthconnection.com", true }, { "akihito.com", true }, { "akijo.de", true }, + { "akilli-devre.com", true }, { "akita-boutique.com", true }, { "akiym.com", true }, { "akj.io", true }, { "akkbouncycastles.co.uk", true }, { "akkeylab.com", true }, - { "akoch.net", true }, { "akostecki.de", true }, { "akovana.com", true }, { "akoya.fi", true }, { "akplates.org", true }, { "akpwebdesign.com", true }, { "akr.io", true }, - { "akracing.se", true }, - { "akronet.cz", true }, - { "akropol.cz", true }, + { "akr.services", true }, + { "akritikos.info", true }, + { "akronet.cz", false }, + { "akropol.cz", false }, { "akropolis-ravensburg.de", true }, { "aksehir.bel.tr", true }, { "akselinurmio.fi", false }, { "akshi.in", true }, - { "aktan.com.br", true }, + { "aktin.cz", true }, { "aktiv-naturheilmittel.at", true }, { "aktiv-naturheilmittel.ch", true }, { "aktiv-naturheilmittel.de", true }, @@ -1884,59 +2106,66 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aktuelle-uhrzeit.at", true }, { "akuislam.com", true }, { "akukas.com", true }, - { "akul.co.in", true }, { "akustik.tech", true }, { "akutun.cl", true }, { "akvorrat.at", true }, + { "al3366.tech", 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 }, { "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 }, { "alb-flirt.de", true }, - { "albanboye.info", true }, { "albanesi.it", true }, { "albbounce.co.uk", true }, { "albersdruck.de", true }, { "albertathome.org", true }, - { "albertbogdanowicz.pl", true }, + { "albertcuyp-markt.amsterdam", true }, { "albertinum-goettingen.de", true }, + { "albinma.com", true }, { "albion2.org", true }, { "alboweb.nl", true }, { "albuic.tk", true }, { "alca31.com", true }, - { "alcatelonetouch.us", true }, { "alchimic.ch", true }, { "alcnutrition.com", true }, { "alco-united.com", true }, { "alcoholapi.com", true }, - { "aldes.co.za", 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 }, { "alecpap.com", true }, { "alecpapierniak.com", true }, { "alecrust.com", true }, + { "aledg.cl", true }, + { "alek.in", true }, + { "aleksejjocic.tk", true }, { "aleksib.fi", true }, { "alela.fr", true }, { "alerbon.net", true }, @@ -1953,13 +2182,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alexanderb.info", true }, { "alexandermuetzel.de", true }, { "alexanderneng.de", true }, - { "alexandernorth.ch", true }, { "alexanderschimpf.de", true }, { "alexanderzinn.com", true }, { "alexandra-schulze.de", true }, + { "alexandrastorm.com", true }, { "alexandrastylist.com", true }, { "alexandre-blond.fr", true }, { "alexandros.io", true }, + { "alexbaker.org", true }, { "alexberts.ch", true }, { "alexbresnahan.com", true }, { "alexcoman.com", true }, @@ -1968,14 +2198,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alexey-shamara.ru", true }, { "alexeykopytko.com", 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 }, { "alexkott.com", true }, { "alexlouden.com", true }, { "alexmerkel.com", true }, @@ -1984,7 +2210,7 @@ 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 }, @@ -1999,7 +2225,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alexwardweb.com", true }, { "alexyang.me", true }, { "alfa-tech.su", true }, + { "alfaperfumes.com.br", true }, + { "alftrain.com", true }, + { "algeriepart.com", true }, { "alghanimcatering.com", true }, + { "algoaware.eu", true }, { "algoentremanos.com", true }, { "algofactory.de", true }, { "algolia.com", true }, @@ -2009,13 +2239,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aliantsoft.pl", true }, { "aliaswp.com", true }, { "alibangash.com", true }, + { "alibiloungelv.com", true }, { "alibip.de", true }, { "alice-noutore.com", true }, { "alice.tw", true }, { "alicemaywebdesign.com.au", true }, { "alicestudio.it", true }, { "alicetone.net", true }, - { "alicialab.org", true }, { "alienation.biz", true }, { "alienflight.com", true }, { "alienslab.net", true }, @@ -2023,11 +2253,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alignrs.com", true }, { "aliim.gdn", true }, { "alijammusic.com", true }, + { "alikulov.me", true }, { "alinasmusicstudio.com", true }, + { "alinbu.net", true }, { "alinode.com", true }, + { "aliorange.com", true }, + { "alis-test.tk", true }, { "alisonisrealestate.com", true }, { "alisonlitchfield.com", true }, - { "alistairholland.me", true }, { "alistairstowing.com", true }, { "alisync.com", true }, { "alix-board.de", true }, @@ -2036,18 +2269,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aljaspod.hu", true }, { "aljaspod.net", true }, { "aljweb.com", true }, - { "alkel.info", 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 }, @@ -2064,13 +2298,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alldigitalsolutions.com", true }, { "alle.bg", true }, { "allemobieleproviders.nl", true }, + { "allemoz.com", true }, + { "allemoz.fr", true }, + { "allenosgood.com", true }, { "allenscaravans.co.uk", true }, { "allensun.org", true }, - { "allerbestefreunde.de", true }, { "allesisonline.nl", true }, { "alleskomtgoed.org", true }, { "allesrocknroll.de", true }, { "allforyou.at", true }, + { "allfreelancers.su", false }, + { "allgaragefloors.com", true }, { "allgreenturf.com.au", true }, { "alliance-psychiatry.com", true }, { "alliances-faq.de", true }, @@ -2081,46 +2319,53 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, { "allurescarves.com", true }, { "alluvion.studio", true }, + { "allweatherlandscaping.net", true }, { "almaatlantica.com", true }, { "almavios.com", true }, + { "almorafestival.com", true }, + { "almut-zielonka.de", true }, { "aloesoluciones.com.ar", true }, { "alohapartyevents.co.uk", true }, { "alonetone.com", true }, { "alp.od.ua", true }, { "alpca.org", true }, - { "alpe-d-or.dyn-o-saur.com", true }, { "alpencam.com", true }, { "alpencams.com", true }, { "alpengreis.ch", true }, @@ -2136,10 +2381,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "alphapengu.in", true }, { "alpharotary.com", true }, { "alphasall.com", true }, @@ -2161,13 +2409,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alrait.com", true }, { "alroniks.com", true }, { "als-japan.com", true }, + { "alstertouch.com", true }, + { "alstertouch.de", true }, { "alstroemeria.org", true }, { "alt-three.com", true }, { "alt.org", true }, + { "altapina.com", true }, { "altaplana.be", true }, { "altedirect.com", true }, { "alter-news.fr", true }, - { "altered.network", true }, { "alternador.com.br", true }, { "alternative.bike", true }, { "alternativebit.fr", true }, @@ -2181,25 +2431,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "altmaestrat.es", 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 }, - { "aluoblog.top", false }, { "alupferd.de", 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 }, @@ -2215,13 +2460,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alzashop.com", true }, { "alzonaprinting.com", true }, { "am-dd.com", true }, + { "am-executive-consulting.com", true }, { "am2s.fr", true }, { "am3.se", true }, { "ama.ne.jp", true }, - { "amadoraslindas.com", true }, { "amadvice.com", true }, { "amaforro.com", true }, { "amagdic.com", true }, + { "amagical.net", false }, { "amaiz.com", true }, { "amalfi5stars.com", true }, { "amalficoastchauffeur.com", true }, @@ -2229,14 +2475,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amalfipositanoboatrental.com", true }, { "amalfirock.it", true }, { "amalfitabula.it", true }, + { "amandadamsphotography.com", true }, { "amandasage.ca", true }, { "amani-kinderdorf.de", true }, { "amaresq.com", true }, - { "amateri.com", true }, + { "amartinz.at", true }, + { "amateurchef.co.uk", true }, + { "amateurradionotes.com", true }, { "amateurvoicetalent.com", true }, + { "amati.solutions", true }, { "amato.tk", true }, { "amatsuka.com", true }, { "amauf.de", true }, + { "amautorepairwa.com", true }, { "amazili-communication.com", true }, { "amazing-castles.co.uk", true }, { "amazinginflatables.co.uk", true }, @@ -2264,10 +2515,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 }, @@ -2279,35 +2534,38 @@ 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 }, + { "aminorth.com", true }, + { "amionvpn.com", true }, { "amirautos.com", true }, { "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 }, + { "amoozesh98.ir", true }, { "amorgos-aegialis.com", true }, { "amorim.ca", true }, { "amosng.com", true }, @@ -2319,6 +2577,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amrcaustin.com", true }, { "amrcla.com", true }, { "ams.co.rs", true }, + { "amsportuk.com", true }, { "amsterdamian.com", true }, { "amuq.net", true }, { "amuraimpianti.it", true }, @@ -2327,31 +2586,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amyrussellhair.com", true }, { "amyyeung.com", true }, { "amzn.rocks", true }, + { "anabolic.co", true }, { "anacreon.de", true }, { "anadiyogacentre.com", true }, - { "anadoluefessk.org", true }, - { "anaiscoachpersonal.es", true }, - { "anaisypirueta.es", true }, + { "anaethelion.fr", true }, { "anajianu.ro", true }, - { "analangelsteen.com", true }, { "analbleachingguide.com", true }, { "analgesia.net", true }, { "analisilaica.it", true }, { "analogist.net", true }, - { "analteengirls.net", true }, { "analyticsinmotion.com", true }, + { "analyticum.at", true }, + { "analyticum.com", true }, + { "analyticum.de", true }, + { "analyticum.eu", true }, + { "analyticum.net", true }, { "ananas.gq", true }, { "ananke.io", true }, { "anankecosmetics.com", true }, { "anantshri.info", true }, { "ananyoo.com", true }, { "anarchistischegroepnijmegen.nl", false }, + { "anarchyrp.life", true }, { "anassiriphotography.com", false }, { "anastasia-shamara.ru", true }, + { "anaveragehuman.eu.org", true }, { "ancestramil.fr", true }, { "anchev.net", true }, { "anchovy.nz", false }, - { "ancientnorth.com", true }, + { "ancientcraft.eu", true }, { "ancientnorth.nl", true }, { "ancolies-andre.com", true }, { "anconaswine.com", true }, @@ -2376,26 +2639,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "andrea-m.me", true }, { "andrea-wirthensohn.at", true }, { "andreaboero.it", true }, + { "andreadraghetti.it", true }, { "andreagourmet.it", true }, { "andreahruby.it", true }, { "andreamcnett.com", true }, + { "andreas-hecht.com", true }, { "andreaseracleous.com", true }, { "andreasfeusi.ch", true }, + { "andreashecht-blog.de", true }, { "andreaskrasa.com", true }, { "andreaslicht.nl", true }, { "andreasolsson.se", true }, { "andreasr.com", true }, + { "andree.cloud", true }, { "andrefaber.nl", true }, { "andrehansen.de", true }, { "andrei-nakov.org", true }, - { "andrejbenz.com", true }, { "andreoliveira.io", true }, - { "andrepicard.de", true }, { "andrespaz.com", true }, { "andreundnina.de", true }, + { "andrew.fi", true }, + { "andrew.london", true }, { "andrewbdesign.com", true }, { "andrewdaws.io", true }, { "andrewensley.com", true }, + { "andrewhowden.com", true }, { "andrewimeson.com", true }, { "andrewin.ru", true }, { "andrewmichaud.com", true }, @@ -2416,6 +2684,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 }, @@ -2432,13 +2701,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "andycloud.dynu.net", true }, { "andycrockett.io", true }, { "andymoore.info", true }, - { "andys-place.co.uk", 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 }, { "anetaben.nl", true }, { "anextraordinaryday.net", true }, @@ -2448,10 +2717,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "angelesydemonios.es", true }, { "angelicare.co.uk", true }, { "angelinahair.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 }, @@ -2461,22 +2730,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "angrapa.ru", true }, { "angristan.fr", true }, { "angristan.xyz", true }, - { "angrut.com", true }, { "angry.im", true }, { "angrysnarl.com", true }, - { "angryteeth.net", true }, - { "anguiao.com", true }, + { "angryteeth.net", false }, { "angularjs.org", false }, { "angusmak.com", true }, { "anhaffen.lu", true }, { "ani-man.de", true }, { "aniaimichal.eu", true }, { "aniforprez.net", true }, - { "anim.ee", true }, { "animacurse.moe", true }, { "animaemundi.be", true }, { "animal-liberation.com", true }, - { "animal-nature-human.com", true }, { "animal-rights.com", true }, { "animalistic.io", true }, { "animaltesting.fr", true }, @@ -2491,20 +2756,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anime1.pw", 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 }, { "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 }, @@ -2515,7 +2784,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anleitung-zum-schreiben.de", true }, { "anleitung-zum-schweissen.de", true }, { "anleitung-zum-toepfern.de", true }, - { "anlp.top", true }, { "anna.info", true }, { "annaenemma.nl", true }, { "annafiore.com.br", true }, @@ -2525,11 +2793,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "annawagner.pl", true }, { "annedaniels.co.uk", true }, { "annejan.com", true }, + { "anneliesonline.nl", 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 }, @@ -2541,16 +2809,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anojan.com", true }, { "anon-next.de", true }, { "anoncom.net", true }, - { "anoneko.com", true }, + { "anoneko.com", false }, { "anongoth.pl", true }, { "anons.fr", true }, - { "anonukradio.org", true }, { "anonym-surfen.de", true }, { "anonyme-spieler.at", true }, { "anorak.tech", true }, { "another.ch", true }, { "anotherchef.com", true }, { "anotherfatgeek.net", true }, + { "anothervps.com", true }, { "anowicki.pl", false }, { "anoxinon.de", false }, { "ans-delft.nl", true }, @@ -2561,6 +2829,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ansermet.net", true }, { "ansgar-sonntag.de", true }, { "ansgarsonntag.de", true }, + { "anshar.eu", true }, { "ansibeast.net", true }, { "ansichtssache.at", true }, { "ansogning-sg.dk", true }, @@ -2570,27 +2839,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antani.cloud", true }, { "antarcti.co", true }, { "antarees.net", true }, + { "antaresmedia.com.py", true }, { "antarespc.com", true }, { "antcas.com", true }, { "antennista.catania.it", true }, { "antennista.milano.it", true }, { "antennista.pavia.it", true }, { "antennista.roma.it", true }, + { "antennista.tv", true }, { "antennisti.milano.it", true }, { "antennisti.roma.it", true }, { "anteprima.info", true }, { "anthedesign.fr", true }, { "anthisis.tv", true }, - { "anthony-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 }, { "antibioticshome.com", true }, { "anticopyright.com", true }, + { "antiekboerderijgraafland.nl", true }, { "antihype.space", true }, { "antik-trodelmarkt.de", true }, { "antikvariat.ru", true }, @@ -2599,7 +2870,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antimine.me", true }, { "antipolygraph.org", true }, { "antique-pedalcars.ch", true }, - { "antirayapmalang.com", true }, { "antirepressionbayarea.com", true }, { "antispeciesism.com", true }, { "antispeciesist.com", true }, @@ -2613,12 +2883,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antonin.one", true }, { "antonio-gartenbau.de", true }, { "antonjuulnaber.dk", true }, - { "antons.io", true }, { "antota.lt", true }, { "antragsgruen.de", true }, { "antroposofica.com.br", true }, + { "antvklik.com", true }, { "antyblokada.pl", true }, - { "anvartay.com", true }, + { "anulowano.pl", true }, + { "anvartay.com", false }, + { "anwalt.us", true }, { "anwaltsindex.com", true }, { "anxietyspace.com", true }, { "anxiolytics.com", true }, @@ -2631,22 +2903,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "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 }, @@ -2660,7 +2937,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apdx.com", true }, { "apef.ch", true }, { "apercloud.es", true }, - { "aperim.com", true }, { "apertis.org", true }, { "aperturesciencelabs.de", true }, { "apervita.net", true }, @@ -2685,33 +2961,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apiary.supplies", true }, { "apiary.supply", true }, { "apila.care", true }, - { "apila.us", true }, { "apiled.io", true }, { "apination.com", true }, { "apio.systems", true }, - { "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 }, + { "apluswaterservices.com", true }, { "apn-dz.org", true }, { "apn-einstellungen.de", true }, + { "apo-deutschland.biz", true }, { "apobot.de", true }, + { "apogeephoto.com", true }, { "apoil.org", true }, - { "apollyon.work", true }, { "apoly.de", true }, { "aponkral.net", true }, { "aporia.io", true }, { "aposke.com", true }, { "aposke.net", true }, { "aposke.org", true }, + { "apostilasaprovacao.com", true }, { "apotheke-ch.org", true }, { "apothes.is", true }, { "app-at.work", true }, @@ -2726,7 +3001,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "appartement-evolene.net", true }, { "appartementhaus-badria.de", true }, { "appartementmarsum.nl", true }, - { "appchive.net", true }, { "appcoins.io", true }, { "appearance-plm.de", true }, { "appel-aide.ch", true }, @@ -2737,18 +3011,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "appgeek.com.br", true }, { "appharbor.com", true }, { "appify.org", true }, + { "appinn.com", true }, { "applelife.ru", true }, { "applemon.com", true }, { "appleoosa.com", true }, { "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 }, @@ -2756,7 +3028,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apponline.com", true }, { "apprank.in", true }, { "apprenticeship.gov", true }, - { "apprenticeships.gov", true }, { "approbo.com", true }, { "approvedtreecare.com", true }, { "apps.co", true }, @@ -2767,12 +3038,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "appscloudplus.com", true }, { "appseccalifornia.org", false }, { "appshuttle.com", true }, - { "appson.co.uk", false }, { "appt.ch", true }, { "apptomics.com", true }, { "appuals.com", true }, { "appui-de-fenetre.fr", true }, { "appveyor.com", true }, + { "appxcrypto.com", true }, { "appzoojoo.be", true }, { "apratimsaha.com", true }, { "aprefix.com", true }, @@ -2784,9 +3055,12 @@ 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 }, { "aqilacademy.com.au", true }, { "aqsiq.net", true }, { "aqua-fitness-nacht.de", true }, @@ -2795,6 +3069,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aquabio.ch", true }, { "aquadonis.ch", true }, { "aquahomo.com", true }, + { "aquainfo.net", true }, { "aqualife.com.gr", true }, { "aqualifeprojects.com", true }, { "aqualysis.nl", true }, @@ -2805,20 +3080,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "aranycsillag.net", true }, + { "araraexpress.com.br", true }, { "araratour.com", true }, { "araro.ch", true }, { "araseifudousan.com", true }, @@ -2826,23 +3103,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arawaza.com", false }, { "arawaza.info", true }, { "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 }, { "arcaik.net", true }, { "arcbouncycastles.co.uk", true }, { "arcenergy.co.uk", true }, { "archimedicx.com", true }, { "archined.nl", true }, - { "architectdirect.nl", false }, + { "architectryan.com", true }, + { "architecture-colleges.com", true }, { "archivero.es", true }, { "archivesdelavieordinaire.ch", true }, { "archlinux.de", true }, { "archlinux.org", true }, + { "arclandholdings.com.au", true }, { "arcobalabs.ca", true }, { "arcridge.ca", true }, { "arctic.gov", true }, @@ -2856,6 +3136,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "areaclienti.net", true }, { "areafiftylan.nl", true }, { "areatrend.com", true }, + { "arefidgetspinnersgay.com", true }, { "arekatieandchrisgettingmarried.com", true }, { "arekatieandchrisgettingmarried.today", true }, { "arekatieandchrismarriedyet.com", true }, @@ -2868,16 +3149,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arethsu.se", true }, { "arfad.ch", true }, { "arg.zone", true }, + { "argama-nature.com", false }, { "arganaderm.ch", true }, { "argb.de", true }, { "argekultur.at", true }, + { "argonium.com.au", true }, { "argot.com", true }, { "argovpay.com", true }, - { "ariaartgallery.com", true }, { "ariadermspa.com", true }, { "arian.io", true }, + { "ariana.wtf", true }, + { "arias.re", true }, { "ariba.info", true }, - { "ariege-pyrenees.net", true }, { "arieswdd.com", true }, { "arigato-java.download", true }, { "arijitdg.net", true }, @@ -2887,12 +3170,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "arizer.com", true }, { "arizonaautomobileclub.com", true }, + { "arizonabondedtitle.com", true }, { "arjandejong.eu", true }, { "arjanvaartjes.net", true }, { "arjunasdaughter.pub", true }, @@ -2905,16 +3187,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arlatools.com", true }, { "arlen.tv", true }, { "arlenarmageddon.com", true }, - { "arlet.click", true }, - { "arm-host.com", true }, + { "arletalibrary.com", true }, + { "arlingtonelectric.com", true }, { "armadaquadrat.com", true }, { "armandsdiscount.com", true }, + { "armanozak.com", true }, { "armansfinejewellery.com", true }, { "armansfinejewellery.com.au", true }, { "armarinhovirtual.com.br", true }, + { "armazemgourmetbrasil.com.br", true }, + { "armbrust.me", true }, { "armedpoet.com", true }, - { "armeni-jewellery.gr", true }, + { "armeo.top", true }, { "armil.it", true }, + { "armin-cme.de", true }, + { "armin-cpe.de", true }, { "arminc.tk", true }, { "arminpech.de", true }, { "armleads.com", true }, @@ -2924,7 +3211,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "armyprodej.cz", true }, { "arnaudb.net", true }, { "arnaudfeld.de", true }, - { "arnaudminable.net", true }, + { "arne.codes", true }, + { "arnevankauter.com", true }, { "arniescastles.co.uk", true }, { "arno-klein.de", true }, { "arno-klein.eu", true }, @@ -2942,24 +3230,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aromacos.ch", true }, { "aron.host", true }, { "aroonchande.com", true }, + { "aros.pl", true }, + { "arose.io", true }, { "arox.eu", true }, + { "arpamip.org", true }, + { "arpnet.co.jp", true }, { "arqueo-ecuatoriana.ec", true }, { "arquitetura.pt", true }, { "arrakis.se", true }, + { "arrazane.com.br", true }, + { "arresttracker.com", true }, { "arrive.by", true }, { "arrmaforum.com", true }, { "arrow-analytics.nl", true }, { "arrow-api.nl", true }, { "arrowfastener.com", true }, { "arrowheadaddict.com", true }, + { "arrowheadflats.com", true }, { "arrowwebprojects.nl", true }, { "arschkrebs.org", true }, { "arswb.men", true }, { "art-auction.jp", true }, { "art-et-culture.ch", true }, - { "artansoft.com", true }, { "artboja.com", true }, { "artdeco-photo.com", true }, + { "arte-soft.co", true }, { "artea.ga", true }, { "arteaga.co.uk", true }, { "arteaga.eu", true }, @@ -2970,6 +3265,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "artecat.ch", true }, { "artedellavetrina.it", true }, { "artedona.com", true }, + { "arteequipamientos.com.uy", true }, { "artefakt.es", true }, { "artefeita.com.br", true }, { "arteinstudio.it", true }, @@ -2983,10 +3279,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arthermitage.org", true }, { "arthur.cn", true }, { "arthurlaw.ca", true }, + { "artificial.army", true }, + { "artificialgrassandlandscaping.com", true }, { "artik.cloud", true }, { "artimpact.ch", true }, { "artioml.net", true }, { "artionet.ch", true }, + { "artisan-cheminees-poeles-design.fr", true }, { "artisans-libres.com", true }, { "artisansoftaste.com", true }, { "artistagenda.com", true }, @@ -3009,6 +3308,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arts.gov", true }, { "artschmidtoptical.com", true }, { "artspac.es", true }, + { "arturkohut.com", true }, { "arturrossa.de", true }, { "arturszalak.com", true }, { "artweby.cz", true }, @@ -3017,10 +3317,11 @@ 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 }, { "aryan-nation.com", true }, { "aryasenna.net", true }, { "arzid.com", true }, @@ -3034,6 +3335,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asandu.eu", true }, { "asanger.biz", true }, { "asato-jewelry.com", true }, + { "asbestosthedarkarts.com", true }, { "asbito.de", true }, { "ascamso.com", true }, { "ascendprime.com", true }, @@ -3041,19 +3343,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ascensori.biz", true }, { "ascgathering.com", true }, { "ascii.moe", true }, + { "asciitable.tips", true }, { "asciiwwdc.com", true }, { "asd.gov.au", true }, { "asdyx.de", true }, { "asec01.net", true }, + { "asegem.es", true }, { "aseith.com", true }, + { "aseko.gr", true }, { "asenno.com", true }, { "aserver.co", true }, { "asexualitat.cat", true }, { "asgapps.co.za", true }, - { "asge-handel.de", true }, { "ashd1.goip.de", true }, { "ashd2.goip.de", true }, { "ashd3.goip.de", true }, + { "ashleyedisonuk.com", true }, { "ashlocklawgroup.com", true }, { "ashmportfolio.com", true }, { "ashutoshmishra.org", true }, @@ -3070,9 +3375,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asiesvenezuela.com", true }, { "asile-colis.fr", true }, { "asinetasima.com", true }, - { "asisee.photography", true }, { "ask1.org", true }, { "askcaisse.com", true }, + { "askcascade.com", true }, { "askizzy.org.au", true }, { "askkaren.gov", true }, { "askme24.de", true }, @@ -3083,7 +3388,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aslinfinity.com", true }, { "asmbsurvey.com", true }, { "asmdz.com", true }, - { "asmik-armenie.com", true }, + { "asmm.cc", true }, { "asmood.net", true }, { "asoul.tw", true }, { "aspargesgaarden.no", true }, @@ -3091,10 +3396,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 }, + { "asproni.it", true }, { "asr.cloud", true }, { "asr.li", true }, { "asr.rocks", true }, @@ -3109,8 +3418,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -3126,7 +3434,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "astengox.com", true }, { "astenotarili.online", true }, { "astenretail.com", true }, - { "astral.org.pl", true }, + { "astral-imperium.uk", true }, { "astrology42.com", true }, { "astroscopy.ch", true }, { "astrovandalistas.cc", true }, @@ -3142,6 +3450,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asws.nl", true }, { "asystent-dzierzawy.pl", true }, { "at.search.yahoo.com", false }, + { "ataber.pw", true }, { "atac.no", true }, { "atacadocervejeiro.com.br", true }, { "atacadodesandalias.com.br", true }, @@ -3163,6 +3472,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atelierdefrancais.ch", true }, { "atelierdeloulou.fr", true }, { "atelierdesflammesnoires.fr", true }, + { "atelierfantazie.sk", true }, { "atelierhupsakee.nl", true }, { "ateliernaruby.cz", true }, { "ateliers-veronese-nantes.fr", true }, @@ -3175,12 +3485,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atgroup.gr", true }, { "atgseed.co.uk", true }, { "atgseed.uk", true }, - { "ath0.org", true }, + { "ath0.org", false }, { "atheist-refugees.com", true }, { "athena-bartholdi.com", true }, { "athena-garage.co.uk", true }, { "athenadynamics.com", true }, - { "atheoryofchange.com", true }, + { "athenaneuro.com", true }, { "atherosense.ga", true }, { "athlin.de", true }, { "atigerseye.com", true }, @@ -3193,17 +3503,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atisoft.web.tr", 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 }, { "atlaschiropractic.org", true }, { "atlascultural.com", true }, { "atlasdev.nl", true }, @@ -3211,7 +3520,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atlassian.io", true }, { "atlassignsandplaques.com", true }, { "atletika.hu", true }, - { "atmocdn.com", true }, { "atmschambly.com", true }, { "atnis.com", true }, { "ato4sound.com", true }, @@ -3221,6 +3529,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atom86.net", true }, { "atombase.org", true }, { "atomic-bounce.com", true }, + { "atomic.red", true }, { "atomicbounce.co.uk", true }, { "atomism.com", true }, { "atorcidabrasileira.com.br", true }, @@ -3228,11 +3537,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atpnutrition.com", true }, { "atraining.ru", true }, { "atraverscugy.ch", true }, - { "atrevillot.com", true }, - { "atrinik.org", true }, { "atsoftware.de", true }, { "attac.us", true }, { "atte.fi", true }, + { "attelage.net", true }, { "attendantdesign.com", true }, { "attendu.cz", true }, { "attention.horse", true }, @@ -3245,7 +3553,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "attwood.org", true }, { "atulhost.com", true }, { "atviras.lt", false }, + { "atvirtual.at", true }, + { "atwar-mod.com", true }, { "atwonline.org", true }, + { "atxchirocoverage.com", true }, + { "atyourprice.net", true }, { "atypicom.es", true }, { "atypicom.fr", true }, { "atypicom.it", true }, @@ -3263,12 +3575,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 }, { "audiolibri.org", true }, { "audiolot.com", true }, + { "audion.cc", true }, { "audion.hr", true }, - { "audioonly.stream", true }, { "audiophile.ch", true }, { "audiophix.com", true }, { "audiorecording.me", true }, @@ -3279,13 +3592,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "audisto.com", true }, { "auditmatrix.com", true }, { "auditos.com", true }, + { "audits.io", true }, { "auditsquare.com", true }, { "auerbach-verlag.de", true }, { "auf-feindgebiet.de", true }, - { "augaware.org", true }, { "augen-seite.de", true }, { "augiero.it", true }, - { "augmentable.de", true }, + { "augmentable.de", false }, { "augmented-portal.com", true }, { "august-don.site", true }, { "august.black", true }, @@ -3310,15 +3623,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "ausschreibungen-suedtirol.it", 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 }, { "australianarmedforces.org", true }, @@ -3329,19 +3651,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "auszeit-walsrode.de", true }, { "auszeit.bio", true }, { "auth.adult", true }, + { "authenticwoodcraft.com", true }, { "authinfo-bestellen.de", true }, { "authinity.com", true }, { "author24.biz", true }, + { "author24.info", true }, { "authoritysolutions.com", true }, - { "authorsguild.in", true }, { "autimatisering.nl", true }, { "auto-anleitung.de", true }, + { "auto-dealership-news.com", true }, { "auto-motor-i-sport.pl", true }, { "auto-plus.tn", true }, { "auto-spurgo.com", true }, { "auto.nl", true }, { "autoauctionsohio.com", true }, { "autoauctionsvirginia.com", true }, + { "autobahnco.com", true }, { "autobedrijfgarant.nl", true }, { "autobelle.it", true }, { "autobourcier.com", true }, @@ -3352,6 +3677,10 @@ 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 }, { "autoinsurancehavasu.com", true }, @@ -3364,15 +3693,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "automationpro.me", true }, { "automotivegroup-usedcars.be", true }, { "automotivemechanic.org", true }, + { "automoto-tom.net", true }, + { "autonewssite.com", true }, { "autoosijek.com", true }, { "autopapo.com.br", true }, { "autoparts.im", true }, { "autoparts.sh", true }, { "autoparts.wf", true }, - { "autoprice.info", true }, + { "autoprice.info", false }, + { "autoprogconsortium.ga", true }, + { "autoproshouston.com", true }, { "autorando.com", true }, { "autoschadeschreuder.nl", true }, { "autoscuola.roma.it", true }, + { "autosecurityfinance.com", true }, { "autoshinka72.ru", true }, { "autoshopsolutions.com", true }, { "autoshun.org", true }, @@ -3382,6 +3716,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "autospurgo.milano.it", true }, { "autostodulky.cz", true }, { "autotechschool.com", true }, + { "autoteplo.org", true }, { "autoterminus-used.be", true }, { "autoverzekeringafsluiten.com", true }, { "autowerkstatt-puchheim.de", true }, @@ -3392,7 +3727,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aux-arts-de-la-table.com", true }, { "auxquatrevents.ch", true }, { "av-yummy.com", true }, - { "av01.tv", true }, { "av0ndale.de", true }, { "ava-creative.de", false }, { "ava-software.at", true }, @@ -3400,11 +3734,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "avabouncehire.co.uk", true }, { "avacariu.me", true }, { "availablecastles.com", true }, + { "avalon-island.ru", true }, { "avalon-rpg.com", true }, { "avalon-studios.de", true }, + { "avalyuan.com", true }, { "avanet.ch", true }, { "avanet.com", true }, { "avanovum.de", true }, + { "avantitualatin.com", true }, { "avarty.com", true }, { "avarty.net", true }, { "avatardiffusion.com", true }, @@ -3428,11 +3765,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aviapoisk.kz", true }, { "aviationstrategy.aero", true }, { "avid.blue", true }, + { "avidmode-dev.com", true }, + { "avidmode.com", true }, + { "avidthink.com", true }, { "avietech.com", true }, { "aviv.nyc", true }, { "avlhostel.com", true }, - { "avmemo.com", true }, - { "avmoo.com", true }, { "avnet.ws", true }, { "avocadooo.stream", true }, { "avocatbeziau.com", true }, @@ -3442,6 +3780,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "avpres.net", true }, { "avptp.org", true }, { "avqueen.cn", true }, + { "avs-building-services.co.uk", true }, { "avsox.com", true }, { "avticket.ru", false }, { "avtoforex.ru", true }, @@ -3449,12 +3788,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "avtovokzaly.ru", true }, { "avv.li", true }, { "avvcorda.com", true }, + { "avvocato.bologna.it", true }, + { "awardplatform.com", true }, { "awaremi-tai.com", true }, { "awaresec.com", true }, { "awaresec.no", true }, { "awaro.net", true }, { "awbouncycastlehire.com", true }, - { "awccanadianpharmacy.com", true }, + { "awecademy.org", true }, { "awen.me", true }, { "awesomebouncycastles.co.uk", true }, { "awesomesit.es", true }, @@ -3471,48 +3812,55 @@ static const nsSTSPreload kSTSPreloadList[] = { { "axchap.ir", true }, { "axelname.ru", true }, { "axelteichmann.net", true }, + { "axiatancell.com", true }, { "axiomer.com", true }, { "axiomer.es", true }, { "axiomer.eu", true }, { "axiomer.me", true }, { "axiomer.net", true }, { "axiomer.org", true }, - { "axka.com", false }, - { "axolotlfarm.org", true }, + { "axis-stralis.co.uk", true }, + { "axisfleetmanagement.co.uk", true }, + { "axolotlfarm.org", false }, { "axonholdingse.eu", true }, { "axrec.de", true }, - { "axtudo.com", true }, - { "axtux.tk", true }, + { "ay-net.jp", true }, + { "ayahya.me", true }, + { "ayamchikchik.com", true }, { "ayanomimi.com", true }, { "aycomba.de", true }, { "ayesh.me", true }, - { "ayesh.win", true }, { "aykutcevik.com", true }, { "aylak.com", true }, { "aylesburycastlehire.co.uk", true }, { "aymerick.fr", true }, - { "aymericlagier.com", true }, - { "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 }, { "azadliq.info", true }, { "azazy.net", false }, { "azgfd.com", true }, + { "aziende.com.ar", true }, { "azimut.fr", true }, + { "azizfirat.com", true }, + { "azizvicdan.com", true }, { "azlk-team.ru", true }, { "azort.com", true }, { "azrazalea.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 }, + { "azuki.cloud", true }, + { "azurecrimson.com", true }, + { "azuriasky.com", true }, + { "azuriasky.net", true }, { "azzag.co.uk", true }, { "azzorti.com", true }, { "azzurrapelletterie.it", true }, @@ -3529,6 +3877,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b0618.net", true }, { "b0868.com", true }, { "b0868.net", true }, + { "b0k.org", true }, { "b0rk.com", true }, { "b1.work", true }, { "b1758.com", true }, @@ -3544,7 +3893,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b2and.com", false }, { "b2bmuzikbank.com", true }, { "b303.me", true }, - { "b422edu.com", true }, { "b4bouncycastles.co.uk", true }, { "b4ckbone.de", true }, { "b4r7.de", true }, @@ -3555,8 +3903,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -3628,11 +3977,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b9948.com", true }, { "b9948.net", 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 }, @@ -3646,50 +3990,55 @@ static const nsSTSPreload kSTSPreloadList[] = { { "babai.ru", true }, { "babarkata.com", true }, { "babeleo.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 }, { "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 }, { "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.horse", true }, { "bad.pet", true }, { "badam.co", true }, { "badanteinfamiglia.it", 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 }, { "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 }, @@ -3697,9 +4046,9 @@ 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 }, @@ -3709,14 +4058,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -3736,6 +4091,7 @@ 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 }, @@ -3751,8 +4107,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "balivillassanur.com", true }, { "balkonien.org", true }, { "ball.holdings", true }, + { "ball3d.es", true }, { "ballarin.cc", true }, { "ballejaune.com", true }, + { "balletcenterofhouston.com", true }, { "ballinarsl.com.au", true }, { "ballmerpeak.org", true }, { "ballonsportclub-erlangen.de", true }, @@ -3760,29 +4118,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ballothero.com", true }, { "ballparkbuns.com", false }, { "ballroom.info", true }, - { "balnearionaturaspa.com", true }, + { "balmofgilead.org.uk", true }, { "balslev.io", true }, + { "balticer.de", 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.win", true }, + { "bancor.network", true }, + { "bandagastrica.es", true }, { "bandeira1.com.br", true }, { "bandgap.io", true }, { "bandiga.it", true }, { "bandito.re", true }, { "banes.ch", true }, + { "bangdream.ga", true }, { "bangkok-dark-night.com", true }, { "bangkok.dating", true }, { "bangkokcity.de", true }, - { "bangorfederal.com", true }, + { "bangorfederal.com", false }, { "bangumi.co", true }, + { "banham.co.uk", true }, + { "banham.com", true }, { "bank.simple.com", false }, { "bankbranchlocator.com", true }, { "bankcardoffer.com", true }, @@ -3795,7 +4160,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bankin.com", true }, { "bankinter.pt", true }, { "bankio.se", true }, - { "bankitt.network", true }, { "banknet.gov", true }, { "bankofdenton.com", true }, { "banksiaparkcottages.com.au", true }, @@ -3804,16 +4168,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "banned-bitches.tk", true }, { "bannermarquees.ie", true }, { "bannsecurity.com", true }, - { "banoviny.sk", true }, { "banquevanbreda.be", true }, { "banter.city", true }, { "bao-in.com", true }, { "bao-in.net", true }, { "baobeiglass.com", true }, - { "baodan666.com", true }, { "baofengtech.com", true }, { "baopublishing.it", true }, - { "baptistboard.com", true }, { "baptistedeleris.fr", true }, { "bar-harcourt.com", true }, { "barabrume.fr", true }, @@ -3823,24 +4184,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "barbarians.com", false }, { "barbaros.info", true }, { "barbate.fr", true }, + { "barbershop-harmony.org", true }, + { "barbershop-lasvillas.com", true }, { "barbu.family", true }, { "barburas.com", true }, { "barcamp.koeln", true }, - { "barcel.com.mx", false }, + { "barcel.com.mx", true }, { "barclays.net", true }, { "barcodeberlin.com", true }, { "barcoderealty.com", true }, + { "bardes.org", true }, + { "bardiharborow.com", true }, { "bardiharborow.tk", true }, + { "baresquare.com", true }, { "barf-alarm.de", true }, { "baripedia.org", true }, - { "baris-sagdic.com", true }, { "bariseau-mottrie.be", true }, { "bariskaragoz.nl", true }, + { "baristador.com", true }, { "barkerjr.xyz", true }, { "barlotta.net", true }, { "barnabycolby.io", true }, { "barnel.com", true }, - { "barnrats.com", true }, { "barpodsosnami.pl", true }, { "barracuda.com.tr", true }, { "barrera.io", true }, @@ -3854,15 +4219,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bart-f.com", true }, { "barta.me", true }, { "bartel.ws", true }, - { "bartelldrugs.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 }, @@ -3874,19 +4240,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "basementdoctor.com", true }, { "basementdoctornorthwest.com", true }, { "basementfinishingohio.com", true }, + { "basercap.co.ke", true }, + { "baserverz.ga", true }, + { "bashing-battlecats.com", true }, { "bashstreetband.co.uk", true }, { "basicapparel.de", true }, { "basicattentiontoken.org", true }, - { "basilicaknights.org", 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 }, @@ -3907,11 +4276,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -3919,32 +4285,40 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "bayareaenergyevents.com", true }, { "baychimo.com", true }, { "bayden.com", true }, + { "bayer-stefan.com", true }, { "bayer-stefan.de", true }, { "bayer-stefan.eu", true }, { "bayerhazard.de", true }, + { "bayerstefan.com", true }, { "bayerstefan.de", true }, { "bayerstefan.eu", true }, { "bayherbalist.com", true }, { "bayilelakiku.com", true }, { "bayly.eu", true }, { "baymard.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 }, @@ -3953,9 +4327,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bbcastles.com", true }, { "bbgeschenke.ch", true }, { "bbimarketing.com", true }, - { "bbj.io", true }, { "bbka.org.uk", true }, + { "bbkaforum.co.uk", true }, { "bbkworldwide.jp", true }, + { "bbld.de", true }, { "bblove.me", true }, { "bblsa.ch", true }, { "bbnbb.de", true }, @@ -3969,7 +4344,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -3986,15 +4360,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bcmainland.ca", true }, { "bcmguide.com", true }, { "bcmhire.co.uk", true }, - { "bcmlu.org", true }, - { "bcnet.com.hk", true }, { "bcpc-ccgpfcheminots.com", true }, { "bcrook.com", true }, + { "bcs.adv.br", true }, { "bcswampcabins.com", true }, - { "bcvps.com", true }, + { "bcyw56.live", true }, { "bd2positivo.com", true }, { "bda-boulevarddesairs.com", true }, - { "bdata.cl", true }, + { "bdbxml.net", true }, { "bdd.fi", true }, { "bdikaros-network.net", true }, { "bdpachicago.tech", true }, @@ -4017,7 +4390,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "be958.info", true }, { "be958.net", true }, { "be958.org", true }, - { "be9966.com", true }, + { "beacham.online", true }, { "beachfutbolclub.com", true }, { "beacinsight.com", true }, { "beadare.com", true }, @@ -4025,10 +4398,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beaglesecurity.com", true }, { "bealpha.pl", true }, { "beamer-discount.de", true }, + { "beamstat.com", true }, { "beanjuice.me", true }, { "beans-one.com", false }, { "bearcosports.com.br", true }, { "bearded.sexy", true }, + { "beardic.cn", true }, { "bearingworks.com", true }, { "beastowner.li", true }, { "beatfeld.de", true }, @@ -4040,19 +4415,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "beckerantiques.com", true }, { "beckon.com", true }, - { "becoast.fr", true }, { "becs.ch", true }, { "becydog.cz", true }, { "bedamedia.com", true }, @@ -4063,13 +4438,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bedfordnissanparts.com", true }, { "bedlingtonterrier.com.br", true }, { "bednar.co", 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 }, @@ -4088,6 +4464,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 }, @@ -4096,18 +4474,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beerjet.ro", true }, { "beerjet.sk", true }, { "beerjetcz.cz", true }, + { "beerly.eu", true }, { "beerradar.no", true }, { "beerradar.party", true }, { "beersconf.com", true }, { "beerview.ga", true }, { "beeswax-orgone.com", true }, - { "beethoveninlove.com", true }, { "beetman.net", true }, { "beeutifulparties.co.uk", true }, { "beexfit.com", true }, { "beezkneezcastles.co.uk", true }, { "beeznest.com", true }, { "befoodsafe.gov", true }, + { "beforeyoueatoc.com", true }, { "beframed.ch", true }, { "befundonline.de", true }, { "begabungsfoerderung.info", true }, @@ -4116,10 +4495,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beginner.nl", true }, { "beginwp.top", true }, { "begoodny.co.il", true }, + { "behamepresrdce.sk", true }, { "behamzdarma.cz", true }, { "behindthethrills.com", true }, { "behna24hodin.cz", true }, { "behoerden-online-dienste.de", true }, + { "beholdthehurricane.com", true }, { "behoreal.cz", true }, { "bei18.com", true }, { "beichtgenerator.de", true }, @@ -4128,6 +4509,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beimchristoph.de", true }, { "beinad.com", true }, { "beinad.ru", true }, + { "bejarano.io", true }, { "belacapa.com.br", true }, { "belanglos.de", true }, { "belani.eu", true }, @@ -4140,7 +4522,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "belarto.pl", true }, { "belastingdienst-in-beeld.nl", false }, { "belastingmiddeling.nl", true }, - { "belcompany.nl", false }, + { "belavis.com", true }, { "belegit.org", true }, { "belfastbounce.co.uk", true }, { "belfastlocks.com", true }, @@ -4154,11 +4536,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "believersweb.org", true }, { "bell.id.au", true }, { "bella.network", true }, + { "bellamodeling.com", true }, + { "bellinghamdetailandglass.com", true }, { "belloy.ch", true }, { "belloy.net", true }, { "bellthrogh.com", true }, { "bellthrough.com", true }, { "belly-button-piercings.com", true }, + { "bellyandbrain.amsterdam", true }, { "belmontgoessolar.org", true }, { "belouga.org", true }, { "belt.black", true }, @@ -4166,7 +4551,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "belvoirbouncycastles.co.uk", true }, { "bely-mishka.by", true }, { "belyvly.com", 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 }, @@ -4176,7 +4564,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "benburwell.com", true }, { "benc.io", true }, { "benceskorka.com", true }, - { "benchcast.com", true }, { "benchling.com", true }, { "benchmarkmonument.com", true }, { "bencorby.com", true }, @@ -4190,13 +4577,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "benepiscinas.com.br", true }, { "beneri.se", true }, { "benevita.bio", true }, - { "benevita.life", true }, - { "benevita.live", true }, { "bengalurugifts.com", true }, { "bengisureklam.com", true }, { "benhaney.com", true }, { "benhartmann.de", true }, { "benhavenarchives.org", true }, + { "benjamin-hering.com", true }, { "benjamin.pe", true }, { "benjaminblack.net", true }, { "benjamindietrich.com", true }, @@ -4233,17 +4619,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bentonweatherstone.co.uk", true }, { "bentrask.com", true }, { "benz-hikaku.com", true }, - { "benzi.io", true }, { "beoordelingen.be", true }, { "bephoenix.org.uk", true }, { "bequiia.com", true }, { "beranovi.com", true }, { "berasavocate.com", true }, - { "beraten-entwickeln-steuern.de", true }, { "berdaguermontes.eu", false }, { "bergenhave.nl", true }, + { "berger-chiro.com", true }, { "bergevoet-fa.nl", true }, - { "bergfex.at", true }, { "bergfreunde.de", true }, { "bergfreunde.dk", true }, { "bergfreunde.es", true }, @@ -4254,10 +4638,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bergfreunde.no", true }, { "bergfreunde.se", true }, { "berglust-pur.de", 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 }, - { "berliancom.com", false }, + { "berinhard.pl", true }, + { "berliancom.com", true }, { "berlin-flirt.de", true }, { "berlin.dating", true }, { "bermeitinger.eu", true }, @@ -4265,17 +4659,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bernadetteanderes.ch", true }, { "bernardcontainers.be", true }, { "bernarddickens.com", true }, + { "bernardez-photo.com", true }, { "bernardfischer.fr", true }, { "bernardgo.com", true }, + { "bernat.ch", true }, { "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 }, @@ -4297,15 +4693,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "besb.io", true }, { "besb66.com", true }, { "beschriftung-metz.de", true }, + { "bescover.com", true }, { "beserberg.tk", true }, { "besole.ch", true }, { "bespaarenergie.click", true }, - { "bespaarnu.click", true }, { "bespokestraps.com", true }, { "besser-beissen.de", true }, { "bessettenotaire.com", true }, + { "best-accounting-schools.com", true }, + { "best-art-colleges.com", true }, + { "best-baptist-colleges.com", true }, + { "best-beauty-schools.com", true }, + { "best-business-colleges.com", true }, + { "best-catholic-colleges.com", true }, + { "best-community-colleges.com", true }, + { "best-culinary-colleges.com", true }, + { "best-education-schools.com", true }, + { "best-engineering-colleges.com", true }, { "best-essay-service.com", true }, - { "best-of-bounce.co.uk", true }, + { "best-graduate-programs.com", true }, + { "best-hvac-schools.com", true }, + { "best-lutheran-colleges.com", true }, + { "best-management-schools.com", true }, + { "best-marketing-schools.com", true }, + { "best-music-colleges.com", true }, + { "best-nursing-colleges.com", true }, + { "best-pharmacy-schools.com", true }, + { "best-trucking-schools.com", true }, { "best-wallpaper.net", true }, { "best10websitebuilders.com", true }, { "best2pay.net", true }, @@ -4313,11 +4727,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestattungen-kammerer.de", true }, { "bestattungshaus-kammerer.de", true }, { "bestautoinsurance.com", true }, - { "bestbonuses.co.uk", true }, + { "bestbatteriesonline.com", true }, + { "bestbefore.com", true }, { "bestbrakes.com", true }, { "bestbridal.top", true }, { "bestbyte.com.br", true }, - { "bestcellular.com", false }, + { "bestdating.today", true }, + { "bestelectricnd.com", true }, { "bestemailmarketingsoftware.org", true }, { "bestesb.com", true }, { "bestesb.net", true }, @@ -4327,13 +4743,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestgiftever.ca", true }, { "bestgifts4you.com", true }, { "bestinductioncooktop.us", true }, + { "bestinver.es", true }, + { "bestjumptrampolines.be", true }, + { "bestkenmoredentists.com", true }, { "bestlashesandbrows.com", true }, { "bestlashesandbrows.hu", true }, { "bestmotherfucking.website", true }, { "bestoffert.club", true }, { "bestoliveoils.com", true }, + { "bestpal.eu", true }, { "bestpartyhire.com", true }, { "bestperfumebrands.com", true }, + { "bestpig.fr", true }, + { "bestplumbing.com", true }, + { "bestschools.io", true }, { "bestseries.tv", true }, { "bestshoesmix.com", true }, { "bestwebsite.gallery", true }, @@ -4346,16 +4769,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet9bet9.net", true }, { "betacavi.com", true }, { "betacloud.io", true }, + { "betaclouds.net", true }, { "betalenviainternet.nl", true }, + { "betaprofiles.com", true }, { "betaworx.de", true }, { "betaworx.eu", true }, { "betecnet.de", true }, { "betgo9.cc", true }, - { "bethanyduke.com", true }, + { "bethpage.net", true }, { "betobaccofree.gov", true }, { "betonbit.com", true }, { "betpamm.com", true }, { "betrallyarabia.com", true }, + { "bets.gg", true }, { "betseybuckheit.com", true }, { "betsyshilling.com", true }, { "bett1.de", true }, @@ -4366,7 +4792,10 @@ 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 }, @@ -4396,10 +4825,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bevnut.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 }, @@ -4414,7 +4841,6 @@ 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 }, @@ -4429,11 +4855,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -4442,12 +4865,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bgr34.cz", true }, { "bgtgames.com", true }, { "bgtoyou.com", true }, + { "bgwfans.com", true }, { "bh-oberland.de", true }, { "bh.sb", true }, { "bharath-g.in", true }, { "bhodisoft.com", true }, { "bhost.net", true }, - { "bhosted.nl", true }, { "bhtelecom.ba", true }, { "bhuntr.com", true }, { "bi.search.yahoo.com", false }, @@ -4463,6 +4886,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biblioblog.fr", true }, { "bibliomarkt.ch", true }, { "biblionaut.net", true }, + { "biblioporn.com", true }, { "bibliotekarien.se", true }, { "biboumail.fr", true }, { "bibuch.com", true }, @@ -4471,20 +4895,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bicranial.io", true }, { "bicycle-events.com", true }, { "biddl.com", true }, - { "bidorbuy.co.ke", true }, + { "biddle.co", true }, { "bidu.com.br", true }, { "bie.edu", false }, + { "biegal.ski", true }, { "biegner-technik.de", true }, + { "biehl.tech", true }, { "biehlsoft.info", true }, { "bielefailed.de", true }, { "bien-etre-sante.info", true }, { "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 }, @@ -4498,17 +4926,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bigcakes.dk", true }, { "bigclassaction.com", true }, { "bigdinosaur.org", true }, - { "bigfunbouncycastles.com", true }, { "biggreenexchange.com", true }, { "bigio.com.br", true }, { "bigjohn.ru", true }, - { "bigshort.org", true }, + { "biglou.com", false }, + { "bignumworks.com", true }, + { "bigorbitgallery.org", true }, { "bigsisterchannel.com", true }, { "bigskymontanalandforsale.com", true }, + { "bigwiseguide.com", true }, { "bihub.io", true }, { "biilo.com", true }, - { "bijoux.com.br", true }, - { "bijouxbrasil.com.br", true }, { "bijouxcherie.com", true }, { "bijuteriicualint.ro", true }, { "bike-discount.de", true }, @@ -4530,22 +4958,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bildiri.ci", true }, { "bildkomponist.de", true }, { "bildschirmflackern.de", true }, + { "biletru.net", true }, { "biletyplus.by", true }, { "biletyplus.ua", true }, { "bilgo.com", true }, + { "bilibili.link", true }, { "bilibili.red", true }, { "bilimoe.com", true }, { "bilke.org", true }, { "billaud.eu.org", true }, + { "billgoldstein.name", true }, { "billhartzer.com", true }, { "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 }, { "billy.pictures", true }, { "billyoh.com", true }, @@ -4567,9 +5000,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "binans.net", true }, { "binans.xyz", true }, { "binarization.com", true }, - { "binarization.net", true }, { "binaryapparatus.com", true }, { "binaryappdev.com", true }, + { "binarycreations.scot", true }, { "binarydream.fi", true }, { "binaryevolved.com", true }, { "binaryrebel.net", true }, @@ -4583,6 +5016,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "binhex.net", true }, { "binkanhada.biz", true }, { "binkconsulting.be", true }, + { "binnenmeer.de", true }, + { "binsp.net", true }, { "binti.com", true }, { "bintooshoots.com", true }, { "bio-disinfestazione.it", true }, @@ -4608,8 +5043,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biohappiness.com", true }, { "bioharmony.ca", true }, { "biointelligence-explosion.com", true }, + { "bioknowme.com", true }, { "bioligo.ch", true }, - { "biomax-mep.com.br", true }, + { "biologis.ch", true }, + { "biology-colleges.com", true }, + { "biomasscore.com", true }, { "biometrics.es", true }, { "biomodra.cz", true }, { "biopsychiatry.com", true }, @@ -4634,44 +5072,49 @@ static const nsSTSPreload kSTSPreloadList[] = { { "birgerschwarz.de", true }, { "birgit-rydlewski.de", true }, { "birgitandmerlin.com", true }, - { "birkengarten.ch", true }, { "birkenstab.de", true }, { "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 }, { "bismarck-tb.de", true }, + { "biso.ga", true }, { "bison.co", true }, + { "bisq.community", true }, { "bissalama.org", true }, { "bisschopssteeg.nl", true }, { "bistrocean.com", true }, + { "bistrodeminas.com", true }, { "bistrotdelagare.fr", true }, { "bit-cloud.de", true }, { "bit-rapid.com", true }, { "bit-sentinel.com", true }, - { "bit.voyage", true }, + { "bit-service-aalter.be", true }, + { "bit.biz.tr", true }, { "bit8.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 }, { "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 }, @@ -4680,15 +5123,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitcoinbitcoin.com", true }, { "bitcoinclashic.ninja", true }, { "bitcoincore.org", true }, - { "bitcoinfo.jp", false }, { "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 }, { "bitenose.com", true }, { "bitex.la", true }, { "bitfasching.de", false }, @@ -4711,14 +5151,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "bitmidi.com", true }, { "bitminter.com", true }, - { "bitok.com", true }, + { "bitmoe.com", true }, { "bitpoll.de", true }, { "bitpoll.org", true }, { "bitpumpe.net", true }, @@ -4727,12 +5166,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitsafe.com.my", true }, { "bitsburg.ru", true }, { "bitshaker.net", true }, + { "bitskins.co", true }, { "bitskrieg.net", true }, + { "bitsoffreedom.nl", true }, { "bitstorm.nl", true }, { "bitstorm.org", true }, { "bitsum.com", true }, { "bitsync.nl", true }, - { "bitten.pw", true }, + { "bitten.pw", false }, { "bittersweetcandybowl.com", true }, { "bittylicious.com", true }, { "bitvest.io", true }, @@ -4743,17 +5184,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biyori.moe", true }, { "biyou-homme.com", true }, { "biz4x.com", true }, + { "bizbudding.com", true }, + { "bizcash.co.za", true }, { "bizeau.ch", true }, - { "bizedge.co.nz", true }, { "bizniskatalog.mk", true }, { "biznpro.ru", true }, { "bizstarter.cz", true }, { "biztera.com", true }, { "biztok.eu", true }, + { "biztouch.work", true }, { "bizzi.tv", true }, { "bjarnerest.de", true }, { "bjl5689.com", true }, { "bjl5689.net", true }, + { "bjmun.cn", true }, { "bjornhelmersson.se", true }, { "bjornjohansen.no", true }, { "bjs.gov", true }, @@ -4761,7 +5205,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bkentertainments.co.uk", true }, { "bkhayes.com", true }, { "bkhpilates.co.uk", true }, + { "bklaindia.com", true }, { "bkositspartytime.co.uk", true }, + { "bl00.se", true }, { "bl4ckb0x.biz", true }, { "bl4ckb0x.com", true }, { "bl4ckb0x.de", true }, @@ -4769,6 +5215,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bl4ckb0x.info", true }, { "bl4ckb0x.net", true }, { "bl4ckb0x.org", true }, + { "blaauwgeers.pro", true }, + { "blaauwgeers.travel", true }, { "blabber.im", true }, { "blablacar.co.uk", true }, { "blablacar.com", true }, @@ -4788,14 +5236,13 @@ 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 }, @@ -4803,7 +5250,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackcatinformatics.ca", true }, { "blackcatinformatics.com", true }, { "blackcicada.com", true }, - { "blackdesertsp.com", true }, { "blackdotbrewery.com", true }, { "blackdown.de", true }, { "blackdragoninc.org", true }, @@ -4814,18 +5260,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackgate.org", true }, { "blackhat.dk", true }, { "blackhelicopters.net", true }, + { "blackhell.xyz", true }, { "blackhillsinfosec.com", true }, { "blackilli.de", true }, { "blackislegroup.com", true }, + { "blackjackballroomcasino.info", true }, { "blackkeg.ca", true }, + { "blackl.net", true }, + { "blacklightparty.be", true }, { "blackmonday.gr", true }, { "blacknetwork.eu", true }, { "blackonion.com", true }, { "blackpapermoon.de", true }, { "blackphoenix.de", true }, + { "blackpi.dedyn.io", true }, { "blackroadphotography.de", true }, + { "blackroot.eu", true }, { "blackscytheconsulting.com", true }, { "blackseals.net", true }, + { "blackyau.cc", true }, { "blackys-chamber.de", true }, { "blaise.io", true }, { "blakecoin.org", true }, @@ -4834,6 +5287,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blancodent.com", true }, { "blankersfamily.com", true }, { "blanket.technology", true }, + { "blantr.com", true }, { "blasorchester-runkel.de", true }, { "blastentertainment.com.au", true }, { "blastersklan.com", true }, @@ -4848,15 +5302,15 @@ 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 }, + { "blenheimears.com", true }, { "blenneros.net", false }, - { "blessedearth.com.au", true }, { "blessedguy.com", true }, { "blessedguy.net", false }, { "blewebprojects.com", true }, @@ -4866,7 +5320,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bliesekow.net", true }, { "blikk.no", true }, { "blikund.swedbank.se", true }, + { "blinder.com.co", true }, { "blindpigandtheacorn.com", true }, + { "blinds-unlimited.com", true }, { "bling9.com", true }, { "bling999.cc", true }, { "bling999.com", true }, @@ -4893,8 +5349,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "block65.com", true }, { "blockchain.com", true }, { "blockchain.info", true }, + { "blockchainced.com", true }, { "blockchaindaigakko.jp", true }, { "blockchainwhiz.com", true }, + { "blockcheck.network", true }, { "blockedyourcar.com", true }, { "blockedyourcar.net", true }, { "blockedyourcar.org", true }, @@ -4909,9 +5367,11 @@ 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 }, + { "blogdelosjuguetes.com", true }, { "blogdeyugioh.com", true }, { "blogexpert.ca", true }, { "bloggermumofthreeboys.com", true }, @@ -4920,11 +5380,15 @@ 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 }, { "bloodsports.org", true }, { "bloom-avenue.com", true }, { "bltc.co.uk", true }, @@ -4935,6 +5399,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -4944,6 +5410,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bluecon.ninja", true }, { "bluecrazii.nl", true }, { "blued.moe", true }, + { "bluedata.ltd", true }, { "bluedeck.org", true }, { "blueflare.org", true }, { "bluefrag.com", true }, @@ -4951,27 +5418,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blueimp.net", true }, { "blueliquiddesigns.com.au", true }, { "bluemeda.web.id", true }, - { "bluemoonroleplaying.com", true }, + { "bluemosh.com", true }, { "bluemtnrentalmanagement.ca", true }, { "bluenote9.com", true }, + { "blueoakart.com", true }, { "bluepearl.tk", true }, { "blueperil.de", true }, { "bluepoint.one", true }, { "bluepostbox.de", true }, - { "blueprintloans.co.uk", true }, { "bluerootsmarketing.com", true }, { "blues-and-pictures.com", true }, - { "bluesecure.com.br", true }, { "blueskycoverage.com", true }, { "bluestardiabetes.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 }, @@ -4979,10 +5448,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "bmriv.com", true }, @@ -4991,8 +5462,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -5017,13 +5486,13 @@ 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 }, + { "bobiji.com", false }, { "bobkidbob.com", true }, { "bobkoetsier.nl", true }, { "bobnbouncedublin.ie", true }, - { "boboates.com", true }, { "bobobox.net", true }, { "boboolo.com", true }, { "bobstronomie.fr", true }, @@ -5042,7 +5511,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bodymusclejournal.com", true }, { "bodypainter.pl", true }, { "bodypainting.waw.pl", true }, + { "bodyweb.com.br", true }, { "bodyworkbymichael.com", true }, + { "bodyworksautorebuild.com", true }, { "boeddhashop.nl", true }, { "boekenlegger.nl", true }, { "boem.gov", true }, @@ -5051,12 +5522,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bogdanepureanu.ro", true }, { "bogner.sh", true }, { "bogobeats.com", true }, - { "bohan.co", true }, + { "bogosity.se", 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 }, { "bokutake.com", true }, @@ -5072,29 +5544,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boltbeat.com", true }, { "bolte.org", true }, { "bomb.codes", true }, + { "bombe-lacrymogene.fr", 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 }, { "bonebunny.de", true }, - { "boneko.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 }, @@ -5103,11 +5579,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bonnyprints.fr", true }, { "bonprix.co.uk", true }, { "bonqoeur.ca", true }, + { "bonrecipe.com", true }, { "bonsaimedia.nl", true }, + { "bonsi.net", true }, + { "bonux.co", true }, { "boodaah.com", 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 }, @@ -5116,18 +5597,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bookingworldspeakers.com", true }, { "bookluk.com", true }, { "bookmein.in", true }, - { "bookourdjs.com", true }, { "booksearch.jp", true }, { "bookshopofindia.com", true }, { "booksinthefridge.at", true }, { "booktracker-org.appspot.com", true }, - { "bookwitty.social", true }, { "bool.be", true }, + { "boombv.com", true }, { "boomersurf.com", true }, { "boomshelf.com", true }, { "boomshelf.org", true }, { "boonbox.com", true }, - { "boonehenry.co.uk", true }, { "booox.biz", true }, { "booox.cc", true }, { "booox.info", true }, @@ -5139,14 +5618,13 @@ 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 }, @@ -5158,6 +5636,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "borja.io", true }, { "born2bounce.co.uk", true }, { "bornandgrazed.com", true }, + { "borneodictionary.com", true }, { "bornfiber.dk", true }, { "bornhack.dk", true }, { "borowski.pw", true }, @@ -5169,13 +5648,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boskeopolis-stories.com", true }, { "boss.az", true }, { "bostadsportal.se", true }, + { "bostonadvisors.com", true }, { "bosufitness.cz", true }, { "bosun.io", true }, { "bosworthdental.co.uk", true }, - { "botlab.ch", true }, - { "botmanager.pl", true }, - { "bots.cat", true }, + { "bot-manager.pl", true }, + { "botezdepoveste.ro", true }, + { "botguard.net", true }, + { "bothellwaygarage.net", true }, { "botserver.de", true }, + { "botsindiscord.me", true }, { "botstack.host", true }, { "bottaerisposta.net", true }, { "bottineauneighborhood.org", true }, @@ -5187,7 +5669,8 @@ 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 }, @@ -5211,7 +5694,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 }, @@ -5231,7 +5713,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 }, @@ -5241,7 +5722,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bouncingbuddiesleicester.co.uk", true }, { "bouncinghigher.co.uk", true }, { "bouncingscotland.com", true }, - { "bouncourseplanner.net", true }, { "bouncy-castles-surrey.co.uk", true }, { "bouncy-tots.co.uk", true }, { "bouncybaileys.co.uk", true }, @@ -5252,6 +5732,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 }, @@ -5268,7 +5749,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 }, @@ -5299,6 +5779,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bountyfactory.io", true }, { "bourasse.fr", true }, { "bourdon.fr.eu.org", true }, + { "bourgdepabos.com", true }, { "bourhis.info", true }, { "bournefun.co.uk", true }, { "bourqu.in", true }, @@ -5325,8 +5806,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 }, @@ -5352,7 +5836,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bradler.net", true }, { "bradlinder.org", true }, { "bradypatterson.com", true }, - { "braemer-it-consulting.de", true }, { "braeunlich-gmbh.com", true }, { "brage.info", true }, { "brahmins.com", true }, @@ -5372,6 +5855,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brainvoyagermusic.com", true }, { "brainwork.space", true }, { "brakemanpro.com", true }, + { "brakpanplumber24-7.co.za", true }, { "bralnik.com", true }, { "brambogaerts.nl", true }, { "bramburek.net", true }, @@ -5379,13 +5863,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brammingfys.dk", 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 }, - { "brando753.xyz", true }, { "brandongomez.me", true }, { "brandonhubbard.com", true }, { "brandonwalker.me", true }, @@ -5401,10 +5887,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -5428,6 +5917,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "breadofgod.org", true }, { "breakingtech.it", true }, { "breakpoint.at", true }, + { "breaky.de", true }, { "breathedreamgo.com", true }, { "breathingblanket.com", true }, { "brecht.ch", true }, @@ -5449,7 +5939,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "breitbild-beamer.de", true }, { "brejoc.com", true }, { "bremen-restaurants.de", true }, - { "bremensaki.com", true }, { "bremerfriedensforum.de", true }, { "brendanbatliner.com", true }, { "brendanscherer.com", true }, @@ -5481,10 +5970,13 @@ 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 }, { "brideandgroomdirect.ie", true }, + { "bridgedirectoutreach.com", true }, { "bridgeglobalmarketing.com", true }, { "bridgement.com", true }, { "bridgevest.com", true }, @@ -5493,19 +5985,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "briefassistant.com", true }, { "briefhansa.de", true }, { "briefvorlagen-papierformat.de", true }, + { "briffoud.fr", true }, { "briggsleroux.com", true }, { "brighouse-leisure.co.uk", true }, { "brightday.bz", true }, + { "brightendofleasecleaning.com.au", true }, + { "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 }, - { "brinquedoseducativos.art.br", true }, { "brio-shop.ch", true }, { "brisbanelogistics.com.au", true }, { "bristebein.com", true }, @@ -5518,15 +6012,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "britishpearl.com", true }, { "britishsciencefestival.org", true }, { "britishscienceweek.org", true }, + { "britishsnoring.co.uk", true }, { "britneyclause.com", true }, + { "brittanyferriesnewsroom.com", true }, { "britton-photography.com", true }, + { "brmsalescommunity.com", true }, { "brn.by", true }, + { "brnojebozi.cz", true }, { "bro.hk", 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 }, @@ -5541,17 +6041,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brookehatton.com", true }, { "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 }, + { "browsemycity.com", true }, + { "browserleaks.com", true }, { "brring.com", true }, { "bru6.de", true }, + { "brucekovner.com", true }, { "brucemartin.net", true }, { "brucemobile.de", false }, { "bruck.me", true }, @@ -5559,10 +6061,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bruna-cdn.nl", true }, { "brunick.de", false }, { "brunn.email", true }, - { "brunner.ninja", false }, + { "brunner.ninja", true }, { "brunohenc.from.hr", true }, - { "brunoramos.com", true }, - { "brunoramos.org", true }, + { "brunoproduit.ch", true }, { "brunosouza.org", true }, { "brush.ninja", true }, { "bruun.co", true }, @@ -5570,9 +6071,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -5596,21 +6100,19 @@ 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 }, + { "bsuru.xyz", 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 }, { "btio.pw", true }, @@ -5619,10 +6121,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btorrent.xyz", true }, { "btrb.ml", true }, { "btsapem.com", true }, - { "btserv.de", true }, { "btsoft.eu", true }, { "btsow.com", true }, - { "btth.live", true }, + { "bttc.co.uk", true }, { "btth.pl", true }, { "btth.tv", true }, { "btth.xyz", true }, @@ -5630,15 +6131,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bturboo.com", true }, { "bubblegumblog.com", true }, { "bubblespetspa.com", true }, + { "bubblin.io", true }, { "bubblinghottubs.co.uk", true }, { "bubblybouncers.co.uk", true }, { "bubhub.io", true }, { "buch-angucken.de", true }, { "buchhandlungkilgus.de", true }, { "buchwegweiser.com", true }, - { "buck.com", true }, { "buckypaper.com", true }, - { "budaev-shop.ru", true }, { "buddhismus.net", true }, { "buddie5.com", true }, { "buddlycrafts.com", true }, @@ -5656,12 +6156,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "budolfs.de", true }, { "buehnenbande.ch", false }, { "bueltge.de", true }, + { "buena-vista.cz", true }, { "buena.me", true }, - { "buergerdialog.net", true }, - { "buergerhaushalt.com", true }, { "bueroplus.de", true }, { "bueroschwarz.design", true }, { "bueroshop24.de", true }, + { "buettgens.net", true }, { "buffaloautomation.com", true }, { "buffaloturf.com.au", true }, { "buffetbouc.com", true }, @@ -5685,6 +6185,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buildplease.com", true }, { "buildrightbuildingservicesltd.co.uk", true }, { "buileo.com", true }, + { "builtory.my", true }, { "builtvisible.com", true }, { "builtwith.com", true }, { "bukkenfan.jp", true }, @@ -5692,31 +6193,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bulario.com", true }, { "bulario.net", true }, { "bulbcompare.com", true }, + { "bulbgenie.com", true }, { "bulkcandystore.com", true }, { "bulkingtime.com", true }, { "bulktrade.de", true }, + { "bulktshirtsjohannesburg.co.za", true }, { "bulkwholesalesweets.co.uk", true }, { "bull.id.au", true }, { "bulldog-hosting.de", true }, - { "bulldoghire.co.uk", true }, { "bulledair-savons.ch", true }, { "bullettags.com", true }, - { "bullpay.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 }, { "bunkyo-life.com", true }, { "bunny-rabbits.com", true }, { "bunnyvishal.com", true }, { "bunzy.ca", true }, { "bupropion.com", true }, + { "bupu.ml", true }, { "buradangonder.com", true }, { "burcevo.info", true }, + { "burfordbedandbreakfast.co.uk", true }, { "burgernet.nl", true }, { "burgers.io", true }, { "burghardt.pl", true }, @@ -5725,10 +6228,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -5740,30 +6245,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "burtrum.me", true }, { "burtrum.name", true }, { "burtrum.org", true }, + { "burzcast.ro", true }, { "burzmali.com", true }, - { "buserror.cn", true }, + { "burzmedia.com", true }, + { "burzstudios.com", 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 }, + { "businessmadeeasypodcast.com", true }, { "businessplanexperts.ca", true }, { "businessradar.com.au", true }, + { "businesswebadmin.com", true }, { "busit.be", true }, { "busold.ws", true }, { "bustadice.com", true }, { "bustimes.org", true }, { "bustup-tips.com", true }, { "busuttil.org.uk", true }, + { "busyon.cloud", true }, { "butarque.es", true }, { "buthowdoyoubuygroceries.com", true }, { "butikvip.ru", true }, - { "buttercupstraining.co.uk", true }, + { "butteramotors.com", true }, { "buttermilk.cf", true }, { "buttonline.ch", true }, { "buttonrun.com", true }, @@ -5771,13 +6281,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buurtgenotencollectief.nl", true }, { "buurtpreventiefraneker.nl", true }, { "buxum-communication.ch", true }, + { "buy-out.jp", true }, { "buy-thing.com", true }, { "buyaccessible.gov", true }, + { "buybike.shop", true }, { "buycarpet.shop", true }, + { "buycbd.store", true }, { "buycook.shop", true }, { "buydissertations.com", true }, + { "buyebook.xyz", true }, { "buyerdocs.com", true }, - { "buyessayscheap.com", true }, { "buyhealth.shop", true }, { "buyinginvestmentproperty.com", true }, { "buyjewel.shop", true }, @@ -5791,7 +6304,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -5800,43 +6313,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bw.codes", true }, { "bwcscorecard.org", true }, { "bwe-seminare.de", true }, + { "bwf11.com", true }, + { "bwf55.com", true }, + { "bwf6.com", true }, + { "bwf66.com", true }, + { "bwf77.com", true }, + { "bwf99.com", true }, { "bwfc.nl", true }, { "bwh1.net", true }, { "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 }, { "bx-n.de", true }, + { "bxdev.me", true }, { "bxp40.at", true }, { "by.cx", true }, + { "byange.pro", true }, { "byatte.com", true }, - { "bydisk.com", false }, { "byeskille.no", true }, { "bygningsregistrering.dk", true }, - { "byiu.info", true }, + { "byhe.me", true }, + { "byiu.info", false }, { "byken.cn", true }, { "bymark.co", true }, { "bymike.co", true }, { "bynder.com", true }, + { "bynet.cz", true }, { "bynumlaw.net", true }, { "bypass.sh", true }, { "byrko.cz", true }, { "byrko.sk", true }, - { "byronkg.us", true }, { "byronprivaterehab.com.au", true }, - { "byronr.com", true }, { "byrtz.de", true }, - { "bysb.net", false }, { "byte-time.com", true }, { "byte128.com", true }, - { "bytearts.net", true }, + { "bytearts.net", false }, { "bytebucket.org", true }, { "bytecode.no", true }, { "bytejail.com", true }, @@ -5844,8 +6356,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bytema.eu", true }, { "bytema.re", true }, { "bytema.sk", true }, + { "bytemix.cloud", true }, { "byteowls.com", false }, { "bytepark.de", true }, + { "bytepen.com", true }, { "bytes.co", true }, { "bytes.fyi", true }, { "bytesatwork.de", true }, @@ -5856,12 +6370,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bytesystems.com", true }, { "bythen.cn", true }, { "bythisverse.com", true }, + { "bytrain.net", true }, { "byvshie.com", true }, { "bywin9.com", true }, { "bzhub.bid", true }, { "bziaks.xyz", true }, { "bzsparks.com", true }, { "bztech.com.br", true }, + { "bztraveler.com", true }, + { "bztraveler.net", true }, { "bzv-fr.eu", true }, { "c-aeroconsult.com", true }, { "c-path.org", true }, @@ -5871,25 +6388,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "c-webdesign.net", true }, { "c-world.co.uk", true }, { "c.cc", true }, - { "c0rn3j.com", true }, + { "c0rporation.com", true }, { "c2design.it", true }, { "c2o-library.net", true }, - { "c3hv.cn", true }, { "c3vo.de", true }, { "c3w.at", true }, { "c3wien.at", true }, { "c4539.com", true }, { "c4k3.net", true }, + { "c5h8no4na.net", true }, { "c7dn.com", true }, { "ca-key.de", true }, { "ca-terminal-multiservices.fr", true }, { "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 }, { "cablemod.com", true }, @@ -5901,19 +6421,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cacaumidade.com.br", true }, { "caceis.bank", true }, { "cachetagalong.com", true }, - { "cachethome.com", true }, - { "cachethq.io", true }, { "cachetur.no", true }, { "cackette.com", true }, { "cad-noerdlingen.de", true }, { "cadams.io", true }, + { "cadcreations.co.ke", true }, { "cadetsge.ch", true }, { "cadmail.nl", true }, { "cadman.pw", true }, { "cadooz.com", true }, { "cadorama.fr", true }, { "cadoth.net", true }, - { "cadra.nl", true }, + { "cadra.nl", false }, + { "cadre.com", true }, { "cadsys.net", true }, { "cadusilva.com", true }, { "caesarkabalan.com", true }, @@ -5922,17 +6442,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "caffeinatedcode.com", true }, - { "caibi.io", true }, + { "cagalogluyayinevi.com", true }, { "cainhosting.com", false }, - { "cais.de", true }, { "caitcs.com", true }, { "caiwenjian.xyz", true }, - { "caizx.com", false }, { "caja-pdf.es", true }, { "cajio.ru", true }, { "cajunuk.co.uk", true }, @@ -5955,16 +6474,24 @@ 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 }, + { "caldaro.de", true }, { "caldecotevillagehall.co.uk", true }, + { "caldoletto.com", true }, + { "caleb.cx", true }, { "caleb.host", true }, + { "calebennett.com", true }, { "calebthompson.io", true }, + { "calendar.cf", true }, { "calendarr.com", true }, { "calendarsnow.com", true }, + { "calendly.com", true }, { "caletka.cz", true }, { "calgoty.com", true }, { "calibreapp.com", true }, @@ -5973,10 +6500,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "calidoinvierno.com", true }, { "calixte-concept.fr", true }, { "call.me", true }, - { "callanbryant.co.uk", true }, - { "callawayracing.se", true }, + { "callawayracing.se", false }, { "callear.org", true }, { "callhub.io", true }, + { "callidus-vulpes.de", true }, { "calltoar.ms", true }, { "calltothepen.com", true }, { "callumsilcock.com", true }, @@ -5984,9 +6511,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "calluna.nl", true }, { "calmtech.com", true }, { "calotte-academy.com", true }, + { "calrotaract.org", true }, { "calvin.my", true }, { "calvinallen.net", false }, - { "calypso-tour.net", true }, { "calyxengineers.com", true }, { "camaradivisas.com", true }, { "camaras.uno", true }, @@ -6000,18 +6527,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cambier.org", true }, { "cambiowatch.ch", true }, { "cambodian.dating", true }, + { "cambridge-security.com", true }, { "cambridgebouncers.co.uk", true }, + { "cambridgesecuritygroup.org", true }, + { "camcapital.com", true }, { "camconn.cc", true }, + { "camda.online", true }, + { "camdesign.pl", true }, { "camelservers.com", true }, + { "cameo-membership.uk", true }, { "cameraviva.com.br", true }, { "camerweb.es", true }, { "camilomodzz.net", true }, + { "camjobs.net", true }, { "camolist.com", true }, + { "camomile.desi", true }, { "camp-pleinsoleil.ch", true }, { "camp.co.uk", true }, { "campaign-ad.com", true }, { "campaign.gov.uk", true }, { "campaignagent.com.au", true }, + { "campaignhelpdesk.org", true }, { "campaignwiki.org", true }, { "campamentos.info", true }, { "campbellapplianceheatingandair.com", true }, @@ -6034,8 +6570,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "campus-finance.com", true }, { "campusdrugprevention.gov", true }, { "campuswire.com", true }, + { "campvana.com", true }, { "campwabashi.org", true }, - { "camshowhub.com", true }, + { "camshowstorage.com", true }, { "camsky.de", false }, { "canada-tourisme.ch", true }, { "canadabread.com", false }, @@ -6051,12 +6588,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "canarymod.net", true }, { "cancerdata.nhs.uk", true }, { "candaceplayforth.com", true }, + { "candeo-books.nl", true }, { "candex.com", true }, { "candicecity.com", true }, { "candidasa.com", true }, { "candlcastles.co.uk", true }, { "cando.eu", true }, - { "candylion.rocks", true }, { "candyout.com", true }, { "canerkorkmaz.com", true }, { "cangelloplasticsurgery.com", true }, @@ -6070,10 +6607,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "canlidoviz.com", true }, { "canmipai.com", true }, { "cannabis-marijuana.com", true }, - { "cannahealth.com", false }, + { "cannabismd.com", true }, + { "cannacards.ca", true }, + { "cannahealth.com", true }, { "cannoli.london", true }, { "cannyfoxx.me", true }, { "canoonic.se", true }, + { "cant.at", true }, { "cantatio.ch", true }, { "canterberry.cc", true }, { "canterburybouncycastlehire.co.uk", true }, @@ -6081,13 +6621,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "canva-dev.com", true }, { "canva.com", true }, { "canx.org", true }, + { "canyons.media", 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 }, { "capekeen.com", true }, { "capellidipremoli.com", true }, @@ -6101,19 +6641,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "capitalism.party", 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 }, + { "captain-dandelion.com", true }, { "captainark.net", true }, { "captainsinn.com", true }, - { "captalize.com", true }, + { "captivationtheory.com", true }, { "capturapp.com", false }, { "capture-app.com", true }, { "captured-symphonies.com", true }, @@ -6133,8 +6674,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carbon-project.org", true }, { "carbon12.org", true }, { "carbon12.software", true }, - { "carboneselectricosnettosl.info", true }, + { "carboneselectricosnettosl.info", false }, { "carbonmade.com", false }, + { "carbonmonoxidelawyer.net", true }, { "carbono.uy", true }, { "carbontv.com", true }, { "carck.co.uk", true }, @@ -6149,11 +6691,12 @@ 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 }, @@ -6162,15 +6705,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "careeapp.com", 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 }, @@ -6180,27 +6727,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carinthia.eu", true }, { "cariocacooking.com", true }, { "carisenda.com", true }, + { "carkeysanantonio.com", true }, { "carlandfaith.com", true }, { "carlife-at.jp", true }, { "carlili.fr", true }, { "carlingfordapartments.com.au", true }, { "carlmjohnson.net", true }, + { "carlo.mx", false }, { "carlobiagi.de", true }, + { "carlocksmith--dallas.com", true }, + { "carlocksmithbaltimore.com", true }, + { "carlocksmithellicottcity.com", true }, { "carlocksmithfallbrook.com", true }, + { "carlocksmithlewisville.com", true }, + { "carlocksmithmesquite.com", true }, + { "carlocksmithtucson.com", true }, { "carlosfelic.io", true }, { "carlosjeurissen.com", true }, + { "carlot-j.com", 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 }, { "carpetcleaningtomball.com", true }, @@ -6210,8 +6767,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carriedin.com", true }, { "carrierplatform.com", true }, { "carringtonrealtygroup.com", true }, + { "carroattrezzimilanodaluiso.it", true }, + { "carroceriascarluis.com", true }, { "carrollservicecompany.com", true }, + { "carrosserie-dubois.com", true }, + { "carseatchecks.ca", true }, { "carson-aviation-adventures.com", true }, + { "carsoug.com", true }, { "carspneu.cz", true }, { "cartadeviajes.cl", true }, { "cartadeviajes.co", true }, @@ -6227,9 +6789,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", true }, { "carto.la", true }, { "cartongesso.roma.it", true }, { "cartooncastles.ie", true }, @@ -6237,17 +6801,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cartouche-deal.fr", true }, { "cartouche24.eu", true }, { "cartucce24.it", true }, + { "carun.us", true }, { "carusorealestate.com", true }, { "caryefurd.com", true }, { "casa-due-pur.com", true }, { "casa-due-pur.de", true }, { "casa-due.com", 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 }, { "casalindamex.com", true }, @@ -6261,6 +6828,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cascadesjobcorpscca.com", true }, { "cascavelle.fr", true }, { "cascavelle.nl", true }, + { "case-vacanza-salento.com", true }, { "casecurity.org", true }, { "caseplus-daem.de", true }, { "cash-4x4.com", true }, @@ -6272,19 +6840,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cashlogic.ch", true }, { "cashmaxtexas.com", true }, { "cashplk.com", true }, - { "casino-cash-flow.su", true }, - { "casino-cashflow.ru", true }, { "casino-trio.com", true }, { "casinobonuscodes.online", true }, - { "casinocashflow.ru", true }, + { "casinomucho.com", true }, + { "casinomucho.org", true }, + { "casinomucho.se", true }, { "casinoonlinesicuri.com", true }, { "casio-caisses-enregistreuses.fr", true }, - { "casjay.com", true }, + { "casjay.cloud", true }, { "casjay.info", true }, + { "casjay.us", true }, + { "casjaygames.com", true }, { "caspar.ai", true }, { "casperpanel.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 }, { "castleking.net", true }, @@ -6296,38 +6869,54 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, { "catdecor.ru", true }, { "catenacondos.com", 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 }, + { "cathosting.org", 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 }, { "catnet.dk", false }, + { "catprog.org", true }, { "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 }, @@ -6336,10 +6925,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cave-reynard.ch", true }, { "cavevinsdefrance.fr", true }, { "cavzodiaco.com.br", true }, - { "cayafashion.de", true }, + { "caxalt.com", true }, { "caylercapital.com", true }, { "cazaviajes.es", true }, - { "cazes.info", true }, { "cb-crochet.com", true }, { "cbbank.com", true }, { "cbc-hire.co.uk", true }, @@ -6349,7 +6937,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cbdev.de", true }, { "cbdmarket.space", true }, { "cbecrft.net", true }, + { "cbhq.net", true }, + { "cbin168.com", true }, { "cbintermountainrealty.com", true }, + { "cbk-connect.com", true }, { "cbr-xml-daily.ru", true }, { "cbsdeheidevlinder.nl", true }, { "cbw.sh", true }, @@ -6359,17 +6950,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cccwien.at", true }, { "ccgn.co", true }, { "ccgx.de", true }, - { "ccja.ro", false }, { "ccoooss.com", true }, { "ccprwebsite.org", true }, { "ccsource.org", true }, + { "ccss-cces.com", true }, { "ccsys.com", true }, + { "cctvcanada.net", true }, { "cctvview.info", true }, { "ccu.io", true }, { "ccu.plus", true }, { "ccv-deutschland.de", true }, { "ccv.ch", true }, { "ccv.nl", true }, + { "cd-shopware.de", true }, { "cd-sport.com", true }, { "cd.search.yahoo.com", false }, { "cd5k.net", true }, @@ -6389,21 +6982,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cdncompanies.com", true }, { "cdnjs.com", true }, { "cdns.cloud", true }, + { "cdnsys.net", true }, { "cdom.de", true }, { "cdsdigital.de", true }, + { "cdshining.com", true }, { "cdu-wilgersdorf.de", true }, + { "cduckett.net", true }, { "ce-pimkie.fr", true }, + { "ceagriproducts.com", true }, { "cebz.org", true }, + { "cecame.ch", true }, { "ceciliacolombara.com", true }, { "cecipu.gob.cl", true }, { "ced-services.nl", true }, + { "cedarcitydining.com", true }, + { "cedarslodge.com", true }, { "cedriccassimo.ch", true }, { "cedriccassimo.com", true }, { "cedricmartineau.com", true }, { "ceebee.com", true }, { "cejhon.cz", false }, - { "cekaja.com", true }, { "celcomhomefibre.com.my", true }, + { "celebmasta.com", true }, + { "celebrityhealthcritic.com", true }, { "celebrityscope.net", true }, { "celectro-pro.com", true }, { "celiendev.ch", true }, @@ -6411,18 +7012,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "celltek-server.de", false }, { "celluliteorangeskin.com", true }, { "celluliteremovaldiet.com", true }, - { "celtadigital.com", true }, { "celti.ie.eu.org", true }, { "celti.name", true }, { "celuliteonline.com", true }, { "cementscience.com", true }, + { "cemeteriat.com", true }, { "ceml.ch", true }, { "cenatorium.pl", 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 }, @@ -6439,13 +7042,14 @@ 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 }, @@ -6454,9 +7058,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 }, @@ -6466,7 +7068,6 @@ 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 }, @@ -6484,6 +7085,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "certfa.com", true }, { "certible.com", true }, { "certificatedetails.com", true }, + { "certificatespending.com", true }, { "certificatetools.com", true }, { "certifiednurses.org", true }, { "certmonitor.com.au", true }, @@ -6492,6 +7094,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "certspotter.com", true }, { "certspotter.org", true }, { "cervejista.com", true }, + { "cesantias.co", true }, { "cesboard.com", true }, { "cesdb.com", true }, { "cesipagano.com", true }, @@ -6502,24 +7105,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 }, { "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 }, @@ -6530,48 +7137,53 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cgnparts.com", true }, { "cgpe.com", true }, { "cgsmart.com", true }, + { "cgurtner.ch", true }, { "ch-laborit.fr", true }, { "ch-sc.de", true }, { "ch.search.yahoo.com", false }, { "ch47f.com", true }, - { "chabaojia.com", true }, { "chabaudparfum.com", true }, { "chabert-provence.fr", true }, - { "chad.ch", true }, + { "chabik.com", true }, { "chadstoneapartments.com.au", true }, + { "chadtaljaardt.com", true }, + { "chaffeyconstruction.com", true }, { "chaifeng.com", true }, { "chainedunion.info", true }, { "chaip.org", true }, - { "chairinstitute.com", true }, { "chaisystems.net", true }, - { "chaldeen.pro", true }, { "chaletdemontagne.org", true }, { "chaletmanager.com", true }, { "chaletpierrot.ch", true }, { "chaleur.com", true }, + { "chalker.io", true }, { "challengeblog.org", true }, { "challstrom.com", true }, { "chamathellawala.com", true }, { "chambion.ch", 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.au", true }, + { "championweb.nz", true }, { "champonthis.de", true }, { "champserver.net", false }, + { "chancekorte.com", true }, { "chanddriving.co.uk", true }, { "chandr1000.ga", true }, + { "chang-feng.info", true }, { "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 }, @@ -6590,11 +7202,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chapelfordbouncers.co.uk", true }, { "chapiteauxduleman.fr", true }, { "chaplain.co", true }, - { "charakato.com", true }, { "charbonnel.eu", true }, { "charcoal-se.org", true }, { "charcoalvenice.com", true }, + { "chargedmonkey.com", true }, { "chargify.com", true }, + { "charisma.ai", true }, { "charissadescande.com", true }, { "charitylog.co.uk", true }, { "charl.eu", true }, @@ -6617,6 +7230,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "charlottesvillegolfcommunities.com", true }, { "charlotteswimmingpoolbuilder.com", true }, { "charmander.me", true }, + { "charmanterelefant.at", true }, { "charmingsaul.com", true }, { "charmyadesara.com", true }, { "charr.xyz", true }, @@ -6627,6 +7241,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chartpen.com", true }, { "chartsy.de", true }, { "charuru.moe", true }, + { "chasafilli.ch", true }, + { "chascrazycreations.com", true }, { "chaseandzoey.de", true }, { "chasetrails.co.uk", true }, { "chat-libera.org", true }, @@ -6635,15 +7251,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chat2.cf", true }, { "chat40.net", true }, { "chatbelgie.eu", true }, - { "chatbot.one", true }, { "chatbotclic.com", true }, { "chatbotclick.com", true }, { "chatbots.systems", true }, { "chatear.social", true }, - { "chateau-belvoir.com", true }, { "chateau-de-lisle.fr", true }, { "chateaudestrainchamps.com", true }, { "chatfacile.org", true }, + { "chatgrape.com", true }, + { "chatint.com", true }, { "chatitaly.org", true }, { "chatme.im", false }, { "chatnederland.eu", true }, @@ -6653,6 +7269,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chattanoogaface.com", true }, { "chattergalerie.eu", true }, { "chattergallery.com", true }, + { "chattersworld.nl", true }, { "chatu.io", true }, { "chatu.me", true }, { "chatucomputers.com", true }, @@ -6660,6 +7277,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chatxtutti.com", true }, { "chatzimanolis.com", true }, { "chatzimanolis.gr", true }, + { "chauffage-budget.fr", true }, { "chaurocks.com", true }, { "chaussenot.net", true }, { "chavetaro.com", true }, @@ -6667,12 +7285,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -6689,13 +7309,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cheapgeekts.com", false }, { "cheapgoa.com", true }, { "cheapiesystems.com", true }, + { "cheapssl.com.tr", true }, { "cheapticket.in", true }, - { "cheapwritinghelp.com", true }, { "check.torproject.org", false }, { "checkecert.nl", true }, - { "checkmateshoes.com", false }, { "checkmyessay.com", true }, { "checkmyessays.com", true }, + { "checkmyip.com", true }, { "checkmypsoriasis.com", true }, { "checkout.google.com", true }, { "checkpoint-tshirt.com", true }, @@ -6712,11 +7332,11 @@ 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 }, @@ -6725,13 +7345,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cheltik.ru", true }, { "chemicalcrux.org", true }, { "chemiphys.com", true }, + { "chemistry-schools.com", true }, { "chenapartment.com", true }, + { "chengxindong.com", true }, { "chenkun.pro", true }, { "chenky.com", true }, + { "chenna.me", true }, { "chennien.com", true }, + { "chenpei.org", true }, { "chenqinghua.com", true }, { "chentianyi.cn", true }, { "chenzhekl.me", true }, + { "chenzhipeng.com.cn", true }, { "cheolguso.com", true }, { "cherevoiture.com", true }, { "cherie-belle.com", true }, @@ -6740,7 +7365,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cherryonit.com", true }, { "cherrywoodtech.com", true }, { "chertseybouncycastles.co.uk", true }, + { "chesapeakebaychristmas.com", true }, + { "chesscoders.com", true }, { "chesspoint.ch", true }, + { "chesterlestreetasc.co.uk", true }, { "chestnut.cf", true }, { "chevy37.com", true }, { "chevymotor-occasions.be", true }, @@ -6753,9 +7381,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "chicagolug.org", true }, { "chicagostudentactivists.org", true }, @@ -6763,10 +7391,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -6781,6 +7406,8 @@ 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 }, { "chima.net", true }, @@ -6793,14 +7420,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chinaspaceflight.com", true }, { "chinatrademarkoffice.com", true }, { "chinawhale.com", true }, + { "ching.tv", true }, { "chint.ai", true }, { "chinwag.im", true }, { "chinwag.org", true }, { "chipcore.com", true }, + { "chipglobe.com", true }, { "chippy.ch", false }, + { "chips-scheduler.de", true }, { "chiralsoftware.com", true }, { "chireiden.net", true }, { "chiro-neuchatel.ch", true }, + { "chiropractic.gr", true }, + { "chiropracticwpb.com", true }, { "chiropraktik-riemann.de", true }, { "chiropraticien-neuchatel.ch", true }, { "chiropratique-neuchatel.ch", true }, @@ -6812,9 +7444,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chitoku.jp", false }, { "chksite.com", true }, { "chl.la", true }, - { "chloehorler.com", true }, { "chloescastles.co.uk", true }, { "chlth.com", true }, + { "chmielarz.it", true }, { "chmsoft.com.ua", true }, { "chmsoft.ru", true }, { "chmurakotori.ml", true }, @@ -6824,11 +7456,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chocolate13tilias.com.br", true }, { "chocolatesandhealth.com", true }, { "chocolatier-tristan.ch", true }, - { "chocotough.nl", false }, - { "choe.fi", true }, + { "choiceautoloan.com", true }, { "choisirmonerp.com", true }, { "chokladfantasi.net", true }, - { "chollima.pro", true }, { "chon.io", true }, { "chonghe.org", true }, { "chook.as", true }, @@ -6837,11 +7467,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chorkley.co.uk", true }, { "chorkley.com", true }, { "chorkley.uk", true }, - { "chorleiterverband.de", true }, { "chorpinkpoemps.de", true }, { "chosenplaintext.org", true }, { "chourishi-shigoto.com", true }, + { "chovancova.sk", true }, { "chowii.com", true }, + { "choyri.com", true }, { "chris-edwards.net", true }, { "chrisaitch.com", true }, { "chrisb.me", true }, @@ -6854,7 +7485,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chrisirwin.ca", true }, { "chrisjean.com", true }, { "chrislane.com", true }, - { "chrismathys.com", true }, { "chrismcclendon.com", true }, { "chrismckee.co.uk", true }, { "chrismorgan.info", true }, @@ -6870,6 +7500,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christiaanconover.com", true }, { "christian-gredig.de", true }, { "christian-host.com", true }, + { "christian-krug.website", true }, { "christian-liebel.com", true }, { "christian-stadelmann.de", true }, { "christianbargon.de", false }, @@ -6877,8 +7508,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -6894,10 +7528,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christopherburg.com", true }, { "christopherkennelly.com", true }, { "christopherl.com", true }, - { "christopherpritchard.co.uk", true }, + { "christopherstocks.online", true }, { "christophertruncer.com", true }, - { "christophkreileder.com", true }, { "christophsackl.de", true }, + { "christthekingparish.net", true }, + { "christtheredeemer.us", true }, + { "christwaycounseling.com", true }, { "chriswald.com", true }, { "chriswarrick.com", true }, { "chriswbarry.com", true }, @@ -6910,25 +7546,24 @@ 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 }, - { "chsh.moe", true }, + { "chrysanthos.net", true }, { "chsterz.de", true }, - { "chua.family", true }, { "chuchote-moi.fr", true }, { "chuck.ovh", true }, { "chun.pro", true }, { "chunche.net", true }, { "chunk.science", true }, { "chupadelfrasco.com", true }, + { "chuppa.com.au", true }, { "churchlinkpro.com", true }, + { "churchofsaintrocco.org", true }, { "churchthemes.com", true }, { "churningtracker.com", true }, - { "chxdf.net", true }, { "chyen.cc", true }, { "chytraauta.cz", true }, { "chziyue.com", true }, @@ -6943,24 +7578,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cidersus.com.ec", true }, { "cie-theatre-montfaucon.ch", true }, { "cielbleu.org", true }, + { "cielly.com", true }, { "cifop-numerique.fr", true }, { "cig-dem.com", true }, { "cigar-cartel.com", true }, + { "ciiex.co", true }, { "cilloc.be", true }, { "cima-idf.fr", 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 }, { "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 }, @@ -6971,7 +7607,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cio-ciso-interchange.org", true }, { "cio-cisointerchange.org", true }, { "cio.go.jp", true }, - { "cio.gov", true }, + { "cio.gov", false }, { "cioscloud.com", true }, { "cip.md", true }, { "cipartyhire.co.uk", true }, @@ -6991,7 +7627,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "circu.ml", true }, { "circulatedigital.com", true }, { "circule.cc", true }, - { "cirfi.com", true }, { "ciri.com.co", true }, { "cirope.com", true }, { "cirrus0.de", true }, @@ -6999,8 +7634,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cirujanooral.com", true }, { "cirurgicagervasio.com.br", true }, { "cirurgicalucena.com.br", true }, + { "cirurgicasalutar.com.br", true }, { "ciscodude.net", false }, { "cisoaid.com", true }, + { "cisofy.com", true }, + { "cispeo.org", true }, { "ciss.ltd", true }, { "cisum-cycling.com", true }, { "cisy.me", true }, @@ -7011,10 +7649,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "citizen-cam.de", true }, { "citizensbankal.com", true }, { "citizenscience.gov", false }, + { "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 }, @@ -7028,11 +7666,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cityoftitansmmo.com", true }, { "citysportapp.com", true }, { "cityworksonline.com", true }, - { "ciubotaru.tk", true }, + { "ciurcasdan.eu", true }, + { "civicforum.pl", 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 }, @@ -7051,7 +7695,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ckostecki.de", true }, { "cktennis.com", true }, { "cl.search.yahoo.com", false }, - { "clad.cf", true }, + { "clacetandil.com.ar", true }, { "claimconnect.com", true }, { "claimconnect.us", true }, { "claimjeidee.be", true }, @@ -7066,6 +7710,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clarkeaward.com", true }, { "clarkwinkelmann.com", true }, { "clase3.tk", true }, + { "clash-movies.de", true }, { "clash.lol", true }, { "class.com.au", true }, { "classdojo.com", true }, @@ -7077,7 +7722,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "classroomconductor.com", true }, { "classroomcountdown.co.nz", true }, { "classteaching.com.au", true }, + { "classyvaper.de", true }, { "claude-leveille.com", true }, + { "claude.tech", true }, { "claudia-urio.com", true }, { "claus-bahr.de", true }, { "clauseriksen.net", true }, @@ -7088,22 +7735,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clazzrooms.com", true }, { "cldfile.com", true }, { "cldly.com", true }, + { "cleanapproachnw.com", true }, { "cleanbeautymarket.com.au", true }, { "cleanbrowsing.org", true }, { "cleancode.club", true }, + { "cleandetroit.org", true }, + { "cleandogsnederland.nl", true }, { "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 }, { "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 }, @@ -7114,7 +7768,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "click-licht.de", true }, { "clickclock.cc", true }, { "clickenergy.com.au", true }, - { "clickforclever.com", true }, { "clickphish.com", true }, { "clicksaveandprint.com", true }, { "clien.net", true }, @@ -7132,6 +7785,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clinicadelogopedia.net", true }, { "clinicalrehabilitation.info", true }, { "clinicaltrials.gov", true }, + { "clinicasmedicas.com.br", true }, { "clinicminds.com", true }, { "cliniquecomplementaire.com", true }, { "cliniquevethuy.be", true }, @@ -7142,7 +7796,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clive.io", true }, { "clmde.de", true }, { "clnc.to", true }, - { "clnet.com.au", true }, { "clnnet.ch", true }, { "cloaked.ch", true }, { "clochix.net", true }, @@ -7151,7 +7804,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clojurescript.ru", true }, { "cloppenburg-autmobil.com", true }, { "cloppenburg-automobil.com", true }, - { "clorik.com", true }, { "clorophilla.net", true }, { "closeli.cn", true }, { "closelinksecurity.co.uk", true }, @@ -7171,18 +7823,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudbrothers.info", true }, { "cloudcactuar.com", false }, { "cloudcaprice.net", 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 }, { "cloudflare.com", true }, { "cloudflareonazure.com", true }, { "cloudia.org", true }, { "cloudily.com", true }, - { "cloudimproved.com", true }, + { "cloudimprovedtest.com", true }, + { "cloudkeep.nl", true }, { "cloudkit.pro", false }, + { "cloudlessdreams.com", true }, { "cloudlight.biz", true }, { "cloudnote.cc", true }, { "cloudns.net", true }, @@ -7190,14 +7847,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudoptimus.com", true }, { "cloudpengu.in", true }, { "cloudpipes.com", true }, + { "cloudse.co.uk", true }, { "cloudsecurityalliance.org", true }, { "cloudservice.io", true }, { "cloudservices.nz", true }, + { "cloudsign.jp", true }, { "cloudsocial.io", true }, { "cloudspace-analytics.com", true }, { "cloudspeedy.net", true }, { "cloudspire.net", true }, - { "cloudtocloud.tk", true }, { "cloudtropia.de", true }, { "cloudtskr.com", true }, { "cloudup.com", true }, @@ -7206,21 +7864,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clownindeklas.nl", true }, { "cloxy.com", true }, { "clr3.com", true }, - { "clsimage.com", true }, + { "clsfoundationrepairandwaterproofing.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", true }, { "clubiconkenosha.com", true }, { "clubmate.rocks", true }, { "clubmini.jp", true }, @@ -7228,23 +7892,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clubon.space", true }, { "clubscannan.ie", true }, { "clueful.ca", true }, - { "cluefulca.com", true }, - { "cluefulca.net", true }, - { "cluefulca.org", true }, + { "clush.pw", 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 }, { "cmcressy.ch", true }, { "cmdline.org", true }, + { "cme-colleg.de", true }, { "cmf.qc.ca", true }, { "cmfaccounting.com", true }, { "cmftech.com", true }, { "cmillrehab.com", true }, - { "cmitao.com", true }, { "cmlachapelle.ch", true }, { "cmlancy.ch", true }, { "cmlignon.ch", true }, @@ -7253,6 +7917,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cmngroup.com", true }, { "cmngroupe.com", true }, { "cmplainpalais.ch", true }, + { "cms-weble.jp", true }, { "cmskeyholding.co.uk", true }, { "cmskeyholding.com", true }, { "cmusical.es", true }, @@ -7268,14 +7933,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cnc-lehrgang.de", true }, { "cncado.net", true }, { "cncbazar365.com", true }, - { "cncmachinemetal.com", true }, { "cncrans.ch", true }, { "cnet-hosting.com", true }, { "cni-certing.it", true }, { "cnre.eu", true }, + { "cnvt.fr", true }, { "co-factor.ro", true }, { "co-founder-stuttgart.de", true }, { "co.search.yahoo.com", false }, + { "co2eco.cn", true }, { "co50.com", true }, { "coa.one", true }, { "coachezmoi.ch", true }, @@ -7287,11 +7953,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coastline.net.au", true }, { "coathangastrangla.com", true }, { "coathangastrangler.com", true }, + { "coathangerstrangla.com", true }, + { "coathangerstrangler.com", true }, { "coatl-industries.com", true }, { "cobalt.io", true }, { "cobaltgp.com", true }, { "cobracastles.co.uk", true }, - { "cocaine-import.agency", true }, { "cocaine.ninja", true }, { "cocalc.com", true }, { "cocareonline.com", true }, @@ -7302,7 +7969,6 @@ 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 }, @@ -7323,14 +7989,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "code67.com", true }, { "codeandpeace.com", true }, { "codebrahma.com", false }, + { "codecommunity.io", true }, { "codedump.net", true }, { "codeeclipse.com", true }, { "codeferm.com", true }, { "codefordus.de", true }, { "codefordus.nrw", true }, + { "codein.ca", true }, { "codeine.co.uk", true }, { "codeit.guru", true }, { "codeit.us", true }, + { "codejots.com", true }, + { "codejunkie.de", false }, + { "codemill.se", true }, { "codemonster.eu", true }, { "codenode.io", true }, { "codeofthenorth.com", true }, @@ -7339,11 +8010,9 @@ 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 }, { "coderme.com", true }, - { "codersbistro.com", true }, { "codes.pk", true }, { "codesplain.in", true }, { "codesport.io", true }, @@ -7356,34 +8025,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 }, + { "codimaker.com", 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 }, + { "coentropic.com", true }, { "coffee-mamenoki.jp", true }, { "coffeeandteabrothers.com", true }, + { "coffeetime.fun", true }, { "coffeetocode.me", true }, { "cogala.eu", true }, { "cogent.cc", true }, { "cogilog.com", true }, { "cogitoltd.com", true }, + { "cognicom-gaming.com", true }, { "cognitip.com", true }, { "cognitivecomputingconsortium.com", true }, { "cognitohq.com", true }, + { "cognixia.com", true }, { "cogsquad.house", true }, { "coi-verify.com", true }, { "coiffeurschnittstelle.ch", true }, @@ -7400,15 +8078,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coincoin.eu.org", true }, { "coincolors.co", true }, { "coindatabase.net", true }, - { "coinessa.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 }, @@ -7418,7 +8096,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colaborativa.tv", true }, { "colapsys.net", true }, { "colasjourdain.fr", true }, - { "coldaddy.com", true }, { "coldawn.com", false }, { "coldfff.com", false }, { "coldhak.ca", true }, @@ -7428,7 +8105,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colengo.com", true }, { "colf.online", true }, { "colibris.xyz", true }, - { "colincampbell.me", true }, { "colinchartier.com", true }, { "colincogle.name", true }, { "colinsnaith.co.uk", true }, @@ -7448,15 +8124,14 @@ 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 }, { "collinel-hossari.com", true }, { "collinelhossari.com", true }, @@ -7472,18 +8147,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colorectalcompounding.com", true }, { "colorfuldots.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 }, { "colson-occasions.be", true }, + { "coltonrb.com", true }, { "columbuswines.com", true }, { "colyakootees.com", true }, { "com-in.de", true }, { "comalia.com", true }, + { "comandofilmes.club", true }, { "comarkinstruments.net", true }, { "combatircelulitis.com", true }, { "combattrecellulite.com", true }, @@ -7492,19 +8168,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "combron.com", true }, { "combron.nl", true }, { "comcol.nl", true }, - { "comdotgame.com", true }, { "comdurav.com", true }, + { "comeals.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 }, { "comff.net", true }, { "comfintouch.com", true }, { "comflores.com.br", true }, - { "comfortmastersinsulation.com", true }, { "comhack.com", true }, { "comicspornos.com", true }, { "comicspornoxxx.com", true }, @@ -7512,6 +8186,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comidasperuanas.net", true }, { "comiteaintriathlon.fr", true }, { "comm.cx", true }, + { "commania.co.kr", true }, { "commco.nl", true }, { "commechezvous.ch", true }, { "commerce.gov", true }, @@ -7524,8 +8199,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "commoncore4kids.com", true }, { "communityblog.fedoraproject.org", true }, { "communitycodeofconduct.com", true }, + { "communityflow.info", true }, + { "communitymanagertorrejon.com", true }, { "communote.net", true }, { "como-se-escribe.com", true }, + { "comocurarlagastritis24.online", true }, { "comocurarlagastritistratamientonatural.com", true }, { "comodesinflamarlashemorroides.org", true }, { "comodo.nl", true }, @@ -7539,14 +8217,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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.co.uk", true }, { "compareandrecycle.com", false }, { "compareinsurance.com.au", true }, @@ -7566,15 +8244,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "completesecurityessex.com", true }, { "completionist.me", true }, { "complexart.ro", true }, + { "complexorganizations.com", true }, { "complexsystems.fail", true }, { "compliance-management.ch", true }, + { "compliance-systeme.de", true }, { "compliancedictionary.com", true }, { "compliancerisksoftware.co.uk", true }, { "compostatebien.com.ar", true }, { "compoundingrxusa.com", true }, { "compraneta.com", false }, + { "comprasoffie.com.br", true }, { "compreautomacao.com.br", true }, { "compree.com", true }, + { "compservice.in.ua", true }, + { "comptu.com", true }, { "compubench.com", true }, { "compucastell.ch", true }, { "compucorner.mx", true }, @@ -7582,18 +8265,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "compusolve.nl", true }, { "computehealth.com", true }, { "computer-acquisti.com", true }, + { "computer-science-schools.com", true }, { "computeracademy.co.za", true }, { "computerassistance.co.uk", true }, { "computerbas.nl", true }, { "computerbase.de", true }, + { "computercraft.net", true }, + { "computeremergency.com.au", false }, { "computerhilfe-feucht.de", true }, { "computernetwerkwestland.nl", true }, { "computerslotopschool.nl", true }, { "computersystems.guru", false }, - { "comssa.org.au", true }, { "comunidadmontepinar.es", true }, + { "comvos.de", true }, { "comw.cc", true }, { "conalcorp.com", true }, + { "conatus.ai", true }, { "conaudisa.com", false }, { "concept-web.ch", true }, { "concertengine.com", true }, @@ -7601,6 +8288,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "concertsenboite.fr", true }, { "concertsto.com", true }, { "conciliumnotaire.ca", true }, + { "conclinica.com.br", true }, + { "concordsoftwareleasing.com", true }, + { "concretelevelingsystems.com", true }, { "concreterepairatlanta.com", true }, { "concursopublico.com.br", true }, { "concursos.com.br", true }, @@ -7622,24 +8312,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conejovalleylandscapelighting.com", true }, { "conejovalleylighting.com", true }, { "conejovalleyoutdoorlighting.com", true }, + { "conexiontransporte.com", 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 }, + { "confucio.cl", 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 }, @@ -7649,21 +8338,26 @@ 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 }, + { "conociendosalama.com", true }, { "conocimientosdigitales.com", true }, { "conory.com", true }, + { "conpath.net", true }, + { "conpins.nl", true }, { "conrad-kostecki.de", true }, { "conradkostecki.de", true }, + { "conradsautotransmissionrepair.com", true }, { "conrail.blue", true }, + { "consagracionamariasantisima.org", true }, { "consciousbrand.co", true }, { "consciouschoices.net", true }, { "consec-systems.de", true }, - { "conseil-gli.fr", true }, { "consejosdenutricion.com", true }, { "consensoprivacy.it", true }, { "conservados.com.br", true }, @@ -7676,17 +8370,22 @@ 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 }, { "constructexpres.ro", true }, + { "constructieve.nl", true }, + { "construction-colleges.com", true }, { "construction-student.co.uk", true }, { "constructionjobs.com", true }, { "consul.io", true }, { "consulenza.pro", true }, + { "consultation.biz.tr", true }, { "consultimator.com", true }, { "consultimedia.de", true }, + { "consultoriadeseguranca.com.br", true }, + { "consultoriosodontologicos.com.br", true }, { "consultpetkov.com", true }, { "consulvation.com", true }, { "consumeractionlawgroup.com", true }, @@ -7695,6 +8394,7 @@ 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 }, @@ -7705,6 +8405,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conti-profitlink.co.uk", true }, { "continuum.memorial", true }, { "contrabass.net", true }, + { "contractdigital.co.uk", true }, { "contractormountain.com", true }, { "contractwriters.com", true }, { "contraspin.co.nz", true }, @@ -7714,8 +8415,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 }, @@ -7737,7 +8438,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 }, @@ -7747,7 +8448,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cookwithmanali.com", true }, { "cool-parties.co.uk", true }, { "cool-wallpapers.jp", 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 }, @@ -7756,15 +8461,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "copperandtileroofing.com", true }, { "copperhead.co", true }, { "copperheados.com", true }, + { "coppermein.co.za", true }, { "copplaw.com", true }, + { "copta-imagefilme-und-drohnenvideos.de", true }, { "coptkm.cz", true }, { "copycaught.co", true }, { "copycaught.net", true }, @@ -7773,8 +8482,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "copycrafter.net", 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 }, @@ -7784,19 +8494,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "coreless-stretchfilm.com", true }, { "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 }, @@ -7808,10 +8517,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cornerstonecmc.org", true }, { "corniche.com", true }, { "corningcu.org", true }, + { "cornodo.com", true }, { "corona-academy.com", true }, { "corona-renderer.cloud", true }, { "corona-renderer.com", true }, - { "coropiacere.org", true }, { "corourbano.es", true }, { "corpfin.net", true }, { "corpio.nl", true }, @@ -7820,6 +8529,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "corporateclash.net", true }, { "corporatecomputingsolutions.com", true }, { "corporateinfluencers.com", true }, + { "corporativoarval.info", true }, { "corpsepaint.life", true }, { "corpulant.coffee", true }, { "corpulantcoffee.com", true }, @@ -7828,6 +8538,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "corpusslayer.com", true }, { "corrbee.com", true }, { "correctiv.org", true }, + { "corrick.io", true }, { "corrupted.io", true }, { "corsa-b.uk", true }, { "corsectra.com", true }, @@ -7836,9 +8547,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cortexx.nl", true }, { "cortis-consulting.ch", true }, { "cortisolsupplement.com", true }, + { "corvax.kiev.ua", true }, { "corvus.eu.org", true }, { "coryadum.com", true }, { "corytyburski.com", true }, + { "corzntin.fr", false }, { "cosasque.com", true }, { "cosciamoos.com", true }, { "cosirex.com", true }, @@ -7855,11 +8568,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "costellofc.co.uk", true }, { "costinstefan.eu", true }, { "costreportdata.com", false }, { "costulessdirect.com", true }, @@ -7871,24 +8587,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "countingto.one", 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 }, { "couponcodesme.com", true }, { "cour4g3.me", true }, { "couragefound.org", true }, - { "coursables.com", true }, { "coursera.org", true }, { "courtlistener.com", true }, { "couscous.recipes", true }, { "coussinsky.net", true }, + { "couvreur-hinault.fr", true }, + { "covaci.pro", true }, { "covbounce.co.uk", true }, { "covenantoftheriver.org", true }, { "covermytrip.com.au", true }, @@ -7902,7 +8621,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coweo.cz", true }, { "coxxs.me", true }, { "coxxs.moe", true }, - { "cozitop.com.br", true }, { "cozo.me", true }, { "cozyeggdesigns.com", true }, { "cp-st-martin.be", true }, @@ -7910,7 +8628,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cpbapremiocaduceo.com.ar", true }, { "cpcheats.co", true }, { "cpd-education.co.uk", true }, + { "cpe-colleg.de", true }, { "cphpvb.net", true }, + { "cplala.com", true }, { "cplus.me", true }, { "cplusplus.se", true }, { "cppan.org", true }, @@ -7919,12 +8639,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cprheartcenter.com", true }, { "cprnearme.com", 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 }, + { "craazzyman21.at", true }, { "crackcat.de", true }, { "cracker.in.th", true }, { "crackle.io", true }, @@ -7938,7 +8659,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -7952,10 +8673,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cranforddental.com", true }, { "crapouill.es", true }, { "crawcial.de", true }, + { "crawford.cloud", true }, { "crawfordcountytcc.org", true }, { "crawl.report", true }, + { "crawler.ninja", true }, { "crawleybouncycastles.co.uk", true }, { "crawlspaceandbasementsolutions.com", true }, + { "crazy-cat.net", true }, { "crazy-coders.com", true }, { "crazycastles.ie", true }, { "crazydomains.ae", true }, @@ -7967,7 +8691,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crazynoisybizarre.town", true }, { "crazypaul.com", true }, { "crbug.com", true }, - { "crc-online.nl", true }, { "crdmendoza.net", true }, { "crea-etc.net", true }, { "crea-shops.ch", true }, @@ -7976,24 +8699,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "creativeink.de", true }, { "creativekkids.com", true }, { "creativelaw.eu", true }, @@ -8003,12 +8724,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "creativeweb.biz", true }, { "creativewolf.net", true }, { "creativlabor.ch", true }, - { "creatixx-network.de", true }, + { "creatixx-network.de", false }, { "creators-design.com", true }, - { "creators.co", true }, { "creators.direct", true }, { "creatujoya.com", true }, - { "crecips.com", true }, { "credential.eu", true }, { "credex.bg", true }, { "credigo.se", true }, @@ -8016,6 +8735,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "creditkarma.com", true }, { "creditos-rapidos.com", true }, { "creditproautos.com", false }, + { "creditscoretalk.com", true }, + { "creditta.com", true }, + { "credittoken.io", true }, { "creeks-coworking.com", true }, { "creep.im", true }, { "creepycraft.nl", true }, @@ -8026,7 +8748,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crem.in", false }, { "cremepassion.de", true }, { "crena.ch", true }, - { "creorin.com", true }, { "crepa.ch", true }, { "crepererum.net", true }, { "crescent.gr.jp", true }, @@ -8036,7 +8757,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -8044,11 +8765,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "criena.com", true }, { "criena.net", true }, { "crimefreeliving.com", true }, + { "crimesolutions.gov", true }, { "crimevictims.gov", true }, { "criminal-attorney.ru", true }, { "criminal.enterprises", true }, { "crimson.no", true }, - { "crip-usk.ba", true }, + { "crinesdanzantes.be", true }, + { "criptolog.com", true }, { "crisisactual.com", true }, { "crisisnextdoor.gov", true }, { "crisp.chat", true }, @@ -8064,10 +8787,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "criticalsurveys.co.uk", true }, { "crizin.io", true }, { "crm.onlime.ch", false }, + { "crm114d.com", true }, { "croceverdevb.it", true }, { "crochetnerd.com", true }, { "croisedanslemetro.com", true }, - { "croisieres.discount", true }, { "croixblanche-haguenau.fr", true }, { "cromefire.myds.me", true }, { "cronberg.ch", true }, @@ -8093,11 +8816,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crossorig.in", true }, { "crossoverit.com", true }, { "crosssellguide.com", true }, + { "crow.tw", true }, + { "crowd.supply", true }, { "crowdbox.net", true }, { "crowdcloud.be", true }, { "crowdliminal.com", true }, + { "crowdsim3d.com", true }, { "crowdsupply.com", true }, - { "crowdwis.com", true }, { "crowncastles.co.uk", true }, { "crownchessclub.com", true }, { "crownmarqueehire.co.uk", true }, @@ -8106,45 +8831,52 @@ static const nsSTSPreload kSTSPreloadList[] = { { "croydonapartments.com.au", true }, { "croydonbouncycastles.co.uk", true }, { "crrev.com", true }, + { "crsmsodry.cz", true }, { "crstat.ru", true }, + { "crt.sh", true }, { "crt2014-2024review.gov", true }, { "crumbcontrol.com", true }, { "crunchrapps.com", true }, { "crunchy.rocks", true }, { "crustytoothpaste.net", true }, { "crute.me", true }, + { "cruzadobalcazarabogados.com", true }, { "crvv.me", true }, { "cry.nu", false }, { "cryoit.com", true }, { "cryothanasia.com", true }, { "cryp.no", true }, { "crypt.is-by.us", true }, + { "cryptagio.com", true }, { "cryptearth.de", true }, { "crypted.chat", true }, { "crypteianetworks.com", true }, { "crypticshell.co.uk", true }, { "crypto-armory.com", true }, - { "crypto-navi.org", true }, { "crypto.cat", false }, - { "crypto.graphics", true }, { "crypto.is", false }, + { "crypto.tube", true }, { "cryptobin.co", true }, { "cryptocon.org", true }, + { "cryptoegg.ca", true }, { "cryptofan.org", true }, + { "cryptofrog.co", true }, { "cryptography.ch", true }, { "cryptography.io", true }, { "cryptoguidemap.com", true }, + { "cryptojacks.io", true }, { "cryptojourney.com", true }, { "cryptolinc.com", true }, { "cryptology.ch", true }, + { "cryptolosophy.io", true }, { "cryptolosophy.org", true }, + { "cryptomaniaks.com", true }, { "cryptonom.org", true }, { "cryptonym.com", true }, { "cryptoparty.at", true }, { "cryptoparty.tv", true }, { "cryptopartyutah.org", true }, { "cryptophobia.nl", true }, - { "cryptopro.shop", true }, { "cryptorival.com", true }, { "cryptoseb.pw", true }, { "cryptoshot.pw", true }, @@ -8155,6 +8887,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crystalapp.ca", true }, { "crystalchandelierservices.com", true }, { "crystalgrid.net", true }, + { "crystallizedcouture.com", true }, { "crystone.me", true }, { "cryz.ru", true }, { "cs2016.ch", true }, @@ -8167,19 +8900,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "csd-sevnica.si", true }, { "csfcloud.com", true }, { "csfd.cz", true }, - { "csfloors.co.uk", true }, { "csfm.com", true }, - { "csgo.su", true }, - { "csgohandouts.com", true }, + { "csgo.su", false }, { "csgoswap.com", true }, - { "csgotwister.com", true }, { "csharpmarc.net", true }, { "cshopify.com", 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 }, @@ -8189,26 +8922,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cssaunion.com", true }, { "cstb.ch", true }, { "cstp-marketing.com", true }, + { "cstrong.nl", true }, { "csu.st", 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 }, + { "ctl.email", true }, { "ctliu.com", true }, { "ctnguyen.de", true }, { "ctnguyen.net", true }, { "ctns.de", true }, { "ctoforhire.com.au", true }, { "ctomp.io", true }, + { "ctoresms.com", true }, { "ctpe.net", true }, { "ctrld.me", true }, - { "ctyi.me", true }, { "cu247secure.ie", true }, { "cub-bouncingcastles.co.uk", true }, { "cube-cloud.com", true }, @@ -8216,13 +8951,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cubecart-demo.co.uk", true }, { "cubecart-hosting.co.uk", true }, { "cubecraft.net", true }, - { "cubecraftstore.com", true }, - { "cubecraftstore.net", 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 }, @@ -8242,59 +8977,63 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cultofd50.org", true }, { "cultofperf.org.uk", true }, { "culturedcode.com", true }, - { "cultureelbeleggen.nl", true }, { "culturerain.com", true }, - { "cultureroll.com", true }, + { "culturesouthwest.org.uk", true }, + { "cumberlandrivertales.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 }, { "currentlystreaming.com", true }, + { "currentlyusa.com", true }, { "currentobserver.com", true }, { "currynissanmaparts.com", true }, + { "cursos-trabajadores.net", true }, { "cursos.com", true }, + { "cursosforex.com", true }, { "cursosgratuitos.com.br", true }, { "cursosingles.com", true }, + { "cursossena.co", true }, { "cursuri-de-actorie.ro", true }, { "curtacircuitos.com.br", false }, { "curtis-smith.me.uk", true }, { "curtis-smith.uk", true }, + { "curtislaw-pllc.com", true }, { "curtislinville.net", true }, { "curtissmith.me.uk", true }, { "curtissmith.uk", true }, + { "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 }, { "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 }, - { "customromlist.com", true }, { "customshort.link", true }, { "customwritingservice.com", true }, { "customwritten.com", true }, @@ -8313,8 +9052,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 }, @@ -8335,55 +9075,64 @@ 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 }, { "cybercocoon.com", true }, { "cybercrew.cc", true }, { "cybercrime-forschung.de", true }, + { "cybercrime.gov", true }, + { "cybercymru.co.uk", true }, + { "cyberdos.de", false }, { "cyberduck.io", true }, - { "cyberdyne-industries.net", true }, { "cyberexplained.info", true }, - { "cyberfrancais.ro", true }, { "cybergrx.com", true }, { "cyberguerrilla.info", true }, { "cyberguerrilla.org", true }, { "cyberianhusky.com", true }, { "cyberkov.com", true }, + { "cyberlab.kiev.ua", false }, { "cyberlightapp.com", true }, { "cybermeldpunt.nl", true }, + { "cyberogism.com", true }, { "cyberoptic.de", true }, - { "cyberphaze.com", true }, { "cyberpioneer.net", false }, { "cyberpubonline.com", true }, { "cyberregister.nl", true }, { "cyberregister.org", true }, - { "cybersantri.com", true }, + { "cybersafesolutions.com", true }, + { "cyberscan.io", true }, { "cybersecurity.nz", true }, + { "cybersecurity.run", true }, { "cybersecuritychallenge.be", true }, { "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 }, { "cyberspect.io", true }, { "cyberstatus.de", true }, - { "cybertorsk.org", true }, { "cybertu.be", true }, { "cyberwars.dk", true }, { "cyberwire.nl", true }, - { "cyberxpert.nl", true }, { "cybozu.cn", true }, { "cybozu.com", true }, { "cybozulive-dev.com", true }, { "cybozulive.com", true }, + { "cybrary.it", true }, { "cyclebeads.com", true }, { "cycleluxembourg.lu", true }, { "cyclisjumper.gallery", true }, @@ -8398,6 +9147,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cykelbanor.se", true }, { "cylindricity.com", true }, { "cyon.ch", true }, + { "cypad.cn", true }, { "cype.dedyn.io", true }, { "cyph.audio", true }, { "cyph.com", true }, @@ -8408,8 +9158,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyph.video", true }, { "cyph.ws", true }, { "cypherpunk.at", true }, - { "cypherpunk.com", true }, - { "cypressinheritancesaga.com", true }, + { "cypherpunk.observer", true }, { "cypresslegacy.com", true }, { "cyprus-company-service.com", true }, { "cyrating.com", true }, @@ -8418,41 +9167,51 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cytech.com.tr", true }, { "cytegic-update-packages.com", true }, { "cyumus.com", true }, - { "cyyzaid.cn", true }, + { "cyyzaid.cn", false }, + { "czakey.net", true }, { "czbix.com", true }, + { "czbtm.com", true }, { "czc.cz", true }, { "czechamlp.com", true }, + { "czechcrystals.co.uk", true }, { "czechvirus.cz", true }, { "czerno.com", true }, { "czfa.pl", true }, + { "czk.mk", true }, { "d-20.fr", true }, { "d-designerin.de", true }, { "d-eisenbahn.com", true }, { "d-loop.de", 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 }, + { "d2ph.com", true }, { "d2s.uk", true }, - { "d3njjcbhbojbot.cloudfront.net", true }, + { "d3lab.net", true }, { "d3xt3r01.tk", true }, { "d3xx3r.de", true }, { "d42.no", true }, + { "d4wson.com", true }, { "d4x.de", true }, { "d66.nl", true }, { "d8.io", true }, + { "d88688.com", true }, + { "d88871.com", true }, + { "d88988.com", true }, { "da-ist-kunst.de", true }, { "da.hn", true }, { "da42foripad.com", true }, { "daallexx.eu", true }, + { "dabasstacija.lv", true }, + { "dabneydriveanimalhospital.com", true }, { "dabuttonfactory.com", true }, { "dachb0den.net", true }, { "dachdecker-ranzenberger.de", true }, @@ -8468,7 +9227,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dadrian.io", true }, { "daduke.org", true }, { "daemen.org", true }, - { "daemonslayer.net", true }, + { "daemon.xin", true }, { "daemwool.ch", true }, { "daevel.fr", true }, { "dafnik.me", true }, @@ -8480,20 +9239,24 @@ 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 }, { "dailyxenang.com", true }, { "daintymeal.com", true }, { "dairyshrine.org", true }, + { "daisakuikeda.org", true }, { "daisidaniels.co.uk", true }, { "daisy-peanut.com", true }, { "daisypeanut.com", true }, - { "daiwai.de", false }, { "daiweihu.com", true }, + { "daiyuu.jp", true }, { "dak.org", true }, { "daknob.net", true }, { "daktarisys.com", true }, @@ -8511,36 +9274,40 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dalmatiersheusden.be", true }, { "damaged.org", true }, { "damasexpress.com", true }, + { "damedrogy.cz", true }, { "damghaem.ir", true }, { "damicris.ro", true }, { "damienoreilly.org", true }, - { "damienpontifex.com", true }, + { "damienpontifex.com", false }, { "daminiphysio.ca", true }, { "damip.net", true }, { "dammekens.be", true }, { "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 }, + { "dance-colleges.com", true }, { "danchen.org", true }, { "dancingcubs.co.uk", true }, { "dancingshiva.at", true }, { "dandenongroadapartments.com.au", true }, { "daneandthepain.com", true }, + { "dangr.zone", true }, { "danhalliday.com", true }, + { "danholloway.online", true }, { "daniel-baumann.ch", true }, { "daniel-cholewa.de", true }, - { "daniel-du.com", true }, { "daniel-kulbe.de", true }, { "daniel-milnes.uk", true }, { "daniel-ruf.de", true }, + { "daniel-wildhaber.ch", true }, { "danielalvarez.net", true }, { "danielas.boutique", true }, { "danielehniss.de", true }, @@ -8551,24 +9318,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danielhochleitner.de", true }, { "danieljamesscott.org", true }, { "danieljireh.com", true }, + { "danieljstevens.com", true }, { "danielkoster.nl", true }, { "daniellockyer.com", true }, - { "danielmarquard.com", true }, + { "danielmarquard.com", false }, { "danielmartin.de", true }, { "danielmoch.com", true }, - { "danielmostertman.com", false }, - { "danielmostertman.nl", false }, + { "danielmorell.com", true }, + { "danielmostertman.com", true }, + { "danielmostertman.nl", true }, + { "danielnaaman.com", true }, + { "danielnaaman.net", true }, + { "danielnaaman.org", true }, { "danielpeukert.cz", true }, + { "danielran.com", true }, { "danielrozenberg.com", true }, { "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 }, @@ -8586,13 +9360,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danny.fm", true }, { "dannycairns.com", true }, { "dannyrohde.de", true }, + { "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 }, @@ -8607,10 +9384,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danwin1210.me", true }, { "danwolff.se", true }, { "danyabanya.com", true }, + { "danzac.com", true }, { "dao.spb.su", true }, { "daoro.net", true }, - { "dapim.co.il", true }, + { "daphne.informatik.uni-freiburg.de", true }, { "daplie.com", true }, + { "dapps.earth", true }, + { "dappworld.com", true }, { "daracokorilo.com", true }, { "daravk.ch", true }, { "darbi.org", true }, @@ -8621,21 +9401,27 @@ 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 }, { "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 }, @@ -8644,13 +9430,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "darkspacelab.com", true }, { "darktime.ru", true }, { "darkwater.info", true }, - { "darkwebkittens.xyz", true }, + { "darkwebnews.com", true }, { "darkx.me", true }, { "darom.jp", true }, { "darookee.net", false }, + { "daropia.org", true }, { "darshnam.com", true }, - { "dart-tanke.com", true }, - { "dart-tanke.de", true }, { "dartcode.org", true }, { "dartetdemetiers.fr", true }, { "darth-sonic.de", true }, @@ -8666,34 +9451,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dashboard.run", true }, { "dashlane.com", 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 }, { "datadit.hu", true }, { "datadyne.technology", true }, - { "datafd.com", true }, - { "datafd.net", true }, { "dataformers.at", true }, + { "datagrail.io", true }, + { "dataguidance.com", true }, { "dataharvest.at", true }, { "datahoarder.xyz", true }, - { "datahoarderschool.club", true }, { "datakick.org", true }, { "datalife.gr", true }, { "datalysis.ch", true }, { "dataprotectionadvisors.com", true }, - { "datapun.ch", true }, { "datapure.net", true }, { "dataregister.info", true }, { "datascience.cafe", true }, @@ -8724,7 +9508,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datingticino.ch", true }, { "datmancrm.com", true }, { "datovyaudit.cz", true }, - { "datsound.ru", true }, { "datumou-osusume.com", true }, { "datumou-recipe.com", true }, { "datumstudio.jp", true }, @@ -8738,14 +9521,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davepage.me.uk", true }, { "davepearce.com", 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-jeffery.co.uk", true }, - { "david-mallett.com", true }, { "david-pearce.com", true }, { "david-reess.de", true }, { "david-schiffmann.de", true }, @@ -8756,16 +9538,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidbuckell.com", true }, { "davidcrx.net", true }, { "daviddever.net", 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 }, @@ -8774,13 +9560,17 @@ 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 }, @@ -8790,11 +9580,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daycontactlens.com", true }, { "daylight-dream.ee", true }, { "daylightpirates.org", true }, - { "dayman.net", true }, + { "dayman.net", false }, { "daymprove.life", true }, { "dayofdays.be", true }, { "daysoftheyear.com", true }, - { "db-sanity.com", true }, { "db-works.nl", true }, { "dbapress.org", true }, { "dbaron.org", true }, @@ -8803,6 +9592,7 @@ 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 }, @@ -8820,6 +9610,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -8842,9 +9633,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ddhosted.com", true }, { "ddns-test.de", true }, { "ddnsweb.com", 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 }, @@ -8853,9 +9646,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "de.search.yahoo.com", false }, { "deadbeef.ninja", true }, { "deadc0de.re", true }, + { "deadinsi.de", true }, { "deaf.dating", true }, { "deaf.eu.org", true }, - { "deai-life.biz", true }, { "dealapp.nl", true }, { "dealbanana.at", true }, { "dealbanana.be", true }, @@ -8868,6 +9661,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 }, @@ -8882,11 +9676,20 @@ 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 }, + { "debarrasboulognebillancourt.com", true }, + { "debarrasclichy.com", true }, + { "debarrascolombes.com", true }, + { "debarrasnanterre.com", true }, { "debbyefurd.com", true }, { "debie-usedcars.be", true }, { "debigare.com", true }, + { "debkleinteam.com", true }, { "debron-ot.nl", true }, { "debrusoft.ch", true }, { "debt.com", true }, @@ -8896,16 +9699,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "decaffeinated.io", true }, { "decalquai.ch", true }, { "dechat.nl", true }, + { "decher.de", true }, { "decidetreatment.org", true }, { "decis.fr", true }, { "decisivetactics.com", true }, { "deckbuilderamerica.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 }, { "decoratrix.com", true }, { "decorauvent.ca", true }, { "decorestilo.com.br", true }, @@ -8917,6 +9724,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dedelta.net", true }, { "dedg3.com", true }, { "dedge.org", true }, + { "dedicatedtowomenobgyn.com", true }, { "dedimax.de", true }, { "dedmorozrzn.ru", false }, { "deduijventil.nl", true }, @@ -8924,15 +9732,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dee.su", true }, { "deechtebakkers.nl", true }, { "deegeeinflatables.co.uk", true }, + { "deejayevents.ro", true }, { "deelmijnreis.nl", true }, + { "deep-chess.com", true }, { "deep.club", true }, - { "deep.social", true }, { "deepaero.com", true }, { "deeparamaraj.com", true }, { "deepbluecrafting.co.uk", true }, + { "deepblueemail.com", true }, { "deepcode.io", true }, { "deeperxh.com", true }, { "deephill.com", true }, + { "deepinsight.io", true }, { "deeployr.io", true }, { "deepserve.info", true }, { "deepsouthsounds.com", true }, @@ -8940,12 +9751,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, - { "defeestboek.nl", true }, { "defendas.com", true }, { "defender-pro.com", true }, { "defendinnovation.org", true }, @@ -8960,6 +9768,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "defrax.com", true }, { "defrax.de", true }, { "deftek.com", true }, + { "deftig-und-fein.de", true }, { "deftnerd.com", true }, { "defuse.ca", true }, { "defxing.net", true }, @@ -8967,6 +9776,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "degeberg.com", true }, { "degeberg.dk", true }, { "degen-elektrotechnik.de", true }, + { "degestamptepot.nl", true }, { "degosoft.nl", true }, { "degoulet.net", true }, { "degracetechnologie.com", true }, @@ -8987,6 +9797,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dekeurslagers.nl", true }, { "dekka.cz", true }, { "dekkercreativedesign.nl", true }, + { "dekko.io", true }, { "dekoh-shouyu.com", true }, { "dekonix.ru", true }, { "dekulk.nl", true }, @@ -9007,6 +9818,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "delid.cz", true }, { "delitto.top", true }, { "delivery.co.at", true }, + { "deliveryiquique.cl", true }, { "dellipaoli.com", true }, { "delogo.nl", true }, { "delorenzi.dk", true }, @@ -9020,6 +9832,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deltafinanceiro.com.br", true }, { "deltaonlineguards.com", true }, { "deltaservers.com.br", true }, + { "deltasigmachi.org", true }, { "deltasmart.ch", true }, { "deltava.org", true }, { "demarle.ch", true }, @@ -9028,7 +9841,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "demfloro.ru", true }, { "demijn.nl", true }, { "demilletech.net", true }, - { "demmer.one", true }, { "demo.swedbank.se", true }, { "demo9.ovh", true }, { "democracychronicles.com", true }, @@ -9049,6 +9861,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "denaehula.com", true }, { "denardbrewing.com", true }, { "denbkh.ru", true }, + { "dengchangdong.com", true }, { "dengode.eu", true }, { "denimio.com", true }, { "denimtoday.com", true }, @@ -9065,16 +9878,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dennogumi.org", true }, { "denous.nl", true }, { "dent.uy", true }, + { "dental-colleges.com", true }, { "dentallaborgeraeteservice.de", true }, - { "dentfix.ro", true }, + { "dentfix.ro", false }, + { "dentistesdarveauetrioux.com", true }, { "dentistglasgow.com", true }, { "dentrassi.de", true }, { "dentystabirmingham.co.uk", true }, + { "denwauranailab.com", true }, { "deontology.com", true }, { "depaddestoeltjes.be", true }, + { "depannage-traceur.fr", true }, { "deparis.me", true }, { "depechemode-live.com", true }, - { "depedshs.com", true }, { "depedtayo.com", true }, { "depicus.com", true }, { "depone.net", true }, @@ -9082,14 +9898,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -9098,6 +9915,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "derbybouncycastles.com", true }, { "derdewereldrommelmarkt.nl", true }, { "derechosdigitales.org", true }, + { "dereddingsklos.nl", true }, { "dereferenced.net", true }, { "derehamcastles.co.uk", true }, { "derekheld.com", true }, @@ -9108,6 +9926,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "derkuki.de", true }, { "derma-expert.eu", true }, { "dermapuur.nl", true }, + { "dermato.floripa.br", false }, { "dermatologie-morges.ch", true }, { "dermediq.nl", true }, { "dermot.org.uk", true }, @@ -9127,9 +9946,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -9146,6 +9967,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deskvip.com", true }, { "desmaakvanplanten.be", true }, { "desmo.gg", true }, + { "desormiers.com", true }, { "despachomartinyasociados.com", true }, { "despertadoronline.com.es", true }, { "desplats.com.ar", true }, @@ -9155,15 +9977,22 @@ 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 }, + { "desuperheroes.co", true }, { "det-te.ch", true }, { "detalika.ru", true }, { "detalyedesigngroup.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 }, { "detroitstylepizza.com", true }, @@ -9172,9 +10001,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "detskysad.com", true }, { "detuinmuze.nl", true }, { "detype.nl", true }, + { "deuchnord.fr", true }, { "deude.de", true }, { "deukie.nl", true }, { "deurenfabriek.nl", true }, + { "deusu.de", true }, { "deutsch-vietnamesisch-dolmetscher.com", true }, { "deutsche-seniorenbetreuung.de", true }, { "deutsche-tageszeitungen.de", true }, @@ -9183,33 +10014,30 @@ 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-pulse-mtn.pantheonsite.io", true }, { "dev-tek.de", true }, { "devagency.fr", true }, { "devalps.eu", true }, { "devb.nl", true }, - { "devcast.io", true }, + { "devcast.io", false }, { "devcf.com", true }, { "devct.cz", false }, { "devcu.com", true }, { "devcu.net", true }, { "devel.cz", true }, - { "develerik.com", true }, - { "develop.cool", true }, + { "develerik.com", false }, { "developer.android.com", true }, { "developer.mydigipass.com", false }, { "developerdan.com", true }, { "developerfair.com", true }, + { "developermail.io", false }, { "developers.facebook.com", false }, { "developfx.com", true }, { "developmentaid.org", true }, { "developmentsites.melbourne", true }, + { "develops.co.il", true }, { "develux.com", true }, { "develux.net", true }, { "devenney.io", true }, @@ -9217,32 +10045,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deviant.email", true }, { "devillers-occasions.be", true }, { "devilshakerz.com", true }, - { "deviltracks.net", true }, + { "deviltraxxx.de", true }, { "devinfo.net", false }, { "devirc.net", true }, { "devisnow.fr", true }, { "devjack.de", true }, { "devkid.net", true }, + { "devkit.cc", false }, { "devklog.net", true }, { "devlamvzw.org", false }, { "devlatron.net", true }, { "devlogr.com", true }, + { "devnull.zone", true }, { "devolution.ws", true }, { "devonsawatzky.ca", true }, { "devopers.com.br", true }, { "devops-survey.com", true }, { "devpgsv.com", true }, + { "devpsy.info", true }, + { "devragu.com", true }, { "devrandom.net", true }, + { "devsjournal.com", true }, + { "devsrvr.ru", true }, { "devstaff.gr", true }, - { "devyn.ca", true }, + { "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 }, { "deyute.com", true }, + { "dez-online.de", true }, { "dezeregio.nl", true }, + { "dezet-ev.de", true }, { "dezintranet.com", true }, { "dezmembrariromania.ro", true }, { "dezshop24.de", true }, @@ -9255,9 +10093,8 @@ 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 }, @@ -9275,16 +10112,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dhinflatables.co.uk", true }, { "dhlinux.org", true }, { "dhome.at", true }, - { "dhuy.net", true }, + { "dhuy.net", false }, { "di2pra.com", true }, { "di2pra.fr", true }, + { "dia-de.com", true }, + { "diablovalleytech.com", true }, { "diadorafitness.es", true }, { "diadorafitness.it", true }, { "diagnocentro.cl", true }, { "diagnostix.org", true }, - { "dialoegue.com", true }, + { "diagrammingoutloud.co.uk", true }, + { "dialapicnic.co.za", true }, + { "dialectic-og.com", true }, { "diamante.ro", true }, { "diamantovaburza.cz", true }, + { "diamond-hairstyle.dk", true }, { "diamondsleepsolutions.com", true }, { "diamondyze.nl", true }, { "diamorphine.com", true }, @@ -9296,35 +10138,43 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diario-egipto.com", true }, { "diasdasemana.com", true }, { "diasp.org", true }, + { "diatrofi-ygeia.gr", true }, { "dibiphp.com", true }, { "diccionarioabierto.com", true }, { "diccionariodedudas.com", true }, { "dice.tokyo", true }, { "dicelab.co.uk", true }, + { "dicesites.com", true }, { "dicionario.org", true }, { "dicionariodegirias.com.br", true }, { "dicionariodelatim.com.br", true }, { "dicionariodenomesproprios.com.br", true }, { "dicionariodesimbolos.com.br", true }, { "dicionarioetimologico.com.br", true }, + { "dicionariofinanceiro.com", true }, + { "dicionariopopular.com", true }, { "dickieslife.com", true }, + { "dickpics.ru", true }, { "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 }, - { "die-borts.ch", true }, { "die-partei-reutlingen.de", true }, { "die-pizzabaeckerei.de", true }, { "die-seide.de", true }, { "die-sinlosen.de", true }, { "die-speisekammer-reutlingen.de", true }, - { "diedrich.co", false }, + { "diedrich.co", true }, { "diedrich.me", true }, { "dieecpd.org", true }, { "diegelernten.de", true }, @@ -9341,7 +10191,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 }, @@ -9370,29 +10219,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, - { "diginota.com", true }, { "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", 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 }, @@ -9403,10 +10252,11 @@ 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 }, @@ -9418,8 +10268,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitalrights.fund", true }, { "digitalskillswap.com", true }, { "digitalsurge.io", true }, + { "digitaltcertifikat.dk", true }, { "digitaltechnologies.ltd.uk", true }, { "digitkon.com", true }, + { "digitreads.com", true }, { "digminecraft.com", true }, { "digwp.com", true }, { "dihesan.com", true }, @@ -9429,7 +10281,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dildoexperten.se", true }, { "dilichen.fr", true }, { "diligo.ch", true }, - { "dillewijnzwapak.nl", true }, { "dillonkorman.com", true }, { "diluv.com", true }, { "dimanss47.net", true }, @@ -9440,6 +10291,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dimeponline.com.br", true }, { "dimeshop.nl", true }, { "dimez.ru", true }, + { "dimiskovska.de", true }, { "dimmersagourahills.com", true }, { "dimmerscalabasas.com", true }, { "dimmersdosvientos.com", true }, @@ -9454,19 +10306,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "din-hkd.jp", true }, { "dineachook.com.au", true }, { "dinepont.fr", true }, - { "dingcc.com", true }, + { "dinerroboticurology.com", true }, + { "dingcc.me", true }, { "dinge.xyz", true }, - { "dingelbob-schuhcreme.gq", 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 }, { "dipling.de", true }, { "diplona.de", true }, @@ -9475,9 +10329,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dir2epub.org", true }, { "dirba.io", true }, { "direct-sel.com", true }, + { "direct2uk.com", false }, + { "direct365.es", true }, { "directebanking.com", true }, { "directelectricalltd.co.uk", true }, - { "directinsure.in", true }, { "directlinkfunding.co.uk", true }, { "directme.ga", true }, { "directnews.be", true }, @@ -9487,9 +10342,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "direktvermarktung-schmitzberger.at", true }, { "dirips.com", true }, { "dirk-scheele.de", true }, + { "dirkdoering.de", true }, + { "dirkjonker.nl", true }, { "dirko.net", true }, - { "dirkwolf.de", true }, { "dirtcraft.ca", true }, + { "dirtygeek.ovh", true }, + { "dirtyincest.com", true }, { "disability.gov", true }, { "disabled.dating", true }, { "disanteimpianti.com", true }, @@ -9501,7 +10359,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dischempharmacie.com", true }, { "disciples.io", true }, { "disciplina.io", true }, - { "discipul.nl", true }, { "discofitta.com", true }, { "disconformity.net", true }, { "discord.gg", true }, @@ -9511,13 +10368,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "discordia.me", true }, { "discotek.club", true }, { "discount24.de", true }, + { "discountlumberspokane.com", true }, { "discountplush.com", true }, { "discover-shaken.com", true }, { "discoverthreejs.com", true }, + { "discoverucluelet.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 }, @@ -9526,6 +10386,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 }, @@ -9535,6 +10396,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "disinfestazioni.catania.it", true }, { "disinfestazioni.firenze.it", true }, { "disinfestazioni.genova.it", true }, + { "disinfestazioni.gorizia.it", true }, { "disinfestazioni.info", true }, { "disinfestazioni.milano.it", true }, { "disinfestazioni.net", true }, @@ -9548,6 +10410,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "disinfestazionivespe.milano.it", true }, { "disinfestazionizanzare.milano.it", true }, { "disinisharing.com", true }, + { "disk.do", true }, { "diskbit.com", true }, { "diskbit.nl", true }, { "dismail.de", true }, @@ -9565,6 +10428,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "distillery.com", true }, { "distinguishedprisoner.com", true }, { "distribuidoracristal.com.br", true }, + { "distribuidoraplus.com", true }, { "distribuidorveterinario.es", true }, { "distro.re", true }, { "ditelbat.com", true }, @@ -9573,6 +10437,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diva.nl", true }, { "divari.nl", true }, { "divcoder.com", true }, + { "dive-japan.com", true }, { "divedowntown.com", true }, { "divegearexpress.com", true }, { "diveidc.com", true }, @@ -9584,11 +10449,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diversityflags.nz", true }, { "divertiagua.com.br", true }, { "divi-experte.de", true }, + { "divinasaiamodas.com.br", true }, { "divinegames.studio", true }, { "diving.photo", true }, { "divorciosmurcia.com", true }, - { "divvymonkey.com", true }, + { "diwei.vip", true }, { "dixi.fi", true }, + { "dixibox.com", true }, { "diybook.at", true }, { "diycc.org", true }, { "diygod.me", true }, @@ -9605,27 +10472,30 @@ 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 }, { "djipanov.com", true }, + { "djleon.net", true }, { "djlive.pl", true }, { "djlnetworks.co.uk", true }, { "djsbouncycastlehire.com", true }, - { "djsk.nl", true }, { "djt-vom-chausseehaus.de", true }, { "djursland-psykologen.dk", true }, + { "djvintagevinyl.nl", true }, { "djwaynepryke.com", true }, + { "djz4music.com", false }, { "dk-kromeriz.cz", true }, { "dk.com", true }, { "dk.search.yahoo.com", false }, { "dkcomputers.com.au", true }, { "dkds.us", true }, - { "dkn.go.id", false }, { "dkstage.com", true }, { "dl.google.com", true }, { "dlabouncycastlehire.co.uk", true }, { "dlaspania.pl", true }, + { "dlcwilson.com", true }, { "dlde.ru", true }, { "dldl.fr", true }, { "dlfsymposium.nl", true }, @@ -9634,7 +10504,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dlld.com", 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 }, @@ -9644,13 +10516,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dmailshop.ro", true }, { "dmarc.dk", true }, { "dmatrix.xyz", true }, - { "dmcastles.com", true }, { "dmd.lv", true }, { "dmdd.org.uk", true }, { "dmeevalumate.com", true }, + { "dmess.ru", true }, { "dmi.es", true }, { "dmitry.sh", true }, - { "dmmkenya.co.ke", true }, { "dmmultionderhoud.nl", true }, { "dmschilderwerken.nl", true }, { "dmx.xyz", true }, @@ -9660,30 +10531,34 @@ 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 }, { "dnscrawler.com", true }, { "dnscrypt.info", true }, - { "dnscrypt.nl", true }, { "dnscurve.io", true }, { "dnshallinta.fi", true }, { "dnsinfo.ml", true }, + { "dnsipv6.srv.br", true }, { "dnsman.se", true }, + { "dnspod.ml", true }, { "dnstwister.report", true }, + { "dnzz123.com", true }, { "do-prod.com", true }, { "do.gd", true }, { "do.search.yahoo.com", false }, { "do13.net", true }, + { "do67.de", true }, + { "do67.net", true }, + { "dobraprace.cz", true }, { "dobrev.family", true }, { "dobrisan.ro", true }, { "dobsnet.net", true }, @@ -9699,7 +10574,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dockerbook.com", false }, { "dockerm.com", true }, { "dockerup.net", true }, - { "doclassworks.com", true }, { "docline.gov", true }, { "docloh.de", true }, { "docloudu.info", true }, @@ -9712,6 +10586,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doctafit.com", true }, { "doctor-locks.co.uk", true }, { "doctor.dating", true }, + { "doctorbini.com", true }, { "doctorfox.co.uk", true }, { "doctorsonmaps.com", true }, { "doctorwho.cz", true }, @@ -9719,38 +10594,44 @@ static const nsSTSPreload kSTSPreloadList[] = { { "docucopies.com", true }, { "documaniatv.com", true }, { "docupet.com", true }, + { "docusearch.com", true }, { "dodopri.com", true }, { "doenjoylife.com", true }, { "does.one", true }, { "doesburg-comp.nl", true }, { "dofuspvp.com", true }, + { "dofux.org", true }, { "dog-blum.com", true }, { "dogadayiz.net", true }, { "dogan.ch", false }, { "dogcontrol.ca", true }, + { "doge.me", true }, + { "doge.town", true }, { "dogear.ch", true }, - { "dogfi.sh", true }, { "dogft.com", true }, + { "doggedbyirs.com", true }, { "doggroomingcourse.com", true }, { "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 }, + { "doitauto.de", true }, + { "dojozendebourges.fr", true }, { "dokan-e.com", false }, { "dokelio-idf.fr", true }, + { "doki.space", true }, { "dokipy.no", true }, - { "dokspot.cf", true }, - { "dokspot.ga", true }, { "doku-gilde.de", true }, { "dokuboard.com", true }, { "dokuraum.de", true }, { "dolci-delizie.de", true }, + { "doleta.gov", true }, { "doli.se", true }, { "dolice.net", true }, + { "dolinathome.com", true }, { "dollemore.com", true }, { "dolorism.com", true }, { "dolphin-it.de", true }, @@ -9792,6 +10673,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dominomatrix.com", true }, { "domix.fun", true }, { "dommascate.com.br", true }, + { "domob.eu", true }, { "domodeco.fr", true }, { "domodedovo.travel", true }, { "domprojects.com", true }, @@ -9800,6 +10682,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "domster.com", true }, { "domus-global.com", true }, { "domus-global.cz", true }, + { "domwkwiatach.pl", true }, { "domyassignments.com", true }, { "domycasestudy.com", true }, { "domycoursework.com", true }, @@ -9813,29 +10696,43 @@ static const nsSTSPreload kSTSPreloadList[] = { { "domyresearchpaper.com", true }, { "domyreview.net", true }, { "domyspeech.com", true }, - { "domytermpaper.com", true }, { "domythesis.net", true }, { "domyzitrka.cz", true }, { "donabeneko.jp", true }, + { "donaldm.co.uk", true }, { "donateaday.net", true }, { "donfelino.tk", false }, { "dongxuwang.com", true }, { "donkennedyandsons.com", true }, { "donkeytrekkingkefalonia.com", true }, + { "donlydental.ca", true }, { "donmaldeamores.com", true }, + { "donna-bellini-business-fotografie-muenchen.de", true }, + { "donna-bellini-fotografie-berlin.de", true }, + { "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 }, { "donnacha.blog", true }, { "donnachie.net", true }, { "donner-reuschel.de", true }, { "donnons.org", false }, - { "donnoval.ru", true }, + { "donnoval.ru", false }, + { "donotcall.gov", true }, { "donotlink.it", true }, { "donovand.info", true }, - { "donpaginasweb.com", true }, + { "donovankraag.nl", true }, { "donpomodoro.com.co", true }, { "dont.re", true }, { "dont.watch", true }, { "dontbubble.me", true }, - { "dontcageus.org", true }, + { "dontpayfull.com", true }, { "donttrust.me", true }, { "donutcompany.co.jp", true }, { "donzool.es", true }, @@ -9848,8 +10745,6 @@ 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 }, { "dopesoft.de", true }, @@ -9860,23 +10755,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -9886,14 +10793,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dosvientosoutdoorlighting.com", true }, { "doswap.com", true }, { "dosyauzantisi.com", true }, - { "dot.ro", true }, + { "dot42.no", true }, + { "dota2huds.com", true }, { "dotacni-parazit.cz", true }, { "dotbigbang.com", true }, - { "dotbox.org", true }, { "dotcircle.co", true }, + { "dotconnor.com", true }, { "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 }, @@ -9905,6 +10816,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 }, @@ -9913,11 +10825,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doubleup.com.au", true }, { "doucheba.gs", false }, { "dougley.com", true }, + { "dougsautobody.com", true }, { "doujinshi.info", true }, { "dounats.com", true }, { "douzer.de", true }, + { "douzer.industries", true }, { "dovenzorgmalawi.nl", true }, { "dovro.de", true }, + { "dowell.media", true }, { "dowellconsulting.com", true }, { "dowhatmakegood.de", true }, { "dowling.nz", true }, @@ -9930,7 +10845,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "downtimerobot.com", true }, { "downtimerobot.nl", true }, { "downtownvernon.com", true }, - { "doxcelerate.com", false }, { "doyoucheck.com", false }, { "doyouedc.com", true }, { "doyoutax.com", true }, @@ -9941,17 +10855,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dpd.com.pl", true }, { "dperson.net", true }, { "dpfsolutionsfl.com", true }, + { "dpg.no", true }, { "dpi-design.de", true }, { "dpisecuretests.com", true }, { "dprb.biz", true }, { "dprd-wonogirikab.go.id", false }, - { "dpsg-roden.de", false }, + { "dpsg-roden.de", true }, { "dpwsweeps.co.uk", true }, { "dr-becarelli-philippe.chirurgiens-dentistes.fr", true }, { "dr-bodendorf.de", true }, + { "dr-it.co.uk", true }, { "dr-jakob-zahnaerzte.de", true }, { "dr-klotz.info", true }, - { "dr-knirr.de", true }, { "dr-krebs.net", true }, { "dr-marlen-nystroem.de", true }, { "dr-moldovan.de", true }, @@ -9963,7 +10878,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dr-www.de", true }, { "drabadir.com", true }, { "drabben.be", true }, - { "drabbin.com", true }, + { "drabim.org", true }, { "drach.xyz", true }, { "drachenleder.de", true }, { "dracisvet.cz", true }, @@ -9973,6 +10888,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 }, @@ -9980,7 +10896,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "draghive.com", true }, { "draghive.org", true }, { "draghive.tv", true }, - { "dragon-aspect.com", true }, { "dragon-chem.eu", true }, { "dragon-hearts.co.uk", true }, { "dragoncave.me", true }, @@ -9996,7 +10911,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dragonsunited.info", true }, { "dragonsunited.net", true }, { "dragonsunited.org", true }, + { "dragonwolfpackaquaria.com", true }, { "dragonwork.me", true }, + { "drahcro.uk", true }, + { "drakecommercial.com", true }, { "drakeluce.com", true }, { "drakenson.de", true }, { "dramaticpeople.com", true }, @@ -10007,6 +10925,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "draw.uy", true }, { "drawesome.uy", true }, { "drawingcode.net", true }, + { "drawxp.com", true }, { "drbethanybarnes.com", true }, { "drbriones.com", true }, { "drchrislivingston.com", true }, @@ -10017,30 +10936,45 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drdipilla.com", true }, { "dreamcreator108.com", true }, { "dreamday-with-dreamcar.de", true }, + { "dreamdivers.com", true }, + { "dreamersgiftshopec.com", true }, { "dreamhack.com", true }, { "dreamhostremixer.com", true }, { "dreamithost.com.au", true }, + { "dreamkitchenbath.com", true }, { "dreamlandmagic.com", true }, { "dreamlinehost.com", false }, + { "dreamlordpress.it", true }, { "dreamlux.cz", true }, { "dreamlux.sk", true }, + { "dreammaker-nw.com", true }, + { "dreammakerremodelil.com", true }, + { "dreammakerutah.com", true }, + { "dreamof.net", true }, { "dreamonkey.com", true }, { "dreamrae.net", true }, { "dreamtechie.com", true }, - { "dreax.win", true }, + { "dreatho.com", true }, { "drei01.com", true }, { "drei01.de", true }, { "dreid.org", true }, { "dreiweiden.de", true }, + { "dreizwosechs.de", false }, { "dress-cons.com", true }, + { "dressify.co", true }, + { "dressify.in", true }, + { "drevanbeale.com", true }, { "drevo-door.cz", true }, { "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 }, @@ -10051,13 +10985,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drillingsupplystore.com", true }, { "drillion.net", true }, { "drillshackresort.com", true }, + { "drinkcontrolapp.com", true }, + { "drinkgas-jihlava.cz", true }, { "drinkplanet.eu", 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 }, @@ -10071,12 +11006,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drjuanitacollier.com", false }, { "drjulianneil.com", true }, { "drkhsh.at", false }, - { "drkmtrx.xyz", true }, + { "drlandis.com", true }, { "drlangsdon.com", true }, + { "drlutfi.com", true }, { "drmayakato.com", true }, { "drmcdaniel.com", true }, { "drms.us", true }, { "drmtransit.com", true }, + { "drnow.ru", true }, { "drogueriaelbarco.com", true }, { "droidapp.nl", true }, { "droidgyan.com", true }, @@ -10100,14 +11037,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dropshare.cloud", true }, { "droso.dk", true }, { "drown.photography", true }, + { "drpetervoigt.ddns.net", true }, { "drpetervoigt.de", true }, { "drpico.com.au", true }, + { "drpure.pw", true }, + { "drrodina.com", true }, { "drrr.chat", true }, { "drrr.wiki", true }, { "drsajjadian.com", true }, + { "drschlarb.eu", true }, { "drschruefer.de", true }, { "drsturgeonfreitas.com", true }, - { "drubn.de", false }, + { "drtimmarch.com", true }, + { "druckerei-huesgen.de", true }, { "drugs.com", true }, { "drumbe.at", true }, { "drummondframing.com", true }, @@ -10115,83 +11057,107 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drupal-expert.it", true }, { "drupal.org", true }, { "drupalspb.org", true }, + { "drusantia.net", true }, { "drusillas.co.uk", true }, { "druwe.net", true }, { "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 }, + { "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 }, { "dso-imaging.co.uk", true }, + { "dso-izlake.si", true }, { "dsol.hu", true }, - { "dsouzamusic.com", true }, { "dsrw.org", true }, { "dssale.com", true }, { "dstamou.de", true }, { "dsteiner.at", true }, + { "dstvinstallalberton.co.za", true }, { "dstvinstallrandburg.co.za", true }, - { "dsuinnovation.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 }, { "dtk-vom-chausseehaus.de", true }, { "dtnx.eu", true }, { "dtnx.net", true }, { "dtnx.org", true }, - { "dtp-mstdn.jp", 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 }, + { "duckasylum.com", false }, { "duckbase.com", true }, { "duckduck.horse", true }, { "duckduckstart.com", true }, { "duckinc.net", 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 }, { "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 }, @@ -10199,24 +11165,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 }, + { "duoluodeyu.com", true }, { "duonganhtuan.com", true }, { "duoquadragintien.fr", true }, { "dupisces.com.tw", true }, { "dupree.co", true }, { "dupree.pe", true }, { "durand.tf", true }, + { "durbanlocksmiths.co.za", true }, { "durchblick-shop.de", true }, { "durdle.com", true }, { "dureuil.info", true }, @@ -10234,27 +11203,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, { "dworzak.ch", true }, { "dwscdv3.com", true }, { "dwtm.ch", true }, { "dwworld.co.uk", true }, { "dxgl.info", true }, + { "dxgl.org", true }, { "dxm.no-ip.biz", true }, { "dybuster.at", true }, { "dybuster.ch", true }, @@ -10267,13 +11242,21 @@ 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 }, + { "dymmovie.com", true }, { "dymowski.de", false }, { "dyn-dnhensel.de", true }, { "dyn-nserve.net", true }, @@ -10289,7 +11272,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dynamo.city", true }, { "dynapptic.com", true }, { "dynastic.co", true }, - { "dyncdn.me", true }, { "dynn.be", true }, { "dynorphin.com", true }, { "dynorphins.com", true }, @@ -10300,20 +11282,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dyscalculia-blog.com", true }, { "dysthymia.com", true }, { "dyyn.de", true }, - { "dyz.pw", 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 }, + { "dzsibi.com", true }, { "dzsula.hu", true }, { "dzyabchenko.com", true }, + { "dzyszla.pl", true }, { "e-apack.com.br", 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 }, @@ -10324,10 +11310,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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-tech-solution.com", true }, { "e-tech-solution.net", true }, @@ -10356,17 +11343,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -10377,48 +11368,56 @@ static const nsSTSPreload kSTSPreloadList[] = { { "earn.com", true }, { "earthsystemprediction.gov", true }, { "earticleblog.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 }, + { "eastblue.org", true }, { "eastcoastbubbleandbounce.co.uk", true }, { "easterncapebirding.co.za", true }, { "eastlothianbouncycastles.co.uk", true }, { "eastmanbusinessinstitute.com", 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 }, + { "easydumpsterrental.com", false }, + { "easyeigo.com", true }, { "easyfiles.ch", true }, { "easyhaul.com", true }, { "easykraamzorg.nl", false }, + { "easymun.com", true }, { "easyocm.hu", true }, { "easyoutdoor.nl", true }, { "easypay.bg", true }, { "easyproperty.com", true }, { "easypv.ch", true }, - { "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 }, { "eatsleeprepeat.net", true }, { "eatson.com", true }, + { "eatz-and-treatz.com", true }, { "eatz.com", true }, { "eaucube.com", true }, { "eauxdespleiades.ch", true }, @@ -10443,24 +11442,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eboek.info", true }, { "ebonyriddle.com", true }, { "ebooki.eu.org", true }, - { "ebop.ch", true }, + { "ebooklaunchers.com", true }, + { "eboutic.ch", true }, { "eboyer.com", true }, + { "ebpglobal.com", false }, { "ebrnd.de", true }, { "ec-baran.de", true }, { "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 }, { "echatta.net", true }, { "echatta.org", true }, { "echidna-rocktools.eu", true }, { "echo-security.co", true }, - { "echoactive.com", true }, { "echoanalytics.com", true }, { "echodio.com", true }, { "echofoxtrot.co", true }, @@ -10468,7 +11472,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "echosim.io", true }, { "echosixmonkey.com", true }, { "echosystem.fr", true }, - { "echoteam.gq", false }, + { "echoteam.gq", true }, + { "echoteen.com", true }, { "echoworld.ch", true }, { "ecir.pro", true }, { "ecir.ru", true }, @@ -10479,6 +11484,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eco-derattizzazione.it", true }, { "eco-wiki.com", true }, { "eco-work.it", true }, + { "eco2u.ru", true }, { "ecobee.com", false }, { "ecobergerie.fr", true }, { "ecobin.nl", true }, @@ -10489,7 +11495,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecocreativity.org", true }, { "ecodedi.com", true }, { "ecodesigns.nl", true }, - { "ecodigital.social", true }, { "ecofabrica.com.br", true }, { "ecofac-bs.com", true }, { "ecogen.com.au", true }, @@ -10503,12 +11508,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecombustibil.ro", true }, { "ecommercestore.net.br", true }, { "ecompen.co.za", true }, + { "ecomycie.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 }, @@ -10516,7 +11522,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecos.srl", true }, { "ecoshare.info", true }, { "ecoskif.ru", true }, - { "ecosoftconsult.com", true }, { "ecosound.ch", true }, { "ecostruxureit.com", true }, { "ecosystem.atlassian.net", true }, @@ -10538,20 +11543,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eddyn.net", true }, { "edeca.net", true }, { "edehsa.com", true }, + { "eden.co.uk", true }, + { "edenming.info", true }, { "edesseglabor.hu", true }, { "edfinancial.com", true }, { "edge-cloud.net", true }, { "edgeservices.co.uk", true }, { "edgetalk.net", true }, { "edgevelder.com", true }, - { "edh.email", true }, { "edhesive.com", true }, { "edholm.pub", true }, { "edibarcode.com", true }, { "edicct.com", true }, { "edinburghsportsandoutdoorlearning.com", true }, { "edincmovie.com", true }, - { "edisonchee.com", true }, + { "ediscomp.sk", true }, { "edisonlee55.com", true }, { "edisonluiz.com", true }, { "edisonnissanparts.com", true }, @@ -10568,7 +11574,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edoss.co.za", true }, { "edp-collaborative.com", true }, { "edplan.io", true }, - { "edpubs.gov", false }, { "edragneainpuscarie.ro", true }, { "edsby.com", true }, { "edservicing.com", true }, @@ -10579,22 +11584,21 @@ 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 }, { "educationevolving.org", true }, { "educationfutures.com", 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", false }, { "edv-bv.de", true }, { "edv-kohls.de", true }, { "edv-lehrgang.de", true }, @@ -10611,22 +11615,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -10636,12 +11641,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "effectivecoffee.com", true }, { "effero.net", true }, { "effex.ru", true }, + { "effinfun.com", true }, { "effizienta.ch", true }, { "efflam.net", true }, + { "effortlesshr.com", true }, { "efg-darmstadt.de", false }, { "efinity.io", true }, + { "efipsactiva.com", true }, { "efmcredentialing.org", true }, { "eft.boutique", true }, + { "eftelingcraft.net", true }, { "egablo.black", true }, { "egamespw.com", true }, { "egami.ch", true }, @@ -10650,9 +11659,9 @@ 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 }, { "eggplant.today", true }, { "egiftcards.be", true }, { "eglek.com", true }, @@ -10662,6 +11671,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "egoroof.ru", true }, { "egov4.ch", true }, { "egovernment-podcast.com", true }, + { "egres.xyz", true }, { "egrojsoft.info", true }, { "egrp365.ru", true }, { "egumenita.ro", true }, @@ -10670,6 +11680,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ehaccp.it", true }, { "ehandel.com", true }, { "ehazi.hu", true }, + { "ehbssl.com", true }, { "eheliche-disziplin.schule", true }, { "ehertz.uk", true }, { "ehipaa.com", true }, @@ -10678,37 +11689,40 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ehmtheblueline.com", true }, { "ehne.de", true }, { "ehomusicgear.com", true }, + { "ehub.cz", true }, + { "ehub.hu", true }, + { "ehub.pl", true }, + { "ehub.sk", true }, { "eichel.eu", true }, { "eichornenterprises.com", true }, { "eickemeyer.nl", true }, { "eickhof.co", true }, { "eickhof.us", true }, { "eickhofcolumbaria.com", true }, + { "eidolons.org", true }, { "eifel.website", true }, { "eigenpul.se", true }, { "eigenpulse.com", true }, { "eighty-aid.com", true }, - { "eightyfour.ca", true }, { "eigpropertyauctions.co.uk", true }, { "eihaikyo.com", true }, + { "eika.as", 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 }, { "einsteinathome.org", true }, { "eintageinzug.de", true }, { "eintragsservice24.de", true }, { "eipione.com", true }, { "eirastudios.co.uk", false }, + { "eirb.fr", true }, { "eisaev.ru", true }, { "eiskratzer-bedrucken.de", true }, { "eit-web.de", false }, @@ -10716,9 +11730,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eiyoushi-shigoto.com", true }, { "ejdv-anmeldung.de", true }, { "ejeff.org", true }, - { "ejuicelab.co.uk", true }, + { "ejkmedia.nl", true }, + { "ejkmuseum.nl", true }, + { "ejknet.nl", true }, + { "ejkwebdesign.nl", true }, { "ek-networks.de", true }, - { "ek.network", true }, { "ekaigotenshoku.com", true }, { "ekati.ru", true }, { "ekb-avia.ru", true }, @@ -10731,6 +11747,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ekokontakt.cz", true }, { "ekonbenefits.com", true }, { "ekostecki.de", true }, + { "ekostrateg.com", true }, + { "ekpyroticfrood.net", true }, { "ekrana.info", true }, { "eksisozluk.com", true }, { "ekuatorial.com", true }, @@ -10745,27 +11763,32 @@ 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 }, + { "eleaut.com.br", 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 }, @@ -10779,6 +11802,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 }, @@ -10788,6 +11812,7 @@ 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 }, @@ -10801,6 +11826,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electricianconejovalley.com", true }, { "electriciandosvientos.com", true }, { "electricianhiddenhills.com", true }, + { "electriciankemptonpark24-7.co.za", true }, { "electricianlakesherwood.com", true }, { "electricianlalucia.co.za", true }, { "electricianmalibu.com", true }, @@ -10811,6 +11837,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electriciansimivalley.com", true }, { "electricianthousandoaks.com", true }, { "electricianwestlakevillage.com", true }, + { "electricienasnieres.fr", true }, { "electricimagination.co.uk", true }, { "electriclakesherwood.com", true }, { "electricmalibu.com", true }, @@ -10820,6 +11847,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electricsimivalley.com", true }, { "electricthousandoaks.com", true }, { "electricwestlakevillage.com", true }, + { "electroinkoophardenberg.nl", true }, { "electronic-ignition-system.com", true }, { "electronicafacil.net", true }, { "electronicfasteners.com", true }, @@ -10830,9 +11858,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 }, @@ -10858,6 +11888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elemental.software", true }, { "elementalsoftware.net", true }, { "elementalsoftware.org", true }, + { "elementarty.com", true }, { "elementarywave.com", true }, { "elements.guide", true }, { "elementshop.co.uk", true }, @@ -10866,14 +11897,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elephpant.cz", true }, { "elepover.com", true }, { "elerizoentintado.es", true }, - { "elestanteliterario.com", true }, + { "eletor.com", true }, + { "eletor.pl", true }, { "elettricista-roma.org", true }, { "eleusis-zur-verschwiegenheit.de", true }, { "elevator.ee", true }, { "elevatoraptitudetest.com", true }, + { "elexel.ru", true }, { "elexprimidor.com", true }, { "elfe.de", true }, { "elfnon.com", true }, + { "elfring.eu", true }, { "elgalponazo.com.ar", true }, { "elglobo.com.mx", false }, { "elgosblanc.com", false }, @@ -10883,9 +11917,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elhossari.com", true }, { "elia.cloud", true }, { "elian-art.de", true }, + { "eliaskordelakos.com", true }, { "elibom.com", true }, { "elie.net", true }, + { "elielaloum.com", true }, { "elifesciences.org", true }, + { "eligibilis.com", true }, { "eligible.com", true }, { "eligibleapi.com", true }, { "eligrey.com", true }, @@ -10901,30 +11938,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elisabethkostecki.de", true }, { "elisabethrene.com", true }, { "elisechristie.com", true }, - { "elistor6100.xyz", 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 }, @@ -10932,10 +11967,11 @@ 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 }, + { "elonm.ru", true }, { "elosrah.com", true }, { "elosuite.com", true }, { "eloxt.com", true }, @@ -10954,13 +11990,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elternbeiratswahl.online", true }, { "elternforum-birmensdorf.ch", true }, { "elternverein-utzenstorf.ch", true }, - { "eltrox.me", true }, + { "eltip.click", true }, { "elucron.com", true }, { "eluhome.de", true }, + { "eluvio.com", true }, { "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 }, @@ -10971,7 +12009,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emaging-productions.fr", true }, { "emailalaperformance.fr", true }, { "emailconfiguration.com", true }, - { "emailcontrol.nl", true }, { "emailfuermich.de", true }, { "emailhunter.co", true }, { "emailing.alsace", true }, @@ -10979,6 +12016,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emailtools.io", true }, { "emaily.eu", true }, { "emanuel.photography", true }, + { "emanuela-gabriela.co.uk", true }, { "emanuelduss.ch", true }, { "emanueleanastasio.com", true }, { "emanuelemazzotta.com", true }, @@ -10989,12 +12027,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "embroideryexpress.co.uk", true }, { "emby.cloud", true }, { "emcspotlight.com", true }, - { "emedworld.com", 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 }, @@ -11007,18 +12046,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emilong.com", 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", false }, { "emolafarm.com", true }, @@ -11031,6 +12070,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emperor-penguins.com", true }, { "empese.com", true }, { "empherino.net", true }, + { "emploi-collectivites.fr", true }, { "employeeexpress.gov", true }, { "employer.gov", true }, { "employer.guru", true }, @@ -11047,7 +12087,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emresaglam.com", true }, { "emtradingacademy.com", true }, { "emultiagent.pl", true }, - { "emupedia.net", true }, + { "emvoice.net", true }, { "emvoiceapp.com", true }, { "emw3.com", true }, { "emyr.net", true }, @@ -11057,13 +12097,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "en4rab.co.uk", true }, { "enaah.de", true }, { "enaim.de", true }, + { "enalean.com", true }, { "enamae.net", true }, { "enbecom.net", true }, { "encfs.win", true }, { "encircleapp.com", true }, { "encnet.de", true }, { "encode.host", true }, - { "encoderx.uk", true }, + { "encore.io", true }, { "encouragemarketing.com", true }, { "encredible.de", false }, { "encredible.org", false }, @@ -11071,7 +12112,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "encrypt.org.uk", true }, { "encryptallthethings.net", true }, { "encrypted.google.com", true }, + { "encryptmycard.com", true }, { "encuentraprecios.es", true }, + { "encycarpedia.com", true }, { "ende-x.com", true }, { "endeal.nl", true }, { "ender.co.at", true }, @@ -11082,10 +12125,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "endlessvideo.com", 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 }, @@ -11100,13 +12143,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -11117,11 +12157,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "engiedev.net", true }, { "engineowning.com", true }, { "enginepit.com", true }, - { "enginx.cn", true }, + { "enginsight.com", true }, { "enginx.net", true }, { "englishbulgaria.net", true }, { "englishcast.com.br", true }, - { "englishclub.com", true }, { "englishforums.com", true }, { "englishlol.com", true }, { "englishphonopass.com", true }, @@ -11130,13 +12169,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "enigma.swiss", true }, { "enijew.com", true }, { "enitso.de", true }, + { "enixgaming.com", true }, { "enjincoin.io", true }, { "enjinwallet.io", true }, { "enjinx.io", true }, + { "enjoy-drive.com", true }, + { "enjoy-israel.ru", true }, { "enjoyphoneblog.it", true }, - { "enlatte.com", true }, - { "enlazaresbueno.cl", true }, - { "enlightened.si", true }, + { "enlighten10x.ga", true }, { "enlightenedhr.com", true }, { "enlightenment.org", true }, { "enlnf.link", true }, @@ -11148,14 +12188,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "enorekcah.com", true }, { "enot32.ru", true }, { "enotecastore.it", true }, + { "enpasenerji.com.tr", true }, { "enquos.com", 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 }, @@ -11165,10 +12205,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "entabe.jp", true }, { "entactogen.com", true }, { "entactogens.com", true }, - { "enterprisechannel.asia", true }, + { "entercenter.ru", true }, { "enterprisey.enterprises", true }, + { "entersoftsecurity.com", true }, + { "entersynapse.com", true }, { "entheogens.com", true }, - { "entheorie.net", true }, { "enthusiaformazione.com", true }, { "entradaweb.cl", true }, { "entrainr.com", true }, @@ -11182,24 +12223,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "envant.co.uk", true }, { "enveloppenopmaat.nl", true }, { "envescent.com", true }, + { "enviatufoto.com", true }, { "enviaya.com.mx", true }, + { "environmental-colleges.com", true }, { "environmentkirklees.org", true }, { "enviroprobasements.com", true }, { "envirotech.com.au", true }, { "envoie.moi", true }, + { "envoutement-desenvoutement.com", true }, { "envoyez.moi", true }, - { "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 }, + { "eos-classic.io", true }, + { "eosol.de", true }, + { "eosol.net", true }, + { "eosol.services", true }, { "epa.com.es", true }, { "epassafe.com", true }, - { "epave.paris", true }, { "epay.bg", true }, { "epdeveloperchallenge.com", true }, { "ephesusbreeze.com", true }, @@ -11208,6 +12252,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "epic-vistas.de", true }, { "epicbouncycastlehirenorwich.co.uk", true }, { "epicbouncycastles.co.uk", true }, + { "epicdowney.com", true }, { "epicenter.work", true }, { "epicenter.works", true }, { "epicentre.works", true }, @@ -11220,7 +12265,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -11238,43 +12286,37 @@ 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 }, + { "epsilon.dk", true }, { "epsorting.cz", true }, { "epublibre.org", true }, - { "epulsar.ru", true }, { "epvin.com", true }, { "epyonsuniverse.net", true }, { "eq-serve.com", true }, { "equalcloud.com", true }, + { "equeim.ru", true }, { "equidam.com", true }, + { "equilime.com", true }, { "equinecoaching.ca", true }, { "equinetherapy.ca", true }, { "equinox.io", true }, { "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 }, @@ -11284,7 +12326,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erath.fr", true }, { "erdethamburgeronsdag.no", true }, { "ereader.uno", true }, - { "erecciontotalal100.com", true }, { "erectiepillenwinkel.nl", true }, { "erethon.com", true }, { "erf-neuilly.com", true }, @@ -11298,6 +12339,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 }, @@ -11305,15 +12347,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ericleuthardt.com", true }, { "erico.jp", true }, { "ericoc.com", true }, + { "erics.site", true }, + { "ericvaughn-flam.com", true }, { "ericwie.se", true }, { "eridanus.uk", 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 }, @@ -11321,10 +12365,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erisrenee.com", true }, { "erixschueler.de", true }, { "erkaelderbarenaaben.dk", true }, + { "ernaehrungsberatung-rapperswil.ch", true }, { "ernest.ly", true }, { "eroma.com.au", true }, { "eron.info", true }, - { "erotpo.cz", false }, + { "eroticforce.com", true }, { "erp-band.ru", true }, { "erp.band", true }, { "erpax.com", true }, @@ -11334,7 +12379,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -11352,12 +12397,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erudicia.se", true }, { "erudicia.uk", true }, { "erudikum.cz", true }, - { "ervaarjapan.nl", true }, - { "erverydown.ml", true }, { "erwanlepape.com", true }, { "erwin.saarland", true }, { "erwinpaal.nl", true }, { "erwinschmaeh.ch", true }, + { "erwinvanlonden.net", true }, { "erwinwensveen.nl", true }, { "erythroxylum-coca.com", true }, { "es-geenen.de", true }, @@ -11365,6 +12409,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "es888.net", true }, { "es999.net", true }, { "es9999.net", true }, + { "esaborit.ddns.net", true }, { "esagente.com", true }, { "esailinggear.com", true }, { "esalesdata.com", true }, @@ -11374,8 +12419,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -11406,7 +12449,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esb553.com", true }, { "esb555.biz", true }, { "esb555.cc", true }, - { "esb556.com", true }, { "esb5889.com", true }, { "esb5889.net", true }, { "esb6.net", true }, @@ -11417,7 +12459,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esb777.org", true }, { "esb886.com", true }, { "esb888.net", true }, - { "esb8886.com", true }, { "esb9527.com", true }, { "esb9588.com", true }, { "esb9588.net", true }, @@ -11452,6 +12493,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esbm4.net", true }, { "esbm5.net", true }, { "esc.chat", true }, + { "esc.gov", true }, { "escael.org", true }, { "escape2rooms.fr", true }, { "escapeplaza.de", true }, @@ -11459,8 +12501,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "escargotbistro.com", true }, { "escavador.com", true }, { "esclear.de", true }, + { "escolibri.com", true }, { "escontact.ch", true }, - { "escort-byuro.net", true }, { "escortmantra.com", true }, { "escritoriodearte.com", false }, { "escuelabiblica.com", true }, @@ -11470,15 +12512,16 @@ 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 }, { "eshop-prices.com", true }, - { "eshtapay.com", true }, + { "esibun.net", true }, { "esigmbh.de", true }, { "esipublications.com", true }, { "esite.ch", true }, { "eskdale.net", true }, + { "eskriett.com", true }, + { "eslint.org", true }, { "esmoney.cc", true }, { "esmoney.me", true }, { "esoa.net", true }, @@ -11502,31 +12545,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "espgg.org", true }, { "esphigmenou.gr", true }, { "espigol.org", true }, + { "esport-battlefield.com", true }, { "esports-network.de", 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 }, - { "essayhave.com", true }, { "essaynews.com", true }, { "essaypro.net", true }, { "essaytalk.com", true }, - { "essaywebsite.com", true }, { "essaywriting.biz", true }, + { "essca.fr", true }, { "essenalablog.de", true }, { "essencesdeprana.org", true }, + { "essex.cc", true }, { "essite.net", true }, { "esslm.sk", true }, { "essoduke.org", true }, + { "essteebee.ch", true }, + { "establo.pro", true }, { "estafallando.es", true }, { "estafallando.mx", true }, - { "estaleiro.org", true }, - { "estan.cn", true }, { "estate360.co.tz", true }, { "estateczech-eu.ru", true }, { "estcequejailaflemme.fr", true }, @@ -11536,13 +12583,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esterilizacion-perros.es", true }, { "esteticanorte.com.br", true }, { "estetista.net", true }, + { "estherlew.is", true }, { "esthesoleil.jp", true }, { "estilopack-loja.com.br", true }, { "estoic.net", true }, { "estoniantrade.ee", true }, { "estonoentraenelexamen.com", true }, - { "estudioamazonico.com", true }, + { "estudiarparaser.com", true }, { "estudiserradal.com", true }, + { "esurety.net", true }, + { "esuretynew.azurewebsites.net", true }, { "esw00.com", true }, { "esw06.com", true }, { "esw07.com", true }, @@ -11556,6 +12606,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etaoinwu.win", true }, { "etasigmaphi.org", true }, { "etath.com", true }, + { "etax.com.au", true }, { "etaxi.tn", true }, { "etccooperative.org", true }, { "etch.co", true }, @@ -11572,19 +12623,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etfacta.com", true }, { "eth-faucet.net", true }, { "eth0.nl", true }, - { "etha.nz", true }, { "ethack.org", true }, { "ethaligan.fr", true }, { "ethan.pm", true }, - { "ethandelany.me", true }, { "ethercalc.com", true }, { "ethercalc.org", true }, + { "etherderbies.com", true }, { "ethergeist.de", true }, { "etherpad.fr", true }, { "etherpad.nl", true }, { "ethicaldata.co.uk", true }, { "ethicalpolitics.org", true }, - { "ethicaltek.com", true }, { "ethicsburg.gov", true }, { "ethika.com", true }, { "ethiopian.dating", true }, @@ -11592,7 +12641,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ethosinfo.com", true }, { "etienne.cc", true }, { "etikus-hacker.hu", true }, - { "etincelle.ml", true }, { "etiquetaunica.com.br", true }, { "etoile-usedcars.com", true }, { "etre-soi.ch", true }, @@ -11600,7 +12648,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etrecosmeticderm.com", true }, { "etresmant.es", true }, { "etrker.com", true }, - { "etskinner.com", true }, { "etskinner.net", true }, { "etudesbibliques.fr", true }, { "etudesbibliques.net", true }, @@ -11615,6 +12662,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 }, @@ -11641,8 +12689,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eurekaarchitecture.com", true }, { "euro-servers.de", true }, { "euroalter.com", true }, + { "eurocars2000.es", true }, { "eurocenterobuda.hu", true }, { "eurocomcompany.cz", true }, + { "euroconthr.ro", true }, + { "eurodentaire.com", true }, { "eurofrank.eu", true }, { "eurolocarno.es", true }, { "europapier.at", true }, @@ -11656,7 +12707,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "europapier.rs", true }, { "europapier.si", true }, { "europapier.sk", true }, - { "europapier.ua", true }, + { "europarts-sd.com", true }, { "europastudien.de", true }, { "european-agency.org", true }, { "europeancupinline.eu", true }, @@ -11669,7 +12720,6 @@ 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 }, @@ -11697,11 +12747,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evamira.com", true }, { "evanfiddes.com", true }, { "evangelicalmagazine.com", true }, - { "evangelosm.com", true }, - { "evantage.org", true }, + { "evanreev.es", 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 }, { "evelienzorgt.nl", true }, @@ -11709,20 +12761,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evemarketer.com", true }, { "evemodx.com", true }, { "evenementenhoekvanholland.nl", true }, - { "evenstar-gaming.com", true }, + { "evenstargames.com", true }, { "event4fun.no", true }, { "eventaro.com", true }, { "eventive.org", true }, + { "eventnexus.co.uk", true }, { "eventosenmendoza.com.ar", true }, { "events-hire.co.uk", true }, { "eventtech.com", false }, + { "evenwallet.com", true }, + { "eveonline.com", true }, { "ever.sale", true }, - { "everain.me", true }, + { "everettsautorepair.com", true }, { "everfine.com.tw", true }, { "evergladesrestoration.gov", true }, { "everhome.de", true }, { "everling.lu", true }, { "everlong.org", true }, + { "evermarkstudios.com", true }, { "everpcpc.com", true }, { "evertonarentwe.com", true }, { "everwaking.com", false }, @@ -11733,7 +12789,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "everydaywp.com", true }, { "everyex.com", true }, { "everyfad.com", true }, + { "everygayporn.com", false }, + { "everything-everywhere.com", true }, { "everythingaccess.com", true }, + { "everythingstech.com", true }, { "everytrycounts.gov", false }, { "everywhere.cloud", true }, { "eveshamglass.co.uk", true }, @@ -11742,14 +12801,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evidence-based.review", true }, { "evidencebased.net", true }, { "evidenceusa.com.br", true }, + { "evidencija.ba", true }, { "evidentiasoftware.com", true }, { "evilarmy.com", true }, + { "evilbunnyfufu.com", true }, { "evilcult.me", true }, { "evileden.com", true }, { "evilized.de", true }, { "evilmartians.com", true }, { "evilsite.cf", true }, - { "evilvolcanolairs.com", true }, { "evion.nl", true }, { "evlear.com", true }, { "evoco.vc", true }, @@ -11761,6 +12821,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evolutioninflatables.co.uk", true }, { "evolutionlending.co.uk", true }, { "evolutionpets.com", true }, + { "evolutionsmedicalspa.com", true }, { "evolvetechnologies.co.uk", true }, { "evolvingthoughts.net", true }, { "evonews.com", true }, @@ -11771,7 +12832,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evoting.ch", true }, { "evrial.com", true }, { "evrica.me", true }, + { "evromandie.ch", true }, { "evstatus.com", true }, + { "evtasima.name.tr", true }, { "evtripping.com", true }, { "ewaipiotr.pl", true }, { "ewanm89.co.uk", true }, @@ -11791,26 +12854,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exactphilosophy.net", true }, { "exagoni.com.au", true }, { "exagoni.com.my", true }, + { "examedge.com", true }, { "example.sc", true }, { "example.wf", true }, { "examsmate.in", true }, { "exaplac.com", true }, + { "exarpy.com", true }, { "exatmiseis.net", false }, { "exceed.global", true }, { "exceedagency.com", true }, + { "excelhot.com", true }, { "exceltechdubai.com", true }, { "exceltechoman.com", true }, - { "exceltobarcode.com", true }, { "excentos.com", true }, + { "exceptionalservers.com", true }, { "excessamerica.com", true }, { "excesssecurity.com", true }, - { "exchangeworks.co", true }, { "exchaser.com", true }, { "exclusivebouncycastles.co.uk", true }, { "exclusivedesignz.com", true }, { "exdamo.de", false }, { "exe-boss.tech", true }, - { "exebouncycastles.co.uk", true }, + { "execution.biz.tr", true }, { "exehack.net", true }, { "exeintel.com", true }, { "exekutori.com", true }, @@ -11819,48 +12884,54 @@ 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 }, { "exmoe.com", true }, - { "exocen.com", true }, { "exon.io", true }, + { "exoplatform.com", 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 }, { "expandeco.com", true }, { "expatmortgage.uk", 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.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 }, { "expo-larionov.org", true }, - { "expokohler.com", true }, { "exponentialnews.net", true }, { "expoort.co.uk", true }, { "expoort.com", true }, @@ -11883,8 +12954,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exside.com", true }, { "exsora.com", true }, { "extasic.com", true }, - { "extendwings.com", true }, { "extensia.it", true }, + { "extensibility.biz.tr", true }, { "extensiblewebmanifesto.org", true }, { "extensiblewebreportcard.org", true }, { "extensiblewebsummit.org", true }, @@ -11907,6 +12978,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exteriorlightingwestlakevillage.com", true }, { "extintormadrid.com", true }, { "extradesktops.com", false }, + { "extradivers-worldwide.com", true }, { "extranetpuc.com.br", true }, { "extrapagetab.com", true }, { "extreme-gaming.de", true }, @@ -11914,10 +12986,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "extreme-players.com", true }, { "extreme-players.de", true }, { "extreme.co.th", true }, - { "extremeservicesandrestoration.com", true }, { "exultcosmetics.co.uk", true }, + { "exxo.tk", true }, { "exyplis.com", true }, - { "eyasc.nl", true }, { "eydesignguidelines.com", true }, { "eyeandfire.com", true }, { "eyecandy.gr", true }, @@ -11928,7 +12999,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eyes-berg.ch", true }, { "eyes-berg.com", true }, { "eyesandearsrescue.org", true }, - { "eyesonly.cc", true }, { "eynio.com", true }, { "eyona.com", true }, { "eyps.net", true }, @@ -11938,7 +13008,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ezakazivanje.rs", true }, { "ezdog.press", true }, { "ezequiel-garzon.net", true }, - { "ezgamble.com", true }, { "ezgif.com", true }, { "ezhik-din.ru", true }, { "eznfe.com", true }, @@ -11957,19 +13026,20 @@ 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 }, { "f5nu.com", true }, { "f5w.de", true }, { "fa-works.com", true }, + { "fabbro-roma.org", true }, { "faber.org.ru", true }, { "fabian-fingerle.de", true }, + { "fabian-klose.com", true }, + { "fabian-klose.de", true }, + { "fabian-klose.net", true }, { "fabian-koeppen.de", true }, { "fabianackle.ch", true }, - { "fabianasantiago.com", true }, { "fabianbeiner.com", false }, { "fabianbeiner.de", false }, { "fabianfranke.de", true }, @@ -11981,7 +13051,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fabrica360.com", true }, { "fabriceleroux.com", true }, { "fabriziocavaliere.it", true }, - { "fabriziorocca.com", true }, { "fabriziorocca.it", true }, { "fabrysociety.org", true }, { "fabse.net", true }, @@ -11991,15 +13060,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 }, @@ -12017,7 +13085,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fackovec.sk", true }, { "factbytefactbox.com", true }, { "factcool.com", true }, - { "factor.cc", false }, { "factuur.pro", true }, { "factuursturen.be", true }, { "factuursturen.nl", true }, @@ -12027,26 +13094,33 @@ 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 }, + { "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 }, + { "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 }, @@ -12061,11 +13135,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "falaeapp.org", true }, { "falaowang.com", true }, { "falbros.com", true }, - { "falconfrag.com", true }, + { "falcona.io", true }, { "falconvintners.com", true }, { "falcoz.co", true }, - { "faldoria.de", false }, + { "faldoria.de", true }, { "falegname-roma.it", true }, + { "falkhusemann.de", true }, { "falldennismarketing.com", true }, { "fallenangeldrinks.co.uk", true }, { "fallenangeldrinks.com", true }, @@ -12075,16 +13150,16 @@ 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", false }, + { "fam-weyer.de", true }, { "famcloud.de", true }, - { "famdouma.nl", true }, { "fameng.nl", true }, + { "fameus.fr", true }, { "famfi.co", true }, { "familiaperez.net", true }, + { "familie-kruithof.nl", true }, { "familie-kupschke.de", true }, { "familie-leu.ch", true }, { "familie-monka.de", true }, @@ -12094,7 +13169,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "familieholme.de", true }, { "familjenfrodlund.se", true }, { "familjenm.se", true }, - { "familletouret.fr", true }, { "familylawhotline.org", true }, { "familyparties.co.uk", true }, { "familyreal.ru", true }, @@ -12105,7 +13179,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "famoushostels.com", true }, { "famvangelder.nl", true }, { "famvsomeren.nl", true }, + { "fan.gov", true }, { "fanactu.com", true }, + { "fanatical.com", true }, { "fanboi.ch", true }, { "fancy-bridge.com", true }, { "fancy.org.uk", true }, @@ -12121,18 +13197,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fantasticcleaners.com.au", true }, { "fantastichandymanmelbourne.com.au", true }, { "fantastici.de", true }, + { "fantasticservices.com", true }, + { "fantasticservicesgroup.com.au", true }, { "fantasycastles.co.uk", true }, { "fantasyescortsbirmingham.co.uk", true }, { "fantasypartyhire.com.au", true }, + { "fantasyprojections.com", true }, { "fantasyspectrum.com", true }, { "fantopia.club", true }, { "fanvoice.com", true }, + { "fanyina.cn", true }, + { "fanyina.com", true }, { "fanyue123.tk", true }, { "fanz.pro", true }, { "fanzlive.com", true }, { "fap.no", true }, { "faq.ie", true }, { "fara.gov", true }, + { "faradji.nu", true }, { "faradome.ws", true }, { "faraslot8.com", true }, { "farcecrew.de", true }, @@ -12142,6 +13224,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "farhadexchange.com", true }, { "farhood.org", true }, { "farid.is", true }, + { "farmacia-discreto.com", true }, { "farmacialaboratorio.it", true }, { "farmer.dating", true }, { "farmers.gov", false }, @@ -12155,7 +13238,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "farrelf.blog", true }, { "farsil.eu", true }, { "fart.wtf", true }, + { "farthing.xyz", true }, { "farwat.ru", true }, + { "faschingmd.com", true }, + { "fascia.fit", true }, { "fashion-stoff.de", true }, { "fashion24.de", true }, { "fashion4ever.pl", true }, @@ -12176,6 +13262,7 @@ 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 }, @@ -12185,6 +13272,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fastcash.com.br", true }, { "fastcommerce.org", true }, { "fastconfirm.com", true }, + { "fastcp.top", true }, + { "fastest-hosting.co.uk", true }, { "fastforwardsociety.nl", true }, { "fastforwardthemes.com", true }, { "fastlike.co", true }, @@ -12195,14 +13284,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fastvistorias.com.br", true }, { "fastwebsites.com.br", true }, { "faszienrollen-info.de", false }, + { "fateandirony.com", true }, + { "fatecdevday.com.br", true }, { "fatedata.com", true }, + { "fateitalia.it", true }, { "fathers4equalrights.org", true }, { "fatidique.com", true }, { "fatimamoldes.com.br", true }, - { "fator25.com.br", true }, + { "fatmixx.com", true }, { "fatowltees.com", true }, { "faucetbox.com", false }, { "faui2k17.de", true }, + { "faultlines.org", true }, { "faulty.equipment", true }, { "fauvettes.be", true }, { "favirei.com", true }, @@ -12213,7 +13306,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fb.me", true }, { "fbcdn.net", true }, { "fbcopy.com", true }, - { "fbi.pw", true }, + { "fbi.gov", true }, { "fbigame.com", true }, { "fbiic.gov", true }, { "fbijobs.gov", true }, @@ -12224,8 +13317,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fc.media", true }, { "fca-tools.com", true }, { "fcburk.de", true }, + { "fccarbon.com", true }, { "fcforum.net", true }, - { "fcitasc.com", true }, + { "fcingolstadt.de", true }, { "fckd.net", true }, { "fcosinus.com", true }, { "fcprovadia.com", true }, @@ -12234,14 +13328,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "fearby.com", true }, { "fearghus.org", true }, { "fearsomegaming.com", true }, { "feastr-dev.de", true }, @@ -12275,10 +13370,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feedkovacs.hu", true }, { "feedough.com", true }, { "feedthefuture.gov", true }, - { "feegg.com.br", true }, + { "feeeei.com", true }, { "feel-events.com", true }, { "feel.aero", true }, { "feelgood-workouts.de", true }, + { "feelmom.com", true }, { "feeltennis.net", true }, { "feen.us", true }, { "feepod.com", true }, @@ -12294,8 +13390,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fehngarten.de", true }, { "fehnladen.de", true }, { "feigling.net", false }, + { "feildel.fr", true }, { "feilen.de", true }, - { "feisbed.com", true }, { "feisim.com", true }, { "feisim.org", true }, { "feistyduck.com", true }, @@ -12306,13 +13402,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feldhousen.com", true }, { "felett.es", true }, { "felgitscher.xyz", true }, + { "feli.games", true }, + { "felicifia.org", true }, { "felinepc.com", true }, { "felisslovakia.sk", true }, { "felistirnavia.sk", true }, + { "felixaufreisen.de", true }, { "felixbarta.de", true }, { "felixcrux.com", true }, { "felixgenicio.com", true }, - { "felixhefner.de", true }, { "felixkauer.de", true }, { "felixqu.com", true }, { "felixsanz.com", true }, @@ -12321,16 +13419,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "felsmalerei.net", true }, { "femanca.com", true }, { "femastudios.com", true }, - { "femdombbw.com", true }, + { "femiluna.com", true }, { "feminina.pt", true }, { "femradio.es", true }, { "femtomind.com", true }, { "fence-stlouis.com", true }, + { "feng-hhcm.com", true }, { "feng-in.com", true }, { "feng-in.net", 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 }, @@ -12347,6 +13448,7 @@ 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 }, @@ -12358,12 +13460,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "festaprylar.se", true }, { "festival-tipps.com", true }, { "festivaljapon.com", true }, - { "festivalxdentro.com", 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 }, @@ -12374,9 +13477,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feuetgloire.com", 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 }, @@ -12424,9 +13527,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fiduciaire-ratio.ch", true }, { "fieldwork-paysage.com", true }, { "fierlafijn.net", true }, + { "fierscleaning.nl", true }, { "fiery.me", true }, { "fifei.de", true }, { "fifichachnil.paris", true }, + { "fifieldtech.com", true }, { "fifr.nl", true }, { "fiftynorth.eu", true }, { "fiftyonetielt.be", true }, @@ -12435,8 +13540,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fight215.org", true }, { "figinstitute.org", true }, { "figshare.com", true }, - { "figura.cz", true }, { "figurasdelinguagem.com.br", true }, + { "figure.nz", true }, { "fiilr.com", true }, { "fiissh.tech", true }, { "fiix.io", true }, @@ -12447,10 +13552,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filanthropystar.org", true }, { "file-cloud.eu", true }, { "file-pdf.it", true }, - { "filebox.moe", false }, { "filecopa.com", true }, { "files.from-me.org", true }, { "filestar.io", true }, + { "filestartest.io", true }, { "filetransfer.one", true }, { "filezilla-project.org", true }, { "filezilla.cn", true }, @@ -12460,34 +13565,38 @@ 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.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 }, { "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 }, { "final-expense-quotes.com", 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 }, @@ -12495,6 +13604,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -12518,17 +13628,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "fionamcbride.com", true }, { "fioulmarket.fr", true }, { "fir3net.com", true }, + { "fire-schools.com", true }, { "firebaseio.com", true }, { "firebirdrangecookers.com", true }, { "firebounty.com", true }, @@ -12541,12 +13654,17 @@ 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 }, + { "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 }, @@ -12554,7 +13672,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firma-cerny.cz", true }, { "firma-offshore.com", true }, { "firmale.com", true }, - { "firmament.space", true }, { "firmapi.com", true }, { "firmen-assekuranz.de", true }, { "firmenwerbung-vermarktung.de", true }, @@ -12567,6 +13684,7 @@ 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 }, @@ -12575,6 +13693,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fischer-its.com", false }, { "fischer-kundendienst.de", true }, { "fischers.cc", true }, + { "fischers.it", true }, + { "fischers.srv.br", true }, { "fise.cz", true }, { "fish-hook.ru", true }, { "fishbattle.io", true }, @@ -12584,6 +13704,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fishermansbendcorporation.com.au", true }, { "fishermansbendtownhouses.com.au", true }, { "fishexport.eu", true }, + { "fishfinders.info", true }, { "fishgen.no", true }, { "fishserver.net", true }, { "fishtacos.blog", true }, @@ -12593,27 +13714,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fit-mit-system.eu", true }, { "fit365.jp", true }, { "fitchannel.com", true }, - { "fitfitup.com", true }, + { "fitinclass.com", true }, { "fitkram.cz", true }, + { "fitmeat.at", true }, { "fitness-challenge.co.uk", true }, { "fitness.gov", true }, - { "fitseven.ru", true }, { "fittelo.cz", true }, { "fitzsim.org", true }, { "fiuxy.bz", true }, { "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.search.yahoo.com", false }, { "fj.simple.com", false }, @@ -12623,6 +13747,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fkcdn.de", true }, { "fkfev.de", true }, { "fktpm.ru", true }, + { "flacandmp3.ml", true }, { "flaemig42.de", false }, { "flagburningworld.com", true }, { "flagfox.net", true }, @@ -12635,22 +13760,24 @@ 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 }, { "fleetcor.at", true }, { "fleetcor.ch", true }, @@ -12670,11 +13797,12 @@ 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 }, @@ -12683,6 +13811,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flextrack.dk", true }, { "flextribly.xyz", true }, { "fliacuello.com.ar", true }, + { "flickcritter.com", true }, { "flight.school", true }, { "flightdeckfriend.com", true }, { "flightmedx.com", true }, @@ -12695,17 +13824,15 @@ 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 }, + { "flixhaven.net", true }, { "flmortgagebank.com", true }, { "floatationlocations.com", true }, { "floaternet.com", true }, @@ -12713,19 +13840,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flocktofedora.org", true }, { "floersheimer-openair.de", true }, { "floffi.media", true }, - { "floj.tech", true }, { "flokinet.is", true }, + { "floless.co.uk", true }, + { "flomeyer.de", true }, { "floobits.com", true }, - { "flood.io", true }, + { "floogulinc.com", true }, + { "floorballpoint.cz", true }, { "flooringnightmares.com", true }, { "flooringsourcetx.com", true }, + { "floors4lessbay.com", true }, { "floort.net", false }, { "florence.uk.net", true }, { "florenceapp.co.uk", true }, { "florent-tatard.fr", true }, { "florentynadawn.co.uk", true }, + { "floresvilleedc.org", true }, { "florian-bachelet.fr", true }, { "florian-thie.de", true }, + { "florian2833z.de", true }, { "floriankarmen.com", true }, { "floriankeller.de", true }, { "florianmitrea.uk", true }, @@ -12742,7 +13874,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flosch.at", false }, { "floseed.fr", true }, { "floskelwolke.de", true }, - { "flosserver.de", true }, { "flow.su", true }, { "flowair24.ru", true }, { "flowcom.de", true }, @@ -12750,19 +13881,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flowersbylegacy.com", true }, { "flowinvoice.com", true }, { "flowreader.com", true }, - { "flox.io", true }, { "flra.gov", true }, - { "flucky.xyz", false }, + { "flucky.xyz", true }, { "flucto.com", true }, { "flue-ducting.co.uk", true }, { "fluffycloud.de", true }, - { "flugsportvereinigungcelle.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 }, @@ -12779,15 +13910,13 @@ 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 }, { "flyserver.co.il", true }, { "flyshe.co.uk", true }, - { "flyspace.ml", true }, { "flyssh.net", true }, { "flyswoop.com", true }, { "flyt.online", true }, @@ -12801,8 +13930,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "fnkr.net", true }, @@ -12818,8 +13947,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foej-aktiv.de", true }, { "foej.net", 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 }, @@ -12831,9 +13962,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -12847,10 +13978,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fondationwiggli.ch", true }, { "fondsdiscountbroker.de", true }, { "fondy.eu", true }, - { "fondy.ru", true }, { "fondy.ua", true }, { "fonga.ch", true }, { "fonolo.com", true }, + { "fonseguin.ca", true }, { "font-converter.net", true }, { "fonte-trading.com", true }, { "fontein.de", true }, @@ -12858,10 +13989,10 @@ 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 }, { "foodsafety.gov", true }, { "foodsafetyjobs.gov", true }, { "foodsouvenirs.it", true }, @@ -12874,6 +14005,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foot.fr", true }, { "footagecrate.com", true }, { "footballforum.de", true }, + { "footloose.co.uk", true }, { "for.care", true }, { "foray-jero.me", true }, { "forbusiness.ca", true }, @@ -12889,6 +14021,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 }, @@ -12897,10 +14030,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foreverssl.com", true }, { "foreversummertime.com", true }, { "forewordreviews.com", true }, + { "forex-plus.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 }, @@ -12908,7 +14042,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "forgotten-legends.org", true }, { "forman.store", true }, { "formapi.io", true }, - { "formasdemaquillarse.com", true }, { "format-paysage.ch", true }, { "formation-assureur.com", true }, { "formation-mac.ch", true }, @@ -12918,28 +14051,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "formkiq.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 }, { "forologikidilosi.com.gr", true }, { "forourselves.com", true }, { "forpc.us", true }, - { "forplayers.pl", true }, { "forrestheller.com", 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 }, @@ -12956,7 +14094,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fosaudit.com", true }, { "foscamcanada.com", true }, { "fosdem.org", true }, - { "fossguard.com", true }, + { "foshanshequ.com", false }, { "fossilfreeyale.org", true }, { "fotella.com", true }, { "fotikpro.ru", true }, @@ -12968,14 +14106,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foto-robitsch.at", true }, { "foto-roma.ru", true }, { "foto.by", true }, + { "fotoboxvysocina.cz", true }, { "fotofaerie.net", true }, { "fotoflits.net", true }, + { "fotografechristha.nl", true }, { "fotografiadellalucerossa.com", true }, { "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 }, @@ -12983,6 +14123,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 }, @@ -12994,22 +14137,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fowlsmurf.net", true }, { "foxbnc.co.uk", true }, { "foxdev.co", true }, + { "foxesare.sexy", true }, { "foxhound.com.br", 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 }, + { "fpaci.org", 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 }, { "fragstore.net", true }, @@ -13024,6 +14173,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "francetraceur.fr", true }, { "franchini.email", true }, { "franchini.engineer", true }, + { "francis.tokyo", true }, { "francisli.net", false }, { "franckgirard.net", true }, { "franckyz.com", true }, @@ -13031,12 +14181,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "francois-occasions.be", 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 }, @@ -13045,8 +14196,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frankierprofi.de", true }, { "frankierstar.de", true }, { "frankinteriordesign.co.uk", true }, - { "frankl.in", true }, { "frankmorrow.com", true }, + { "frankopol-sklep.pl", true }, { "franksiler.com", true }, { "frankslaughterinsurance.com", true }, { "frankwei.xyz", true }, @@ -13057,7 +14208,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "franz-vatter.de", true }, { "franz.beer", true }, { "franziska-pascal.de", true }, - { "frappant.cc", false }, + { "franzknoll.de", true }, + { "frappant.cc", true }, { "fraselab.ru", true }, { "frasesdodia.com", true }, { "frasesparaface.com.br", true }, @@ -13073,6 +14225,7 @@ 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 }, @@ -13090,21 +14243,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frederikvig.com", true }, { "fredloya.com", true }, { "fredriksslekt.se", true }, + { "fredtec.ru", true }, { "fredvoyage.fr", true }, { "free-your-pc.com", true }, + { "free.ac.cn", true }, { "free.com.tw", true }, { "freeasyshop.com", true }, { "freebarrettbrown.org", true }, { "freebcard.com", true }, { "freebetoffers.co.uk", true }, - { "freeblog.me", true }, + { "freebies.id", true }, { "freebookmakersbetsandbonuses.com.au", true }, { "freeboson.org", true }, { "freecam2cam.site", true }, { "freecloud.at", true }, - { "freecookies.nl", true }, { "freedev.cz", true }, + { "freedom.nl", true }, { "freedom.press", true }, + { "freedom35.org", true }, { "freedomfinance.se", true }, { "freedomflotilla.org", true }, { "freedomfrontier.tk", true }, @@ -13132,6 +14288,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freelo.cz", true }, { "freelysurf.cf", true }, { "freemans.com", true }, + { "freemomhugs.org", true }, { "freemyipod.org", true }, { "freend.me", false }, { "freenetproject.org", true }, @@ -13148,6 +14305,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freesoft-board.to", true }, { "freesoftlab.com", true }, { "freesolitaire.win", true }, + { "freessl.tech", true }, + { "freesslcertificate.me", true }, { "freethetv.ie", true }, { "freetsa.org", true }, { "freevps.us", false }, @@ -13155,6 +14314,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freeyourmusic.com", true }, { "freezion.com", true }, { "frei.social", true }, + { "freie-software.net", true }, { "freifahrt.de", true }, { "freifamily.ch", true }, { "freifunk-burgaltendorf.de", true }, @@ -13172,7 +14332,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -13184,26 +14344,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freshislandfish.com", true }, { "freshkiss.com.au", true }, { "freshmaza.com", true }, - { "freshmaza.io", true }, { "freshmaza.net", true }, { "fretscha.com", true }, - { "frettboard.com", true }, { "frettirnar.is", true }, { "fretworksec.com", true }, { "friarsonbase.com", true }, { "fribourgviking.net", true }, { "frickelmeister.de", true }, { "fridayfoucoud.ma", true }, + { "fridolinka.cz", true }, + { "friedenauer-herbstfest.de", true }, { "friederes.lu", true }, { "friederloch.de", true }, { "friedrich-foto-art.de", true }, { "friedsamphotography.com", true }, { "friendlysiberia.com", true }, + { "friendowment.us", true }, { "friends-of-naz.com", true }, { "friends-socialgroup.org", true }, { "friends24.cz", true }, { "friendship-quotes.co.uk", true }, { "friendshipismagicsquad.com", true }, + { "friendsofgfwpc.org", true }, { "frieslandrail.nl", true }, { "friet.org", true }, { "frietbesteld.nl", true }, @@ -13216,7 +14378,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frino.de", true }, { "frippz.se", true }, { "friss.com", true }, - { "fritteli.ch", true }, { "fritzrepair.com", true }, { "frizo.com", true }, { "frly.de", true }, @@ -13232,17 +14393,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fromscratch.rocks", true }, { "fromthesoutherncross.com", true }, { "fronteers.nl", false }, + { "frontier-ad.co.jp", true }, + { "frontierdiscount.com", 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 }, @@ -13254,12 +14420,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frugalmechanic.com", true }, { "frugro.be", true }, { "fruition.co.jp", true }, - { "fruitscale.com", true }, { "frusky.de", true }, { "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 }, @@ -13273,16 +14439,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fscott.de", true }, { "fsdress.com", true }, { "fsfxpackages.com", true }, + { "fsg.one", true }, { "fsj4u.ch", true }, { "fsk.fo", true }, { "fsky.info", true }, { "fsm2016.org", true }, { "fsps.ch", true }, { "fsstyle.com", true }, - { "fsvoboda.cz", true }, { "fsvt.ch", true }, { "ft.com", false }, - { "ftang.de", true }, + { "ftc.gov", false }, { "ftccomplaintassistant.gov", true }, { "ftcefile.gov", true }, { "ftf.agency", true }, @@ -13293,6 +14459,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ftv.re", true }, { "fu-li88.com", true }, { "fu-li88.net", true }, + { "fu639.top", true }, + { "fu898.top", true }, { "fuantaishenhaimuli.net", true }, { "fuck-your-false-positive.de", true }, { "fuckav.ru", true }, @@ -13312,11 +14480,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fuglede.dk", true }, { "fuite.ch", true }, { "fuites.ch", true }, - { "fujianshipbuilding.com", true }, - { "fujiorganics.com", false }, { "fujiwaraqol.com", true }, { "fukakukeiba.com", true }, { "fukikaeru.com", true }, + { "fukuiedu.com", true }, { "fukushimacoffee.com", true }, { "fulfilmentcrowd.com", true }, { "fulgenzis.com", true }, @@ -13326,12 +14493,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "full-stack.ninja", true }, { "fullautomotivo.com.br", true }, { "fullbundle.com", true }, + { "fullereno.com", true }, + { "fullerlife.org.uk", true }, { "fullhost.com", true }, { "fullhub.ru", true }, { "fullmatch.net", true }, - { "fullpackage.co.uk", true }, { "fullstacknotes.com", true }, - { "fulltxt.ml", true }, { "fumblers.ca", true }, { "fumerolles.ch", true }, { "fumo.se", false }, @@ -13347,7 +14514,6 @@ 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 }, @@ -13356,15 +14522,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, @@ -13373,10 +14541,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "furaje-iasi.com", true }, + { "furcity.me", true }, { "furgo.love", true }, { "furigana.info", true }, { "furikake.xyz", true }, @@ -13390,28 +14559,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "furlan.co", true }, { "furlog.it", true }, { "furnfurs.com", true }, - { "furnitureconcept.co.uk", true }, - { "furry.agency", true }, + { "furry.cat", true }, { "furry.dk", true }, { "furry.zone", false }, { "furrybot.me", true }, { "furrytech.network", true }, + { "furrytf.club", true }, { "furryyiff.site", true }, - { "fursuitbutts.com", true }, { "furtherfood.com", true }, { "fusa-miyamoto.jp", true }, { "fuselight.nl", true }, { "fuseos.net", true }, { "fushee.com", true }, { "fusiongaming.de", true }, - { "fuskator.com", true }, { "fussball-xxl.de", true }, - { "fussell.io", true }, + { "futaba-works.com", true }, { "futagro.com", true }, + { "futbomb.com", true }, + { "futcre.com", true }, { "futrou.com", true }, { "future-moves.com", true }, { "futurefund.com", true }, { "futurefundapp.com", true }, + { "futuregrowthva.com", true }, { "futurehack.io", true }, { "futurenda.com", true }, { "futureoceans.org", true }, @@ -13420,14 +14590,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -13443,15 +14611,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fxopen.ru", true }, { "fxp.co.il", true }, { "fxseo.com.au", true }, - { "fxtalk.cn", true }, { "fxthai.com", true }, { "fxtrade-lab.com", true }, { "fxweb.co", true }, { "fxwebsites.com.au", true }, { "fxwebsites.net.au", true }, { "fxwebstudio.net.au", true }, + { "fyfywka.com", true }, { "fyksen.me", true }, { "fyn.nl", true }, + { "fyol.xyz", false }, { "fyretrine.com", true }, { "fysesbjerg.dk", true }, { "fysio123.nl", true }, @@ -13461,58 +14630,66 @@ 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 }, { "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 }, { "g3rv4.com", true }, { "g4w.co", true }, { "g5.gov", true }, + { "g6666g.tk", true }, { "g8energysolutions.co.uk", true }, - { "gaanbaksho.com.au", true }, { "gaaz.fr", true }, { "gabe565.com", true }, + { "gabeb1920.com", true }, { "gabecook.com", true }, { "gabemack.com", true }, { "gabinetpsychoterapii.krakow.pl", true }, { "gabriel.to", true }, { "gabrielsimonet.ch", 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 }, - { "gaff-rig.co.uk", true }, { "gaflooring.com", true }, { "gafunds.com", true }, + { "gagliarducci.it", true }, { "gagne-enterprises.com", 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 }, { "gaitandmobility.com", true }, { "gaitrehabilitation.com", true }, { "gaitresearch.com", true }, - { "gajas18.com", true }, { "gakkainavi-epsilon.jp", true }, { "gakkainavi-epsilon.net", true }, { "gakkainavi.jp", true }, @@ -13521,12 +14698,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "galanight.cz", true }, + { "galecia.com", true }, + { "galeria42.com", true }, + { "galeriart.xyz", true }, { "galerieautodirect.com", true }, { "galeries.photo", true }, { "galgopersa.com.br", true }, + { "galilahiskye.com", true }, { "galileanhome.org", true }, + { "galilel.cloud", true }, { "galinas-blog.de", true }, { "galinos.gr", true }, { "galle.cz", true }, @@ -13546,33 +14731,46 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gambitnash.co.uk", true }, { "gambitnash.com", true }, { "gambitprint.com", true }, + { "gamblerhealing.com", true }, { "gamblersgaming.eu", true }, + { "game4less.com", true }, { "game7.de", true }, + { "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 }, - { "gamerezo.com", true }, + { "gamereader.de", 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 }, @@ -13581,6 +14779,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gamingwithcromulent.com", true }, { "gamingzoneservers.com", true }, { "gamishou.fr", true }, + { "gamivo.com", true }, { "gamoloco.com", true }, { "gan.wtf", true }, { "ganado.org", true }, @@ -13593,15 +14792,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gandgliquors.com", true }, { "ganggalbichler.at", true }, { "gansleit.com", false }, - { "ganzgraph.de", true }, { "ganztagplus.de", true }, { "gao.rocks", true }, { "gaojianli.tk", true }, - { "gaon.network", true }, { "gaos.org", true }, { "gapdirect.com", true }, { "gapfa.org", true }, - { "gaptek.id", false }, + { "gaphag.ddns.net", true }, + { "gar-nich.net", false }, { "garage-leone.com", true }, { "garage-meynard.com", true }, { "garageenginuity.com", true }, @@ -13609,18 +14807,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "garagemhermetica.org", true }, { "garagevanhulle-used.be", true }, { "garanteasy.com", true }, - { "garbage-juice.com", true }, { "garbomuffin.com", true }, + { "garciagerman.com", true }, { "garda-see.mobi", true }, { "gardedenfantspourtous.fr", true }, - { "garden-life.org", true }, { "gardengameshireuk.com", true }, { "garderobche.eu", true }, { "gardikagigih.com", true }, { "gardinte.com", true }, { "garedtech.com", false }, { "garethbowker.com", true }, - { "garethkirkreviews.com", true }, { "garethrhugh.es", true }, { "garforthgolfclub.co.uk", true }, { "gargazon.net", true }, @@ -13636,48 +14832,50 @@ 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 }, { "gavins.stream", true }, { "gavinsblog.com", true }, - { "gay-jays.com", true }, - { "gay-sissies.com", true }, + { "gawrimanecuta.com", true }, + { "gaya-sa.org", true }, { "gayforgenji.com", true }, - { "gayjays.com", 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 }, + { "gc-mc.de", true }, { "gc.gy", true }, + { "gc.ru.net", true }, { "gcbit.dk", true }, { "gcfadvisors.com", true }, { "gcgeeks.com.au", true }, { "gcguild.net", true }, { "gchq.wtf", true }, { "gcoded.de", true }, + { "gcodetools.com", true }, { "gcs-ventures.com", true }, { "gcsepod.com", true }, { "gdax.com", true }, @@ -13685,10 +14883,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gdgrzeszow.pl", true }, { "gdhzcgs.com", true }, { "gdiary.net", true }, + { "gdngs.de", true }, { "gdpr-pohotovost.cz", true }, - { "gdutnic.com", true }, { "gdv.me", true }, { "gdz-spishy.com", true }, + { "gdz.tv", true }, { "ge3k.net", false }, { "gear4you.shop", true }, { "gearallnews.com", true }, @@ -13696,7 +14895,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gearfinder.nl", true }, { "gearseo.com.br", true }, { "gearset.com", true }, - { "geaskb.nl", true }, { "geass.xyz", true }, { "geba-online.de", true }, { "gebn.co.uk", true }, @@ -13707,7 +14905,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gecem.org", true }, { "gechr.io", true }, { "geckler-ee.de", true }, - { "gedankenworks.com", true }, { "geder.at", true }, { "gedlingcastlehire.co.uk", true }, { "gee.is", true }, @@ -13718,29 +14915,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -13759,14 +14957,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gelog-software.de", false }, { "geloofindemocratie.nl", false }, { "geluidsstudio.com", 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 }, - { "gencmedya.com", false }, + { "gencmedya.com", true }, { "genderidentiteit.nl", true }, { "gendrin.com", true }, { "gendundrupa.ch", true }, @@ -13776,10 +14974,12 @@ 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 }, { "general-anesthesia.com", true }, + { "general-insurance.tk", true }, { "generali-worldwide.com", true }, { "generalinsuranceservices.com", true }, { "generationgoat.com", true }, @@ -13795,6 +14995,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geneve-naturisme.ch", true }, { "genevoise-entretien.ch", true }, { "genfaerd.dk", true }, + { "geniush.ovh", true }, + { "geniushost.in", true }, { "geniusteacher.in", true }, { "geniuszone.biz", true }, { "genocidediary.org", true }, @@ -13809,6 +15011,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gensicke.de", true }, { "genslerapps.com", true }, { "genslerwisp.com", true }, + { "gensokyo.chat", true }, + { "gensokyo.re", true }, { "gensonline.eu", true }, { "gentianes.ch", true }, { "gentoo-blog.de", true }, @@ -13816,16 +15020,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "genusshotel-riegersburg.at", true }, { "genuxtsg.com", true }, { "genxnotes.com", true }, - { "geocommunicator.gov", true }, { "geocompass.at", true }, { "geofox.org", true }, + { "geography-schools.com", true }, { "geoip.fedoraproject.org", true }, { "geoip.stg.fedoraproject.org", true }, { "geojs.io", true }, + { "geology-schools.com", true }, { "geometra.roma.it", true }, { "geomex.be", true }, { "geoponika.gr", true }, { "geoport.al", true }, + { "georadar-algerie.com", true }, { "george-brighton.co.uk", true }, { "george-orwell.com", true }, { "georgebrighton.co.uk", true }, @@ -13833,8 +15039,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "georgehalachev.com", true }, { "georgemaschke.com", true }, { "georgemaschke.net", true }, + { "georgepancescu.ro", true }, { "georgescarryout.com", true }, { "georgewbushlibrary.gov", true }, + { "georgiaautoglass.net", true }, { "georgiaglassrepair.com", true }, { "georgiastuartyoga.co.uk", true }, { "georgioskontaxis.com", true }, @@ -13846,30 +15054,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "germancraft.net", true }, { "germandarknes.net", true }, - { "germansoldiers.net", true }, { "germanssky.de", true }, + { "germanticz.de", true }, { "gernert-server.de", true }, { "gero.io", true }, { "gerritcodereview.com", true }, - { "gerum.dynv6.net", true }, { "gerwinvanderkamp.nl", true }, { "ges-bo.de", true }, { "geschichtscheck.de", true }, { "geschmacksache.online", true }, { "geschwinder.net", true }, - { "gestorehotel.com", true }, + { "gesica.cloud", true }, + { "gessettirotti.it", true }, { "gestormensajeria.com", true }, { "gesundheitmassage.com", true }, { "gesundheitswelt24.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 }, @@ -13883,20 +15097,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -13916,23 +15135,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getsecure.nl", true }, { "getsensibill.com", true }, { "getsetbounce.co.uk", true }, - { "getsetupfile.com", true }, { "getsilknow.com", true }, { "getsmartaboutdrugs.gov", true }, { "getsport.mobi", true }, - { "getsubs.net", true }, + { "getswadeshi.com", true }, { "getteamninja.com", true }, { "getthefriendsyouwant.com", true }, { "getticker.com", true }, + { "gettopquality.com", true }, { "getts.ro", true }, { "getupandbounce.co.uk", true }, { "getvdownloader.com", true }, - { "getweloop.io", true }, + { "getwemap.com", true }, { "getwisdom.io", true }, - { "getyou.onl", true }, + { "getyeflask.com", true }, { "getyourlifestraight.com", true }, { "geyduschek.be", true }, { "gf-franken.de", true }, + { "gf5fcalc.com", true }, { "gfahnen.de", true }, { "gfast.ru", true }, { "gfcleisure.co.uk", true }, @@ -13942,29 +15162,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gfestival.fo", true }, { "gfk-kunststoff-luebben.de", true }, { "gflame.de", true }, - { "gflclan.ru", true }, { "gfms.ru", true }, { "gfnetfun.cf", true }, { "gforce.ninja", true }, { "gfoss.eu", true }, { "gfournier.ca", true }, + { "gfwno.win", false }, { "gfxbench.com", true }, { "ggdcpt.com", true }, { "gginin.today", true }, { "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 }, { "ghini.com", true }, { "ghislainphu.fr", true }, { "ghostblog.info", false }, { "ghostcir.com", true }, + { "ghou.me", true }, + { "ghowell.io", true }, { "ghrelinblocker.info", true }, { "ghrelinblocker.org", true }, { "ghuntley.com", false }, @@ -13972,6 +15194,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "giacomodrago.com", true }, { "giacomodrago.it", true }, { "giacomopelagatti.it", true }, + { "giaithich.net", true }, + { "giakki.eu", false }, { "gianproperties.com", true }, { "giant-panda.com", true }, { "giant-tortoise.com", true }, @@ -13983,8 +15207,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gibraltar.at", true }, { "gichigamigames.com", true }, { "gicl.dk", true }, - { "giddyaunt.net", true }, - { "giduv.com", true }, { "giebel.it", true }, { "gierds.de", true }, { "giethoorn.com", true }, @@ -13993,8 +15215,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "giftedconsortium.com", true }, { "giftking.nl", false }, { "giftmaniabrilhos.com.br", true }, + { "gifts.best", true }, { "gifts365.co.uk", true }, - { "giftservices.nl", true }, + { "gifudodo.com", true }, { "gig-raiffeisen.de", true }, { "giga.nl", true }, { "gigabitz.pw", true }, @@ -14008,7 +15231,6 @@ 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 }, @@ -14024,14 +15246,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gillyscastles.co.uk", true }, { "gilmoreid.com.au", true }, { "gilnet.be", true }, + { "gimme.money", true }, { "gina-architektur.design", true }, - { "ginie.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 }, { "ginzadelunch.jp", true }, + { "ginzaj.com", true }, { "giochi-online.ws", true }, { "giochiecodici.it", true }, { "gioielleriamolena.com", true }, @@ -14044,20 +15269,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "girlan.net", true }, { "girlsforum.com", true }, { "girlsgenerationgoods.com", true }, - { "girlsgonesporty.com", true }, + { "girlsnet.work", true }, { "girlz.jp", true }, { "girsa.org", true }, { "girvas.ru", true }, + { "gisch.tk", true }, { "gisgov.be", true }, + { "gisher.news", true }, { "gisher.org", true }, + { "gisher.video", true }, + { "gishiko.net", true }, { "gistr.io", true }, { "git.ac.cn", true }, { "git.market", true }, + { "git.sb", true }, { "git.tt", 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 }, @@ -14086,18 +15318,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gkoenig-innenausbau.de", true }, { "gkralik.eu", true }, { "gl.search.yahoo.com", false }, + { "gla-hyperloop.com", true }, { "glaciernursery.com", true }, { "gladwellentertainments.co.uk", true }, + { "glahcks.com", true }, { "glamguru.co.il", true }, { "glamguru.world", true }, { "glamour4you.de", true }, + { "glamourdaze.com", true }, { "glasdon.com", true }, { "glasen-hardt.de", true }, { "glasfaser-im-hanseviertel.de", true }, { "glasgestaltung.biz", true }, { "glasner.photo", true }, + { "glaspe.com", true }, { "glass.google.com", true }, { "glasschmuck-millefiori.de", true }, + { "glassexpertswa.com", true }, + { "glasweld.com", true }, { "glavsudexpertiza.ru", true }, { "glazedmag.fr", true }, { "glcastlekings.co.uk", true }, @@ -14112,6 +15350,7 @@ 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 }, @@ -14122,29 +15361,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "globalcanineregistry.com", true }, { "globalchokepoints.org", true }, { "globalcomix.com", true }, - { "globalgivingtime.com", true }, { "globalgovernancewatch.org", true }, { "globalhealth.gov", true }, { "globalhorses.de", true }, { "globalipaction.ch", true }, { "globalisierung-fakten.de", true }, { "globalityinvestment.com", true }, - { "globalmoneyapp.com", true }, { "globalonetechnology.com", true }, { "globalprojetores.com.br", true }, { "globalresearchcouncil.org", true }, - { "globalresistancecorporation.com", true }, { "globalventil.com", true }, { "globcoin.io", true }, - { "globeinform.com", true }, { "globelink-group.com", true }, { "glocalworks.jp", true }, { "glofox.com", true }, { "gloneta.com", false }, + { "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 }, @@ -14154,8 +15391,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "glutenfreevr.com", true }, { "glykofridis.nl", true }, { "glyxins.com", true }, + { "gm-net.jp", true }, { "gm.search.yahoo.com", false }, { "gmail.com", false }, + { "gmantra.org", true }, { "gmbh-kiekin.de", true }, { "gmc.uy", true }, { "gmccar.it", true }, @@ -14165,7 +15404,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gmod.de", true }, { "gmpark.dk", true }, { "gmpartsdb.com", true }, + { "gmplab.com", true }, + { "gmslparking.co.uk", true }, { "gmta.nl", true }, + { "gmtplus.co.za", true }, { "gmw-hannover.de", true }, { "gmw-ingenieurbuero.de", true }, { "gmx.at", true }, @@ -14178,18 +15420,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -14203,10 +15448,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goatbot.xyz", true }, { "goatcloud.com", true }, { "gobarrelroll.com", true }, + { "goblintears.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 }, @@ -14224,15 +15470,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "godsofhell.com", true }, { "godsofhell.de", true }, { "goededoelkerstkaarten.nl", true }, + { "goedkopelaptopshardenberg.nl", true }, { "goedkopeonesies.nl", true }, { "goedverzekerd.net", true }, { "goemail.me", true }, { "goerlitz-zgorzelec.org", true }, + { "goerres2014.de", true }, { "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 }, @@ -14248,8 +15497,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goingreen.com.au", true }, { "gokhankesici.com", true }, { "gokmenguresci.com", true }, + { "golang.zone", true }, + { "golangnews.com", true }, { "gold24.ru", true }, + { "goldcoastasian.com", true }, { "goldcoasthypnotherapyhypnosis.com.au", true }, + { "goldcoastphotographycourses.com", true }, { "goldcoaststumpbusters.com", true }, { "goldegg-training.com", false }, { "goldenbadger.de", true }, @@ -14257,10 +15510,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goldenhillsoftware.com", true }, { "goldenhost.ca", true }, { "goldenplate.com.sg", true }, + { "goldenruleemail.com", true }, + { "goldfmromania.ro", true }, { "goldmark.com.au", true }, { "goldpreisfinder.at", true }, { "goldsecurity.com", true }, - { "goldsky.com.au", true }, { "goldstein.tel", true }, { "golf18network.com", true }, { "golf18staging.com", true }, @@ -14273,11 +15527,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "golser.info", true }, { "gomasy.jp", true }, { "gomelchat.com", true }, + { "gomena.io", true }, { "gommista.roma.it", true }, { "gondawa.com", true }, - { "gongjianwei.com", true }, + { "gondelvaartdwarsgracht.nl", true }, { "gongjuhao.com", true }, - { "gonkar.com", true }, { "gonx.dk", true }, { "goo.gl", true }, { "gooby.co", false }, @@ -14285,7 +15539,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gooday.life", true }, { "gooddomainna.me", true }, { "goodenough.nz", false }, - { "goodvibesblog.com", true }, + { "goodhealthtv.com", true }, + { "goodquote.gq", true }, + { "goodshepherdmv.com", true }, { "google", true }, { "google-analytics.com", true }, { "googleandroid.cz", true }, @@ -14294,13 +15550,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "googlesource.com", true }, { "goombi.fr", true }, { "goonersworld.co.uk", true }, + { "goooo.info", true }, { "gootlijsten.nl", true }, + { "goow.in", true }, { "goozp.com", true }, { "gopher.tk", true }, { "goproallaccess.com", true }, { "goquiq.com", true }, - { "gorakukai.jp", true }, { "gordonscouts.com.au", true }, + { "gorealya.com", true }, { "gorf.chat", true }, { "gorf.club", true }, { "gorgias.me", true }, @@ -14312,12 +15570,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gosforthdentalsurgery.co.uk", true }, { "goshawkdb.io", true }, { "goshin-group.co.jp", true }, - { "goshow.tv", 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 }, @@ -14331,7 +15589,6 @@ 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 }, @@ -14350,6 +15607,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "govtjobs.blog", true }, { "govtrack.us", true }, { "govype.com", true }, + { "gowe.wang", false }, { "gowildrodeo.co.uk", true }, { "gowin9.com", true }, { "gowin9.net", true }, @@ -14369,20 +15627,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gpsolarpanels.com", true }, { "gpsvideocanada.com", 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 }, @@ -14396,8 +15655,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grafoteka.pl", true }, { "graft.community", true }, { "graft.observer", true }, + { "grahamcarruthers.co.za", true }, { "grahamcluley.com", true }, - { "grahamofthewheels.com", true }, { "grailians.com", true }, { "grailify.com", true }, { "graingert.co.uk", true }, @@ -14407,21 +15666,21 @@ 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 }, @@ -14435,12 +15694,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grapeintentions.com", 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 }, @@ -14465,13 +15726,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grazieitalian.com", true }, { "grc.com", false }, { "greatagain.gov", true }, - { "greatergoodoffers.com", true }, { "greatestwebsiteonearth.com", true }, { "greatfire.org", 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 }, @@ -14479,18 +15740,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greek.dating", true }, { "green-attitude.be", true }, { "green-care.nl", true }, + { "green-light.cf", true }, { "green-light.co.nz", true }, + { "green-light.ga", true }, + { "green-light.gq", true }, + { "green-light.ml", true }, { "greenaddress.it", true }, { "greenapproach.ca", true }, + { "greenbaysecuritysolutions.com", 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 }, @@ -14498,16 +15765,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "gregmilton.com", true }, - { "gregmilton.org", true }, + { "gregmote.com", true }, + { "grego.pt", true }, { "gregoirow.be", true }, { "gregorians.org", true }, { "gregorkofler.com", true }, @@ -14515,6 +15785,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 }, @@ -14529,8 +15800,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grexx.nl", true }, { "grey.house", true }, { "greybeards.ca", true }, - { "greyhash.se", true }, { "greymattertechs.com", true }, + { "greysky.me", true }, { "greyskymedia.com", true }, { "greysolutions.it", true }, { "greywizard.com", true }, @@ -14548,6 +15819,7 @@ 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 }, @@ -14555,11 +15827,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "groenders.nl", true }, { "groenewoud.me", true }, { "groentebesteld.nl", true }, { "groepjam-usedcars.be", true }, @@ -14575,12 +15850,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "grottenthaler.eu", true }, { "grouchysysadmin.com", true }, + { "groundlevelup.com", true }, { "group4layers.net", true }, { "groupe-neurologique-nord.lu", true }, { "groupebaillargeon.com", true }, @@ -14592,10 +15869,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "gruene-im-rvr.de", true }, { "gruene-wattenscheid.de", true }, @@ -14609,18 +15886,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grupomakben.com", true }, { "grupomedlegal.com", true }, { "grupoparco.com", true }, - { "gruppoipl.it", true }, + { "grupoproabienesraices.com.mx", true }, { "gruselgrotte.com", true }, { "grusenmeyer.be", true }, + { "grusig-geil.ch", true }, { "gruwa.net", true }, - { "grytics.com", true }, { "gs93.de", true }, { "gsaj114.net", true }, { "gscloud.xyz", true }, { "gsi-network.com", true }, { "gsimagebank.co.uk", true }, { "gslink.me", true }, + { "gsmbrick.com", true }, { "gsmsecurity.net", true }, + { "gsoc.se", true }, { "gsrc.io", true }, { "gst.name", true }, { "gst.priv.at", true }, @@ -14641,6 +15920,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gtravers-basketmaker.co.uk", true }, { "gts-dp.de", true }, { "gtts.space", true }, + { "gtxbbs.com", true }, + { "guajars.cl", true }, { "guanyembadalona.org", true }, { "guanzhong.ca", true }, { "guardian360.nl", true }, @@ -14649,11 +15930,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gubagoo.com", true }, { "gubagoo.io", true }, { "gudini.net", true }, - { "gudrun.ml", true }, { "guegan.de", true }, { "guelo.ch", true }, - { "guendra.dedyn.io", true }, { "guenthereder.at", true }, + { "guenthernoack.de", true }, + { "guerard.info", true }, { "guerrilla.technology", true }, { "guesthouse-namaste.com", true }, { "guevener.de", true }, @@ -14678,12 +15959,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guideo.ch", true }, { "guidepointsecurity.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 }, @@ -14693,13 +15972,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gulchuk.com", true }, { "gulenbase.no", true }, { "gulfstream.ru", true }, + { "gulshankumar.net", true }, { "gumballs.com", true }, { "gume4you.com", true }, { "gumi.ca", true }, + { "gunauc.net", true }, { "gunceloyunhileleri.com", true }, { "gunwatch.co.uk", true }, { "gunworld.com.au", true }, - { "guochang.xyz", true }, { "guoke.com", true }, { "guoliang.me", true }, { "guozeyu.com", true }, @@ -14707,7 +15987,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guphi.net", false }, { "gurkan.in", true }, { "gurmel.ru", true }, - { "gurochan.ch", true }, { "gurpusmaximus.com", true }, { "guru-naradi.cz", true }, { "gurucomi.com", true }, @@ -14716,20 +15995,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gus.host", true }, { "gustaff.de", true }, { "gustiaux.com", true }, + { "gustom.io", true }, { "gut8er.com.de", true }, { "gutschein-spezialist.de", true }, { "gutscheingeiz.de", true }, { "gutuia.blue", true }, { "guus-thijssen.nl", true }, { "guusvandewal.nl", true }, - { "guvernalternativa.ro", true }, + { "guyeskens.be", true }, { "gv-neumann.de", true }, + { "gv-salto.nl", true }, { "gvatas.in", true }, { "gveh.de", true }, { "gvi-timing.ch", true }, { "gviedu.com", true }, { "gvitiming.ch", true }, - { "gvm.io", true }, { "gvobgyn.ca", true }, { "gvt2.com", true }, { "gvt3.com", true }, @@ -14743,16 +16023,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gwrtech.com", true }, { "gwsec.co.uk", true }, { "gxmyqy.net", true }, + { "gyara.moe", true }, { "gyas.nl", true }, - { "gycis.me", false }, { "gymagine.ch", true }, { "gymhero.me", true }, + { "gymjp.com", true }, { "gymkirchenfeld.ch", true }, { "gymnaserenens.ch", true }, { "gymnasium-farmsen.de", true }, { "gymnasium-hittfeld.de", true }, { "gympap.de", true }, { "gynaecology.co", true }, + { "gynoguide.com", true }, { "gypsyreel.com", true }, { "gyre.ch", true }, { "gyrenens.ch", true }, @@ -14763,12 +16045,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gz-bmw.com", true }, { "gza.jp", true }, { "gzitech.com", true }, + { "gzitech.net", true }, + { "gzitech.org", true }, { "gzom.ru", true }, { "h-jo.net", true }, { "h-suppo.com", true }, { "h001.ru", true }, { "h09.eu", true }, { "h0r.st", true }, + { "h10l.com", true }, { "h11.io", true }, { "h11.moe", true }, { "h1ctf.com", true }, @@ -14777,7 +16062,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 }, @@ -14797,18 +16083,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haccp.bergamo.it", true }, { "haccp.milano.it", true }, { "haccp.roma.it", true }, + { "hacertest.com", true }, { "hacettepeteknokent.com.tr", true }, { "hachre.de", false }, { "hack.club", true }, { "hackademix.net", true }, { "hackanders.com", true }, - { "hackattack.com", true }, { "hackbarth.guru", true }, { "hackbeil.name", true }, { "hackcraft.net", true }, + { "hackdown.me", true }, { "hackenkunjeleren.nl", true }, { "hackenturet.dk", true }, { "hacker.club", true }, + { "hacker.holiday", true }, { "hacker.im", true }, { "hacker.one", true }, { "hacker.parts", true }, @@ -14825,6 +16113,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hackerone.at", true }, { "hackerone.com", true }, { "hackerone.net", true }, + { "hackerone.org", true }, { "hackerpoints.com", true }, { "hackerschat.net", true }, { "hackerstxt.org", true }, @@ -14840,10 +16129,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hackthissite.org", true }, { "hacktic.info", true }, { "hacktivis.me", true }, - { "hackzogtum-coburg.de", true }, + { "hackworx.com", false }, { "hadaly.fr", true }, { "hadleighswimmingclub.co.uk", true }, { "hadouk.in", true }, + { "hadret.com", true }, + { "hadret.sh", true }, { "hadrons.org", true }, { "haefligermedia.ch", true }, { "haens.li", true }, @@ -14851,26 +16142,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haferman.net", true }, { "haferman.org", true }, { "hafniatimes.com", true }, - { "haggeluring.su", true }, + { "hagiati.gr", true }, { "hagueaustralia.com.au", true }, { "haha-raku.com", true }, { "hahay.es", true }, { "haiboxu.com", true }, + { "haidihai.ro", true }, { "hailer.com", true }, + { "haim.bio", true }, + { "haimablog.ooo", true }, { "hairbeautyartists.it", true }, { "haircrazy.com", true }, { "hairplaybychenellekay.com", false }, { "hairraisingphotobooths.co.uk", true }, { "hairtonic-lab.com", true }, { "haixihui.cn", true }, - { "haizum.pro", true }, + { "hajekdavid.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 }, @@ -14893,6 +16190,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "halongbaybackpackertour.com", true }, { "haloobaloo.com", true }, { "haloria.com", true }, + { "haltegame.com", true }, { "hamacho-kyudo.com", true }, { "hamali.bg", true }, { "hamburgerbesteld.nl", true }, @@ -14913,10 +16211,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, - { "handmadeshoes.pe", true }, + { "handmadehechoamano.com", true }, + { "handy-center.net", true }, { "handyglas.com", true }, { "handymanlondonplease.co.uk", true }, { "handynummer.online", true }, @@ -14924,15 +16224,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "hannoluteijn.nl", true }, + { "hannover.de", true }, { "hanoibuffet.com", true }, + { "hanpenblog.com", true }, + { "hansahome.ddns.net", true }, { "hansbijster.nl", true }, - { "hansch.ventures", true }, { "hanschventures.com", true }, { "hansen-kronshagen.de", true }, { "hansen.hn", true }, @@ -14943,14 +16249,14 @@ 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 }, { "haogoodair.ca", true }, + { "haoqi.men", true }, { "haotown.cn", true }, { "haozhang.org", true }, + { "haozhexie.com", true }, { "haozi.me", true }, { "hapheemraadssingel.nl", true }, { "hapijs.cn", true }, @@ -14962,6 +16268,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "happyagain.de", true }, { "happyagain.se", true }, { "happyandrelaxeddogs.eu", true }, + { "happybirthdaywisher.com", true }, { "happybounce.co.uk", true }, { "happycarb.de", true }, { "happycoder.net", false }, @@ -14980,8 +16287,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "harald-pfeiffer.de", true }, { "harapecorita.com", true }, { "harbor-light.net", true }, - { "hardeman.nu", true }, { "hardenize.com", true }, + { "hardergayporn.com", true }, { "hardertimes.com", true }, { "hardesec.com", true }, { "hardez.de", true }, @@ -14991,14 +16298,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hardloopfysio.nl", true }, { "hardrain980.com", true }, { "hardtfrieden.de", true }, - { "hardtime.ru", true }, - { "harekaze.info", true }, + { "hardwareschotte.de", 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 }, { "harmoney.co.nz", true }, { "harmoney.com", true }, { "harmoney.com.au", true }, @@ -15009,29 +16316,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "harringtonca.com", true }, { "harrisonswebsites.com", true }, { "harrisonvillenaz.org", true }, - { "harry-baker.com", true }, { "harrymclaren.co.uk", true }, { "harryphoto.fr", true }, { "harrysgardengamehire.co.uk", true }, { "harrysmallbones.co.uk", true }, { "harrysqnc.co.uk", true }, - { "hartie95.de", true }, { "hartlep.email", true }, { "hartlieb.me", true }, { "hartzer.com", true }, { "harukakikuchi.com", 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 }, + { "has.work", true }, { "hasdf.de", true }, { "hasecuritysolutions.com", true }, { "haselsteiner.me", true }, { "hash-archive.org", true }, + { "hash.army", true }, { "hash.works", true }, { "hashcat.net", true }, + { "hashemian.com", true }, { "hashes.org", true }, { "hashi.dk", true }, { "hashiconf.eu", true }, @@ -15047,7 +16356,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hasilocke.de", true }, { "haskovec.com", true }, { "hasselbach-dellwig.de", true }, - { "hatcherlawgroupnm.com", true }, + { "hatarisecurity.co.ke", true }, + { "hatpakha.com", true }, { "hatul.info", true }, { "haucke.xyz", true }, { "hauntedfishtank.com", false }, @@ -15057,13 +16367,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -15073,7 +16384,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haveibeenpwned.com", true }, { "havellab.de", true }, { "havelland-obstler.de", true }, - { "haven-moon.com", true }, { "havenstrategies.com", true }, { "haverstack.com", true }, { "havetherelationshipyouwant.com", true }, @@ -15089,38 +16399,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hayashi-rin.net", true }, { "hayden.one", false }, { "haydenjames.io", true }, + { "haydentomas.com", true }, { "hayfordoleary.com", true }, { "haynes-davis.com", true }, - { "hayvid.com", true }, + { "hayvid.com", false }, { "haz.cat", true }, { "haze.productions", true }, { "hazeover.com", true }, { "hazloconlapix.com", true }, { "hazukilab.com", true }, { "hb8522.com", true }, + { "hbcu-colleges.com", true }, { "hbkonsult.com", true }, { "hboeck.de", true }, { "hbpowell.com", true }, { "hcaz.io", true }, { "hcbj.io", true }, - { "hcoe.fi", true }, { "hd-gaming.com", true }, { "hd-offensive.at", false }, { "hd-only.org", true }, { "hd-outillage.com", true }, { "hda.me", true }, { "hdc.cz", true }, + { "hdcamvids.com", true }, { "hdcenter.cc", true }, { "hdeaves.uk", true }, { "hdf.world", true }, { "hdfgroup.org", true }, { "hdguru.com", true }, { "hdhoang.space", true }, + { "hdkandsons.com", true }, { "hdnastudio.com", true }, + { "hdritalyphotos.com", true }, { "hdrsource.com", true }, { "hdrtranscon.com", true }, { "hds-lan.de", true }, - { "hdwallpapers.net", true }, + { "hdv.paris", true }, { "heaaart.com", true }, { "head.org", true }, { "head.ru", true }, @@ -15129,11 +16443,16 @@ 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", true }, { "health-plan-news.com", true }, { "health.gov", true }, { "health.graphics", true }, + { "healthand-beautynews.net", true }, + { "healthandskinbeauty.com", true }, { "healthcare.gov", false }, + { "healthcultureexpo.com", true }, + { "healthdata.gov", true }, { "healtheals.com", true }, { "healtheffectsofasbestos.com", true }, { "healthery.com", true }, @@ -15141,9 +16460,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -15152,7 +16470,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "healthybeterlife.click", true }, { "healthyfitfood.com", true }, { "healthypeople.gov", true }, + { "healthyteame.com", true }, { "heap.zone", true }, + { "heapkeeper.org", true }, { "hearmeraw.uk", true }, { "heart.taxi", true }, { "heartbeat24.de", true }, @@ -15173,25 +16493,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hearty.org.tw", true }, { "hearty.taipei", true }, { "hearty.us", true }, - { "heartyapp.com", 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 }, { "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 }, @@ -15254,9 +16573,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heliosnet.com", true }, { "heliosvoting.org", true }, { "helix.am", true }, + { "hellenicagora.co.uk", true }, { "hellersgas.com", true }, { "helles-koepfchen.de", true }, { "helloacm.com", true }, + { "hellobrian.me", true }, + { "hellomouse.net", true }, { "hellsgamers.pw", true }, { "hellsh.com", true }, { "helmut-a-binser.de", true }, @@ -15267,7 +16589,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "helpscoutdocs.com", true }, { "helpstarloja.com.br", true }, { "helsinki.dating", true }, - { "helup.com", true }, { "helvella.de", true }, { "hematoonkologia.pl", true }, { "hemdal.se", true }, @@ -15275,14 +16596,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hen.ne.ke", true }, { "henchman.io", true }, { "hendersonvalleyautomotive.co.nz", true }, + { "hendric.us", false }, { "hendrik.li", true }, { "hendrinortier.nl", true }, { "hendyisaac.com", true }, { "hengelsportdeal.com", true }, { "hengstumone.com", true }, - { "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 }, @@ -15299,12 +16620,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "her25.com", false }, + { "heracles-hotel.eu", true }, { "herbal-id.com", true }, { "herbandpat.org", true }, { "herberichfamily.com", true }, @@ -15317,6 +16642,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "herdserv.de", true }, { "herebedragons.io", true }, { "herecsrymy.cz", true }, + { "heren.fashion", true }, { "heritagebaptistchurch.com.ph", true }, { "herkam.pl", true }, { "hermanbrouwer.nl", true }, @@ -15337,17 +16663,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "herranzramia.com", false }, { "herrderzeit.de", true }, { "herrenmuehle-wein.de", true }, + { "herringboneeats.com", true }, { "herringsresidence.be", true }, { "herrkaschke.com", true }, { "herrsmith.com", true }, { "herrtxbias.net", false }, - { "herrtxbias.org", true }, { "hertsbouncycastles.com", true }, { "hertz.bj", true }, { "herzbotschaft.de", true }, { "herzfuersoziales.at", true }, { "herzig.cc", true }, - { "hesa.com", true }, + { "herzogglass.com", true }, { "hesaplama.net", true }, { "hessen-liebe.de", true }, { "hestervanderheijden.nl", true }, @@ -15358,7 +16684,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hesyifei.com", true }, { "hetene.nl", true }, { "hethely.ch", true }, - { "hetmer.cz", true }, + { "hetluisterbos.be", true }, { "heute-kaufen.de", true }, { "heute.training", true }, { "heverhagen.rocks", true }, @@ -15370,6 +16696,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hexclock.io", true }, { "hexcode.in", true }, { "hexed.it", true }, + { "hexiaohu.cn", true }, { "hexicurity.com", true }, { "hexid.me", true }, { "hexieshe.com", true }, @@ -15380,19 +16707,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "hhgdo.de", true }, { "hhhdb.com", true }, { "hhidr.org", true }, @@ -15404,6 +16729,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 }, @@ -15425,15 +16751,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "highlevelwoodlands.com", true }, { "highlightsfootball.com", true }, { "highlnk.com", true }, - { "highperformancehvac.com", true }, { "highspeed-arnsberg.de", true }, { "highspeedinternet.my", true }, { "highspeedinternetservices.ca", true }, { "hightechbasementsystems.com", true }, { "highwaytohoell.de", true }, { "higilopocht.li", true }, + { "hijackpost.com", true }, { "hikarukujo.com", true }, { "hike.pics", true }, + { "hikerone.com", true }, { "hikingguy.com", true }, { "hilahdih.cz", true }, { "hilaolu.studio", true }, @@ -15456,10 +16783,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "himekomi.com", true }, { "himens.com", true }, { "hin10.com", true }, + { "hinata-hidetoshi.com", true }, { "hintergrundbewegung.de", true }, { "hinterhofbu.de", true }, { "hinterposemuckel.de", true }, - { "hipi.jp", true }, + { "hiparish.org", true }, + { "hiphop.ren", true }, { "hippies.com.br", true }, { "hippo.ge", true }, { "hippomovers.com", true }, @@ -15468,49 +16797,49 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "hitandhealth.nl", true }, { "hiteco.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 }, @@ -15518,18 +16847,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hizzacked.xxx", true }, { "hj-mosaiques.be", true }, { "hj.rs", true }, + { "hj3455.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 }, { "hk.search.yahoo.com", false }, + { "hkbsurgery.com", true }, { "hkdobrev.com", true }, + { "hkr.at", true }, { "hks.pw", true }, + { "hktkl.com", true }, { "hkustmbajp.com", true }, { "hl7999.com", true }, { "hl8999.com", true }, @@ -15539,7 +16870,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hledejpravnika.cz", true }, { "hlfh.space", true }, { "hlidacnajemneho.cz", true }, + { "hlin.cloud", true }, { "hlinformatics.nl", true }, + { "hloe0xff.ru", true }, { "hlsmandarincentre.com", true }, { "hlucas.de", true }, { "hm773.net", true }, @@ -15550,6 +16883,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hmsseahawk.com", true }, { "hn.search.yahoo.com", false }, { "hnfertilizermachine.com", true }, + { "hnn.net.br", true }, { "hnonline.sk", true }, { "hnwebi.com", true }, { "hnyp.hu", true }, @@ -15558,14 +16892,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoarding.me", true }, { "hobby-drechselei.de", true }, { "hobbyspeed.com", true }, - { "hocassian.cn", 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 }, @@ -15573,8 +16906,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoe.re", true }, { "hoeft-autolackierung.de", true }, { "hoekvanholland.eu", true }, + { "hoepli.it", true }, { "hoeren.club", true }, { "hoesnelwasik.nl", true }, + { "hoeveiligismijn.nl", true }, { "hoevenstein.nl", true }, { "hoewler.ch", true }, { "hoezzi.nl", true }, @@ -15582,11 +16917,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hofapp.de", true }, { "hofauer.de", true }, { "hoflerlawfirm.com", true }, + { "hogepad.com", true }, { "hogl.dk", true }, { "hogrebe.de", true }, { "hogwarts.io", true }, + { "hohenleimbach.de", true }, { "hohm.in", true }, { "hoiquanadida.com", true }, + { "hoish.in", true }, { "hoken-wakaru.jp", true }, { "hokieprivacy.org", true }, { "hokify.at", true }, @@ -15614,11 +16952,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "holoxplor.space", true }, { "holstphoto.com", true }, { "holvonix.com", true }, - { "holy-hi.com", true }, + { "holycrossphl.org", true }, { "holydragoon.jp", true }, { "holygrail.games", true }, { "holyhiphopdatabase.com", true }, - { "holymolycasinos.com", true }, + { "holymartyrschurch.org", true }, + { "holytransaction.com", true }, { "holywhite.com", true }, { "holz.nu", true }, { "holzheizer-forum.de", true }, @@ -15629,29 +16968,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "holzundgarten.de", true }, { "holzvergaser-forum.de", true }, { "homatism.com", true }, - { "home-work-jobs.com", true }, + { "home-handymen.co.uk", true }, + { "home-insurance-quotes.tk", true }, { "homeautomated.com", true }, { "homebasedsalons.com.au", true }, { "homebodyalberta.com", true }, { "homecareassociatespa.com", true }, { "homecarpetcleaning.co.uk", true }, { "homecheck.gr", true }, - { "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 }, { "homeseller.com", true }, { "homeserver-kp.de", true }, + { "homesteadandprepper.com", true }, { "homesteadfarm.org", true }, + { "homewatt.co.uk", true }, { "homeyou.com", true }, { "hommeatoutfaire.be", true }, { "homophoni.com", true }, @@ -15661,13 +17006,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -15675,28 +17021,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoodtrader.com", true }, { "hoofddorp-centraal.nl", true }, { "hookany.com", true }, + { "hoooc.com", true }, { "hooowl.com", true }, { "hoop.la", true }, { "hoopertechnicalsolutions.com", true }, { "hooplessinseattle.com", true }, + { "hooray.beer", true }, { "hoorr.com", true }, { "hootworld.net", false }, + { "hoovism.com", true }, { "hoowhen.cn", true }, { "hopconseils.ch", true }, { "hopconseils.com", true }, { "hope-line-earth.jp", true }, + { "hopesanddreams.org.uk", true }, { "hopla.sg", true }, { "hoplongtech.com", true }, { "hoponmedia.de", true }, { "hopps.me", true }, { "hoppyx.com", true }, - { "hopzone.net", true }, { "hor.website", true }, { "horaceli.com", true }, { "horackova.info", true }, { "hord.ca", true }, { "horecaapparatuurkobezuijen.nl", true }, { "horecatiger.eu", true }, + { "horeco.com", true }, { "horeizai.net", true }, { "horizonhomes-samui.com", true }, { "horizonlawncare.tk", true }, @@ -15707,9 +17057,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -15719,6 +17071,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hosiet.me", true }, { "hosmussynergie.nl", false }, { "hospitalhomelottery.org", true }, + { "hospitality-colleges.com", true }, { "hostadvice.com", true }, { "hostarea51.com", true }, { "hostcoz.com", true }, @@ -15727,6 +17080,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostedtalkgadget.google.com", true }, { "hostfission.com", true }, { "hostgigz.com", true }, + { "hostico.ro", true }, + { "hostinecpodlipou.cz", true }, { "hosting-swiss.ch", true }, { "hostingactive.it", true }, { "hostinghelp.guru", true }, @@ -15737,25 +17092,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostingsolutions.cz", true }, { "hostix.de", true }, { "hostma.ma", true }, + { "hostmark.pl", true }, { "hostme.co.il", false }, { "hostmijnpagina.nl", true }, { "hostmodern.com.au", true }, { "hosts.cf", true }, { "hostserv.org", true }, { "hostworkz.com", true }, - { "hosyaku.gr.jp", true }, { "hotcandlestick.com", true }, { "hotchillibox.com", true }, + { "hotcoin.io", true }, + { "hotdoc.com.au", 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 }, { "hotelcoliber.pl", true }, { "hotelflow.com.br", true }, { "hotelident.de", true }, { "hotello.io", true }, { "hotelmap.com", true }, + { "hotelpostaorvieto.it", true }, { "hotels-insolites.com", true }, + { "hotels3d.com", true }, { "hotels4teams.com", true }, { "hotelsinbuxton.com", true }, { "hotelsinformer.com", true }, @@ -15765,7 +17126,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hotesb.com", true }, { "hotesb.net", true }, { "hothbricks.com", true }, - { "hotjuice.com", true }, { "hotnewhiphop.com", true }, { "hoto.us", true }, { "hoton.in", true }, @@ -15784,45 +17144,52 @@ static const nsSTSPreload kSTSPreloadList[] = { { "housekeeperlondon.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 }, { "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 }, + { "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 }, + { "hpepub.com", true }, { "hpisavageforum.com", true }, { "hpkp-faq.de", true }, { "hpnow.com.br", true }, { "hps.hu", true }, - { "hqq.tv", true }, { "hquest.pro.br", true }, { "hqwebhosting.tk", false }, + { "hqy.moe", true }, { "hr-tech.shop", true }, { "hr98.xyz", true }, { "hrabogados.com", true }, @@ -15835,24 +17202,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hreflang.info", true }, { "hrjfeedstock.com", true }, { "hrjfeedstock.org", true }, - { "hrobert.hu", true }, + { "hrk.io", 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 }, + { "hsex.tv", true }, { "hsivonen.com", true }, { "hsivonen.fi", true }, { "hsivonen.iki.fi", true }, { "hsmr.cc", true }, { "hsn.com", true }, { "hsr.gov", false }, + { "hsts.eu", true }, { "hsts.me", true }, { "hstsfail.appspot.com", true }, { "hstspreload.appspot.com", true }, @@ -15864,6 +17234,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "htaccessbook.com", true }, { "htaps.com", true }, { "hte.ovh", true }, + { "hti.digital", true }, { "html.moe", true }, { "html5.org", true }, { "html5media.info", true }, @@ -15872,13 +17243,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "htmlyse.com", true }, { "htmue.net", true }, { "htmue.org", true }, + { "htp2.top", true }, { "htsure.ma", true }, { "http2.eu", true }, { "http2.pro", true }, + { "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 }, @@ -15902,17 +17275,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "huagati.com", true }, { "huahinpropertylisting.com", true }, { "huang-haitao.com", true }, + { "huangjiaint.com", true }, { "huangjingjing.com", true }, { "huangliangbo.com", true }, - { "huangting.me", true }, { "huangzenghao.cn", false }, + { "huaqian.art", true }, { "huashan.co.uk", true }, { "huaxueba.com", true }, { "hub.org.ua", true }, { "hub385.com", true }, + { "hubapi.com", true }, + { "huber-informatik.de", true }, { "hubok.net", true }, - { "hubrecht.at", true }, - { "hubrick.com", true }, + { "hubspot.com", true }, { "huchet.me", true }, { "hudebnibazarmixer.cz", true }, { "hudrydum.cz", true }, @@ -15920,19 +17295,26 @@ 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 }, + { "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 }, @@ -15947,14 +17329,14 @@ 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 }, - { "humanexperiments.com", true }, { "humanity.com", true }, + { "humankode.com", true }, { "humans.io", true }, { "humanzee.com", true }, + { "humass.nl", true }, { "humblebee.at", true }, { "humblebee.be", true }, { "humblebee.bg", true }, @@ -15965,7 +17347,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 }, @@ -15982,9 +17363,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "humblebeeshop.com.au", true }, { "humbledot.com", true }, { "humboldtmfg.com", true }, + { "humeur.de", true }, + { "humexe.com", true }, { "hummy.tv", true }, { "humorcaliente.com", true }, - { "humorce.com", true }, + { "humorce.com", false }, { "humpchies.com", true }, { "humpen.se", true }, { "humppakone.com", true }, @@ -15993,29 +17376,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hundesport-psvhalle.de", true }, { "hundeverwaltung.de", true }, { "hundter.com", true }, - { "hunqz.com", true }, - { "hunstoncanoeclub.co.uk", true }, + { "hunger.im", true }, + { "huniverse.co", true }, + { "hunter-read.com", true }, { "hunter.io", true }, + { "hunterjohnson.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 }, @@ -16023,7 +17409,9 @@ 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 }, @@ -16035,12 +17423,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hwaddress.com", true }, { "hwag-pb.de", true }, { "hwinfo.com", true }, + { "hwlibre.com", true }, { "hx53.de", true }, { "hxp.io", true }, { "hxsf.me", true }, { "hxying.com", true }, - { "hybridiyhdistys.fi", true }, - { "hybridklubben.fi", true }, { "hybridworx.com", true }, { "hybridworx.de", true }, { "hybridworx.eu", true }, @@ -16050,22 +17437,19 @@ 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 }, { "hydroagro.pl", true }, - { "hydrocloud.net", true }, { "hydrographicsocietybenelux.eu", true }, { "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 }, { "hype.ru", true }, { "hypemgmt.com", true }, { "hyper-text.org", true }, @@ -16075,6 +17459,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hyperion.io", true }, { "hyperreal.biz", true }, { "hypersomnia.com", true }, + { "hyperstack.org", true }, { "hyperthymia.com", true }, { "hyphen.co.za", true }, { "hyphenpda.co.za", true }, @@ -16083,12 +17468,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hypotheekbond.nl", true }, { "hypothes.is", true }, { "hypothyroidmom.com", true }, + { "hysh.jp", true }, + { "hytzongxuan.com", true }, { "hyundai.no", true }, + { "hyvanilmankampaamo.fi", true }, { "hyvinvointineuvoja.fi", true }, + { "hztgzz.com", true }, + { "i-aloks.ru", true }, { "i-geld.de", true }, { "i-hakul.net", true }, { "i-logic.co.jp", false }, - { "i-meto.com", true }, { "i-office.com.vn", true }, { "i-proswiss.com", true }, { "i-red.info", true }, @@ -16100,45 +17489,52 @@ static const nsSTSPreload kSTSPreloadList[] = { { "i00.eu", true }, { "i1314.gdn", true }, { "i1place.com", true }, - { "i28s.com", true }, { "i2b.ro", true }, { "i5y.co.uk", true }, { "i5y.org", true }, { "i66.me", true }, { "i879.com", true }, + { "i95.me", false }, { "ia.net", true }, - { "ia1000.com", true }, { "iaco.li", true }, { "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 }, { "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 }, + { "iamlzh.com", true }, { "iamtheib.me", true }, { "iamtonyarthur.com", true }, { "iamusingtheinter.net", true }, { "iamwoodbeard.com", true }, - { "ian.sh", true }, + { "ianbrault.com", true }, { "iandouglasscott.com", true }, { "iane-ccs.com", true }, { "ianix.com", true }, { "ianjmoriarty.com", true }, + { "ianklug.com", true }, { "iankmusic.com", true }, { "ianmooreis.me", true }, { "ianmoriarty.com.au", true }, - { "ianwalsh.org", true }, + { "ianvisits.co.uk", true }, + { "ianwalsh.org", false }, { "iap.network", true }, { "ias-gruppe.net", true }, + { "iassess.eu", true }, { "iatfei.com", true }, { "iavian.com", true }, { "iba.community", true }, @@ -16146,49 +17542,56 @@ 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 }, { "ibrainmedicine.org", true }, { "ibrom.eu", true }, + { "ibstyle.tk", true }, + { "ibuki.run", true }, { "ibwc.gov", true }, + { "ibykos.com", true }, { "ic-lighting.com.au", true }, + { "ic-spares.com", true }, { "ic3.gov", true }, { "icafecash.com", true }, { "icake.life", true }, { "icanhasht.ml", true }, { "icarlos.net", true }, + { "icasture.top", true }, { "icbemp.gov", true }, + { "iccpublisher.com", true }, { "ice.xyz", true }, { "iceberg.academy", true }, { "icebook.co.uk", true }, { "icecars.net", 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.org", true }, - { "ico500.com", 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 }, @@ -16198,7 +17601,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ict-radar.com", true }, { "ict-radar.nl", true }, { "ictcareer.ch", true }, - { "ictinforensics.org", true }, { "ictl.eu", true }, { "ictradar.com", true }, { "icyapril.com", true }, @@ -16212,58 +17614,72 @@ static const nsSTSPreload kSTSPreloadList[] = { { "id0-rsa.pub", true }, { "id7.fr", true }, { "idaeus.eu", true }, - { "idafauziyah.com", true }, { "idahoansforliberty.net", true }, { "idarv.com", true }, { "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", true }, { "idealtruss.com", true }, { "idealtruss.com.tw", true }, { "idealwhite.space", true }, { "ideaman924.com", true }, + { "ideasenfoto.com", true }, { "ideashop.com", true }, { "ideaweb.de", true }, + { "ideiasefinancas.com.br", true }, + { "idenamaislami.com", true }, { "idensys.nl", false }, { "ident-clinic.be", true }, + { "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 }, + { "idolknow.com", true }, { "idolshop.dk", true }, { "idolshop.me", true }, { "idontplaydarts.com", 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 }, { "idrycleaningi.com", true }, + { "idtheft.gov", true }, { "idubaj.cz", true }, { "idunno.org", true }, { "idvl.de", true }, { "ie.search.yahoo.com", false }, { "iea-annex61.org", true }, { "ieedes.com", true }, + { "ieeedeis.org", true }, { "ieeesb.nl", true }, { "ieeesbe.nl", true }, { "ieeespmb.org", true }, @@ -16272,13 +17688,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iemb.tk", true }, { "ienakanote.com", false }, { "ies-italia.it", true }, - { "ietsdoenofferte.nl", 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 }, @@ -16288,6 +17703,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ifightsurveillance.org", true }, { "ifixe.ch", true }, { "iflare.de", true }, + { "ifly.pw", true }, { "ifort.fr", true }, { "ifosep.fr", true }, { "ifoss.me", true }, @@ -16297,8 +17713,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iftarsaati.org", true }, { "iftrue.de", true }, { "ifttl.com", false }, + { "ifxd.bid", true }, { "ifyou.live", true }, { "ig.com", true }, + { "iga-semi.jp", true }, { "igaryhe.io", true }, { "igcc.jp", true }, { "igeh-immo.at", true }, @@ -16313,38 +17731,54 @@ 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 }, { "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 }, + { "ihakkitekin.com", true }, { "ihatethissh.it", true }, { "ihc.im", true }, + { "ihcr.top", true }, { "ihkk.net", true }, + { "ihls.stream", true }, + { "ihls.world", true }, + { "ihoey.com", true }, { "ihollaback.org", true }, { "ihopeit.works", true }, { "ihostup.net", true }, + { "ihotel.io", false }, { "ihrhost.com", true }, - { "ii74.com", true }, + { "ihtdenisjaccard.com", true }, { "iiit.pl", true }, + { "iiong.com", false }, { "iirii.com", true }, { "iix.se", true }, { "ijm.io", true }, { "ijohan.nl", true }, + { "ijr.com", true }, { "ijsblokjesvormen.nl", true }, { "ijsclubtilburg.nl", true }, + { "ijsclubwanneperveen.nl", true }, { "ijunohana.jp", true }, + { "ik-life.com", true }, { "ikachalife.com", true }, { "ikarate.ru", true }, + { "ikarr.com", true }, { "ikeacareers.co.uk", true }, + { "ikebuku.ro", true }, + { "ikebukuro-shame.com", true }, + { "ikedaquotes.org", true }, { "ikespta.com", true }, { "ikeyless.com", true }, { "ikigaiweb.com", true }, @@ -16356,9 +17790,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ikkev.de", true }, { "ikkoku.de", true }, { "iklive.org", false }, + { "ikraenglish.com", true }, { "ikulist.me", true }, + { "ikumi.us", true }, + { "ikuuuu.com", true }, { "ikvts.de", true }, { "ikwilthepiratebay.org", true }, + { "ikxkx.com", true }, { "ila.fi", true }, { "ilamparas.at", true }, { "ilamparas.co.uk", true }, @@ -16372,8 +17810,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ile-sapporo.jp", true }, { "ileci.de", true }, { "ilektronika-farmakeia-online.gr", true }, - { "ilemonrain.com", false }, { "ilhan.name", true }, + { "ilhansubasi.com", true }, { "iliastsi.net", true }, { "iligang.cn", true }, { "iligang.com", true }, @@ -16398,23 +17836,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ilmiobusinessonline.it", true }, { "ilmiogiardiniere.it", true }, { "ilmuk.org", false }, + { "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 }, { "ilweb.es", true }, { "ilya.pp.ua", true }, { "im-c-shop.com", true }, + { "im-haus-sonnenschein.de", true }, { "im2net.com", 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 }, @@ -16429,6 +17867,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imanageproducts.co.uk", true }, { "imanageproducts.uk", true }, { "imanesdeviaje.com", true }, + { "imanolbarba.net", true }, + { "imaple.org", true }, { "imarkethost.co.uk", true }, { "imask.ml", true }, { "imawhale.com", true }, @@ -16448,9 +17888,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -16459,16 +17901,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imkerei-freilinger.de", false }, { "imkerverein-moenchswald.de", true }, { "imlinan.com", true }, - { "imlonghao.com", true }, { "immaterium.de", true }, - { "immaternity.com", true }, { "immatix.xyz", true }, { "immersion-pictures.com", true }, { "immersivewebportal.com", true }, + { "immigrationdirect.com.au", true }, { "immo-agentur.com", true }, { "immo-passion.net", true }, - { "immo-vk.de", true }, - { "immobiliarecapitani.com", true }, { "immobilien-badlippspringe.de", true }, { "immobilien-in-istanbul.de", true }, { "immobilien-zirm.de", true }, @@ -16478,7 +17917,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "immortal.run", true }, { "imobile3.com", true }, { "imokuri123.com", true }, - { "imoner.com", true }, { "imouto.my", false }, { "imouyang.com", true }, { "impact.health.nz", true }, @@ -16488,14 +17926,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "impakho.com", true }, { "impas.se", true }, { "impelup.com", true }, + { "impendulo.org", true }, { "imperdin.com", true }, { "imperial-legrand.com", true }, { "imperialmiami.com", true }, + { "imperiodigital.online", true }, { "imperiumglass.com.au", true }, { "imperiumnova.info", true }, { "impex.com.bd", true }, { "impiantistica.org", true }, { "implantologie-dr-loeck.de", true }, + { "implicitdenial.com", true }, { "imponet.com.ar", true }, { "import-shopping.de", true }, { "importsagt.com", true }, @@ -16504,12 +17945,13 @@ 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 }, @@ -16520,9 +17962,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imrunner.ru", true }, { "ims-sargans.ch", true }, { "imscompany.com", true }, - { "imwnk.cn", false }, + { "imwalking.de", true }, + { "imwnk.cn", true }, { "imydl.com", true }, { "imydl.tech", true }, + { "imyjy.cn", true }, + { "imyrs.cn", true }, { "imyunya.com", true }, { "imyvm.com", true }, { "imyz.tw", true }, @@ -16541,10 +17986,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inbox.google.com", true }, { "inbulgaria.info", true }, { "incarna.co", 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 }, @@ -16556,6 +18003,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "incowrimo.org", true }, { "incparadise.net", true }, { "incubos.org", true }, + { "incy.io", true }, { "ind.ie", true }, { "indarceky.sk", false }, { "indecipherable.info", true }, @@ -16563,20 +18011,20 @@ 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 }, + { "indianapolislocksmithinc.com", true }, + { "indiatrademarkwatch.com", true }, { "indiayogastudio.net", true }, { "indicateurs-flash.fr", 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 }, { "inditip.com", true }, { "indochina.io", true }, { "indogerman.de", true }, @@ -16584,13 +18032,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "industriemeister.io", true }, { "indybay.org", true }, { "ineardisplay.com", true }, { "inebula.it", true }, @@ -16599,20 +18048,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inesfinc.es", true }, { "inesta.nl", true }, { "inet.se", true }, - { "inetpub.cn", true }, { "inetserver.eu", true }, { "inetsoftware.de", true }, { "inevitavelbrasil.com.br", true }, { "inf-fusion.ca", true }, + { "inference.biz.tr", true }, { "infermiere.roma.it", 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 }, @@ -16621,62 +18072,85 @@ 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 }, { "infocity-tech.fr", true }, { "infocommsociety.com", true }, { "infocon.org", true }, { "infocusvr.net", true }, + { "infogram.com", true }, { "infogrfx.com", true }, { "infomegastore.com", true }, + { "infomir.eu", true }, { "infomisto.com", true }, + { "infopagina.es", true }, { "infopier.sg", true }, { "infopulsa.com", true }, + { "infopuntzorg.nl", true }, { "infor-allaitement.be", true }, { "informaciondeciclismo.com", true }, { "informatiebeveiliging.nl", true }, { "informatik-handwerk.de", true }, { "informationrx.org", true }, + { "informhealth.com", true }, { "informnapalm.org", true }, { "infosec-handbook.eu", true }, - { "infosec.exchange", true }, + { "infosec.exchange", false }, { "infosec.pizza", true }, { "infosec.wiki", true }, { "infosenior.ch", true }, - { "infosimmo.com", true }, { "infotainworld.com", true }, { "infotolium.com", true }, + { "infotrac.net", true }, { "infotune.nl", true }, { "infovision-france.com", true }, { "infoweb.ee", true }, + { "infr.red", true }, { "infra.land", true }, { "infra.press", true }, + { "infrabeep.com", true }, + { "infraclass.com", true }, + { "infradrop.com", true }, { "infrafire.com", true }, { "infraflip.com", true }, { "infraflux.com", true }, { "infrafusion.com", true }, + { "infralist.com", true }, + { "inframetro.com", true }, { "infranium.com", true }, { "infranium.eu", true }, { "infranium.info", true }, { "infranium.net", true }, { "infranium.org", true }, { "infranotes.com", true }, + { "infranox.com", true }, + { "infrapass.com", true }, + { "infrapilot.com", true }, + { "infraping.com", true }, { "infrapirtis.lt", true }, { "infrarank.com", true }, { "infrarank.net", true }, + { "infraspin.com", true }, + { "infratank.com", true }, + { "infrathink.com", true }, + { "infravideo.com", true }, + { "infrazine.com", true }, + { "infuzeit.com.au", true }, { "ing-buero-junk.de", true }, { "ing89.cc", true }, { "ing89.com", true }, { "ingatlanjogaszok.hu", true }, { "ingatlanneked.hu", true }, + { "ingatlanrobot.hu", true }, { "ingber.com", true }, { "inge-r.nl", true }, { "ingeeibach.de", true }, @@ -16685,6 +18159,7 @@ 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 }, { "ingoschlueter.de", true }, @@ -16692,15 +18167,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inhaltsangabe.de", true }, { "inheritestate.com", true }, { "inhouseents.co.uk", true }, + { "iniiter.com", true }, { "inima.org", true }, { "inios.fr", true }, { "inishbofin.ie", true }, { "initq.net", true }, + { "initramfs.io", true }, { "initrd.net", true }, { "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 }, @@ -16712,13 +18189,14 @@ 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 }, + { "innerlightcrystals.co.uk", true }, { "innermostparts.org", true }, { "innersafe.com", true }, + { "innocenceseekers.net", true }, { "innohb.com", true }, { "innolabfribourg.ch", true }, { "innoloop.com", true }, @@ -16730,14 +18208,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "innovate-indonesia.com", true }, { "innovation-workshop.ro", true }, { "innovation.gov", false }, - { "innoventure.de", true }, - { "innovum.cz", 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 }, { "inquant.de", true }, @@ -16746,6 +18222,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ins1gn1a.com", true }, { "insblauehinein.nl", true }, { "inscomers.net", true }, + { "inscripcionessena.com", true }, { "insecure.org.je", true }, { "insertcoins.net", true }, { "insgesamt.net", true }, @@ -16753,12 +18230,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "insho.fashion", true }, { "inside19.com", true }, { "insideaudit.com", true }, + { "insidebedroom.com", 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 }, { "insolent.ch", true }, @@ -16778,9 +18257,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "instant-thinking.de", true }, { "instant.io", true }, { "instantkhabar.com", true }, - { "instantsubs.de", true }, { "instava.cz", true }, - { "instawi.com", true }, + { "instead.com.au", true }, + { "insteagle.com", true }, { "instela.com", true }, { "instelikes.com.br", true }, { "instics.com", true }, @@ -16788,26 +18267,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "instinctiveads.com", true }, { "institut-confucius-montpellier.org", true }, { "institutmaupertuis.hopto.org", true }, - { "institutolancaster.com", false }, + { "institutolancaster.com", true }, { "instrumart.ru", false }, { "insult.es", true }, { "insurance321.com", true }, { "insureon.com", true }, - { "insurethebox.tk", true }, { "insurgentsmustdie.com", true }, - { "int-ma.in", 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 }, + { "integrityokc.com", true }, { "integrityoklahoma.com", true }, { "integrogroup.com", true }, { "integromat.com", true }, @@ -16832,7 +18310,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "interaktiva.fi", true }, { "interasistmen.se", true }, { "interchangedesign.com", true }, - { "interchanges.io", true }, { "intercom.com", true }, { "intercom.io", true }, { "interessiert-uns.net", true }, @@ -16843,44 +18320,47 @@ static const nsSTSPreload kSTSPreloadList[] = { { "intergozd.si", 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 }, { "interlingvo.biz", true }, { "intermax.nl", true }, { "intermedinet.nl", true }, - { "internacao.com", 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 }, { "internect.co.za", true }, + { "internet-aukcion.info", true }, { "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 }, { "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 }, { "intheater.de", true }, { "inthepicture.com", true }, @@ -16901,13 +18381,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "intraobes.com", true }, { "intrasoft.com.au", true }, { "intraxia.com", true }, + { "intreaba.xyz", true }, + { "introverted.ninja", 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 }, @@ -16923,20 +18407,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "invinoaustria.com", 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 }, + { "invitation-factory.tk", true }, { "invitescene.com", true }, { "invitethemhome.com", true }, { "invkao.com", true }, @@ -16947,6 +18432,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inwestcorp.se", true }, { "inzdr.com", true }, { "inzelabs.com", true }, + { "inzestfreunde.de", true }, + { "ioactive.com", true }, { "iobint.com", true }, { "iocheck.com", false }, { "iochen.com", true }, @@ -16960,17 +18447,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iompost.com", true }, { "iomstamps.com", true }, { "ionlabs.kr", true }, - { "ionote.me", true }, { "ionovia.de", true }, { "ionx.co.uk", true }, { "ioover.net", true }, { "iosartstudios.gr", true }, { "iosjailbreakiphone.com", true }, { "ioslo.net", true }, + { "iosmods.com", true }, { "iosnoops.com", true }, { "iossifovlab.com", true }, { "iostream.by", true }, - { "iotfen.com", true }, { "iowaschoolofbeauty.com", true }, { "ip-blacklist.net", true }, { "ip-hahn.de", true }, @@ -16978,7 +18464,7 @@ 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 }, @@ -16990,6 +18476,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ipcareers.net", true }, { "ipconsulting.se", true }, { "ipemcomodoro.com.ar", true }, + { "ipfire.org", true }, { "ipfirebox.de", true }, { "ipfs.ink", true }, { "ipfs.io", true }, @@ -16997,6 +18484,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iphoneportfolioapp.com", true }, { "iphoneunlock.nu", true }, { "iphonote.com", true }, + { "ipid.me", true }, { "ipintel.io", true }, { "iplabs.de", true }, { "iplantom.com", true }, @@ -17007,18 +18495,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ipo-times.jp", true }, { "ipokabu.net", true }, { "ipomue.com", false }, + { "ipop.gr", true }, + { "iposm.net", true }, + { "ipplans.com", true }, { "ipresent.com", true }, { "iprim.ru", true }, { "iproducemusic.com", true }, - { "iprody.com", true }, { "ipsec.pl", true }, { "ipssl.li", true }, + { "ipstoragesolutions.com", true }, { "ipstream.it", true }, { "ipswitch.com.tw", true }, { "iptvzoom.xyz", true }, { "ipty.de", true }, { "ipura.ch", true }, { "ipv4.cf", true }, + { "ipv4.co.il", true }, { "ipv4.gr", true }, { "ipv6-adresse.dk", true }, { "ipv6-handbuch.de", true }, @@ -17039,7 +18531,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "irayo.net", true }, { "irc-results.com", true }, { "ircmett.de", true }, - { "iready.ro", true }, + { "irdvb.com", true }, { "ireef.tv", true }, { "iren.ch", true }, { "irenekauer.com", true }, @@ -17051,7 +18543,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iridiumflare.de", true }, { "iriomote.com", true }, { "iris-design.info", true }, - { "iris-insa.com", false }, + { "iris-insa.com", true }, { "irish.dating", true }, { "irisjieun.com", true }, { "irland-firma.com", true }, @@ -17061,16 +18553,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iroise.ch", true }, { "ironbelly.pro", true }, { "ironcarnival.com", true }, - { "irondaleirregulars.com", true }, { "ironfistdesign.com", true }, { "ironhide.de", true }, { "ironpeak.be", true }, + { "irrewilse.se", true }, { "irritant.net", true }, { "iruarts.ch", true }, { "iruca.co", true }, { "is-going-to-rickroll.me", true }, { "is-sw.net", true }, { "isaacdgoodman.com", true }, + { "isaackabel.ga", true }, + { "isaackabel.gq", true }, + { "isaackabel.ml", true }, + { "isaackabel.tk", true }, { "isaackhor.com", true }, { "isaacman.tech", true }, { "isaacmorneau.com", true }, @@ -17087,15 +18583,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "isara.com", true }, { "isarklinikum.de", true }, { "isastylish.com", true }, + { "isavings.com", true }, { "isayoga.de", true }, { "isbc-telecom.ru", true }, { "isbengrumpy.com", true }, { "iscert.org", true }, + { "isdecolaop.nl", true }, { "isdn.jp", true }, { "isecrets.se", true }, { "iservicio.mx", true }, + { "iseulde.com", true }, { "isfff.com", true }, - { "isfriday.com", true }, { "isgp-studies.com", true }, { "ishamf.com", true }, { "ishangirdhar.com", true }, @@ -17105,29 +18603,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "isil.fi", true }, { "isimonbrown.co.uk", true }, { "isincheck.com", true }, - { "isinolsun.com", false }, + { "isinolsun.com", true }, { "isistomie.com", true }, { "isitchristmas.com", true }, { "isitcoffeetime.com", true }, { "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 }, + { "islykaithecutest.cf", true }, + { "islykaithecutest.ml", true }, + { "ismailkarsli.com", true }, { "ismat.com", true }, { "ismena.bg", true }, { "ismetroonfiretoday.com", true }, { "ismywebsitepenalized.com", true }, { "isn.cz", true }, - { "isntall.us", true }, + { "iso27032.com", true }, + { "isocom.eu", true }, { "isognattori.com", true }, { "isolta.com", true }, { "isolta.de", true }, @@ -17144,15 +18647,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ispitrade.com", true }, { "ispo.com.tw", true }, { "ispsoft.pro", true }, - { "ispweb.es", true }, { "isqrl.de", true }, { "israelbiblicalstudies.com", true }, { "israelbizreg.com", true }, - { "israkurort.com", true }, { "isreedyinthe.uk", true }, { "isreedyinthe.us", true }, { "isreedyintheuk.com", true }, - { "issa.org.pl", true }, + { "issa.org.pl", false }, { "issasfrissa.se", true }, { "issforum.org", true }, { "issio.net", true }, @@ -17178,12 +18679,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "iszy.me", true }, { "it-academy.sk", true }, { "it-enthusiasts.tech", true }, { "it-faul.de", true }, @@ -17192,12 +18692,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "it-kron.de", true }, { "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-sysoft.com", true }, { "it-ti.me", true }, { "it-world.eu", true }, @@ -17210,22 +18708,17 @@ 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 }, - { "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 }, @@ -17240,31 +18733,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itfix.cz", true }, { "itforge.nl", true }, { "itgirls.rs", true }, - { "ithakama.com", true }, { "ithakama.cz", true }, { "ithenrik.com", true }, { "ithinc.net", true }, - { "itilo.de", true }, - { "itiomassagem.com.br", true }, + { "itikon.com", true }, { "itis.gov", true }, { "itis4u.ch", true }, + { "itjob.ma", true }, { "itkaufmann.at", true }, { "itlitera.com", true }, { "itludens.com", 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 }, { "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 }, @@ -17285,15 +18775,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itsok.de", true }, { "itspartytimeonline.co.uk", true }, { "itspartytimesweetinflations.com", true }, + { "itspecialista.eu", true }, { "itspersonaltraining.nl", true }, { "itsryan.com", true }, { "itsstefan.eu", true }, { "itstatic.tech", true }, + { "itsundef.in", 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 }, + { "ivanilla.org", true }, { "ivanmeade.com", true }, { "ivaoru.org", true }, { "ivfausland.de", true }, @@ -17305,6 +18803,7 @@ 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 }, @@ -17312,21 +18811,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ivor.is", true }, { "ivorvanhese.com", true }, { "ivorvanhese.nl", true }, + { "ivoryonsunset.com", true }, { "ivpn.net", true }, { "ivre.rocks", true }, { "ivusn.cz", true }, { "ivvl.ru", true }, - { "ivxv.ee", true }, + { "ivy-league-colleges.com", true }, { "iwader.co.uk", true }, { "iwalton.com", true }, { "iwanttoliveinabunker.com", true }, { "iwch.tk", true }, + { "iwebolutions.com", true }, { "iwell.de", true }, { "iwizerunek.pl", true }, { "iworos.com", true }, { "iww.me", true }, + { "iwyc.cn", true }, { "ixds.org", true }, - { "ixio.cz", true }, { "ixnext.de", true }, { "ixquick-proxy.com", true }, { "ixquick.co.uk", true }, @@ -17337,6 +18838,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ixquick.info", true }, { "ixquick.nl", true }, { "iyassu.com", true }, + { "iyouewo.com", true }, { "iyuanbao.net", true }, { "iz8mbw.net", true }, { "izaakbeekman.com", true }, @@ -17345,7 +18847,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "izodiacsigns.com", true }, { "izuba.info", true }, { "izumi.tv", true }, - { "izxxs.com", true }, { "izxxs.net", true }, { "izxzw.net", true }, { "izzys.casa", true }, @@ -17356,13 +18857,9 @@ 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-publications.agency", false }, { "ja.md", true }, { "jaakkohannikainen.fi", true }, { "jaalits.com", true }, @@ -17377,54 +18874,63 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jabberzac.org", true }, { "jaberg-rutschi.ch", true }, { "jabergrutschi.ch", true }, - { "jability.ovh", true }, { "jabjab.de", true }, { "jaccblog.com", true }, { "jacekowski.org", true }, + { "jacik.cz", true }, + { "jack2celebrities.com", true }, { "jackdawphoto.co.uk", true }, { "jackdelik.de", true }, { "jackf.me", true }, + { "jackhoodtransportation.com", true }, { "jackingramnissanparts.com", true }, { "jackpothappy.com", true }, - { "jackrusselterrier.com.br", true }, { "jackson-quon.com", true }, { "jackson.jp", true }, + { "jacksonhu.com", true }, { "jacksonvillestation.com", true }, + { "jacksorrell.com", true }, + { "jacksutton.info", true }, { "jackyliao123.tk", true }, + { "jackyyf.com", false }, { "jaco.by", true }, { "jacobamunch.com", true }, { "jacobdevans.com", true }, { "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 }, { "jaguarlandrover-occasions.be", true }, + { "jaguarwong.xyz", true }, { "jahanaisamu.com", true }, { "jahmusic.net", true }, { "jahner.xyz", true }, { "jahofmann.de", false }, { "jailbreakingisnotacrime.org", true }, - { "jaion.tech", true }, { "jaispirit.com", false }, { "jaitnetworking.com", false }, - { "jak-na-les.cz", true }, { "jakarta.dating", true }, { "jakdelatseo.cz", true }, { "jake.eu.org", true }, { "jake.ml", true }, { "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 }, @@ -17432,8 +18938,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 }, @@ -17442,16 +18948,14 @@ 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 }, { "jamesdorf.com", true }, { "jamesgreenfield.com", true }, @@ -17459,14 +18963,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jameshost.net", true }, { "jameshunt.us", false }, { "jamesj.me", false }, + { "jamesjboyer.com", true }, { "jamesmarsh.net", true }, { "jamesmilazzo.com", true }, { "jamesmorrison.me", 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 }, @@ -17480,7 +18989,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -17492,6 +19001,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janbrodda.de", true }, { "jandev.de", true }, { "janduchene.ch", true }, + { "janebondsurety.com", true }, { "janehamelgardendesign.co.uk", true }, { "janhuelsmann.com", true }, { "jani.media", true }, @@ -17501,38 +19011,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janjoris.nl", 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 }, + { "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 }, { "japanwatches.xyz", true }, - { "jape.today", true }, + { "japon-japan.com", true }, { "jardin-exotique-rennes.fr", true }, { "jardinderline.ch", true }, + { "jardineriaon.com", true }, { "jardiniersduminotaure.fr", true }, { "jaredeberle.org", false }, { "jaredfernandez.com", true }, - { "jaredfraser.com", true }, - { "jarivisual.com", true }, - { "jarl.ninja", true }, { "jarniashop.se", true }, { "jaroku.com", true }, { "jarondl.net", true }, + { "jaroslavc.eu", true }, { "jarrettgraham.com", true }, { "jarroba.com", true }, { "jas-team.net", true }, + { "jashvaidya.com", true }, { "jasl.works", true }, { "jasmijnwagenaar.nl", true }, { "jasminefields.net", true }, + { "jason.re", true }, { "jasonamorrow.com", true }, { "jasongerber.ch", true }, - { "jasonian-photo.com", true }, { "jasonmili.online", true }, { "jasonsansone.com", true }, { "jasper.link", true }, @@ -17543,9 +19057,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jaszbereny-vechta.eu", true }, { "javalestari.com", true }, { "javamilk.com", true }, - { "javfree.me", true }, { "javierburgos.net", true }, + { "javierlorente.es", true }, + { "javik.net", true }, + { "jaxfstk.com", true }, + { "jaxxnet.co.uk", true }, + { "jaxxnet.org", true }, { "jaycouture.com", true }, + { "jayf.de", true }, { "jayfreestone.com", true }, { "jaymecd.rocks", true }, { "jayrl.com", true }, @@ -17553,11 +19072,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jaytx.com", true }, { "jayxon.com", true }, { "jayxu.com", true }, + { "jazminguaramato.com", true }, { "jazz-alliance.com", true }, { "jazz-alliance.org", true }, { "jazzanet.com", true }, { "jazzfeet.co.uk", true }, { "jazzncheese.com", true }, + { "jazzy-feet.com", true }, { "jazzy.id.au", true }, { "jazzy.pro", true }, { "jazzysumi.com", true }, @@ -17569,23 +19090,22 @@ 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 }, - { "jcolideles.com", true }, { "jcra.net", true }, { "jctf.team", true }, { "jcwodan.nl", true }, - { "jcyz.cf", true }, { "jd-group.co.uk", true }, { "jd1.de", true }, { "jdassets.com", true }, { "jdc.io", true }, { "jdcdirectsales.com", true }, - { "jdcdirectsales.com.ph", true }, { "jdcgroup.com.ph", true }, { "jdegbau.com", true }, { "jdheysupplies.co.uk", true }, { "jdjohnsonmedia.com", true }, + { "jdjohnsonwaterproofing.com", true }, { "jdm.elk.pl", true }, { "jdncr.com", true }, { "jdoi.pw", true }, @@ -17611,10 +19131,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jedidiah.eu", false }, { "jedipedia.net", true }, { "jediweb.com.au", true }, - { "jedwarddurrett.com", true }, + { "jedmud.com", true }, { "jeec.ist", true }, + { "jeepeg.com", true }, { "jeepmafia.com", true }, - { "jeff.forsale", true }, { "jeffanderson.me", true }, { "jeffcasavant.com", false }, { "jeffcloninger.net", true }, @@ -17625,12 +19145,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jeffmcneill.com", true }, { "jeffreyhaferman.com", true }, { "jeffri.me", true }, - { "jeffsanders.com", true }, { "jefftickle.com", true }, { "jeffwebb.com", true }, { "jefrydco.id", true }, + { "jej.cz", true }, + { "jej.sk", true }, { "jekhar.com", true }, + { "jekkt.com", false }, { "jelena-adeli.com", true }, + { "jelenkovic.rs", true }, { "jelewa.de", true }, { "jell.ie", true }, { "jelle.pro", true }, @@ -17641,31 +19164,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jelleluteijn.nl", true }, { "jelleluteijn.pro", true }, { "jelleraaijmakers.nl", true }, + { "jelleschneiders.com", true }, { "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 }, + { "jemefaisdesamis.com", true }, { "jena.space", true }, { "jennedebleser.com", false }, - { "jenniferchan.id.au", true }, { "jenniferengerwingaantrouwen.nl", true }, { "jennifermason.eu", true }, { "jennifersauer.nl", true }, - { "jennybeaned.com", true }, { "jennythebaker.com", true }, { "jenolson.net", true }, { "jenprace.cz", true }, { "jensrex.dk", true }, + { "jeparamedia.com", true }, { "jepertinger-itconsulting.de", true }, { "jeproteste.info", true }, { "jeremiahbenes.com", true }, { "jeremy-chen.org", true }, { "jeremy.hu", true }, { "jeremybentham.com", true }, - { "jeremyc.ca", true }, { "jeremycantu.com", true }, { "jeremycrews.com", true }, { "jeremynally.com", true }, @@ -17674,9 +19198,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jeremytcd.com", true }, { "jericamacmillan.com", true }, { "jeroendeneef.com", true }, - { "jeroenensanne.wedding", true }, - { "jeroenvanderwal.nl", true }, + { "jeroensangers.com", true }, { "jerret.de", true }, + { "jerryweb.org", true }, { "jerryyu.ca", true }, { "jerseybikehire.co.uk", true }, { "jerseyjumpingbeans.co.uk", true }, @@ -17687,8 +19211,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jesseerbach.com", true }, { "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 }, @@ -17696,23 +19219,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jet-stream.fr", true }, { "jetapi.org", true }, { "jetbbs.com", true }, - { "jetbrains.pw", true }, - { "jetflex.de", true }, { "jetkittens.co.uk", true }, - { "jetmirshatri.com", true }, { "jetsetboyz.net", true }, { "jetsieswerda.nl", true }, + { "jettlarue.com", true }, { "jetwhiz.com", true }, { "jeuxetcodes.fr", true }, { "jeweet.net", true }, { "jewishboyscouts.com", true }, { "jexler.net", true }, + { "jf-fotos.de", true }, { "jfbst.net", true }, + { "jfmhero.me", true }, { "jfr.im", true }, { "jfreitag.de", true }, { "jfsa.jp", true }, { "jgid.de", true }, { "jgke.fi", true }, + { "jglover.com", true }, { "jgwb.de", true }, { "jgwb.eu", true }, { "jhalderm.com", true }, @@ -17726,10 +19250,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jhwestover.com", true }, { "jiacl.com", true }, { "jiahao.codes", true }, + { "jiangzm.com", false }, + { "jianji.de", true }, { "jianshu.com", true }, { "jianyuan.pro", true }, { "jiazhao.ga", true }, + { "jicaivvip.com", true }, { "jichi.io", true }, + { "jichi000.win", true }, + { "jikegu.com", true }, { "jimbiproducts.com", true }, { "jimbraaten.com", true }, { "jimbutlerkiaparts.com", true }, @@ -17737,13 +19266,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jimfranke.com", true }, { "jimfranke.nl", true }, { "jimmycai.com", false }, - { "jimmycai.org", true }, { "jimmycn.com", false }, - { "jimmynelson.com", true }, { "jimmyroura.ch", true }, { "jimshaver.net", true }, { "jimslop.nl", true }, - { "jinancy.fr", true }, { "jinanshen.com", true }, { "jinbo123.com", false }, { "jinbowiki.org", true }, @@ -17762,13 +19288,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jirosworld.com", true }, { "jisai.net.cn", true }, { "jisha.site", true }, - { "jiveiaktivno.bg", true }, { "jixun.moe", true }, { "jiyusu.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 }, @@ -17776,15 +19304,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jkinteriorspa.com", true }, { "jkirsche.com", true }, { "jkrippen.com", true }, - { "jkuvw.xyz", true }, { "jkyuan.tk", 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 }, + { "jloh.codes", true }, { "jlot.org", true }, + { "jlpn.eu", true }, + { "jlpn.nl", true }, { "jlponsetto.com", true }, { "jlr-luxembourg.com", true }, { "jltctech.com", true }, @@ -17795,26 +19325,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, - { "jmotion.co.uk", true }, + { "jmoreau.ddns.net", true }, { "jmpb.hu", true }, - { "jmpmotorsport.co.uk", true }, { "jmsolodesigns.com", true }, { "jmssg.jp", true }, { "jmvdigital.com", 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 }, - { "job-offer.de", true }, + { "job-ofertas.info", 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 }, @@ -17832,7 +19369,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -17843,6 +19380,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jodlajodla.si", true }, { "joduska.me", true }, { "jodyboucher.com", false }, + { "jodyshop.com", true }, { "joe262.com", true }, { "joedavison.me", true }, { "joedinardo.com", true }, @@ -17858,11 +19396,13 @@ 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 }, { "joemotherfuckingjohnson.com", true }, { "joepitt.co.uk", false }, + { "joerosca.com", true }, { "joerss.at", true }, { "joeskup.com", true }, { "joespaintingpgh.com", true }, @@ -17873,17 +19413,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joeygitalian.com", true }, { "joeyhoer.com", true }, { "joeysmith.com", true }, + { "joeyvanvenrooij.nl", true }, { "joeyvilaro.com", true }, { "jogi-server.de", true }, { "jogorama.com.br", false }, { "jogwitz.de", true }, - { "johand.io", true }, { "johanli.com", true }, { "johannes-bauer.com", true }, { "johannes-zinke.de", true }, { "johannes.io", true }, { "johannes.wtf", true }, { "johannesburg-escorts.co.za", true }, + { "johannesen.tv", true }, { "johanneskonrad.de", true }, { "johannespichler.com", false }, { "johansf.tech", true }, @@ -17891,27 +19432,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "johnbeil.com", true }, { "johnblackbourn.com", true }, { "johnbpodcast.com", true }, + { "johncook.ltd.uk", true }, { "johndball.com", true }, { "johnfulgenzi.com", true }, { "johngallias.com", true }, - { "johngo.tk", true }, + { "johngo.tk", false }, { "johnguant.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 }, { "johnsonho.net", true }, { "johnvanhese.nl", true }, { "johnyytb.be", true }, { "joi-dhl.ch", true }, + { "jointotem.com", true }, + { "joinus-outfits.nl", true }, { "jojosplaycentreandcafeteria.co.uk", true }, { "jokedalderup.nl", true }, { "joker.menu", true }, @@ -17919,16 +19464,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "jonandnoraswedding.com", 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 }, @@ -17936,7 +19484,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jonathanha.as", true }, { "jonathanj.nl", true }, { "jonathanschle.de", true }, - { "jonathanselea.se", false }, + { "jonathanselea.se", true }, { "jonblankenship.com", true }, { "jondarby.com", true }, { "jondevin.com", true }, @@ -17963,29 +19511,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "jordanhamilton.me", true }, - { "jordankirby.co.uk", true }, { "jordankmportal.com", true }, { "jordans.co.uk", true }, { "jordanscorporatelaw.com", true }, { "jordanstrustcompany.com", true }, { "jordhy.com", true }, + { "jorgerosales.org", true }, { "jorisdalderup.nl", true }, { "jornalalerta.com.br", true }, + { "josc.com.au", true }, { "joscares.com", true }, { "jose-alexand.re", true }, { "jose-lesson.com", true }, - { "jose.eti.br", true }, { "joseetesser.nl", true }, { "josef-lotz.de", true }, { "josefjanosec.com", true }, + { "josefottosson.se", true }, { "josegerber.ch", true }, + { "joseitoda.org", true }, { "josemikkola.fi", true }, { "josepbel.com", true }, { "josephbleroy.com", true }, @@ -17994,36 +19546,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "josephsniderman.org", true }, { "josephv.website", true }, { "josericaurte.com", true }, + { "joshgilson.com", true }, { "joshgrancell.com", true }, { "joshharkema.com", true }, { "joshharmon.me", 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 }, { "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 }, { "jpdeharenne.be", true }, { "jpeg.io", true }, - { "jpgangbang.com", true }, { "jphandjob.com", true }, { "jplesbian.com", true }, { "jpmelos.com", true }, { "jpmelos.com.br", true }, + { "jpod.cc", true }, + { "jpralves.net", true }, { "jps-selection.co.uk", true }, { "jps-selection.com", true }, { "jps-selection.eu", true }, @@ -18038,12 +19596,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jrc9.ca", true }, { "jreb.nl", true }, { "jreinert.com", true }, + { "jrflorian.com", true }, { "jross.me", true }, { "jrtapsell.co.uk", true }, { "jrxpress.com", true }, + { "js-web.eu", true }, + { "js3311.com", true }, + { "js8855.com", true }, + { "js93029.com", true }, { "jschoi.org", true }, { "jschumacher.info", true }, { "jsd-cog.org", true }, + { "jsdelivr.com", true }, { "jselby.net", true }, { "jsent.co.uk", true }, { "jsevilleja.org", true }, @@ -18051,21 +19615,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jskoelliken.ch", true }, { "jslidong.top", true }, { "jsmetallerie.fr", true }, + { "jsnfwlr.com", true }, { "jsnfwlr.io", true }, + { "jsonsinc.com", true }, { "jsteward.moe", true }, { "jstore.ch", true }, - { "jsuse.xyz", true }, { "jsxc.ch", true }, { "jtcat.com", true }, + { "jtcjewelry.com", true }, + { "jtconsultancy.sg", true }, { "jthackery.com", false }, { "jtl-software.com", true }, { "jtmar.me", true }, { "jtp.id", true }, { "jts3servermod.com", true }, { "jtslay.com", true }, + { "ju.io", true }, { "juan23.edu.uy", true }, { "juanfrancisco.tech", true }, - { "juanhub.com", true }, { "juanmaguitar.com", true }, { "juanxt.ddns.net", true }, { "jubileum.online", true }, @@ -18074,15 +19641,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "juchit.at", true }, { "jucktehkeinen.de", true }, { "judc-ge.ch", true }, - { "judge2020.com", true }, { "judge2020.me", true }, { "judoprodeti.cz", true }, { "judosaintdenis.fr", true }, + { "judytka.cz", true }, { "juef.space", true }, { "juegosycodigos.es", true }, { "juegosycodigos.mx", true }, { "juelda.com", true }, { "juergen-elbert.de", true }, + { "juergen-roehrig.de", true }, { "juergenhecht.de", true }, { "juergenklieber.de", true }, { "juergenspecht.com", true }, @@ -18093,20 +19661,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jugh.de", true }, { "juhakoho.com", true }, { "juice.codes", true }, - { "juk.life", true }, + { "juk.life", false }, { "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 }, { "julianweigle.de", true }, - { "julianxhokaxhiu.com", true }, { "juliazeengardendesign.co.uk", true }, { "julibear.com", true }, { "julibon.com", true }, @@ -18118,9 +19685,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 }, @@ -18149,6 +19715,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "junethack.net", true }, { "jungaa.fr", true }, { "jungesforumkonstanz.de", true }, + { "junggesellmuc.de", true }, { "jungleducks.ca", true }, { "junglejackscastles.co.uk", true }, { "junglememories.co.uk", true }, @@ -18168,8 +19735,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "juridoc.com.br", true }, { "jurijbuga.de", true }, { "jurisprudent.by", true }, - { "jurriaan.ninja", true }, - { "just-a-clanpage.de", true }, + { "juristas.com.br", true }, { "just-vet-and-drive.fr", true }, { "justanothercompany.name", true }, { "justbelieverecovery.com", true }, @@ -18184,27 +19750,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "justgalak.org", true }, { "justice.gov", true }, { "justice4assange.com", true }, + { "justin-tech.com", false }, { "justinellingwood.com", true }, { "justinharrison.ca", true }, { "justinho.com", true }, { "justinstandring.com", true }, + { "justmensgloves.com", true }, { "justpaste.it", true }, - { "justsome.info", true }, + { "justsmart.io", true }, + { "justtalk.site", true }, { "justthinktwice.gov", true }, { "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 }, @@ -18215,46 +19785,53 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jwjwjw.com", true }, { "jwmmarketing.com", true }, { "jwnotifier.org", true }, + { "jwod.gov", 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 }, + { "jzcapital.co", true }, + { "k-bone.com", true }, { "k-homes.net", true }, { "k-netz.de", true }, { "k-pan.com", true }, { "k-plant.com", true }, { "k-pture.com", true }, { "k-scr.me", true }, + { "k-system.de", true }, { "k-tube.com", true }, { "k258059.net", true }, { "k2mts.org", true }, - { "k33k00.com", true }, + { "k3508.com", true }, { "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 }, { "kaasbesteld.nl", true }, { "kaashosting.nl", true }, { "kaatha-kamrater.se", true }, { "kab-s.de", true }, + { "kabaca.design", true }, { "kabarlinux.id", true }, { "kabashop.com.br", true }, - { "kabat-fans.cz", false }, + { "kabat-fans.cz", true }, { "kabeltv.co.nz", true }, { "kabeuchi.com", true }, { "kaboom.pw", true }, { "kabu-abc.com", true }, - { "kabus.org", true }, + { "kabulpress.org", true }, { "kachelfm.nl", true }, { "kachlikova2.cz", true }, { "kack.website", true }, @@ -18270,12 +19847,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -18285,10 +19862,8 @@ 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 }, @@ -18297,25 +19872,33 @@ 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 }, + { "kam-serwis.pl", true }, { "kamatajisyaku.tokyo.jp", true }, { "kamikaichimaru.com", false }, + { "kamikatse.net", true }, { "kaminbau-laub.de", true }, { "kamixa.se", true }, { "kamppailusali.fi", true }, + { "kamranmirhazar.com", true }, { "kamui.co.uk", true }, + { "kan3.de", true }, { "kana-mono.biz", true }, { "kana.me", true }, { "kanaete-uranai.com", true }, { "kanag.pl", true }, { "kanal-schaefer.de", true }, { "kanal-tv-haensch.de", true }, + { "kandalife.com", true }, { "kandianshang.com", true }, { "kanecastles.com", true }, { "kanehusky.com", true }, @@ -18329,43 +19912,48 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kangaroovalleyolives.com.au", true }, { "kangaroovalleyshow.org.au", true }, { "kangaroovalleywoodcrafts.com.au", true }, - { "kangkai.me", true }, { "kangooroule.fr", true }, { "kanis.ag", true }, { "kankimaru.com", true }, { "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 }, + { "kanuvu.de", false }, { "kany.me", false }, + { "kanzakiranko.jp", true }, { "kanzashi.com", true }, + { "kanzlei-gaengler.de", true }, { "kanzlei-myca.de", true }, { "kanzlei-oehler.com", true }, { "kanzlei-sixt.de", true }, - { "kanzshop.com", true }, + { "kaotik4266.com", true }, { "kap-genial.de", true }, + { "kapgy-moto.com", true }, { "kapiorr.duckdns.org", true }, + { "kappenstein.org", true }, { "kapseli.net", true }, { "kaptadata.com", true }, { "kaptamedia.com", true }, { "kara-fabian.com", true }, + { "kara-fabian.de", true }, { "karabas.com", true }, { "karabijnhaken.nl", false }, { "karachi.dating", true }, { "karaface.com", true }, { "karalane.com", true }, { "karamomo.net", true }, - { "karanastic.com", true }, + { "karanjthakkar.com", true }, { "karanlyons.com", true }, { "karasik.by", true }, { "karateka.org", true }, { "karateka.ru", true }, { "kardize24.pl", true }, + { "karewan.ovh", true }, { "kargl.net", true }, { "karguine.in", true }, { "karhm.com", true }, @@ -18374,16 +19962,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "karlbowden.com", true }, { "karlic.net", true }, { "karlin.run", true }, - { "karlis-kavacis.id.lv", true }, { "karlloch.de", true }, { "karlsmithmn.org", true }, { "karlzotter.com", true }, { "karmaassurance.ca", true }, { "karmabaker.com", true }, + { "karmaflux.com", true }, { "karmainsurance.ca", true }, { "karmaplatform.com", true }, { "karmaspa.se", true }, - { "karmic.com", true }, { "karn.nu", true }, { "karneid.info", true }, { "karsofsystems.com", true }, @@ -18395,10 +19982,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kartec.com", true }, { "karten-verlag.de", true }, { "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 }, @@ -18407,51 +19994,58 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kastelruth.biz", true }, { "kastemperaturen.ga", true }, { "kastorsky.ru", true }, + { "kat.marketing", true }, { "katagena.com", true }, { "katalogbutikker.dk", 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 }, { "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 }, + { "kaverti.com", true }, { "kavik.no", true }, { "kavovary-kava.cz", true }, { "kawaii.io", true }, + { "kawaiii.link", true }, { "kaweus.de", true }, { "kay.la", true }, { "kayakabovegroundswimmingpools.com", true }, { "kayleen.net", true }, - { "kaysis.gov.tr", true }, + { "kayscs.com", true }, { "kazakov.lt", true }, - { "kazamasion.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 }, { "kba-online.de", true }, { "kbb-ev.de", true }, { "kbbouncycastlehire.co.uk", true }, @@ -18467,23 +20061,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, + { "keditor.biz", true }, { "kedv.es", true }, { "keeleysam.com", true }, { "keelove.net", true }, @@ -18495,6 +20093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keepersecurity.com", true }, { "keepingtheplot.co.uk", true }, { "keepiteasy.eu", true }, + { "keevitaja.com", true }, { "keeweb.info", true }, { "keezin.ga", true }, { "keganthorrez.com", true }, @@ -18506,6 +20105,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keisaku.org", true }, { "keishiando.com", true }, { "keithlomax.com", true }, + { "keithws.net", true }, { "kejar.id", true }, { "keke-shop.ch", true }, { "kekgame.com", true }, @@ -18518,6 +20118,7 @@ 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 }, @@ -18549,9 +20150,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kenrogers.co", false }, { "kens.pics", true }, { "kensbouncycastles.co.uk", true }, + { "kenscustomfloors.com", true }, + { "kensparkesphotography.com", true }, { "kentec.net", true }, { "kenterlis.gr", true }, - { "kenvix.com", false }, + { "kenvix.com", true }, { "kenx5.eu.org", true }, { "kenyons.info", true }, { "keops-spine.fr", true }, @@ -18565,35 +20168,43 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kernel-error.de", true }, { "kernelpanics.nl", true }, { "kerrfrequencycombs.org", true }, + { "kerrnel.com", true }, { "kersbergen.nl", true }, + { "kersmexico.com", true }, { "kerstkaart.nl", true }, { "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 }, { "kevinapease.com", true }, { "kevinbowers.me", true }, { "kevinbusse.de", true }, { "kevincox.ca", false }, - { "kevinfoley.cc", true }, - { "kevinfoley.org", true }, + { "kevingsky.com", true }, + { "kevinheslinphoto.com", true }, { "kevinhill.nl", true }, { "kevinhq.com", true }, { "kevinkla.es", true }, { "kevinlocke.name", true }, + { "kevinmeijer.nl", true }, + { "kevinmorssink.nl", true }, { "kevinpirnie.com", true }, { "kevinrandles.com", true }, { "kevinratcliff.com", true }, { "kevyn.lu", true }, + { "kexueboy.com", true }, { "keybase.io", true }, { "keybored.co", true }, { "keybored.me", true }, @@ -18601,7 +20212,9 @@ 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 }, @@ -18612,14 +20225,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keysupport.org", true }, { "keywebdesign.nl", true }, { "kf7joz.com", true }, + { "kfassessment.com", true }, { "kffs.ru", true }, { "kfirba.me", true }, + { "kfm.ink", true }, { "kforesund.se", true }, { "kfv-kiel.de", false }, { "kfz-hantschel.de", true }, { "kgm-irm.be", true }, { "kgnk.ru", true }, - { "khaledgarbaya.net", true }, + { "khaledgarbaya.net", false }, { "khanovaskola.cz", true }, { "khas.co.uk", true }, { "khasiatmanfaat.com", true }, @@ -18627,16 +20242,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "khetzal.info", true }, { "khipu.com", true }, { "khlee.net", true }, - { "khmath.com", true }, { "khmb.ru", true }, { "khoury-dulla.ch", true }, { "khs1994.com", true }, { "khudothiswanpark.vn", true }, + { "khushiandjoel.com", true }, { "kiadoapartman.hu", true }, { "kiahoriane.com", true }, { "kiano.net", true }, { "kiapartscenter.net", true }, { "kiapartsdepartment.com", true }, + { "kiapps.ovh", true }, { "kibea.net", true }, { "kibibit.net", true }, { "kibriscicek.net", true }, @@ -18654,13 +20270,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -18669,9 +20285,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -18682,7 +20298,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kilerd.me", true }, { "kilianvalkhof.com", true }, { "killaraapartments.com.au", true }, + { "killdeer.com", true }, { "killerit.in", true }, + { "killerkink.net", true }, { "killerrobots.com", true }, { "killymoonbouncycastles.com", true }, { "kilobyte22.de", true }, @@ -18696,14 +20314,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kimmel.com", true }, { "kimmel.in", true }, { "kimo.se", true }, + { "kimono-rental-one.com", true }, { "kimotodental.com", true }, { "kimsufi-jordi.tk", true }, { "kimtran.kim", true }, + { "kin.life", true }, { "kin.pet", true }, { "kinautas.com", true }, { "kinderbasar-luhe.de", true }, { "kinderchor-bayreuth.de", true }, - { "kinderopvangzevenbergen.nl", true }, + { "kinderkleding.news", true }, { "kindertagespflege-rasselbande-halle.de", true }, { "kinderzahn-bogenhausen.de", true }, { "kindleworth.com", true }, @@ -18711,12 +20331,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kine-duthil.fr", true }, { "kinepolis-studio.be", true }, { "kinetiq.com", true }, - { "king-henris-castles.co.uk", true }, { "king-of-the-castles.com", true }, { "kingant.net", true }, { "kinganywhere.eu", true }, { "kingbird.me", true }, - { "kingdomcrc.org", true }, { "kingdoms.gg", true }, { "kingiescastles.co.uk", true }, { "kingofshooting.com", true }, @@ -18724,38 +20342,45 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kingofthecastlesentertainments.co.uk", true }, { "kingofthecastlesouthwales.co.uk", true }, { "kingofthecastlesrhyl.co.uk", true }, + { "kingsgateseptic.com", true }, { "kingstclinic.com", true }, { "kingtecservices.com", true }, { "kini24.ru", true }, + { "kinkcafe.net", true }, { "kinkenonline.com", true }, { "kinnikinnick.com", true }, { "kinniyaonlus.com", true }, { "kinocheck.de", true }, { "kinohled.cz", true }, + { "kinomoto.me", true }, { "kinomoto.ovh", false }, { "kinos.nl", true }, { "kinozal-tv.appspot.com", true }, { "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 }, @@ -18769,14 +20394,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kirwandigital.com", true }, { "kis-toitoidixi.de", true }, { "kisallatorvos.hu", true }, + { "kisalt.im", true }, { "kisiselveri.com", true }, { "kisma.de", true }, { "kissesb.com", true }, { "kissesb.net", true }, { "kissflow.com", true }, { "kissgyms.com", true }, - { "kisskiss.ch", true }, { "kissmycreative.com", true }, + { "kissoft.ro", true }, { "kisstube.tv", true }, { "kitabnamabayi.com", true }, { "kitbag.com.au", true }, @@ -18800,22 +20426,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kittpress.com", true }, { "kittyhacker101.tk", true }, { "kivitelezesbiztositas.hu", 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 }, + { "kj1396.net", true }, { "kj1397.com", true }, { "kjaer.io", true }, { "kjarni.cc", true }, { "kjarrval.is", true }, { "kjchernov.info", true }, { "kjellner.com", true }, + { "kjelltitulaer.com", true }, { "kjellvn.net", true }, { "kjg-ummeln.de", true }, { "kk-neudorf-duissern.de", false }, @@ -18825,12 +20449,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kkr-bridal.net", true }, { "kks-karlstadt.de", true }, { "kksg.com", true }, + { "kkws.co", true }, { "kkyy.me", true }, + { "kkzxak47.com", true }, { "kl-diaetist.dk", true }, { "klaim.us", true }, { "klamathrestoration.gov", true }, { "klanggut.at", true }, - { "klantenadvies.nl", true }, { "klares-licht.de", true }, { "klarika.com", true }, { "klarmobil-empfehlen.de", true }, @@ -18842,10 +20467,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klaxon.me", true }, { "klcreations.co.uk", true }, { "kle.cz", true }, - { "klean-ritekc.com", true }, { "kleaning.by", true }, { "klebeband.eu", true }, { "klebetape.de", true }, + { "kleding.website", true }, { "kledingrekken.nl", false }, { "kleim.fr", true }, { "kleinblogje.nl", false }, @@ -18854,7 +20479,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kleineanfragen.de", true }, { "kleinfein.co", true }, { "kleinreich.de", true }, - { "kleinserienproduktion.com", true }, { "kleinsys.com", true }, { "kleteckova.cz", true }, { "klicke-gemeinsames.de", true }, @@ -18874,18 +20498,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klocker-ausserlechner.com", true }, { "klocksnack.se", true }, { "kloia.com", true }, + { "klose.family", true }, { "klosko.net", true }, { "klotz-labs.com", true }, + { "kloudboy.com", true }, { "kls-agency.com.ua", false }, { "klseet.com", true }, { "klssn.com", true }, + { "klubxanadu.cz", true }, { "kluck.me", true }, { "klugemedia.de", true }, { "klustekeningen.nl", true }, { "klustermedia.com", true }, - { "km-net.pl", true }, + { "klva.cz", true }, + { "klzwzhi.com", true }, { "kmashworth.co.uk", true }, - { "kmdev.me", true }, { "kmkz.jp", true }, { "kmsci.com.ph", true }, { "kn007.net", true }, @@ -18897,28 +20524,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kncg.pw", true }, { "kndkv.com", 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 }, + { "kngkng.com", true }, { "kniga.market", false }, { "knight-industries.org", true }, + { "knightsblog.de", true }, { "knightsbridge.net", true }, - { "knightsbridgegroup.org", true }, { "knightsbridgewine.com", true }, { "knip.ch", true }, { "knispel-online.de", true }, { "knitfarious.com", true }, - { "kniwweler.com", true }, { "knmv.nl", 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 }, { "knthost.com", true }, { "knuckles.tk", true }, @@ -18937,6 +20564,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -18951,7 +20580,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -18959,6 +20590,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 }, @@ -18967,7 +20599,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 }, @@ -18976,9 +20610,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koka-shop.de", true }, { "kokensupport.com", true }, { "koketteriet.se", true }, - { "kokoiroworks.com", true }, + { "kokona.ch", true }, { "kokumoto.com", true }, - { "kolbeck.tk", true }, + { "kolania.com", true }, + { "kolania.de", true }, + { "kolania.net", true }, + { "kolaykaydet.com", true }, { "kolbeinsson.se", true }, { "kolcsey.eu", true }, { "koldanews.com", true }, @@ -18991,11 +20628,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "komandakovalchuk.com", false }, + { "kombidorango.com.br", true }, { "komelin.com", true }, + { "komenamanda.de", true }, { "komicloud.com", true }, { "komidoc.com", true }, { "komiksbaza.pl", true }, @@ -19009,15 +20649,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "komoju.com", true }, { "komok.co.uk", true }, { "kompetenzkurs.de", true }, + { "komplet.sk", true }, { "kon-sil.de", true }, { "kondi.net", true }, { "kondou-butsudan.com", true }, { "kongar.org", true }, { "koniecfica.sk", true }, { "konijntjes.nl", true }, - { "konings.it", true }, { "koningskwartiertje.nl", true }, { "koninkrijk.net", true }, + { "konkai.store", true }, { "konklone.com", true }, { "konoe.studio", true }, { "konosuke.jp", true }, @@ -19033,6 +20674,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koodaklife.com", true }, { "koodimasin.ee", true }, { "koodimasin.eu", true }, + { "kooer.org", true }, { "kooli.ee", true }, { "koolikatsed.ee", true }, { "koolitee.ee", true }, @@ -19042,8 +20684,8 @@ 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 }, @@ -19052,7 +20694,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koretech.nl", true }, { "korinar.com", true }, { "korobi.io", true }, - { "korobkovsky.ru", true }, + { "koroknaimedical.hu", true }, { "korono.de", true }, { "korosiprogram.hu", true }, { "korp.fr", true }, @@ -19065,27 +20707,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kosho.org", true }, { "kosonaudioteca.com", true }, { "kost-magazin.de", true }, - { "kostal.com", true }, + { "kostal.com", false }, { "kostecki.com", true }, { "kostecki.org", true }, { "kostecki.tel", true }, { "kostya.ws", true }, { "kotausaha.com", true }, { "kotelezobiztositas.eu", 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 }, + { "kottur.is", true }, { "kouki-food.com", true }, + { "koumakan.cc", true }, { "koumuwin.com", true }, { "koushinjo.org", true }, { "kov.space", true }, { "koval.io", true }, { "kovaldo.ru", true }, + { "kovals.sk", true }, { "kovehitus.ee", true }, { "kovnsk.net", true }, { "kovspace.com", true }, @@ -19133,45 +20777,50 @@ static const nsSTSPreload kSTSPreloadList[] = { { "krasovsky.me", true }, { "krausoft.hu", true }, { "krautomat.com", true }, - { "kraynik.com", true }, + { "krazyboi.com", true }, { "krazykastles.co.uk", true }, { "krazykoolkastles.com", true }, { "krazyphotobooths.co.uk", true }, - { "krc.link", true }, { "kreationnext.com", true }, { "kreativelabs.ch", true }, { "kreativstrecke.de", true }, { "kredigram.com", true }, { "kredit-abzocke.com", true }, + { "kredita.dk", true }, { "kreditkacs.cz", 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 }, + { "kristenpaigejohnson.com", true }, { "kristiehill.com", true }, { "kristikala.nl", true }, - { "kristinbailey.com", true }, + { "kristinbailey.com", false }, + { "kristofba.ch", true }, { "kristofdv.be", 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 }, { "kroy.io", true }, { "krsn.de", true }, @@ -19180,6 +20829,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kruin.net", true }, { "kruisselbrink.com", true }, { "kruk.co", true }, + { "krukhmer.com", true }, { "krumberconsulting.com", true }, { "krupa.net.pl", false }, { "krutka.cz", true }, @@ -19188,27 +20838,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kry.no", true }, { "kry.se", true }, { "kryglik.com", true }, - { "kryha.io", true }, { "krypsys.com", true }, { "krypt.com", true }, { "kryptera.se", true }, { "kryptomodkingz.com", true }, + { "krytykawszystkiego.com", true }, + { "krytykawszystkiego.pl", true }, { "kryx.de", true }, { "ks-watch.de", true }, { "kschv-rdeck.de", true }, { "kselenia.ee", true }, - { "ksero.center", true }, { "ksero.wroclaw.pl", true }, { "kshlm.in", true }, { "kspg.tv", true }, + { "kssk.de", true }, { "ksukelife.com", true }, { "kt-zoe.com", true }, { "ktbnetbank.com", true }, { "kthnxbai.xyz", true }, { "kts-thueringen.de", true }, { "ktsee.eu.org", true }, + { "ktsofas.gr", true }, { "ktw.lv", true }, { "ku-7.club", true }, + { "kuaitiyu.org", true }, { "kualiti.net", true }, { "kualo.co.uk", true }, { "kualo.com", true }, @@ -19218,19 +20871,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kubica.ch", true }, { "kubierecki.pl", true }, { "kubik-rubik.de", false }, - { "kubiwa.net", true }, { "kubkprf.ru", true }, { "kublis.ch", 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 }, @@ -19241,16 +20897,14 @@ 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 }, { "kupferstichshop.com", true }, @@ -19262,11 +20916,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kuponydoher.cz", true }, { "kupschke.net", true }, { "kurashino-mall.com", true }, + { "kuro.link", true }, { "kurofuku.me", true }, + { "kuroha.co.uk", true }, { "kuroinu.jp", true }, { "kurona.ga", true }, { "kuronekogaro.com", true }, - { "kurrende.nrw", true }, + { "kurrende.nrw", false }, + { "kurrietv.nl", true }, { "kurschies.de", true }, { "kurserne.dk", true }, { "kurswahl-online.de", true }, @@ -19279,13 +20936,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kutinsoft.com", true }, { "kutny.cz", true }, { "kutsankaplan.com", true }, - { "kuttler.eu", true }, { "kutukupret.com", true }, { "kutus.ee", true }, { "kuzbass-pwl.ru", true }, { "kvadratnimeter.si", true }, { "kvalita-1a.cz", true }, + { "kvalitetsaktiepodden.se", true }, { "kvalitnitesneni.cz", true }, + { "kvantel.no", true }, { "kvcc.com.au", true }, { "kvetinymilt.cz", true }, { "kvhile.com", true }, @@ -19298,13 +20956,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kwcolville.com", true }, { "kwedo.com", true }, { "kwench.com", true }, - { "kwidz.fr", true }, - { "kwmr.me", true }, { "kwok.cc", true }, { "kwyxz.org", true }, { "kx197.com", true }, { "kxah35.com", true }, + { "kxline.com", true }, { "kxnrl.com", false }, + { "kxway.com", true }, { "kybi.sk", true }, { "kydara.com", true }, { "kyledrake.net", true }, @@ -19312,14 +20970,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kylejohnson.io", true }, { "kylelaker.com", true }, { "kylescastles.co.uk", true }, - { "kyliehunt.com", true }, { "kylinj.com", false }, - { "kynaston.org.uk", true }, { "kynastonwedding.co.uk", true }, { "kyobostory-events.com", true }, { "kyoko.org", true }, { "kyosaku.org", true }, - { "kyoto-k9.com", true }, { "kyoto-mic.com", true }, { "kyoto-sake.net", true }, { "kyoto-tomikawa.jp", true }, @@ -19339,20 +20994,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "l4n-clan.de", true }, { "l7plumbing.com.au", true }, { "l7world.com", true }, - { "l9.fr", true }, + { "l9.fr", false }, { "la-baldosa.fr", true }, { "la-cave-a-nodo.fr", false }, { "la-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 }, + { "labcenter.com", true }, { "labcoat.jp", true }, { "labms.com.au", true }, { "labobooks.com", true }, @@ -19363,7 +21021,8 @@ 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 }, { "lacantine.xyz", true }, { "lacaserita.org", true }, @@ -19384,6 +21043,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laclefdor.ch", true }, { "lacliniquefinanciere.com", true }, { "lacoast.gov", true }, + { "lacocinadelila.com", true }, { "lacoquette.gr", true }, { "lacyc3.eu", true }, { "ladbroke.net", true }, @@ -19392,11 +21052,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ladraiglaan.com", true }, { "lady-2.jp", true }, { "ladyanna.de", true }, - { "ladybugjam.com", true }, + { "ladyofhopeparish.org", true }, + { "laeso.es", true }, { "laextra.mx", true }, { "lafayette-rushford.com", true }, { "lafcheta.info", true }, { "lafeemam.fr", true }, + { "lafema.de", true }, { "lafillepolyvalente.ca", true }, { "lafillepolyvalente.com", true }, { "lafka.org", true }, @@ -19409,11 +21071,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lagerauftrag.info", true }, { "lagit.in", true }, { "laglab.org", false }, - { "lagodny.eu", false }, + { "lagodny.eu", true }, { "lagout.org", true }, { "lagriffeduservice.fr", true }, { "laguiadelvaron.com", true }, - { "laguinguette.fr", true }, { "lahipotesisgaia.com", true }, { "lahnau-akustik.de", true }, { "lahora.com.ec", true }, @@ -19422,7 +21083,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laindonleisure.co.uk", true }, { "lak-berlin.de", true }, { "lakarwebb.se", true }, - { "lakatrop.com", true }, { "lakedavid.com.au", true }, { "lakehavasucityhomebuyerscredit.com", true }, { "lakehavasucitynews.com", true }, @@ -19440,7 +21100,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lakesherwoodlighting.com", true }, { "lakesherwoodoutdoorlighting.com", true }, { "lakeshowlife.com", true }, - { "lakewoodcomputerservices.com", true }, + { "lakewoodcityglass.com", true }, + { "lakhesis.net", true }, { "lakonia.com.br", true }, { "lalalab.com", true }, { "lalaya.fr", true }, @@ -19450,6 +21111,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lalyre-corcelles.ch", true }, { "lamaisondelatransformationculturelle.com", true }, { "lamakat.de", true }, + { "lamanwebinfo.com", true }, { "lamapoll.de", true }, { "lamarieealhonneur.com", false }, { "lambauer.com", true }, @@ -19460,26 +21122,40 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lamiaposta.email", false }, { "lamikvah.org", true }, { "laminine.info", true }, + { "lamontre.ru", true }, { "lamp.re", false }, + { "lamp24.se", true }, + { "lampade.it", true }, + { "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 }, + { "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 }, { "lanceyip.com", true }, + { "lancork.net", true }, { "lancyvbc.ch", true }, { "land.nrw", false }, { "landchecker.com.au", true }, { "landflair-magazin.de", true }, { "landhaus-christmann.de", true }, + { "landinfo.no", true }, + { "landlordy.com", true }, { "landofelves.net", true }, { "landrovermerriamparts.com", true }, + { "landscape-photography.org", true }, { "landscapelightingagoura.com", true }, { "landscapelightingagourahills.com", true }, { "landscapelightingcalabasas.com", true }, @@ -19496,6 +21172,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "landscapelightingsimivalley.com", true }, { "landscapelightingthousandoaks.com", true }, { "landscapelightingwestlakevillage.com", true }, + { "landscapephotography.org.au", true }, { "landyparts.nl", true }, { "lanetix.com", true }, { "lanforalla.se", true }, @@ -19505,7 +21182,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "langguth.io", true }, { "langkahteduh.com", true }, { "langkawitrip.com", true }, + { "langotie.com.br", true }, { "langstreckensaufen.de", true }, + { "languagecourse.net", true }, { "languageterminal.com", true }, { "langworth.com", true }, { "langzijn.nl", true }, @@ -19529,8 +21208,7 @@ 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 }, @@ -19538,12 +21216,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lapolla.com", true }, { "lapotagere.ch", true }, { "lapparente-aise.ch", true }, + { "lappari.com", true }, + { "lara.photography", 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 }, @@ -19554,6 +21234,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "larondinedisinfestazione.com", true }, { "larptreff.de", true }, { "larraz.es", true }, + { "larryli.cn", true }, { "larrysalibra.com", true }, { "lars-ewald.com", true }, { "lars-mense.de", true }, @@ -19562,8 +21243,8 @@ 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 }, { "lascana.co.uk", true }, @@ -19576,6 +21257,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lask.in", true }, { "laskas.pl", true }, { "laspequenassemillas.com", true }, + { "lasrecetascocina.com", true }, { "lasrecetasdeguada.com", true }, { "lasse-it.dk", true }, { "lasseleegaard.com", true }, @@ -19585,20 +21267,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lassesworld.com", true }, { "lassesworld.se", true }, { "lastchancetraveler.com", true }, - { "lastharo.com", true }, { "lastpass.com", false }, { "lastrada-minden.de", true }, { "lastweekinaws.com", true }, { "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 }, { "latiendadelbebefeliz.com", true }, { "latiendauno.com", true }, @@ -19607,7 +21289,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "latinphone.com", true }, { "latintoy.com", true }, { "latitudesign.com", true }, - { "latour-managedcare.ch", true }, { "latremebunda.com", true }, { "latrine.cz", true }, { "latterdaybride.com", true }, @@ -19623,14 +21304,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laukstein.com", true }, { "launayflorian.net", true }, { "launchkey.com", false }, + { "launchmylifend.com", true }, { "launchpad-app2.com", true }, - { "launchpadder2.com", true }, { "lauraandwill.wedding", false }, { "lauraenvoyage.fr", true }, { "laurakashiwase.com", true }, { "lauraofrank.com", true }, { "laurasplacefamilysupport.org.au", true }, { "laurelblack.com", true }, + { "laurenceplouffe.com", true }, { "laurenlobue.com", true }, { "lauriemilne.com", true }, { "lauriuc.sk", true }, @@ -19649,31 +21331,32 @@ 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 }, - { "lawformt.com", true }, { "lawn-seeds.com", true }, { "lawnuk.com", true }, - { "lawrence-institute.com", true }, { "lawrenceberg.nl", true }, { "lawrencemurgatroyd.com", true }, + { "lawrencewhiteside.com", 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 }, @@ -19683,10 +21366,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lbls.me", true }, { "lbphacker.pw", true }, { "lbs-logics.com", true }, + { "lbsi-nordwest.de", 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 }, { "lcbizsolutions.com", true }, { "lce-events.com", true }, @@ -19699,8 +21385,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -19719,31 +21405,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leadbox.cz", true }, { "leaderoftheresistance.com", false }, { "leaderoftheresistance.net", false }, - { "leadgenie.me", true }, - { "leadinfo.com", true }, { "leadingsalons.com", true }, { "leadquest.nl", true }, { "leafandseed.co.uk", true }, - { "leafans.tk", true }, + { "leafans.tk", false }, { "leafinote.com", true }, { "leakforums.net", true }, + { "leamsigc.com", true }, { "leandre.cn", true }, { "leanplando.com", true }, { "leap-it.be", true }, { "leapandjump.co.uk", true }, + { "learn-smart.uk", true }, + { "learndev.info", true }, { "learnflakes.net", true }, { "learnforestry.com", true }, { "learning-id.com", true }, { "learningis1.st", true }, { "learninglaw.com", true }, + { "learningman.top", 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 }, @@ -19756,26 +21446,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lebensraum-im-garten.de", 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-jihlava.cz", true }, { "led.xyz", true }, { "ledecologie.com.br", true }, { "ledeguisement.com", true }, { "lederer-it.com", true }, + { "ledlight.com", true }, { "ledscontato.com.br", true }, { "ledzom.ru", false }, { "lee-fuller.co.uk", true }, - { "leebiblestudycenter.co.uk", true }, - { "leebiblestudycenter.com", true }, { "leebiblestudycentre.co.uk", true }, - { "leebiblestudycentre.com", true }, - { "leech360.com", true }, - { "leeclemens.net", true }, + { "leech360.com", false }, + { "leeclemens.net", false }, { "leedev.org", true }, + { "leekspin.ml", true }, { "leelaylay.com", true }, { "leere.me", true }, { "leerliga.de", true }, @@ -19786,6 +21475,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 }, @@ -19796,7 +21486,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "legacy.bank", true }, { "legadental.com", true }, { "legaillart.fr", true }, - { "legalcontrol.info", true }, { "legalinmotion.es", true }, { "legalrobot.com", true }, { "legatofmrc.fr", true }, @@ -19812,15 +21501,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "legjobblogo.hu", true }, { "legland.fr", true }, { "legoutdesplantes.be", true }, + { "legrandvtc.fr", true }, { "legumefederation.org", true }, { "legumeinfo.org", true }, { "lehighmathcircle.org", true }, { "lehti-tarjous.net", true }, { "leibniz-remscheid.de", false }, { "leideninternationalreview.com", true }, - { "leigh.life", true }, + { "leilautourdumon.de", true }, { "leilonorte.com", true }, - { "leiming.co", true }, { "leinfelder.in", true }, { "leipzig.photo", true }, { "leipziger-triathlon.de", true }, @@ -19833,22 +21522,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lel.ovh", true }, { "lelambiental.com.br", true }, { "lemarcheelagrandeguerra.it", true }, + { "lemazol.fr", true }, { "lemni.top", true }, { "lemoine.at", true }, { "lemondenumerique.com", true }, { "lemondrops.xyz", true }, { "lemonop.com", true }, { "lemonparty.co", true }, + { "lemonrockbiketours.com", true }, + { "lemonthy.ca", true }, + { "lemonthy.com", true }, { "lemouillour.fr", true }, { "lemuslimpost.com", true }, { "lenagroben.de", true }, { "lenaneva.ru", true }, { "lence.net", true }, + { "lendingclub.com", true }, + { "lenget.com", true }, { "lenguajedeprogramacion.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 }, @@ -19869,12 +21565,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leon.net", true }, { "leonauto.de", true }, { "leonax.net", true }, + { "leonbuitendam.nl", true }, { "leondenard.com", true }, - { "leonhooijer.nl", false }, { "leonklingele.de", true }, + { "leontiekoetter.de", true }, { "leowkahman.com", true }, { "lep.gov", true }, { "lepenetapeti.com", true }, + { "lepidum.jp", true }, { "leponton-lorient.fr", true }, { "leppis-it.de", true }, { "leprado.com", true }, @@ -19896,14 +21594,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lesancheslibres.fr", true }, { "lesarts.com", true }, { "lesberger.ch", true }, - { "lesbiansslaves.com", true }, - { "lesbofight.com", true }, + { "lesconteursavis.org", true }, + { "lescourtiersbordelais.com", true }, { "leseditionsbraquage.com", true }, + { "lesfilmsavivre.com", true }, { "lesgoodnews.fr", true }, { "lesharris.com", true }, { "leshervelines.com", true }, { "lesjardinsdemathieu.net", true }, - { "lesjardinsdubanchet.fr", true }, { "lesmamy.ch", true }, { "lesmontagne.net", true }, { "lesnet.co.uk", true }, @@ -19917,8 +21615,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lesterchan.net", true }, { "lesterrassesdusoleil.ch", true }, { "lesyndicat.info", true }, - { "let-go.cc", true }, { "letemps.ch", true }, + { "leto12.xyz", true }, + { "letraba.com", true }, { "lets-bounce.com", true }, { "lets-go-acoustic.de", true }, { "lets-ktai.jp", true }, @@ -19932,12 +21631,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "letsgowhilewereyoung.com", true }, { "letskick.ru", true }, { "letspartyrugby.co.uk", true }, + { "letssackcancer.org", true }, { "letstalkcounseling.com", true }, { "letterbox-online.de", true }, { "letterdance.de", true }, { "letteringinstitute.com", true }, { "lettersblogatory.com", true }, { "lettori.club", true }, + { "letzchange.org", true }, { "leuenhagen.com", true }, { "leulu.com", true }, { "leumi-how-to.co.il", true }, @@ -19946,6 +21647,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "levanscatering.com", true }, { "levelaccordingly.com", true }, { "levelcheat.com", true }, + { "leveluplv.com", true }, { "leveluprails.com", true }, { "levendwater.org", true }, { "levensbron.nl", true }, @@ -19958,6 +21660,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lew.im", true }, { "lewdawson.com", true }, { "lewis.li", true }, + { "lewiscollard.com", true }, { "lewisdatasecurity.com", true }, { "lewislaw.com", true }, { "lewisllewellyn.me", true }, @@ -19971,20 +21674,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "lhamaths.online", true }, { "lhconsult.tk", false }, + { "lhgavarain.com", true }, { "lhost.su", true }, { "li-ke.co.jp", true }, { "li.search.yahoo.com", false }, { "liam-w.io", true }, + { "liamelliott.me", true }, + { "liamlin.me", true }, { "lian-in.com", true }, { "lian-in.net", true }, { "liang-li88.com", true }, @@ -20004,6 +21715,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "libgame.com", true }, { "libmpq.org", true }, { "libnull.com", true }, + { "libra.com", true }, { "library-quest.com", true }, { "libraryextension.com", true }, { "libraryfreedomproject.org", false }, @@ -20016,7 +21728,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "libreduca.com", true }, { "librelamp.com", true }, { "libremail.nl", true }, - { "librends.org", true }, { "libreoffice-from-collabora.com", true }, { "libreofficefromcollabora.com", true }, { "librervac.org", true }, @@ -20029,7 +21740,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lichtspot.de", true }, { "lichttechnik-tumler.com", true }, { "lichttraeumer.de", true }, - { "lickmypussy.us", true }, { "lickthesalt.com", true }, { "lidavidm.me", true }, { "lidel.org", true }, @@ -20045,35 +21755,41 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lidogr.com", true }, { "lidong.me", true }, { "lidow.eu", true }, + { "lidtkemotors.com", true }, { "liduan.net", false }, + { "lie.as", true }, { "liebel.org", true }, { "lieberwirth.biz", true }, { "lieblingsholz.de", true }, + { "liemen.net", true }, + { "lierrmm.space", true }, { "lieuu.com", true }, { "lifanov.com", true }, { "life-emotions.pt", true }, + { "lifeartstudios.net", true }, { "lifebetweenlives.com.au", true }, + { "lifeboxhealthcare.co.uk", true }, { "lifecism.com", true }, - { "lifecoach.tw", false }, { "lifegrip.com.au", true }, { "lifeinhex.com", true }, { "lifeinsurancepro.org", true }, { "lifekiss.ru", true }, { "lifematenutrition.com", true }, { "lifemstyle.com", true }, - { "lifenexto.com", true }, { "lifeqa.net", true }, { "lifequotes-uk.co.uk", true }, { "lifesafety.com.br", true }, { "lifestyle7788.com", true }, { "lifestylefinancial.ca", true }, + { "lifetree.network", true }, { "lifi.digital", true }, { "lifi.is", true }, { "liftie.info", true }, + { "ligadosgames.com", true }, { "light-up.xyz", true }, { "light.mail.ru", true }, { "lightbox.co", true }, - { "lighthouseinstruments.com", true }, + { "lightdream.tech", true }, { "lighting-centres.co.uk", true }, { "lightingagoura.com", true }, { "lightingagourahills.com", true }, @@ -20095,29 +21811,37 @@ 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 }, - { "lighttp.com", true }, { "lightupcollective.co.uk", true }, + { "lignite.com", true }, { "lignoma.com", true }, { "ligonier.com", true }, { "lihaul.dnsalias.net", true }, - { "lijero.co", true }, { "lijncoaching.nl", true }, + { "lijstje.be", true }, + { "lijstje.nl", true }, { "likc.me", true }, { "likeablehub.com", true }, { "likeabox.de", true }, + { "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 }, { "lily-bearing.com", true }, { "lily-inn.com", true }, { "lilyfarmfreshskincare.com", true }, + { "lilylasvegas.com", true }, { "lilysbouncycastles.com", true }, { "lim-light.com", true }, { "limap.ch", true }, @@ -20125,6 +21849,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "limberg.me", true }, { "limbo.services", true }, { "limeburst.net", true }, + { "limelabs.de", true }, + { "limelabs.io", true }, { "limeres.com", true }, { "limereslaw.com", true }, { "limitededitioncomputers.com", true }, @@ -20135,7 +21861,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "limousineservicezurich.com", true }, { "limpid.nl", true }, { "limules.ch", true }, - { "limunana.com", true }, { "lin.fi", true }, { "linan.blog", true }, { "lincdavis.com", true }, @@ -20143,15 +21868,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lincolnfinewines.com", true }, { "lincolnsfh.com", true }, { "lincolnwayflorist.com", true }, - { "lincsbouncycastlehire.co.uk", true }, { "lindalap.fi", 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.biz", true }, @@ -20160,12 +21885,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linearaudio.net", true }, { "linearaudio.nl", true }, { "linearmap.com", true }, - { "linernotekids.com", true }, { "linfamilygc.com", true }, { "lingerie.com.br", true }, { "lingeriesilhouette.com", true }, { "lingotaxi.com", true }, { "linguamilla.com", true }, + { "linguatrip.com", false }, { "lingvo-svoboda.ru", true }, { "linherest.tk", true }, { "link-sanitizer.com", true }, @@ -20173,6 +21898,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linkat4.cz", true }, { "linkdr.uk", true }, { "linkedinbackground.com", true }, + { "linkedpipes.com", true }, { "linkenheil.org", true }, { "linklocker.co", true }, { "linkmaker.co.uk", true }, @@ -20186,20 +21912,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linkycat.com", true }, { "linode.com", false }, { "linost.com", true }, - { "linostassi.net", 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 }, @@ -20207,27 +21935,27 @@ 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 }, { "linzgau.de", true }, { "linzyjx.com", true }, { "lionhosting.nl", true }, + { "lionlyrics.com", true }, { "lionsdeal.com", true }, { "lipartydepot.com", true }, { "lipex.com", true }, - { "lipo.lol", true }, { "lipoabaltimore.org", true }, { "liqd.net", true }, { "liquid.cz", true }, { "liquidhost.co", true }, { "liquidinternet.co", true }, { "liquidradio.pro", true }, - { "liquidwarp.net", true }, + { "liquipedia.net", true }, { "lirion.de", true }, { "liris-beautywelt.de", true }, { "lirlandais.ch", true }, @@ -20235,10 +21963,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lisamccorrie.com", true }, { "lisamortimore.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 }, @@ -20251,6 +21979,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "litebits.com", true }, { "litemind.com", true }, { "literarymachin.es", true }, + { "literature-schools.com", true }, { "litfin.name", true }, { "lithan.com", true }, { "lithesalar.se", true }, @@ -20258,6 +21987,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "litsovet.com", true }, { "little-cake.com", true }, { "littlebestfriend.de", true }, + { "littleboutiqueshop.co.uk", true }, + { "littleboutiqueshop.com", true }, + { "littleboutiqueshop.uk", true }, { "littlefairy.no", true }, { "littlefamilyadventure.com", true }, { "littlegreece.ae", true }, @@ -20266,8 +21998,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "littlepigcreek.com.au", true }, { "littlepincha.fr", true }, { "littleprincessandmascotparties.co.uk", true }, + { "littleqiu.net", true }, { "littleredsbakeshop.com", true }, - { "littlericket.me", true }, + { "littlericket.me", false }, { "littlescallywagsplay.co.uk", true }, { "littleskin.cn", true }, { "littleswitch.co.jp", true }, @@ -20280,8 +22013,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liufengyu.cn", true }, { "liul.in", true }, { "liupeicheng.top", true }, + { "liushuyu.tk", true }, { "liv3d.stream", true }, { "live4k.media", false }, + { "livebandphotos.com", true }, { "livebetterwith.com", true }, { "livebythesun.de", true }, { "livecards.co.uk", true }, @@ -20292,7 +22027,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "livedesign24.de", true }, { "liveflightapp.com", true }, { "liveforspeed.se", true }, - { "livejasmin.dk", true }, { "livekaarten.be", true }, { "livekaarten.nl", true }, { "livekarten.at", true }, @@ -20310,40 +22044,50 @@ 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 }, { "living24.de", true }, { "livingforreal.com", true }, + { "livinginhimalone.com", true }, { "livinglocalnashville.com", true }, { "livingworduk.org", true }, { "livnev.me", true }, { "livnev.xyz", true }, { "livolett.de", true }, { "livrariacoad.com.br", true }, + { "livres-et-stickers.com", true }, { "livroseuniformes.com.br", true }, - { "lixiaojiang.ga", true }, { "lixtick.com", true }, { "liyin.date", true }, { "liyinjia.com", true }, + { "liyunbin.com", true }, { "liz.ee", true }, { "lizardsystems.com", true }, { "lizhi.io", true }, { "lizhi123.net", true }, + { "lizmooredestinationweddings.com", true }, { "lizzaran.io", true }, { "ljason.cn", true }, + { "ljc.ro", true }, { "ljs.io", true }, { "lk-hardware.cz", true }, { "lknw.de", true }, { "lkp111138.me", true }, { "llamacuba.com", true }, + { "llemoz.com", true }, + { "ller.xyz", true }, { "llm-guide.com", true }, + { "llnl.gov", true }, { "lloyd-day.me", true }, + { "llslb.com", false }, { "lm-pumpen.de", false }, - { "lmcm.io", true }, { "lmddgtfy.net", true }, { "lmerza.com", true }, { "lmintlcx.com", true }, @@ -20351,41 +22095,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lmsptfy.com", true }, { "lmtls.me", true }, { "lmtm.eu", true }, + { "lng-17.org", true }, { "lnhequipmentltd.com", true }, { "lntu.org", true }, { "lnx.li", true }, + { "lnyltx.cn", true }, { "load-ev.de", true }, { "loadlow.me", true }, { "loadwallet.com", true }, - { "loafhead.me", true }, { "loanaway.ca", true }, { "loancompare.co.za", true }, { "loandolphin.com.au", true }, + { "loanreadycredit.com", true }, { "loanstreet.nl", true }, { "lob-staging.com", true }, { "lob.com", true }, { "lobivia.de", true }, + { "lobosdomain.hopto.org", true }, { "lobsangstudio.com", true }, { "lobstr.co", true }, { "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 }, { "localethereum.com", true }, { "localhorst.duckdns.org", true }, - { "localhorst.xyz", false }, + { "localhorst.xyz", true }, { "localhost.ee", true }, + { "localprideart.com", true }, { "localspot.pl", true }, { "locapos.com", true }, { "locationvoitureallemagne.com", true }, { "locationvoitureangleterre.com", true }, { "locationvoitureaustralie.com", true }, { "locationvoiturebelgique.com", true }, - { "locationvoiturecorse.net", true }, { "locationvoitureespagne.com", true }, { "locationvoitureitalie.com", true }, { "locationvoitureportugal.com", true }, @@ -20397,14 +22142,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "locksmithgarland-tx.com", true }, { "locksmithgrapevinetx.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 }, @@ -20421,12 +22186,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "logement.com", true }, { "logentries.com", false }, { "logexplorer.net", true }, + { "logfile.at", true }, + { "logfile.ch", true }, { "logicchen.com", 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 }, @@ -20450,21 +22219,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "logue.be", true }, { "logze.nl", true }, { "lohanaflores.com.br", true }, + { "lohl1kohl.de", 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 }, @@ -20484,10 +22254,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "lolnames.gg", true }, { "lolpatrol.de", true }, @@ -20498,7 +22270,6 @@ 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 }, @@ -20507,12 +22278,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "londonkeyholdingcompany.co.uk", true }, { "lonelytweets.com", true }, { "lonesomecosmonaut.com", true }, + { "long-journey.com", true }, + { "long139.com", true }, + { "long18.cc", true }, + { "long688.com", true }, { "longhaircareforum.com", true }, { "longhorn-imports.com", true }, { "longhorn.id.au", true }, - { "longma.pw", true }, { "longstride.net", true }, - { "longtaitouwang.com", true }, + { "longtermcare.gov", true }, { "lonniec.com", true }, { "lonniemason.net", true }, { "look.co.il", true }, @@ -20537,15 +22311,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "loony.info", true }, { "loopower.com", true }, { "loopstart.org", true }, + { "looseleafsecurity.com", true }, { "loothole.com", true }, { "loovto.net", true }, + { "loposchokk.com", true }, { "loqu8.com", true }, + { "lord.sh", true }, { "lordofthebrick.com", true }, { "lore.azurewebsites.net", true }, { "lorenadumitrascu.ro", true }, { "loreofthenorth.com", true }, { "loreofthenorth.nl", true }, + { "lorientlejour.com", true }, { "loritaboegl.de", true }, + { "lormansas.com", true }, { "losangelestown.com", true }, { "losless.fr", true }, { "losreyesdeldescanso.com.ar", true }, @@ -20553,8 +22332,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lost.report", true }, { "lostkeys.co.uk", true }, { "lostserver.com", true }, - { "lostwithdan.com", true }, + { "loteamentomontereiitu.com.br", true }, { "lothlorien.ca", false }, + { "lotl.ru", true }, { "lotn.mobi", true }, { "lotn.nl", true }, { "lotnonline.com", true }, @@ -20567,13 +22347,17 @@ 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 }, { "love4taylor.me", true }, { "loveandadoreboutique.com", true }, + { "lovebigisland.com", true }, { "lovebo9.com", true }, { "lovebo9.net", true }, + { "lovecrystal.co.uk", true }, { "loveislandgames.com", true }, { "loveisourweapon.com", true }, { "lovelens.ch", false }, @@ -20581,21 +22365,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lovelivewiki.com", true }, { "lovelovenavi.jp", true }, { "lovelytimes.net", true }, + { "lovemanagementaccounts.co.uk", 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 }, @@ -20604,19 +22391,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lowson.ca", true }, { "loxal.net", true }, { "loxal.org", true }, + { "loyaltyondemand.club", true }, + { "loyaltyondemand.eu", true }, { "lp-support.nl", true }, - { "lpacademy.com.br", true }, + { "lpcom.de", true }, + { "lprcommunity.co.za", true }, { "lpt-nebreziny.eu", true }, + { "lqs.me", true }, { "lra-cloud.de", true }, - { "lrhstsa.com", true }, + { "lrdo.net", 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 }, @@ -20632,28 +22424,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lubomirkazakov.com", true }, { "luc-oberson.ch", true }, { "luca.swiss", true }, - { "lucacastelnuovo.nl", true }, + { "lucacastelnuovo.nl", false }, + { "lucafontana.net", true }, { "lucafrancesca.me", true }, { "lucakrebs.de", true }, { "lucasantarella.com", true }, + { "lucasbergen.ca", true }, + { "lucascobb.com", true }, { "lucasem.com", true }, + { "lucasgaland.com", true }, { "lucasgymnastics.com", true }, { "lucaslarson.net", true }, - { "lucassoler.com.ar", true }, { "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 }, { "luckyxf.com", true }, { "lucy.science", true }, { "lucyparsonslabs.com", true }, { "lucysan.net", true }, + { "lucz.co", true }, { "ludek.biz", true }, { "ludikovsky.name", true }, { "ludogue.net", true }, @@ -20672,18 +22468,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luftbild-siegerland.de", true }, { "luftreiniger.biz", true }, { "lufu.io", true }, - { "luganskservers.net", true }, { "lugbb.org", true }, { "luginbuehl.be", true }, { "luginbuehl.eu", true }, { "lugui.in", true }, { "lui.pink", true }, { "luiscapelo.info", true }, + { "luisgf.es", 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 }, @@ -20699,18 +22496,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "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 }, { "lunanova.moe", true }, @@ -20720,6 +22521,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lunarshark.com", true }, { "lunartail.nl", true }, { "lunasqu.ee", true }, + { "lunastrail.com", true }, { "lunchbunch.me", true }, { "lune-indigo.ch", true }, { "lungta.pro", true }, @@ -20727,20 +22529,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lunidea.com", true }, { "lunis.net", true }, { "lunix.io", true }, - { "lunorian.is", false }, + { "lunorian.is", true }, { "luoe.me", true }, { "luoh.cc", true }, { "luoh.me", true }, { "luohua.im", true }, { "luongvu.com", true }, + { "luowu.cc", true }, + { "lupecode.com", true }, { "lupinencyclopedia.com", true }, + { "lupinenorthamerica.com", true }, + { "luqsus.pl", true }, { "luso-livros.net", true }, - { "lusteniny.cz", false }, + { "lusteniny.cz", true }, { "lustige-zitate.com", true }, { "lustin.fr", true }, { "lustrum.ch", true }, { "lusynth.com", true }, - { "luteijn.biz", true }, { "luteijn.cloud", true }, { "luteijn.email", true }, { "luteijn.pro", true }, @@ -20751,7 +22556,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luuppi.fi", true }, { "luvare.com", true }, { "luvbridal.com.au", true }, - { "luxescreenprotector.nl", true }, + { "luvplay.co.uk", true }, + { "luxcraft.eng.br", true }, + { "luxescreenprotector.nl", false }, { "luxsci.com", true }, { "luxurynsight.net", true }, { "luxurytimepieces.net", true }, @@ -20769,11 +22576,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -20784,9 +22591,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -20798,16 +22605,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lyricfm.ie", true }, { "lys.ch", true }, { "lyst.co.uk", true }, + { "lyukaacom.ru", true }, { "lyuly.com", true }, { "lyx.dk", true }, - { "lz.sb", true }, { "lzh.one", true }, + { "lzwc.nl", true }, + { "lzzr.me", true }, { "m-22.com", true }, { "m-chemical.com.hk", true }, - { "m-edmondson.co.uk", true }, + { "m-gh.info", true }, { "m-idea.jp", true }, { "m-kleinert.de", true }, { "m-mail.fr", true }, + { "m-monitor.pl", true }, { "m-orthodontic.com", true }, { "m-ses.fr", true }, { "m.facebook.com", true }, @@ -20815,7 +22625,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m.me", true }, { "m0t0k1ch1.com", true }, { "m132.eu", true }, + { "m134.eu", true }, { "m2epro.com", true }, + { "m2il.co", true }, { "m2os.com", true }, { "m4rcus.de", true }, { "ma-eir.nl", true }, @@ -20830,6 +22642,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mabankonline.com", true }, { "mabulledu.net", true }, { "mac-i-tea.ch", true }, + { "mac.biz.tr", true }, { "mac1.net", true }, { "macaw.nl", true }, { "macaws.org", true }, @@ -20842,6 +22655,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "machbach.net", true }, { "machetewp.com", true }, { "machikka.com", false }, + { "machinetransport.com", true }, { "macht-elektro.de", true }, { "machtweb.de", true }, { "machu-picchu.nl", true }, @@ -20866,8 +22680,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "macros.co.jp", true }, { "macstore.pe", true }, { "mactools.com.co", true }, + { "mad.ninja", true }, { "madae.nl", true }, { "madars.org", false }, + { "madbicicletas.com", true }, { "madbin.com", true }, { "madbouncycastles.co.uk", true }, { "maddi.biz", true }, @@ -20876,32 +22692,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maddistonpsa.co.uk", true }, { "maddreefer.com", true }, { "made-in-earth.co.jp", true }, + { "made-to-usb.com", true }, { "madebydusk.com", true }, { "madebyshore.com", true }, - { "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 }, { "madmar.ee", true }, { "madoka.nu", true }, - { "madokami.net", true }, { "madreacqua.org", 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 }, @@ -20918,6 +22732,7 @@ 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 }, @@ -20926,9 +22741,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maggie.com", true }, { "magi-cake.com", true }, { "magi.systems", true }, + { "magic-cards.info", true }, { "magical-secrets.com", true }, + { "magical.rocks", true }, { "magicalcircuslv.com", true }, + { "magicalshuttle.fr", true }, { "magicbroccoli.de", true }, + { "magiccards.info", true }, { "magicdaysomagh.co.uk", true }, { "magickmoments.co.uk", true }, { "magiclen.org", true }, @@ -20936,6 +22755,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magictable.com", true }, { "magicvodi.at", true }, { "magilio.com", true }, + { "magnacarebroker.com", true }, { "magnatronic.com.br", true }, { "magneticattraction.com.au", true }, { "magnetpass.uk", true }, @@ -20944,19 +22764,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magnificentdata.com", true }, { "magnoliadoulas.com", true }, { "magnoliastrong.com", true }, + { "magnunbaterias.com.br", true }, { "magonote-nk.com", true }, + { "magu.kz", true }, { "maguire.email", true }, { "magwin.co.uk", 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 }, @@ -20964,6 +22789,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 }, @@ -20973,10 +22799,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mailinabox.email", true }, { "mailjet.tech", true }, { "maillady-susume.com", true }, + { "maillink.store", true }, { "mailmag.net", false }, - { "mailpenny.com", true }, { "mailto.space", true }, - { "mailum.org", true }, + { "mailum.org", false }, { "mainechiro.com", true }, { "mainframeserver.space", true }, { "mainlined.org", true }, @@ -20985,11 +22811,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "maitheme.com", true }, { "maitrechaton.fr", true }, { "maitrise-orthopedique.com", true }, { "majahoidja.ee", true }, @@ -21001,19 +22829,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "majkassab.net", true }, { "majkassab.org", true }, { "majkl.me", true }, + { "majkl.xyz", true }, + { "majkl578.cz", true }, { "majkyto.cz", true }, + { "majlovesreg.one", true }, + { "majolka.com", true }, + { "majorpaintingco.com", true }, { "makaleci.com", true }, + { "makalu.me", true }, { "make-your-own-song.com", true }, { "makeaboldmove.com", true }, + { "makechanges.com.au", true }, { "makedin.net", true }, { "makem-bounce.co.uk", true }, - { "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 }, { "makino.games", true }, { "makkusu.photo", true }, @@ -21027,6 +22861,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 }, @@ -21034,6 +22869,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 }, @@ -21041,7 +22877,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 }, @@ -21049,7 +22884,6 @@ 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 }, @@ -21058,18 +22892,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "malyshata.com", true }, { "malysvet.net", true }, { "mamaasia.info", true }, { "mamadea.be", true }, - { "mamadoma.com.ua", true }, { "mamafit.club", true }, { "mamamoet.ru", true }, { "mamanecesitaungintonic.com", true }, + { "mambas.cn", true }, { "mamiecouscous.com", true }, { "mammals.net", true }, { "mammaw.com", true }, @@ -21077,34 +22912,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mammooc.org", 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 }, { "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 }, { "manhattanchoralensemble.org", true }, { "manhole.club", true }, { "manhuagui.com", true }, @@ -21113,46 +22949,55 @@ 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 }, - { "manuel7espejo.com", true }, + { "manuel-schefczyk.de", true }, { "manuelahidalgo.org", true }, { "manueldopheide.com", true }, { "manueli.de", true }, { "manuelpinto.in", false }, - { "manuelrueger.de", true }, { "manufacturing.gov", 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 }, + { "maomao.blog", true }, { "maomihz.com", true }, { "maone.net", true }, { "maorseo.com", true }, @@ -21161,14 +23006,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maozedong.red", true }, { "map4erfurt.de", true }, { "map4jena.de", true }, + { "mapasmundi.com.br", true }, { "mapblender.com", true }, { "mapeo.io", true }, { "maplanetebeaute.fr", 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 }, + { "maquininhamercadopoint.com.br", true }, { "mar-eco.no", true }, { "marabumadrid.com", false }, { "marakovits.net", true }, @@ -21176,8 +23024,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marbogardenlidkoping.se", true }, { "marc-hammer.de", true }, { "marc-schlagenhauf.de", true }, - { "marcaixala.me", true }, - { "marcaudefroy.com", true }, + { "marcbeije.com", true }, + { "marcceleiro.com", true }, { "marceau.ovh", true }, { "marcel-preuss.de", true }, { "marcel-veronetzki.de", true }, @@ -21187,76 +23035,90 @@ 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", 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 }, + { "marcoslater.com", 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 }, { "margecommunication.com", true }, { "margo-co.ch", true }, { "margo.ml", true }, { "margotlondon.co.uk", true }, + { "margots.biz", true }, + { "margots.life", true }, + { "margots.tech", true }, + { "marguerite-maison.fr", true }, + { "mariacorzo.com", true }, { "mariage-photo.ch", true }, { "marianatherapy.com", true }, { "marianelaisashi.com", true }, { "marianhoenscheid.de", true }, { "mariannenan.nl", true }, { "mariannethijssen.nl", true }, - { "mariaolesen.dk", true }, { "mariapietropola.com", true }, { "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 }, + { "marinecadastre.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 }, @@ -21264,17 +23126,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marketing-2.de", true }, { "marketing.limited", true }, { "marketing91.com", true }, + { "marketingbrandingnews.com", true }, + { "marketingbrandingnews.net", true }, { "marketingco.nl", true }, { "marketingconverts.com", true }, + { "marketingforfood.com", true }, { "marketinggenerators.nl", true }, + { "marketingtrendnews.com", true }, { "marketingvirtuales.com", true }, - { "marketio.co", true }, { "marketizare.ro", true }, { "marketlinks.org", true }, { "marketnsight.com", true }, { "markhaehnel.de", true }, { "markhenrick.site", true }, { "markholden.guru", true }, + { "markhoodphoto.com", true }, { "markido.com", true }, { "markitzeroday.com", true }, { "markkirkforillinois.com", true }, @@ -21283,11 +23149,13 @@ 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 }, { "markscastles.co.uk", true }, { "marksm.it", true }, + { "marksmanhomes.com", true }, { "marksmit.co", true }, { "marksouthall.com", true }, { "markspres.org", true }, @@ -21296,12 +23164,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marktcontact.com", true }, { "marktissink.nl", true }, { "markup-ua.com", true }, + { "markus-blog.de", true }, { "markus-dev.com", true }, + { "markus-keppeler.de", true }, { "markus-musiker.de", true }, { "markus-ullmann.de", true }, { "markus.design", true }, { "markusehrlicher.de", true }, { "markusgran.de", true }, + { "markuskeppeler.de", true }, + { "markuskeppeler.no-ip.biz", true }, { "marl.fr", true }, { "marloncommunications.com", true }, { "marlonlosurdopictures.com", true }, @@ -21321,24 +23193,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marriage-shrine.jp", true }, { "marrickvilleapartments.com.au", true }, { "marsanvet.com", true }, - { "marsatapp.com", true }, { "marsble.com", true }, { "marseillekiteclub.com", true }, + { "marshallford.me", true }, { "marshallscastles.com", true }, { "marshallwilson.com", true }, { "marshmallow.co", true }, { "marshmallow.com", true }, { "marshyplay.live", true }, + { "marsikelektro.cz", true }, { "martasibaja.com", true }, { "martelange.ovh", true }, { "marten-buer.de", true }, { "martensmxservice.nl", true }, { "martensson.io", true }, { "marti201.ga", true }, + { "martialarts-wels.at", true }, { "martide.com", true }, { "martiestrimsalon.nl", true }, { "martijn.site", true }, { "martijnhielema.nl", true }, + { "martijnvanderzande.nl", true }, + { "martin-loewer.de", true }, { "martin-smith.info", true }, { "martin.vet", true }, { "martindimitrov.cz", true }, @@ -21366,11 +23242,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maryeileen90.party", true }, { "maryjruggles.com", true }, { "marykatrinaphotography.com", true }, - { "masa-hou.com", true }, + { "marylandbasementandcrawlspacewaterproofing.com", 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 }, @@ -21378,12 +23254,10 @@ 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 }, @@ -21391,17 +23265,17 @@ 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 }, { "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 }, @@ -21421,26 +23295,38 @@ 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 }, + { "mathematris.com", true }, { "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 }, @@ -21454,8 +23340,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "matrimoni.uk", true }, { "matriterie-sdv.ro", true }, @@ -21463,6 +23352,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matrixmedia.ro", true }, { "matrixreq.com", true }, { "matsu-semi.com", true }, + { "matsu-walk.com", true }, { "matt-brooks.com", true }, { "matt-royal.gr", true }, { "matt.re", true }, @@ -21480,8 +23370,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mattfin.ch", true }, { "mattforster.ca", true }, { "matthecat.com", true }, + { "matthewchapman.co.uk", true }, { "matthewfells.com", true }, { "matthewgallagher.co.uk", true }, + { "matthewj.ca", true }, { "matthewkenny.co.uk", true }, { "matthewohare.com", true }, { "matthewsetter.com", true }, @@ -21495,22 +23387,21 @@ 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 }, - { "mattwservices.co.uk", true }, { "matviet.vn", true }, { "matway.com", true }, { "matway.net", true }, - { "matze.co", true }, { "mauerwerkstag.info", true }, { "mauldincookfence.com", true }, { "mauran.me", true }, - { "maurice-walker.com", true }, + { "maurice-walker.com", false }, { "mauricedb.nl", true }, + { "maurovacca.com", true }, { "maury-moteurs.com", true }, { "mavenclinic.com", true }, { "mavensecurity.com", true }, @@ -21526,18 +23417,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mawidabp.com", true }, { "mawidaca.com", true }, { "mawo.olkusz.pl", true }, - { "max-mad.com", true }, { "max-moeglich.de", true }, { "max-went.pl", true }, { "max.gov", true }, + { "maxb.fm", true }, + { "maxbachmann.de", true }, { "maxbeenen.de", true }, { "maxbruckner.de", true }, { "maxbruckner.org", true }, { "maxchan.info", true }, { "maxdev72.freeboxos.fr", true }, - { "maxfox.me", true }, + { "maxh.me.uk", true }, { "maxhamon.ovh", true }, - { "maxhoechtl.at", true }, { "maximdeboiserie.be", true }, { "maximdens.be", true }, { "maximeferon.fr", true }, @@ -21550,22 +23441,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maxisito.it", true }, { "maxkaul.de", true }, { "maxmilton.com", true }, + { "maxmind.com", true }, { "maxp.info", true }, { "maxpl0it.com", true }, { "maxr1998.de", true }, - { "maxrandolph.com", true }, { "maxtruxa.com", true }, { "maxundlara.at", true }, { "maxwaellenergie.de", true }, { "maxwell-english.co.jp", false }, - { "maxwellflynn.com", true }, { "maxwellmoore.co.uk", true }, { "may24.tw", true }, - { "maya-ro.com", true }, { "mayaimplant.com", true }, { "mayavi.co.in", true }, { "maydex.info", true }, { "mayerbrownllz.com", true }, + { "mayoimobiliare.ro", true }, { "mayomarquees.com", true }, { "mayopartyhire.com", true }, { "maypolevilla.co.uk", true }, @@ -21573,14 +23463,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mazda-mps.de", true }, { "mazda-thermote.com", true }, { "mazda626.net", true }, - { "maze.design", true }, + { "maze.design", false }, { "maze.fr", true }, + { "mazenjobs.com", true }, { "mazternet.ru", true }, + { "mazurlabs.tk", true }, { "mazzotta.me", true }, { "mb-is.info", true }, + { "mb300sd.com", true }, + { "mb300sd.net", true }, { "mbaasy.com", true }, { "mbaestlein.de", true }, { "mbainflatables.co.uk", true }, + { "mbanq.com", true }, { "mbardot.com", true }, { "mbasic.facebook.com", false }, { "mbcars.be", true }, @@ -21589,20 +23484,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mbilker.us", true }, { "mbinf.de", false }, { "mbits.solutions", true }, + { "mbk.net.pl", true }, { "mblankhorst.nl", true }, { "mble.mg", true }, { "mbp.banking.co.at", false }, { "mbr-net.de", true }, { "mbrooks.info", true }, { "mbs-journey.com", true }, + { "mbsec.net", true }, { "mburns.duckdns.org", true }, { "mbweir.com", true }, + { "mbwis.net", true }, { "mc-jobs.net", true }, { "mc-venture.net", false }, { "mc4free.cc", true }, { "mcatnnlo.org", true }, { "mccoolesredlioninn.com", true }, + { "mccordsvillelocksmith.com", true }, { "mccrackon.com", true }, + { "mcculloughjchris.com", true }, { "mcdermottautomotive.com", true }, { "mcdona1d.me", true }, { "mcdonalds.be", true }, @@ -21613,42 +23513,46 @@ 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 }, + { "mchopkins.net", true }, { "mchristopher.com", true }, { "mcinterface.de", true }, { "mcivor.me", true }, - { "mckenry.net", true }, + { "mckenry.net", false }, { "mckernan.in", true }, { "mckinley.school", true }, { "mcl.de", false }, { "mcl.gg", true }, { "mclinflatables.co.uk", true }, { "mclmotors.co.uk", true }, - { "mclyr.com", true }, + { "mcmillansedationdentistry.com", false }, { "mcmillanskiclub.com.au", true }, { "mcneill.io", true }, { "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 }, - { "mcsniper.co", 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 }, + { "mdazo.net", true }, { "mdbouncycastlehirelondon.co.uk", true }, { "mdcloudpracticesolutions.com", true }, { "mdcloudps.com", true }, @@ -21664,6 +23568,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mdoering.de", true }, { "mdosch.de", true }, { "mdpraha.cz", true }, + { "mdrthmcs.io", true }, + { "mds-paris.com", true }, { "mdsave.com", true }, { "mdx.no", true }, { "mdxdave.de", true }, @@ -21675,14 +23581,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meadowfen.farm", true }, { "mealgoo.com", true }, { "meamod.com", false }, - { "meanevo.com", 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 }, { "mechmk1.me", true }, + { "med-colleges.com", true }, { "med-otzyv.ru", true }, { "med360.at", true }, { "medba.se", true }, @@ -21693,37 +23603,48 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meddigital.com", false }, { "mede-handover.azurewebsites.net", true }, { "medeinos.lt", true }, + { "medellinapartamentos.com", true }, { "medexpress.co.uk", true }, { "medhy.fr", true }, { "medi-link.co.il", true }, { "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 }, + { "mediabm.jp", true }, { "mediaburst.co.uk", true }, { "mediadex.be", true }, + { "mediaexpert.fr", true }, { "mediafly.com", true }, { "mediafocus.biz", true }, { "mediagenic.ch", true }, { "mediagold.it", true }, { "mediagrand.net", true }, + { "mediahaus.de", true }, { "mediajurnal.com", true }, { "medialab.nrw", true }, { "mediamarkt.pl", true }, { "mediapart.fr", true }, + { "mediarithmics.com", true }, + { "mediarithmics.io", true }, { "mediarocks.de", true }, { "mediaselection.eu", true }, { "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 }, @@ -21736,16 +23657,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medienweite.de", true }, { "medifi.com", true }, { "medigap-quote.net", true }, + { "medik8.com.cy", true }, { "medikuma.com", true }, + { "medino.com", true }, { "medinside.ch", true }, { "medinside.li", true }, { "medinsider.ch", true }, { "medinsider.li", true }, { "medireport.fr", true }, + { "meditadvisors.com", true }, + { "meditel.nl", true }, { "medium.com", 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 }, { "medschat.com", true }, @@ -21754,6 +23682,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medtehnika.ua", true }, { "medusa.wtf", true }, { "meduza.io", true }, + { "medvedikorenka.cz", true }, { "medvet.com.es", true }, { "medwaybouncycastlehire.co.uk", true }, { "medyotan.ga", true }, @@ -21763,7 +23692,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 }, @@ -21772,10 +23704,13 @@ 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 }, + { "mega-aukcion.ru", true }, { "mega-byte.nl", true }, { "mega-feeling.de", true }, { "mega.co.nz", true }, @@ -21788,17 +23723,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "megaflowers.ru", true }, { "megagifs.de", true }, { "megainflatables.co.uk", true }, + { "megakoncert90.cz", true }, + { "megamarkey.de", true }, { "megamisja.pl", 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 }, + { "mego.cloud", true }, { "megumico.net", true }, { "megustariasaber.com", true }, { "megztosidejos.lt", true }, @@ -21838,7 +23776,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mekesh.net", true }, { "mekesh.ru", true }, { "meklon.net", true }, - { "mekongeye.com", true }, { "melaniebernhardt.com", true }, { "melaniegruber.de", true }, { "melbourne.dating", true }, @@ -21850,12 +23787,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "melhoresdominios.com", true }, { "melhoresmarcasdenotebook.com.br", true }, { "melillaorienta.es", true }, + { "melina-schefczyk.de", true }, { "melissaadkins.com", true }, { "melissaauclaire.com", true }, { "melissameuwszen.nl", true }, { "melitopol.co.ua", true }, { "melnessgroup.com", true }, { "melnikov.ch", true }, + { "melodicprogressivehouse.com", true }, { "melodiouscode.co.uk", true }, { "melodiouscode.com", true }, { "melodiouscode.net", true }, @@ -21868,15 +23807,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 }, @@ -21906,19 +23843,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -21929,23 +23865,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mercedes-benz.io", true }, { "mercedes-ig.de", true }, { "mercedespartscenter.com", true }, + { "merchant-automotive.com", true }, { "mercier-auto.com", true }, { "mercier-cars.co.uk", true }, + { "mercredifiction.io", true }, { "mercury.photo", true }, { "mercuryamericas.com", false }, { "meremeti-online.gr", true }, - { "meremobil.dk", true }, + { "merenbach.com", true }, { "merenita.com", true }, - { "merenita.eu", true }, { "merenita.net", true }, { "merenita.nl", true }, + { "meric-graphisme.info", true }, + { "meridianfresno.com", true }, + { "meridianmetals.com", true }, { "meridianstore.com.br", true }, { "merkel.me", true }, { "merlet.eu", true }, - { "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 }, @@ -21956,6 +23899,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mescaline.com", true }, { "mescaline.org", true }, { "mesh.gov", true }, + { "meshok.info", true }, { "mesicka.com", true }, { "messagescelestes-archives.ca", true }, { "messagevortex.com", true }, @@ -21979,12 +23923,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "metaether.net", true }, { "metafurquest.net", true }, { "metalu.ch", true }, - { "metanic.org", true }, { "metanic.services", true }, { "metanodo.com", true }, { "metapeen.nl", true }, + { "metaregistrar.com", true }, { "metasquare.com.au", true }, { "metasquare.nyc", true }, + { "metasysteminfo.com", true }, { "metaword.com", true }, { "metaword.net", true }, { "metaword.org", true }, @@ -21999,28 +23944,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meteobox.mx", true }, { "meteobox.pl", true }, { "meteobox.sk", true }, + { "meteocat.net", true }, { "meteorapp.space", true }, + { "meteorologiaenred.com", true }, + { "meteosherbrooke.com", true }, { "meteosmit.it", true }, { "meterhost.com", true }, { "methamphetamine.co.uk", true }, { "methylone.com", true }, - { "metikam.pl", true }, - { "metin2sepeti.com", true }, + { "metric.ai", true }, { "metro-lawn-care.com", true }, { "metro-web.net", true }, { "metroairvirtual.com", true }, - { "metrobriefs.com", true }, { "metrolush.com", true }, + { "metron-eging.com", true }, + { "metron-networks.com", true }, { "metronaut.de", true }, { "metropop.ch", true }, { "metsasta.com", true }, { "mettekopp.dk", 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 }, @@ -22029,14 +23980,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mfgusa.com", true }, { "mfits.co.uk", true }, { "mflodin.se", true }, + { "mfpccprod.com", true }, { "mfxbe.de", true }, + { "mfz.mk", 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 }, @@ -22047,35 +24004,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mi-so-ji.com", true }, { "mi80.com", true }, { "miagexport.com", true }, - { "miamicityballet.org", true }, { "miaonagemi.com", true }, { "miaoubox.com", true }, { "miaowo.org", true }, { "miasarafina.de", true }, - { "miboulot.com", true }, + { "mibuiin.com", true }, { "micado-software.com", true }, - { "micaiahparker.com", true }, { "micalodeal.ch", true }, - { "micasamgmt.com", false }, { "micbase.com", true }, + { "michadenheijer.com", true }, + { "michael-schefczyk.de", true }, + { "michael-schilling.de", true }, { "michael-steinhauer.eu", true }, { "michael.band", true }, { "michaelasawyer.com", true }, { "michaelband.co", true }, { "michaelband.com", true }, + { "michaelcullen.name", 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 }, @@ -22090,7 +24049,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michalwiglasz.cz", true }, { "michaonline.de", true }, { "michel-wein.de", true }, - { "michele.ml", true }, { "michellavat.com", true }, { "michiganstateuniversityonline.com", true }, { "michiganunionoptout.com", true }, @@ -22101,7 +24059,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miconcinemas.com", true }, { "micr.io", true }, { "micr0lab.org", true }, - { "microbiote-insectes-vecteurs.group", true }, { "microco.sm", true }, { "microcomploja.com.br", true }, { "microdots.de", true }, @@ -22110,22 +24067,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "micromata.de", true }, { "microsoftaffiliates.azurewebsites.net", true }, { "microvb.com", true }, + { "microzubr.com", true }, { "midair.io", true }, { "midasjewellery.com.au", true }, { "midgawash.com", true }, { "midkam.ca", true }, - { "midlandgate.de", true }, { "midlandleisuresales.co.uk", 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 }, { "midstatebasement.com", true }, { "midtowndentistry.com", true }, { "midwestbloggers.org", true }, + { "midwestplus.com", true }, { "midweststructuralrepair.com", true }, { "miegl.com", true }, + { "miembarcacion.com", true }, { "miemus.eu", true }, { "mietwohnungen-vermietung.com", true }, { "mieuxgrandir.ch", true }, @@ -22136,7 +24098,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miguel.pw", true }, { "migueldemoura.com", true }, { "migueldominguez.ch", true }, - { "miguelgfierro.com", true }, { "miguelmartinez.ch", true }, { "miguelmenendez.pro", true }, { "miguelmoura.com", true }, @@ -22146,11 +24107,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mijcorijneveld.nl", true }, { "mijn-financien.be", true }, { "mijnavg.eu", 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 }, @@ -22168,7 +24129,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mikeguy.co.uk", true }, { "mikehamburg.com", true }, { "mikehilldesign.co.uk", true }, - { "mikerichards.photography", true }, + { "mikekreuzer.com", true }, + { "mikerichards.photography", false }, { "miketabor.com", true }, { "miketheuer.com", true }, { "mikevesch.com", true }, @@ -22176,11 +24138,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mikewillia.ms", 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 }, @@ -22191,6 +24156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miku.party", true }, { "mikumaycry.com", true }, { "mikumiku.stream", true }, + { "mikupic.com", true }, { "mikywow.eu", true }, { "mil-spec.ch", true }, { "mil0.com", true }, @@ -22203,6 +24169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "milesapart.dating", true }, { "milhoazul.com.br", true }, { "milionshop.sk", true }, + { "milkandcookies.ca", true }, { "milkingit.co.uk", true }, { "milktea.info", true }, { "millanova.wedding", false }, @@ -22211,17 +24178,76 @@ static const nsSTSPreload kSTSPreloadList[] = { { "millefleurs.eu", true }, { "millennium-thisiswhoweare.net", true }, { "millenniumweb.com", false }, + { "millersminibarns.com", true }, + { "millettable.com", true }, { "millhousenchurch.com", true }, + { "million5.com", true }, + { "million6.com", true }, + { "million8.com", true }, { "millionairegames.com", true }, + { "millions1.com", true }, + { "millions11.com", true }, + { "millions13.com", true }, + { "millions14.com", true }, + { "millions15.com", true }, + { "millions16.com", true }, + { "millions17.com", true }, + { "millions19.com", true }, + { "millions20.com", true }, + { "millions22.com", true }, + { "millions28.com", true }, + { "millions29.com", true }, + { "millions31.com", true }, + { "millions32.com", true }, + { "millions33.com", true }, + { "millions35.com", true }, + { "millions36.com", true }, + { "millions37.com", true }, + { "millions38.com", true }, + { "millions39.com", true }, + { "millions40.com", true }, + { "millions41.com", true }, + { "millions42.com", true }, + { "millions43.com", true }, + { "millions5.com", true }, + { "millions50.com", true }, + { "millions51.com", true }, + { "millions52.com", true }, + { "millions53.com", true }, + { "millions55.com", true }, + { "millions56.com", true }, + { "millions57.com", true }, + { "millions58.com", true }, + { "millions59.com", true }, + { "millions6.com", true }, + { "millions60.com", true }, + { "millions61.com", true }, + { "millions62.com", true }, + { "millions63.com", true }, + { "millions66.com", true }, + { "millions7.com", true }, + { "millions70.com", true }, + { "millions71.com", true }, + { "millions72.com", true }, + { "millions77.com", true }, + { "millions8.com", true }, + { "millions80.com", true }, + { "millions81.com", true }, + { "millions82.com", true }, + { "millions88.com", true }, + { "millions9.com", true }, + { "millions99.com", true }, { "millistream.com", true }, - { "mim.properties", true }, + { "milsonhypnotherapyservices.com", true }, + { "mim.am", true }, { "mimemo.io", true }, + { "mimemoriadepez.com", true }, { "mimeo.digital", true }, + { "mimithedog.com", true }, { "mimobile.website", true }, { "mimocad.io", true }, { "mimovrste.com", true }, { "min-sky.no", true }, - { "minacssas.com", true }, { "minakov.pro", true }, { "minakova.pro", true }, { "minami.xyz", true }, @@ -22230,9 +24256,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mind-box.ch", true }, { "mind-hochschul-netzwerk.de", true }, { "mind-moves.es", true }, - { "mindbodycontinuum.com", true }, { "mindbodytherapymn.com", true }, - { "mindcell.no", true }, { "mindcoding.ro", true }, { "mindercasso.nl", true }, { "mindfactory.de", true }, @@ -22240,9 +24264,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mindoktor.se", false }, { "mindorbs.com", 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 }, @@ -22250,6 +24273,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minecraftforum.de", true }, { "minecraftforum.ovh", true }, { "minecraftjson.com", true }, + { "minecraftstal.com", true }, { "minehattan.de", true }, { "minehub.de", true }, { "minei.me", true }, @@ -22260,13 +24284,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "mingming.info", true }, { "mingram.net", true }, { "mingwah.ch", true }, + { "minh.at", false }, { "mini2.fi", true }, { "minigames.com", true }, { "miniglueck.net", true }, @@ -22280,43 +24306,47 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minimayhemsoftplay.co.uk", true }, { "minimbah.com.au", true }, { "minimvc.com", true }, + { "miningtronics.com", true }, { "ministeriumfuerinternet.de", true }, { "minitruckin.net", true }, { "minitrucktalk.com", true }, + { "miniwallaby.com", true }, { "minkymoon.jp", true }, { "minnesotakinkyyouth.org", true }, { "minnesotamathcorps.org", true }, { "minnesotareadingcorps.org", true }, { "minnit.chat", true }, { "minobar.com", true }, - { "minorshadows.net", true }, { "minpingvin.dk", true }, { "minschuns.ch", true }, { "mintclass.com", true }, - { "mintea-noua.ro", true }, { "mintosherbs.com", true }, { "mintrak2.com", true }, + { "mintse.com", true }, { "minu.link", true }, { "minube.co.cr", true }, + { "minutashop.ru", true }, { "minux.info", true }, { "mipapo.de", true }, { "mipla.ch", true }, { "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 }, @@ -22325,6 +24355,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "misanci.cz", true }, { "misclick.nl", true }, { "mishkovskyi.net", true }, + { "misinstrumentos.com", true }, { "miskatonic.org", true }, { "misoji-resist.com", true }, { "misol.kr", true }, @@ -22334,12 +24365,15 @@ 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 }, @@ -22350,17 +24384,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mistybox.com", true }, { "misupport.dk", true }, { "misura.re", 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 }, { "mitaines.ch", true }, { "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 }, @@ -22371,6 +24410,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mittagonghomestead.com.au", true }, { "mittelunsachlich.de", true }, { "mittenofficesystems.com", true }, + { "mitylite.com", true }, { "mitzpettel.com", true }, { "miui-germany.de", true }, { "mivestuariolaboral.com", true }, @@ -22381,17 +24421,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mivzakim.net", true }, { "mivzakim.org", true }, { "mivzakim.tv", true }, + { "mivzaklive.co.il", true }, { "miweb.cr", false }, { "mixinglight.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 }, { "mj420.com", true }, @@ -22407,6 +24452,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 }, @@ -22417,7 +24463,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -22431,14 +24479,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mktemp.org", true }, { "mkuznets.com", true }, { "mlarte.com", true }, - { "mlcambiental.com.br", true }, { "mlcnfriends.com", true }, { "mlemay.com", true }, - { "mlm-worldwide.de", true }, + { "mlfaw.com", true }, + { "mlii.net", true }, { "mlmjam.com", true }, { "mlp.ee", true }, { "mlpvector.club", true }, - { "mlsrv.de", true }, { "mlundberg.se", true }, { "mlvbphotography.com", true }, { "mlytics.com", true }, @@ -22447,24 +24494,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mma-acareporting.com", true }, { "mmalisz.com", true }, { "mmaps.ddns.net", true }, - { "mmarnitz.de", 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 }, + { "mna7e.com", true }, { "mncloud.de", true }, { "mncr.nl", true }, + { "mnd.sc", true }, { "mne.moe", true }, { "mnedc.org", 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 }, @@ -22474,9 +24524,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mo2021.de", true }, { "mo3.club", true }, { "moa.moe", true }, - { "moas.design", true }, { "mobag.ru", true }, { "mobal.com", true }, + { "mobi4.tk", true }, { "mobidea.com", true }, { "mobifinans.ru", true }, { "mobil-bei-uns.de", true }, @@ -22489,6 +24539,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 }, @@ -22512,16 +24563,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mochanstore.com", true }, { "mockerel.com", true }, { "mococo.co.uk", true }, - { "mocurio.com", false }, { "modaexecutiva.com.br", true }, { "modafinil.com", true }, { "modafinil.wiki", true }, { "modafo.com", true }, { "modalogi.com", true }, - { "modalrakyat.com", true }, - { "modalrakyat.id", true }, { "modcasts.video", true }, - { "modcentral.pw", true }, { "modding-forum.com", true }, { "modding-welt.com", true }, { "mode-hautnah.de", true }, @@ -22530,7 +24577,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -22540,19 +24586,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moderatorenpool.org", true }, { "modernapprenticeships.org", true }, { "moderncoinmart.com", true }, - { "moderntld.net", true }, { "modifiedmind.com", true }, { "modistry.com", true }, { "modistryusercontent.com", true }, { "modmountain.com", true }, { "modosaude.com.br", true }, + { "modul21.com", true }, + { "modul21.eu", true }, { "module.market", true }, + { "modulex-gmbh.de", true }, + { "moe-max.jp", true }, + { "moeali.com", true }, { "moechel.com", true }, { "moefactory.com", true }, { "moehrke.cc", true }, + { "moekes.amsterdam", true }, { "moeking.me", true }, + { "moeli.org", true }, { "moellers.systems", true }, + { "moeqing.net", true }, { "moetrack.com", true }, + { "moeyoo.net", true }, { "mofohome.dyndns.org", true }, { "moha-swiss.com", true }, { "mohanmekap.com", true }, @@ -22568,6 +24622,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mojeco2.cz", true }, { "mojefedora.cz", true }, { "mojilitygroup.com", true }, + { "mojizuri.com", true }, { "mojnet.eu", true }, { "mojnet.net", true }, { "mojoco.co.za", true }, @@ -22576,27 +24631,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mojzisova.com", true }, { "mokeedev.review", true }, { "mokhtarmial.com", false }, + { "mokken-fabriek.nl", true }, { "mokote.com", true }, { "mokum-organics.com", false }, { "molb.org", true }, { "molecularbiosystems.org", true }, { "molinero.xyz", true }, { "mollaretsmeningitis.org", 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 }, @@ -22614,6 +24671,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mondo-it.ch", true }, { "moneni.com", true }, { "moneybird.com", true }, + { "moneybird.nl", true }, { "moneychangersoftware.com", true }, { "moneycredit.eu", true }, { "moneygo.se", true }, @@ -22625,7 +24683,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moniquedekermadec.com", true }, { "moniquemunhoz.com.br", true }, { "monitman.com", true }, - { "monitorchain.com", true }, { "monitoring.kalisz.pl", true }, { "monitzer.com", true }, { "monix.io", true }, @@ -22647,6 +24704,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monolithindustries.com", true }, { "monolithinteractive.com", true }, { "monothesis.com", true }, + { "monotributo.online", true }, { "monoworks.co.jp", true }, { "monpc-pro.fr", true }, { "monpermismoto.com", true }, @@ -22655,10 +24713,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monpetitmobile.com", true }, { "monsieursavon.ch", true }, { "monstermashentertainments.co.uk", true }, - { "montage-kaika.de", true }, + { "montage-kaika.de", false }, { "montagne-tendance.ch", true }, { "montanasky.tv", true }, - { "montand.com", true }, { "montanwerk.de", true }, { "montarfotoaki.com", true }, { "montas.io", true }, @@ -22666,6 +24723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "montemanik.com", true }, { "montenero.pl", true }, { "montessori.edu.vn", true }, + { "montgomerysoccer.net", true }, { "montopolis.com", true }, { "montpreveyres.ch", true }, { "montredeal.fr", true }, @@ -22682,15 +24740,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moolah.rocks", true }, { "moon.fish", true }, { "moonagic.com", true }, + { "moonagic.io", true }, + { "moonbench.xyz", true }, { "moonbot.io", true }, + { "moonchart.co.uk", true }, { "moondrop.org", true }, { "moonkin.eu", true }, { "moonlightcapital.ml", true }, { "moonmelo.com", true }, { "moonraptor.co.uk", true }, { "moonraptor.com", true }, - { "moonrhythm.info", true }, - { "moonrhythm.io", true }, { "moonshyne.org", true }, { "moontaj.com", true }, { "moonvpn.org", true }, @@ -22705,6 +24764,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mooselook.de", true }, { "moosmann-moehrle.de", true }, { "moot-info.co.za", true }, + { "moovablestorage.com", true }, { "moparcraft.net", true }, { "moparisthebest.com", true }, { "moparisthebest.net", true }, @@ -22717,6 +24777,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "morbatex.com", true }, { "morbiceramicindustry.com", true }, { "morbitzer.de", true }, + { "morbius.cz", true }, { "morbotron.com", true }, { "morchino.ch", true }, { "morchstore.com", true }, @@ -22728,7 +24789,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "morepablo.com", true }, { "morepay.cn", true }, { "morepopcorn.co.nz", true }, - { "morespacestorage.com.au", true }, { "moresw.com", true }, { "morethanautodealers.com", true }, { "morethancode.be", true }, @@ -22736,10 +24796,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "morganino.it", true }, { "morgansleisure.co.uk", true }, { "morgner.com", true }, + { "morhys.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 }, @@ -22751,6 +24813,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 }, @@ -22758,10 +24821,12 @@ 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 }, + { "mostlikelyto.fail", true }, { "mostlyoverhead.com", true }, { "motd.ch", true }, { "motd.today", true }, @@ -22778,39 +24843,39 @@ static const nsSTSPreload kSTSPreloadList[] = { { "motifstudio.com.ua", true }, { "motionless.nl", true }, { "motiweb.fr", true }, + { "motocollection.pl", true }, { "motohell.com", true }, { "motojato.com.br", true }, { "motonauticaibiza.com", true }, { "motoreflex.com", true }, - { "motornomaslo.bg", true }, { "motorpointarenacardiff.co.uk", true }, { "motorring.ru", true }, { "motorsplus.com", false }, - { "motorsportdiesel.com", false }, { "motoryachtclub-radolfzell.de", true }, { "motosikletevi.com", true }, { "motostorie.blog", false }, { "motovated.co.nz", true }, { "motowilliams.com", true }, { "motstats.co.uk", true }, - { "mottomortgage.com", true }, { "moucloud.cn", true }, { "moulinaparoles.ca", true }, { "mountain-rock.ru", true }, { "mountainactivitysection.org.uk", true }, + { "mountainchalet.blue", true }, { "mountainroseherbs.com", true }, + { "mountainspringsrentals.ca", true }, { "mountfarmer.de", true }, { "mousemessages.com", true }, { "moutiezhaller.com", true }, + { "movacare.de", true }, + { "move.mil", true }, { "moveek.com", true }, { "moveisfit.com.br", 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 }, @@ -22819,11 +24884,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "movienized.de", true }, { "moviepilot.com", true }, { "moviesetc.net", true }, + { "moviespur.info", false }, { "moviko.nz", true }, { "movil.uno", true }, + { "moviltronix.com", true }, { "movimento-terra.it", true }, { "movinglogistics.nl", false }, { "movingtohttps.com", true }, + { "movingtojapan.life", true }, { "movlib.org", true }, { "moy.cat", true }, { "moyer.pub", true }, @@ -22834,7 +24902,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mozektevidi.net", true }, { "mozilla.cz", true }, { "mozzez.de", true }, - { "mp3gratuiti.com", true }, { "mpa-pro.fr", true }, { "mpac.ca", false }, { "mpc-hc.org", true }, @@ -22844,6 +24911,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mpg-universal.com", true }, { "mpg.ovh", true }, { "mpgaming.pro", true }, + { "mphoto.at", true }, { "mpintaamalabanna.it", true }, { "mpkrachtig.nl", true }, { "mplanetphl.fr", true }, @@ -22852,15 +24920,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mplusm.eu", true }, { "mpnpokertour.com", true }, { "mpodraza.pl", true }, - { "mpreserver.com", true }, { "mprsco.eu", true }, { "mpsgarage.com.au", true }, { "mpsoundcraft.com", true }, + { "mpu-vorbereitung.com", true }, { "mpy.ovh", true }, - { "mqas.net", true }, { "mr-anderson.org", true }, { "mr-designer-oman.com", true }, { "mr-labo.jp", true }, + { "mr-nachhilfe.de", true }, { "mr-wolf.nl", false }, { "mr3.io", true }, { "mrazek.biz", true }, @@ -22875,7 +24943,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mrdayman.com", true }, { "mremallin.ca", true }, { "mrevolution.eu", true }, + { "mrgasfires.co.uk", true }, + { "mrgiveaways.com", true }, { "mrinalpurohit.in", true }, + { "mrjhnsn.com", true }, + { "mrjooz.com", true }, { "mrkapowski.com", true }, { "mrketolocksmith.com", true }, { "mrknee.gr", true }, @@ -22883,11 +24955,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mrmoregame.de", true }, { "mrnh.de", true }, { "mrning.com", true }, + { "mrprintables.com", true }, { "mrs-labo.jp", true }, + { "mrs-shop.com", true }, { "mrsbairds.com", false }, { "mrserge.lv", true }, { "mrsk.me", true }, { "mrstat.co.uk", true }, + { "mrtunnel.club", true }, + { "mruczek.ga", true }, { "mrv.li", true }, { "mrx.one", true }, { "mrxn.net", true }, @@ -22905,16 +24981,20 @@ 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 }, { "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 }, @@ -22922,11 +25002,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mszavodumiru.cz", true }, { "mt.search.yahoo.com", false }, { "mt2414.com", true }, + { "mta.org.ua", true }, { "mtane0412.com", true }, { "mtasa.com", true }, { "mtasa.hu", true }, { "mtb.wtf", true }, - { "mtcq.jp", true }, + { "mtd.org", true }, + { "mtg-tutor.de", true }, { "mtgeni.us", true }, { "mtgenius.com", true }, { "mtgsuomi.fi", true }, @@ -22935,11 +25017,12 @@ 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 }, @@ -22949,27 +25032,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "muell-weg.de", true }, { "muellapp.com", true }, + { "muenchberger.com", true }, { "muenzubi.de", 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 }, { "multi-vpn.biz", true }, @@ -22980,7 +25068,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "multigeist.de", true }, { "multikalender.de", false }, { "multimail.work", true }, - { "multimatte.com", true }, + { "multimatte.com", false }, { "multimed.krakow.pl", true }, { "multimedia-pool.com", true }, { "multiplayernow.com", true }, @@ -22993,20 +25081,21 @@ 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 }, + { "mundodapoesia.com", true }, { "mundodasmensagens.com", true }, { "mundokinderland.com.br", true }, { "mundolarraz.es", true }, + { "mundomagicotv.com", true }, { "mundschenk.at", true }, { "mundtec.com.br", true }, { "munduch.cz", true }, @@ -23024,12 +25113,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "murgi.de", true }, { "murmel.it", false }, { "murof.com.br", true }, - { "murzik.space", true }, + { "murray.xyz", true }, + { "murraya.cn", 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 }, @@ -23038,14 +25128,14 @@ 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 }, { "musicalive.nl", true }, { "musicall.com", true }, { "musicalschwarzenburg.ch", true }, { "musicapara.net", true }, { "musicchris.de", true }, - { "musiccitycats.com", true }, + { "musicdemons.com", true }, { "musicgamegalaxy.de", true }, { "musician.dating", true }, { "musickhouseleveling.com", true }, @@ -23078,16 +25168,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "muthai.in.th", true }, { "mutuals.cool", true }, { "mutuelle.fr", true }, + { "muurlingoogzorg.nl", true }, { "muusika.fun", true }, { "muusikoiden.net", true }, { "muwatenraqamy.org", true }, + { "muz2u.ru", true }, { "muzeumkomiksu.eu", true }, - { "muzhijy.com", true }, - { "muzi.cz", true }, + { "muzhijy.com", false }, { "muzikantine.nl", true }, { "mv-wohnen.de", true }, { "mvandek.nl", true }, { "mvbits.com", true }, + { "mvisioncorp.com", true }, { "mvno.io", true }, { "mvp-stars.com", true }, { "mw.search.yahoo.com", false }, @@ -23096,9 +25188,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -23106,6 +25200,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -23130,22 +25225,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 }, @@ -23153,17 +25248,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mybodylife.com", true }, { "mybon.at", false }, { "mybonfire.com", true }, + { "mybusiness.wien", true }, + { "mycamda.com", true }, { "mycard.moe", true }, { "mycareersfuture.sg", 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 }, { "mycr.eu", true }, { "mycreativeartsconsulting.com", true }, { "mycreativenook.com", true }, @@ -23182,6 +25283,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mydigitalweek.com", true }, { "mydjsongbook.com", true }, { "mydna.bio", true }, + { "mydoc.fr", true }, { "mydocserve.com", true }, { "mydomaindesk.com", true }, { "mydreamlifelab.com", true }, @@ -23192,8 +25294,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myeberspaecher.com", true }, { "myeffect.today", true }, { "myeisenbahn.de", true }, - { "myeml.net", true }, - { "myessaygeek.com", true }, { "myetherwallet.com", true }, { "myf.cloud", true }, { "myfantasysportstalk.com", true }, @@ -23206,12 +25306,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "mygigabitnation.com", true }, { "mygignation.com", true }, + { "mygirlfriendshouse.com", true }, { "mygoldennetwork.com", true }, { "mygreatjobs.de", true }, { "mygreatlakes.org", true }, @@ -23222,9 +25324,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myhatsuden.jp", true }, { "myhealthreviews.com", true }, { "myhollywoodnews.com", true }, - { "myhostname.net", true }, + { "myhome-24.pl", true }, + { "myhuthwaite.com", true }, { "myimds.com", true }, { "myimmitracker.com", true }, + { "myinvite.nl", true }, { "myipaddr.de", true }, { "myipv4.de", true }, { "myjudo.net", true }, @@ -23236,6 +25340,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mylawyer.be", true }, { "myleanfactory.de", true }, { "mylifeabundant.com", true }, + { "mylittlechat.ru", true }, { "myliveupdates.com", true }, { "mylookout.com", false }, { "mylstrom.com", true }, @@ -23246,9 +25351,11 @@ 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 }, @@ -23258,14 +25365,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mynext.events", true }, { "mynextmove.org", true }, { "mynn.io", true }, - { "mynook.info", true }, + { "mynook.info", false }, { "mynortherngarden.com", true }, { "myonline.hu", 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 }, @@ -23276,14 +25385,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myowndisk.net", true }, { "myownwebinar.com", true }, { "mypaperdone.com", true }, - { "mypaperwriter.com", true }, + { "mypartybynoelia.es", true }, { "mypayoffloan.com", true }, { "mypcqq.cc", true }, { "myperfecthome.ca", true }, { "myperfumecollection.com", true }, + { "myperks.in", true }, { "myphotoshopbrushes.com", true }, { "mypillcard.com", true }, + { "mypizza-bremen.de", true }, { "myplaceonline.com", true }, + { "mypnu.net", true }, { "mypress.mx", true }, { "myprintcard.de", true }, { "myproblog.com", true }, @@ -23294,6 +25406,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 }, @@ -23326,6 +25439,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 }, @@ -23344,12 +25458,13 @@ 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 }, { "myrotvorets.center", true }, + { "myrotvorets.news", true }, { "myrp.co", true }, { "mysber.ru", true }, { "myschoolphoto.org", true }, @@ -23358,6 +25473,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mysectools.org", true }, { "myself5.de", true }, { "myseo.ga", true }, + { "myserv.one", true }, { "myseu.cn", true }, { "mysexydate24.com", true }, { "myshirtsize.com", true }, @@ -23368,15 +25484,14 @@ 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 }, @@ -23385,7 +25500,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mysupboard.de", true }, { "myswissmailaddress.com", true }, { "mytfg.de", true }, - { "mythemeshop.com", true }, + { "mythemeshop.com", false }, { "mythengay.ch", true }, { "mythicdelirium.com", true }, { "myting.net", true }, @@ -23397,7 +25512,7 @@ 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 }, @@ -23412,45 +25527,50 @@ 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 }, { "mznet.de", true }, + { "mzstatic.cc", true }, { "mzzj.de", true }, { "n-a.date", true }, { "n-design.de", true }, - { "n-kanazawa.jp", true }, { "n-m.lu", true }, { "n-man.info", true }, { "n-pix.com", false }, { "n-soft.info", true }, { "n-un.de", false }, - { "n-x.info", true }, { "n0paste.tk", false }, { "n0psled.nl", true }, { "n26.com", true }, { "n2servers.com", true }, - { "n3twork.net", 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 }, { "na-school.nl", true }, { "naam.me", true }, { "nabaleka.com", true }, { "nabankco.com", true }, { "nabidkamajetku.cz", true }, { "nabytek-valmo.cz", true }, + { "nacfit.com", true }, { "nachsendeauftrag.net", true }, { "nachsenden.info", true }, { "nachtmuziek.info", true }, @@ -23460,6 +25580,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nadejeproninu.cz", true }, { "nadelholzkulturen.de", true }, { "nadine-chaudier.net", true }, + { "nadsandgams.com", true }, { "nadyaolcer.fr", true }, { "nafod.net", true }, { "naga-semi.com", true }, @@ -23475,20 +25596,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nahura.com", 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 }, - { "nakada4610.com", true }, + { "nakalabo.jp", true }, { "nakama.tv", true }, { "nakandya.com", true }, { "nakanishi-paint.com", true }, + { "nakayama.systems", true }, { "nakedalarmclock.me", true }, { "nakedtruthbeauty.com", true }, + { "nakene.com", true }, + { "nakliyat.name.tr", true }, { "nakliyatsirketi.biz.tr", true }, { "nako.no", true }, { "nalepky-na-zed.cz", true }, @@ -23502,7 +25627,7 @@ 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 }, @@ -23515,13 +25640,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "namu.wiki", true }, { "namuwikiusercontent.com", true }, { "nanarose.ch", true }, - { "nanch.com", true }, { "nandex.org", true }, + { "nange.cn", true }, { "nange.co", true }, { "nankiseamansclub.com", true }, + { "nannytax.ca", true }, { "nanofy.org", true }, { "nanogi.ga", true }, - { "nanosingularity.com", true }, { "nanotechnologist.com", true }, { "nanotechtorsion.com", true }, { "nanovolt.nl", true }, @@ -23537,6 +25662,7 @@ 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 }, @@ -23545,9 +25671,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "narduin.xyz", true }, { "narenderchopra.com", true }, { "narfation.org", true }, - { "nargele.eu", true }, { "nargileh.nl", true }, - { "narindal.ch", true }, { "narmos.ch", true }, { "naro.se", true }, { "narodsovety.ru", true }, @@ -23561,10 +25685,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nasbnation.com", false }, { "nascio.org", true }, { "naseco.se", true }, + { "nashdistribution.com", true }, + { "nashikmatka.com", true }, { "nashira.cz", true }, { "nashvillelidsurgery.com", true }, { "nashzhou.me", true }, - { "nasme.tk", true }, { "nasrsolar.com", true }, { "nassi.me", true }, { "nastoletni.pl", true }, @@ -23575,6 +25700,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "natatorium.org", true }, { "natchmatch.com", true }, { "natecraun.net", true }, + { "natgeofreshwater.com", true }, { "nathaliebaron.ch", true }, { "nathaliebaroncoaching.ch", true }, { "nathaliedijkxhoorn.com", true }, @@ -23582,6 +25708,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nathan.io", true }, { "nathanaeldawe.com", true }, { "nathancheek.com", false }, + { "nathankonopinski.com", true }, { "nathansmetana.com", true }, { "nathumarket.com.br", true }, { "nationalbank.gov", true }, @@ -23591,15 +25718,21 @@ 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 }, + { "natur.com", true }, + { "natura-sense.com", true }, + { "naturalfit.co.uk", true }, + { "naturalhealthcures.net", true }, { "naturalkitchen.co.uk", true }, { "naturalspacesdomes.com", true }, { "naturaum.de", true }, @@ -23611,7 +25744,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "natureword.com", true }, { "naturheilpraxis-oida.de", true }, { "naturheilpraxis-p-grote.de", true }, - { "naturline.com", true }, { "naturtint.co.uk", true }, { "natusvita.com.br", true }, { "naude.co", true }, @@ -23619,20 +25751,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nausicaahotel.it", true }, { "nautiljon.com", true }, { "nautsch.de", true }, + { "navarralanparty.org", true }, + { "navdeep.ca", true }, { "navenlle.com", true }, { "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 }, { "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 }, @@ -23691,16 +25827,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nbgrooves.de", true }, { "nbhorsetraining.com", true }, { "nbib.gov", true }, - { "nbl.org.tw", true }, + { "nbnnetwork.com", true }, { "nbp.com.pk", true }, { "nbrain.de", true }, { "nbrii.com", true }, { "nbriresearch.com", true }, - { "nbtparse.org", true }, { "nbur.co.uk", true }, { "nc-beautypro.fr", true }, { "nc-formation.fr", true }, { "nc-network.io", true }, + { "nc99.co", true }, { "ncamarquee.co.uk", true }, { "ncands.net", true }, { "ncaq.net", true }, @@ -23709,21 +25845,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ncc-qualityandsafety.org", true }, { "nccemail.net", true }, { "ncdc.pt", true }, + { "ncea.net.au", true }, { "nchangfong.com", true }, { "nchponline.org", true }, { "ncic.gg", true }, - { "nclvle.co.uk", true }, { "ncm-malerbetrieb.de", true }, { "ncsc.gov.uk", true }, { "ncsccs.com", true }, { "ncstep.org", true }, + { "nctx.co.uk", true }, { "ndarville.com", true }, + { "ndatc.com", true }, { "ndbt.com", true }, { "ndcpolipak.com", true }, { "ndeoffshore.com", true }, { "nder.be", true }, + { "ndfa.net", true }, + { "ndfirefighter.com", true }, { "ndhlink.com", true }, { "ndpbrn-research.org", true }, + { "ndphp.org", true }, + { "ndpigskin.com", true }, { "nds-helicopter.de", true }, { "ndy.sex", true }, { "ne-on.org", true }, @@ -23740,10 +25882,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nebenbeiblog.ch", true }, { "nebra.io", 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 }, @@ -23751,23 +25895,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -23775,13 +25920,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neillans.co.uk", true }, { "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 }, - { "neko.ml", true }, { "nekodex.net", true }, { "nekolove.jp", true }, { "nekomimi.pl", true }, @@ -23795,23 +25939,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "nems.no", true }, { "nemumu.com", true }, + { "nemunai.re", true }, + { "nenkin-kikin.jp", true }, { "neo2shyalien.eu", false }, { "neobits.nl", true }, { "neocities.org", true }, { "neoclick.io", true }, - { "neocoding.com", true }, { "neodrive.ch", true }, { "neoedresources.org", true }, { "neoeliteconsulting.com", true }, + { "neohu.com", true }, { "neojo.org", true }, { "neokobe.city", true }, { "neolaudia.es", true }, @@ -23821,15 +25965,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neonknight.ch", true }, { "neons.org", true }, { "neophilus.net", true }, + { "neos.co.jp", true }, { "neosdesignstudio.co.uk", true }, { "neostralis.com", true }, + { "neotist.com", true }, + { "neowa.tk", true }, { "neowlan.net", true }, { "neoxcrf.com", true }, { "neoz.com.br", true }, { "nepageeks.com", true }, { "nepal-evolution.org", true }, { "nephelion.org", true }, - { "nephos.xyz", true }, { "nephy.jp", true }, { "nepovolenainternetovahazardnihra.cz", true }, { "nepremicninar.com", true }, @@ -23845,10 +25991,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nerdwallet.com", true }, { "nerdydev.net", true }, { "nerot.eu", true }, + { "nerpa-club.ru", true }, + { "nerull7.info", true }, { "nerven.se", false }, - { "nesbase.com", true }, { "nesolabs.com", true }, { "nesolabs.de", true }, + { "nestedquotes.ca", true }, { "nesterov.pw", true }, { "nestor.nu", true }, { "neswec.org.uk", true }, @@ -23874,14 +26022,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netducks.com", true }, { "netducks.space", true }, { "netera.se", 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 }, @@ -23897,6 +26046,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netrider.net.au", false }, { "netrogue.ninja", true }, { "netronix.be", true }, + { "netsec.cloud", true }, { "netsigna.de", true }, { "netsite.dk", true }, { "netsoins.org", true }, @@ -23904,16 +26054,15 @@ 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 }, @@ -23921,17 +26070,25 @@ 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 }, { "networkingnexus.net", true }, { "networkingphoenix.com", true }, + { "networkmidlands.co.uk", true }, + { "networkmidlands.uk", true }, + { "networkmon.net", true }, { "networkposting.com", true }, { "networth.at", true }, + { "netz-yokohama.co.jp", true }, { "netzfabrik.com", true }, { "netzfrauen.org", true }, { "netzwerkwerk.de", true }, + { "neuber.uno", true }, { "neuflizeobc.net", true }, { "neuhaus-city.de", true }, { "neurabyte.com", true }, @@ -23942,12 +26099,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "neutralox.com", false }, { "neuwal.com", true }, - { "neva.li", true }, { "never.pet", true }, { "nevergreen.io", true }, { "nevermore.fi", true }, @@ -23964,6 +26121,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "new-process.eu", true }, { "new.travel.pl", true }, { "newaccess.ch", true }, + { "newbasemedia.us", true }, { "newbietech.cn", false }, { "newborncryptocoin.com", false }, { "newburybouncycastles.co.uk", true }, @@ -23977,10 +26135,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -23989,16 +26146,17 @@ 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 }, + { "newposts.ru", true }, { "newreleases.io", true }, { "news47ell.com", true }, { "newsa2.com", true }, - { "newsaboutgames.de", true }, { "newserumforskin.com", true }, { "newsmotor.info", true }, { "newspsychology.com", true }, @@ -24007,8 +26165,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newtonproject.org", true }, { "newtrackon.com", true }, { "newvehicle.com", true }, + { "nex.li", true }, { "nex.sx", true }, - { "nexgeneration-solutions.com", true }, { "nexicafiles.com", true }, { "nexril.net", true }, { "next-web.ad.jp", true }, @@ -24019,13 +26177,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nextcasino.com", true }, { "nextcloud.co.za", true }, { "nextcloud.com", true }, - { "nextend.net", true }, - { "nextend.org", true }, + { "nextcloud.nerdpol.ovh", 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 }, @@ -24034,6 +26194,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nextstep-labs.gr", true }, { "nexttv.co.il", true }, { "nexus-exit.de", true }, + { "nexus-vienna.at", true }, { "nexusconnectinternational.eu", true }, { "nexwebsites.com", true }, { "nexxus-sistemas.net.br", true }, @@ -24047,19 +26208,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nfl.dedyn.io", true }, { "nfl.duckdns.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 }, - { "nginxconfig.com", true }, { "nginxconfig.io", true }, { "ngndn.jp", true }, + { "ngt.gr", true }, { "ngvf.de", true }, { "ngx.hk", true }, { "ngxpkg.com", true }, @@ -24087,6 +26247,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 }, @@ -24096,15 +26257,17 @@ 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 }, @@ -24118,20 +26281,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "nicsezcheckfbi.gov", true }, { "nicul.in", true }, { "nidro.de", true }, { "nidsuber.ch", true }, + { "niduxcomercial.com", true }, { "niederohmig.de", true }, - { "niedersetz.de", true }, { "niehage.name", true }, { "nielshoogenhout.be", true }, { "nielshoogenhout.eu", true }, @@ -24153,13 +26316,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "niesstar.com", true }, { "nietzsche.com", true }, { "nieuwslagmaat.nl", true }, - { "niffler.software", true }, + { "nifc.gov", true }, { "niftiestsoftware.com", true }, { "nigelwakefield.com", true }, { "nigensha.co.jp", true }, { "niggemeier.cc", true }, { "nigger.racing", true }, - { "niggo.eu", true }, { "night2stay.cn", true }, { "night2stay.com", true }, { "night2stay.de", true }, @@ -24171,25 +26333,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nightmoose.org", true }, { "nightsi.de", true }, { "nightstand.io", true }, - { "nightwinds.tk", true }, + { "nigt.cf", true }, { "nihon-no-sake.net", true }, + { "nihtek.in", true }, + { "nii2.org", true }, + { "nij.gov", true }, { "nijiero-ch.com", false }, { "nijikata.com", true }, { "nijm.nl", true }, { "nikandcara.com", true }, { "nikao-tech.com", true }, { "nikavandenbos.nl", true }, - { "niki.ai", true }, { "nikimix.com", true }, { "nikkasystems.com", true }, { "nikkila.me", true }, { "nikklassen.ca", true }, { "niklas.pw", true }, - { "niklasanderson.com", true }, { "niklasbabel.com", true }, { "nikolasgrottendieck.com", true }, { "nikomo.fi", false }, { "nikoninframe.co.uk", true }, + { "nikonlibrary.co.uk", true }, { "nikonnps.co.uk", true }, { "nikonpromotions.co.uk", true }, { "nikonschool.co.uk", true }, @@ -24199,7 +26363,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "niles.xyz", true }, { "nilrem.org", true }, { "nimeshjm.com", true }, - { "nimidam.com", true }, { "nina-laaf.de", true }, { "ninaforever.com", true }, { "ninarinaldi.com.br", true }, @@ -24209,28 +26372,29 @@ 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 }, - { "ninjaworld.co.uk", true }, + { "ninja-skillz.com", true }, { "ninjio.com", true }, { "ninov.de", true }, + { "ninreiei.jp", true }, { "nintendoforum.no", true }, { "ninth.cat", true }, { "ninthfloor.org", true }, { "ninverse.com", true }, { "nipax.cz", true }, - { "nipe-systems.de", true }, + { "nipit.biz", true }, { "nippon-oku.com", true }, - { "nippon.fr", true }, { "niqex.com", true }, - { "nirjharstudio.com", true }, { "nirjonmela.com", true }, { "nirjonmela.net", true }, { "nirudo.me", true }, { "nissanofbismarckparts.com", true }, { "nitifilter.com", true }, + { "nitix.games", true }, { "nitrix.me", true }, { "nitrohorse.com", false }, { "nitrokey.com", true }, @@ -24238,23 +26402,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "njujb.com", 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 }, { "nlfant.eu", true }, @@ -24264,8 +26433,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nlrb.gov", true }, { "nlt.by", false }, { "nmd.so", true }, - { "nmgb.ga", true }, - { "nmgb.ml", true }, + { "nmmlp.org", true }, { "nmnd.de", true }, { "nmontag.com", true }, { "nn.cz", true }, @@ -24275,6 +26443,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "no-xice.com", true }, { "no.search.yahoo.com", false }, { "noagendahr.org", true }, + { "noahjacobson.com", true }, { "noahmodas.com.br", true }, { "noahsaso.com", true }, { "nobitakun.com", true }, @@ -24282,22 +26451,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, + { "nodevops.com", true }, { "noeatnosleep.me", true }, { "noedidacticos.com", true }, { "noelclaremont.com", true }, @@ -24308,6 +26474,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noez.de", true }, { "nofrillsdns.com", true }, { "nogerondier.eu", true }, + { "nogetime.com", true }, { "noglobalwarrants.org", true }, { "nohats.ca", true }, { "nohkan.fr", true }, @@ -24315,6 +26482,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 }, @@ -24322,7 +26490,7 @@ 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 }, @@ -24332,62 +26500,69 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nomesbiblicos.com", true }, { "nomial.co.uk", true }, { "nomifensine.com", true }, + { "nomoondev.azurewebsites.net", true }, { "nomsy.net", true }, + { "nonabytes.xyz", true }, { "noname-ev.de", true }, { "nonametheme.com", true }, { "noncombatant.org", true }, { "noob-box.net", true }, + { "noobow.me", true }, { "noobswhatelse.net", true }, { "noobunbox.net", true }, { "noodles.net.nz", true }, - { "noodleyum.com", true }, { "noodplan.co.za", true }, { "noodweer.be", true }, { "noofficewalls.com", true }, + { "noomist.com", true }, { "noon-entertainments.com", true }, { "noop.ch", true }, { "noordsee.de", 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 }, { "norbertschneider-music.com", 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 }, + { "noroshi-burger.com", true }, { "norrkemi.se", true }, { "norrliden.de", true }, + { "norsewars.com", true }, { "norskpensjon.no", true }, { "northatlantalaw.net", true }, { "northbrisbaneapartments.com.au", true }, { "northconsulting.fr", true }, { "northcountykiaparts.com", true }, + { "northcreekresort.com", true }, + { "northdakotahealthnetwork.com", true }, { "northdevonbouncycastles.co.uk", true }, { "northeastcdc.org", true }, { "northeastrodeo.co.uk", true }, { "northern-lakes.com", true }, { "northerngate.net", true }, { "northernhamsterclub.com", true }, - { "northernmuscle.ca", true }, { "northernpage.com", true }, { "northernselfstorage.co.za", true }, { "northfieldyarn.com", true }, @@ -24395,7 +26570,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "northpole.dance", true }, { "northridgeelectrical.com", true }, { "northumbriagames.co.uk", true }, - { "northwest-events.co.uk", true }, { "norys-escape.de", true }, { "nos-medias.fr", true }, { "nos-oignons.net", true }, @@ -24404,6 +26578,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nosfermiers.com", true }, { "noslite.nl", true }, { "nospoint.cz", true }, + { "nosproduitsdequalite.fr", true }, { "nosqlzoo.net", true }, { "nossasenhora.net", true }, { "nossasenhoradodesterro.com.br", true }, @@ -24413,23 +26588,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nosyu.pe.kr", 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 }, { "noticiasdehumor.com", true }, - { "notificami.com", true }, { "notify.moe", true }, { "notinglife.com", true }, { "notjustvacs.com", true }, + { "notmybox.com", true }, { "notnize.net", true }, { "notnl.com", true }, { "notofilia.com", true }, @@ -24437,17 +26612,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "notoriousdev.com", true }, { "notrecourrier.net", true }, { "notsafefor.work", true }, - { "nottori.com", true }, { "nottres.com", true }, { "noudjalink.nl", true }, { "noustique.com", true }, { "nova-dess.ch", 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 }, @@ -24463,35 +26639,35 @@ 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 }, - { "noxi.ga", 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 }, { "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", false }, { "ns-frontier.com", true }, { "ns2servers.pw", true }, { "nsa.lol", true }, @@ -24503,25 +26679,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nscnet.jp", true }, { "nsfw-story.com", true }, { "nshipster.cn", true }, + { "nshipster.co.kr", true }, { "nshipster.com", true }, + { "nshipster.es", true }, { "nsm.ee", true }, { "nsm.stat.no", true }, { "nso.ie", true }, + { "nsofficeinteriors.com", true }, { "nsp.ua", true }, { "nst-maroc.com", true }, { "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 }, { "ntotten.com", true }, { "ntppool.org", false }, + { "ntsb.gov", true }, { "ntwt.us", true }, { "ntx360grad-fallakte.de", true }, { "ntzwrk.org", true }, { "nu-pogodi.net", true }, + { "nu3.com", true }, { "nu3.dk", true }, { "nu3.fi", true }, { "nu3.no", true }, @@ -24532,15 +26716,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nuamooreaindonesia.com", true }, { "nubella.com.au", true }, { "nubu.at", true }, + { "nuclea.id", true }, + { "nuclea.site", true }, { "nuclearcat.com", true }, { "nucleuscore.org", true }, - { "nudestpics.com", true }, + { "nudevotion.com", true }, { "nuel.cl", true }, { "nuevaimagenpublicidad.es", true }, { "nuffield.nl", true }, { "nugdev.co", true }, { "null-life.com", true }, { "nullday.de", true }, + { "nulle-part.org", true }, { "nullonerror.org", true }, { "nullpointer.io", true }, { "nullroute.com", true }, @@ -24559,8 +26746,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "numerossanos.com.ar", true }, { "numis.tech", true }, { "numismed-seniorcare.de", true }, - { "numm.fr", true }, { "numwave.nl", true }, + { "nunesgh.com", true }, { "nunnenmacher.net", true }, { "nunnun.jp", true }, { "nunomoura.com", true }, @@ -24574,7 +26761,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nurses.dating", true }, { "nursingschool.network", true }, { "nuryahan.com.br", true }, - { "nusku.biz", true }, { "nussadoclub.org", true }, { "nutikell.com", true }, { "nutleyeducationalfoundation.org", true }, @@ -24584,9 +26770,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -24596,51 +26783,66 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nvl-game.tokyo", true }, { "nvq.nl", true }, { "nvr.bz", true }, + { "nvtc.gov", true }, + { "nwapproval.com", true }, + { "nwautorebuild.com", true }, { "nwbc.gov", true }, { "nwerc.party", true }, { "nwgh.org", false }, + { "nwimports.com", true }, + { "nwk1.com", true }, + { "nwperformanceandoffroad.com", true }, { "nwr-waffenbuch.de", true }, { "nwra.com", true }, { "nwuss.okinawa", true }, { "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 }, + { "nydnxs.com", true }, + { "nyghtus.net", true }, { "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 }, - { "nystudio107.com", true }, + { "nys-hk.com", false }, { "nytrafficticket.com", true }, - { "nyuusannkinn.com", true }, { "nyxi.eu", true }, { "nyyu.tk", true }, { "nzb.cat", false }, + { "nzbr.de", true }, { "nzdmo.govt.nz", 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 }, + { "oakandresin.co", true }, { "oakesfam.net", true }, { "oakington.info", true }, { "oaklands.co.za", true }, @@ -24655,8 +26857,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oatmealdome.me", true }, { "oauth-dropins.appspot.com", false }, { "obamalibrary.gov", true }, + { "obamawhitehouse.gov", true }, { "oberhofdrinks.com", true }, { "obermeiers.eu", true }, + { "oberoi.de", true }, + { "obesidadlavega.com", true }, { "obfuscate.xyz", true }, { "obg-global.com", true }, { "obitech.de", true }, @@ -24666,23 +26871,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oblast45.ru", false }, { "oboeta.com", true }, { "obono.at", true }, + { "obrienswine.ie", true }, + { "obs.group", true }, { "obscur.us", true }, + { "obsessharness.com", true }, { "obsidianirc.net", true }, { "obsproject.com", true }, { "obtima.org", true }, { "obud.cz", true }, { "obyvateleceska.cz", true }, { "oc-sa.ch", true }, - { "ocad.com.au", true }, + { "ocarupo.com", true }, { "occenterprises.org", true }, { "occentus.net", true }, { "occmon.net", true }, { "occonnections.org", true }, + { "occupational-therapy-colleges.com", true }, { "ocd2016.com", true }, { "ocdadmin.com", true }, { "oceandns.eu", true }, { "oceandns.net", true }, { "oceandns.nl", true }, + { "oceanlord.me", true }, { "oceanvisuals.com", true }, { "ocelot.help", true }, { "ocenovani-inspekce.cz", true }, @@ -24696,16 +26906,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ockendenhemming.co.uk", true }, { "oclausen.com", true }, { "ocloudhost.com", true }, + { "ocni-ambulance-most.cz", true }, { "ocolere.ch", true }, { "ocotg.com", true }, { "ocrn.nl", true }, { "ocsigroup.fr", true }, { "ocsr.nl", true }, - { "octal.es", true }, + { "octagongroup.co", true }, { "octarineparrot.com", true }, { "octav.name", false }, + { "octo.im", true }, + { "octocaptcha.com", true }, + { "octofox.de", true }, { "octohedralpvp.tk", true }, - { "octohost.net", true }, { "octolopagon.games", true }, { "octopus-agents.com", true }, { "octosniff.net", true }, @@ -24721,11 +26934,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oddsandevensbookkeeping.ca", true }, { "oddtime.net", true }, { "odensc.me", true }, + { "odhosc.ca", true }, { "odifi.com", true }, + { "odinseye.net", true }, { "odoo.co.th", true }, { "odpikedoslike.com", true }, { "odtu.lu", true }, { "oducs.org", true }, + { "odvps.com", true }, { "odysseyofthemind.eu", true }, { "odzyskaniedomeny.pl", true }, { "oec-music.com", true }, @@ -24739,15 +26955,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oemspace.net", true }, { "oemspace.nl", true }, { "oemwolf.com", true }, + { "oenings.eu", true }, { "ofcampuslausanne.ch", true }, { "ofda.gov", true }, + { "ofertasadsl.com", 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 }, + { "offgridhub.com", true }, { "office-discount.at", true }, { "office-discount.de", true }, { "office-furniture-direct.co.uk", true }, @@ -24755,7 +26974,6 @@ 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 }, @@ -24767,6 +26985,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oftn.org", true }, { "oge.ch", true }, { "ogis.gov", true }, + { "oglen.ca", true }, { "ogocare.com", true }, { "oguya.ch", true }, { "ogyaa.jp", true }, @@ -24776,14 +26995,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ohchouette.com", true }, { "ohd.dk", true }, { "oheila.com", true }, - { "ohhdeertrade.com", true }, { "ohhere.xyz", true }, { "ohiohealthfortune100.com", true }, { "ohling.org", true }, + { "ohmayonnaise.com", true }, { "ohne-name.de", true }, + { "ohnonotme.com", true }, + { "ohol.se", true }, { "ohsohairy.co.uk", true }, { "ohyooo.com", true }, + { "oi-wiki.org", true }, { "oiaio.cn", true }, + { "oilfieldinjury.attorney", true }, { "oilpaintingsonly.com", true }, { "oirealtor.com", true }, { "oisd.nl", true }, @@ -24793,14 +27016,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ojdip.net", true }, { "ojomovies.com", true }, { "ojp.gov", true }, - { "okad-center.de", true }, - { "okad.de", true }, - { "okad.eu", true }, { "okakuro.org", true }, { "okanaganrailtrail.ca", true }, { "okay.cf", true }, { "okay.coffee", true }, - { "okaz.de", true }, { "okburrito.com", true }, { "okchicas.com", true }, { "okchousebuyer.com", true }, @@ -24809,6 +27028,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 }, @@ -24818,24 +27038,35 @@ 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 }, { "oldbrookmarqueehire.co.uk", true }, { "oldchaphome.nl", true }, { "oldenglishsheepdog.com.br", 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 }, { "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 }, @@ -24848,6 +27079,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oliveoiltimes.com", true }, { "oliveraiedelabastideblanche.fr", true }, { "oliverclausen.com", true }, + { "oliverfaircliff.com", true }, { "olivernaraki.com", true }, { "oliverniebuhr.de", true }, { "oliverspringer.eu", true }, @@ -24855,7 +27087,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "olivierlemoal.fr", true }, { "olivierpieters.be", true }, { "oliviervaillancourt.com", true }, - { "olivlabs.com", true }, { "olizeite.ch", true }, { "ollie.io", true }, { "ollieowlsblog.com", true }, @@ -24868,9 +27099,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "olltechjob.com", true }, { "olmari.fi", true }, { "olmsted.io", true }, - { "ols.io", true }, { "olygazoo.com", true }, { "olymp-arts.world", true }, + { "olympeakgaming.tv", true }, { "olympiads.ca", true }, { "olympic-research.com", true }, { "om1.com", true }, @@ -24879,20 +27110,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, @@ -24901,7 +27130,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -24918,8 +27147,10 @@ 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 }, { "one---line.com", true }, @@ -24931,16 +27162,18 @@ 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 }, { "onedrive.com", true }, { "onedrive.live.com", false }, { "onee3.org", true }, { "onefour.ga", false }, + { "onegoodthingbyjillee.com", true }, { "oneheartbali.church", true }, { "oneidentity.me", true }, { "oneiroi.co.uk", true }, - { "oneiros.cc", true }, { "onemid.net", true }, { "oneminute.io", false }, { "onemoonmedia.de", true }, @@ -24950,11 +27183,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onepointsafeband.com", true }, { "onepointzero.com", true }, { "oneprediction.com", true }, + { "onesnzeroes.com", false }, { "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 }, { "oneway.ga", true }, @@ -24966,7 +27201,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onhub1.com", true }, { "oni.nl", true }, { "onice.ch", true }, - { "onionplay.live", true }, + { "onionbot.me", true }, { "onionplay.org", true }, { "onionscan.org", true }, { "oniria.ch", true }, @@ -24984,6 +27219,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "online-pr.at", true }, { "online-results.dk", true }, { "online-stopwatch.com", true }, + { "online-textil.com", true }, + { "online-textil.cz", true }, + { "online-textil.sk", true }, { "online.marketing", true }, { "online.net.gr", true }, { "online.swedbank.se", true }, @@ -24993,6 +27231,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlinecensorship.org", true }, { "onlinecollegeessay.com", true }, { "onlinefashion.it", true }, + { "onlinehashfollow.com", true }, { "onlineinfographic.com", true }, { "onlinekmc.com", true }, { "onlinelegalmarketing.com", true }, @@ -25000,9 +27239,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlinelighting.com.au", 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 }, @@ -25011,9 +27252,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlylebanon.net", true }, { "onmaps.de", true }, { "onmarketbookbuilds.com", true }, - { "onnee.ch", true }, - { "onnext.cc", true }, - { "ono.es", true }, + { "onnaguse.com", true }, { "onoranze-funebri.biz", true }, { "onpay.io", true }, { "onpermit.net", true }, @@ -25026,6 +27265,9 @@ 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 }, { "onvirt.de", true }, @@ -25033,6 +27275,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onvori.de", true }, { "onvousment.fr", true }, { "onysix.net", true }, + { "onyxcts.com", true }, { "onyxfireinc.com", true }, { "onyxgen.duckdns.org", true }, { "onyxmoon.me", true }, @@ -25045,6 +27288,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oosoo.org", true }, { "ooyo.be", true }, { "op11.co.uk", false }, + { "opadaily.com", true }, { "opalesurfcasting.net", true }, { "oparl.org", true }, { "opcenter.de", true }, @@ -25055,23 +27299,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -25080,11 +27325,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "opengovpartnership.de", true }, { "openings.ninja", true }, { "openintelligence.uk", true }, - { "openiocdb.com", true }, { "openitforum.pl", true }, { "openkim.org", true }, { "openkvk.nl", true }, - { "openmirrors.cf", true }, + { "openmirrors.ml", true }, { "openmtbmap.org", true }, { "opennippon.com", true }, { "opennippon.ru", true }, @@ -25096,6 +27340,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "openrealestate.co", true }, { "openresty.com", true }, { "openreview.net", true }, + { "openroademail.com", true }, { "openruhr.de", true }, { "openscreen.lu", true }, { "opensource-cms.nl", true }, @@ -25114,10 +27359,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "openwaveguide.de", true }, { "openwifi.gr", true }, { "openwireless.org", true }, - { "operad.fr", true }, { "operationforever.com", true }, { "opfin.com", true }, + { "ophis-phosphoros.com", true }, { "opiates.ca", true }, + { "opic.gov", true }, { "opin.me", true }, { "opioids.co.uk", true }, { "opioids.gov", true }, @@ -25125,26 +27371,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oplop.appspot.com", true }, { "opoleo.com", false }, { "oportho.com.br", true }, - { "opp.ag", true }, - { "oppag.com.br", true }, { "oppaiti.me", true }, { "oppejoud.ee", true }, { "opportunis.me", true }, - { "opposer.me", true }, + { "opportunity.de", 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 }, + { "optimised.cloud", true }, + { "optimised.io", true }, + { "optimisedlabs.co.uk", true }, { "optimisedlabs.com", true }, - { "optimize-jpg.com", true }, + { "optimisedlabs.info", true }, + { "optimisedlabs.net", true }, + { "optimisedlabs.uk", true }, + { "optimist.bg", true }, + { "optimizedlabs.co.uk", true }, + { "optimizedlabs.info", true }, + { "optimizedlabs.net", true }, + { "optimizedlabs.uk", true }, { "optimumwebdesigns.com", true }, { "optimus.io", true }, { "optimuscrime.net", true }, @@ -25153,6 +27407,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "optmos.at", true }, { "optometryscotland.org.uk", true }, { "optoutday.de", true }, + { "opure.ml", true }, + { "opure.ru", true }, { "opus-codium.fr", true }, { "oraculum.cz", true }, { "orang-utans.com", true }, @@ -25162,11 +27418,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orangejetpack.com", true }, { "orangenbaum.at", true }, { "orangenuts.in", true }, - { "oranges.tokyo", true }, { "orangetravel.eu", true }, { "orangutan-appeal.org.uk", true }, { "orbu.net", true }, - { "orcahq.com", true }, + { "orca.pet", true }, { "orcamoney.com", true }, { "orchideenettoyage.com", true }, { "orchidlive.com", true }, @@ -25183,7 +27438,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 }, @@ -25200,11 +27454,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -25212,26 +27469,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orleika.io", true }, { "orlives.de", false }, { "ormer.nl", true }, + { "orocojuco.com", true }, { "orovillelaw.com", true }, { "orro.ro", true }, { "orrs.de", true }, - { "ortho-graz.at", true }, { "orthodontiste-geneve-docteur-rioux.com", true }, { "orthograph.ch", true }, { "orthotictransfers.com", true }, { "ortlepp.eu", true }, - { "ortodonciaian.com", true }, - { "orui.com.br", true }, + { "orum.in", 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 }, @@ -25241,25 +27494,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "osburn.com", true }, { "oscamp.eu", true }, { "oscarvk.ch", true }, + { "oscloud.com", true }, { "osepideasthatwork.org", true }, - { "osereso.tn", true }, { "oses.mobi", true }, { "oshayr.com", true }, { "oshell.me", true }, + { "oshershalom.com", true }, { "oshrc.gov", true }, { "osielnava.com", true }, { "oskrba.net", true }, { "oskuro.net", true }, { "osla.org", true }, - { "oslinux.net", true }, { "osm.is", true }, { "osmanlitorunu.com", true }, { "osmosis.org", true }, { "osmre.gov", true }, + { "osnova.cz", true }, + { "osobliwydom.pl", true }, + { "osomjournal.org", true }, + { "ospf.sk", true }, { "ospree.me", true }, - { "osquery.io", true }, { "ostan-collections.net", true }, { "osterkraenzchen.de", true }, + { "osti.gov", true }, { "ostimwebyazilim.com", true }, { "ostr.io", true }, { "osusume-houhou.com", true }, @@ -25270,18 +27527,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 }, { "otellio.com", true }, { "otellio.de", true }, { "otellio.it", true }, - { "otherkinforum.com", true }, { "oticasaopaulo.com.br", true }, { "oticasvisao.net.br", true }, - { "otmns.net", true }, + { "otmo7.com", true }, + { "otoblok.com", true }, + { "otokiralama.name.tr", true }, { "otorrino.pt", true }, { "otoy.com", true }, { "otoya.space", true }, @@ -25290,23 +27546,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "otrm.de", true }, { "otsfreestyle.jp", true }, { "otsu.beer", true }, - { "ottoproject.io", true }, + { "ottoversand.at", true }, { "otus-magnum.com", true }, { "otvaracie-hodiny.sk", true }, { "otya.me", true }, + { "ouaibe.qc.ca", true }, { "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 }, + { "ourmaster.org", true }, { "ouruglyfood.com", true }, { "ourwedding.xyz", true }, { "ourworldindata.org", true }, + { "out-of-scope.de", true }, { "outdoorfurniture.ie", true }, { "outdoorimagingportal.com", true }, { "outdoorlightingagoura.com", true }, @@ -25332,9 +27597,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "outlookonthedesktop.com", true }, { "outpostinfo.com", true }, { "outsideconnections.com", true }, + { "outsiders.paris", true }, + { "ovabag.com", true }, { "ovelhaostra.com", true }, { "overalglas.nl", true }, { "overamsteluitgevers.nl", true }, + { "overclockers.ge", true }, { "overdrive-usedcars.be", true }, { "overkillshop.com", true }, { "overseamusic.de", true }, @@ -25343,18 +27611,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "overstap.deals", true }, { "overstappen.nl", true }, { "overstemmen.nl", true }, + { "overstockpromote.com", true }, { "overthecloud.it", true }, { "overthinkingit.com", true }, { "overtrolls.de", true }, - { "overture.london", true }, { "overwall.org", true }, { "overzicht.pro", true }, { "overzicht.ws", true }, + { "oveweddings.com", true }, { "ovirt.org", true }, { "ovix.co", true }, { "ovnrain.com", true }, - { "ovpn.to", true }, { "ovvy.net", false }, + { "owall.ml", true }, { "owapi.net", true }, { "owennelson.co.uk", true }, { "owid.cloud", true }, @@ -25362,18 +27631,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, - { "oxanababy.com", true }, { "oxborrow.ca", true }, { "oxelie.com", true }, { "oxo.cloud", 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 }, @@ -25388,8 +27661,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -25398,30 +27674,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paas-inf.net", true }, { "paass.net", true }, { "paazmaya.fi", true }, - { "pablo.im", true }, - { "pablo.scot", true }, - { "pablo.sh", true }, - { "pabloarteaga.co.uk", true }, - { "pabloarteaga.com", true }, - { "pabloarteaga.com.es", true }, - { "pabloarteaga.es", true }, - { "pabloarteaga.eu", true }, - { "pabloarteaga.info", true }, - { "pabloarteaga.me", true }, - { "pabloarteaga.name", true }, - { "pabloarteaga.net", true }, - { "pabloarteaga.nom.es", true }, - { "pabloarteaga.org", true }, - { "pabloarteaga.science", true }, - { "pabloarteaga.tech", true }, - { "pabloarteaga.uk", true }, - { "pabloarteaga.xyz", true }, + { "pablofain.com", true }, { "pabuzo.vn", true }, { "pacatlantic.com", true }, { "pacco.com.br", true }, + { "paccolat.name", true }, { "pace.car", true }, - { "paceda.nl", true }, { "pacelink.de", true }, + { "pacifco.com", true }, + { "pacificcashforcars.com.au", true }, { "pacificpalisadeselectric.com", true }, { "pacificpalisadeselectrical.com", true }, { "pacificpalisadeselectrician.com", true }, @@ -25434,15 +27695,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "packagingproject.management", 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 }, @@ -25456,19 +27717,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pagalworld.info", 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 }, + { "pageperform.com", true }, { "pagewizz.com", true }, { "pagiamtzis.com", true }, { "pagina.com.mx", true }, + { "paginaweb4u.com", true }, { "pagure.io", true }, { "pahae.de", true }, { "pahealthbilling.com", true }, + { "pahlawanpulsa.com", true }, { "paichai.space", false }, { "paincareehr.com", true }, { "paindata.dk", true }, @@ -25479,11 +27743,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paintcolorsbysue.com", true }, { "paintingindurban.co.za", true }, { "paipuman.jp", true }, - { "paizinhovirgula.com", true }, { "pajadam.me", true }, { "pajuvuo.fi", true }, - { "paketkreditsuzuki.com", true }, { "paketo.cz", true }, + { "paketo.sk", true }, { "paketwatch.de", false }, { "pakho.xyz", true }, { "pakistani.dating", true }, @@ -25492,13 +27755,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paktolos.net", true }, { "palabr.as", true }, { "palapadev.com", true }, + { "palariviera.com", true }, + { "palary.work", true }, { "palatin.at", true }, { "palava.tv", true }, { "palavatv.com", true }, - { "palawan.jp", false }, { "palazzo.link", true }, { "palazzo.work", true }, { "paleotraining.com", true }, + { "palestra.roma.it", true }, { "palladium46.com", true }, { "pallas.in", true }, { "palletflow.com", true }, @@ -25517,7 +27782,6 @@ 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 }, @@ -25528,13 +27792,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "panic.tk", true }, { "panier-legumes.bio", true }, + { "paniyanovska.ua", true }, { "panj.ws", true }, - { "panlex.org", true }, + { "panjee.com", true }, + { "panjee.fr", true }, { "panmetro.com", true }, { "panoma.de", true }, { "panomizer.de", true }, @@ -25552,8 +27820,9 @@ 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 }, { "pap.la", false }, { "papa-webzeit.de", true }, { "papadopoulos.me", true }, @@ -25565,17 +27834,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "papelcraft.co.uk", true }, { "paper-driver.biz", true }, { "paper-republic.org", true }, - { "paperhoney.by", true }, + { "paper.sc", true }, + { "paperlesssolutionsltd.com.ng", true }, { "papertracker.net", true }, { "paperturn.com", true }, - { "paperwallets.io", true }, - { "paperwork.co.za", 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 }, @@ -25584,26 +27852,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paradigi.com.br", true }, { "paradise-engineer.com", true }, { "paradise-engineering.com", true }, + { "paradise-travel.net", true }, { "paradiselost.com", true }, { "paradoxdesigns.org", true }, { "paragonie.com", false }, + { "paragonremodeling.com", true }, { "paragreen.net", true }, + { "paranoidcrypto.com", true }, { "paranoidmode.com", true }, { "paranoidpenguin.net", true }, - { "paranoxer.hu", true }, { "parasitologyclub.org", 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 }, + { "parentelement.com", true }, { "parentheseardenne.be", true }, { "parentinterview.com", true }, { "parentsintouch.co.uk", true }, { "pariga.co.uk", true }, { "paris-store.com", true }, + { "parisbloom.com", true }, { "parisderriere.fr", true }, { "parisescortgirls.com", true }, { "parisfranceparking.com", true }, @@ -25612,6 +27883,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "parisfranceparking.nl", true }, { "parisprovincedemenagements.fr", true }, { "parkeren.in", true }, + { "parkfans.net", true }, + { "parkhost.eu", true }, { "parkinginparis.fr", true }, { "parkingpoint.co.uk", true }, { "parkrunstats.servehttp.com", true }, @@ -25624,23 +27897,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "parnassys.net", true }, { "parodesigns.com", true }, { "parolu.io", true }, + { "parquet-lascazes.fr", 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 }, + { "partnermobil.de", true }, { "partnersfcu.org", true }, { "partou.de", true }, { "partridge.tech", true }, @@ -25664,9 +27935,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -25690,8 +27964,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "passfilesafe.com", true }, { "passfoto-deinfoto.ch", true }, { "passieposse.nl", true }, + { "passionandbalance.com", true }, { "passionatefoodie.co.uk", true }, { "passionatehorsemanship.com", true }, + { "passionatelife.com.au", true }, + { "passionebenessere.com", true }, { "passionpictures.eu", true }, { "passions-art.com", true }, { "passphrase.today", true }, @@ -25705,6 +27982,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 }, @@ -25734,8 +28012,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -25754,12 +28034,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "patrickbrosi.de", 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 }, @@ -25768,12 +28049,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paudley.ca", true }, { "paudley.com", true }, { "paudley.org", true }, + { "paul-barton.co.uk", true }, { "paul-bronski.de", true }, { "paul.reviews", true }, { "pauladamsmith.com", true }, { "paulbakaus.com", true }, { "paulbdelaat.nl", true }, { "paulbramhall.uk", true }, + { "paulcooper.me.uk", true }, + { "pauldev.co", true }, + { "paulerhof.com", true }, { "paulewen.ca", true }, { "paulinewesterman.nl", true }, { "paulmeier.com", false }, @@ -25786,12 +28071,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paulrotter.de", true }, { "paulschreiber.com", true }, { "paulscustomauto.com", 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 }, { "pavando.com", true }, @@ -25803,9 +28090,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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.gov", true }, { "pay8522.com", true }, @@ -25813,8 +28100,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -25824,12 +28111,14 @@ 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 }, @@ -25838,16 +28127,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paytonmoledor.com", true }, { "payupay.ru", true }, { "payzang.com", true }, - { "payzwin.com", true }, { "pb.ax", false }, { "pback.se", true }, { "pbosquet.com", true }, { "pbourhis.me", true }, + { "pbqs.site", true }, { "pbr.so", true }, { "pbraunschdash.com", true }, + { "pbreen.co.uk", true }, { "pbrumby.com", true }, { "pbz.im", true }, { "pc-rescue.me", false }, + { "pc-servis-brno.com", true }, { "pcbricole.fr", true }, { "pccentral.nl", true }, { "pcdocjim.com", true }, @@ -25865,25 +28156,29 @@ 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 }, { "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 }, + { "pdfsearch.org", true }, + { "pdfsearches.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 }, @@ -25896,6 +28191,7 @@ 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 }, @@ -25911,7 +28207,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pedroventura.com", false }, { "peeekaaabooo.com", true }, { "peekier.com", true }, - { "peen.ch", true }, { "peep.gq", true }, { "peercraft.at", true }, { "peercraft.be", true }, @@ -25937,6 +28232,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 }, @@ -25946,26 +28242,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pehapkari.cz", true }, { "peifi.de", false }, { "peippo.at", true }, + { "peka.pw", true }, { "pekkapleppanen.fi", true }, { "pekoe.se", true }, { "pelanucto.cz", true }, { "pelican.ie", true }, - { "peliseries24.com", true }, { "pelletizermill.com", true }, { "pelletsprice.com", true }, { "pelopogrund.com", true }, { "pelopoplot.com", true }, { "pelotonimports.com", true }, + { "pems.gov.au", true }, { "penaugustin.com", true }, { "pencepay.com", true }, { "pencillab.cn", true }, { "pendriveapps.com", true }, { "penetrationstest.se", true }, + { "penfold.fr", true }, { "pengi.me", 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 }, @@ -25973,7 +28272,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 }, @@ -25985,20 +28284,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pentoo.ch", true }, { "penz.media", true }, { "peoplelikemeapp.com", true }, - { "peoplesbankal.com", true }, + { "peoplesdecade.org", true }, { "peoplesguardian.org", true }, + { "pepeelektro.sk", true }, { "pepemodelismo.com.br", true }, + { "peperstraat.online", true }, { "peplog.nl", true }, { "pepwaterproofing.com", true }, + { "pequenosfavoritos.com.br", 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.in.th", true }, { "perfectbalance.tech", true }, @@ -26008,8 +28311,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "perfektesgewicht.com", true }, { "perfektesgewicht.de", true }, { "performancehealth.com", true }, - { "performancesantafe.org", true }, - { "performaride.com.au", true }, + { "performing-art-schools.com", true }, { "perfumeaz.com", true }, { "perfumes.com.br", true }, { "periscope.tv", true }, @@ -26033,8 +28335,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "perroquet-passion.ch", true }, { "persephone.gr", true }, { "personal-genome.com", true }, + { "personal-injury-attorney.co", true }, { "personaltrainer-senti.de", true }, - { "personcar.com.br", true }, { "perspectivum.com", true }, { "perspektivwechsel-coaching.de", true }, { "persson.me", true }, @@ -26048,13 +28350,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pescco.com.br", true }, { "pestici.de", true }, { "pestkill.info", true }, - { "pesyun.cn", true }, { "pet-hotel-mura.net", 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 }, @@ -26064,13 +28365,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peterbruceharvey.com", true }, { "peterdavehello.org", true }, { "peterfiorella.com", true }, - { "peterfolta.net", true }, { "peterhuetz.at", true }, { "peterhuetz.com", true }, + { "peterjin.org", true }, { "peterjohnson.io", true }, + { "peterkshultz.com", false }, { "peterlew.is", true }, - { "petermazur.com", true }, - { "peters.consulting", true }, + { "petermaar.com", true }, { "petersontoscano.com", true }, { "petervanleeuwentweewielers.nl", true }, { "petfa.ga", true }, @@ -26081,15 +28382,19 @@ 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 }, - { "petrachuk.ru", true }, + { "petr.as", true }, { "petrasestakova.cz", true }, { "petravdbos.nl", true }, + { "petresort.pt", true }, + { "petroleum-schools.com", true }, { "petroscand.eu", true }, { "petrostathis.com", true }, + { "petrotranz.com", true }, { "petrpikora.com", true }, { "petrucciresidential.com", true }, { "petruzz.net", true }, @@ -26097,6 +28402,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pettitcoat.com", true }, { "petwall.info", true }, { "pew.ninja", true }, + { "pewnews.org", true }, { "pex.digital", true }, { "peyote.com", true }, { "pf.dk", true }, @@ -26104,6 +28410,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pfadfinder-aurich.de", true }, { "pfadfinder-grossauheim.de", true }, { "pfarchimedes-pensioen123.nl", true }, + { "pfarre-kremsmuenster.at", true }, { "pfcafeen.dk", true }, { "pfd-nz.com", false }, { "pferdekauf.de", true }, @@ -26117,9 +28424,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -26134,6 +28444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pharmaabsoluta.com.br", true }, { "pharmaboard.de", true }, { "pharmaboard.org", true }, + { "pharmacie-fr.org", false }, { "pharmacieplusfm.ch", true }, { "pharmafoto.ch", true }, { "pharmaphoto.ch", true }, @@ -26142,11 +28453,12 @@ 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 }, { "phcorner.net", true }, { "phdhub.it", true }, @@ -26155,7 +28467,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phget.com", true }, { "phi-works.com", true }, { "phialo.de", true }, + { "phil-dirt.com", true }, { "phil-phillies.com", true }, + { "phil.tw", true }, { "philadelphia.com.mx", true }, { "phileas-psychiatrie.be", true }, { "philia-sa.com", true }, @@ -26172,26 +28486,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "philippheenen.de", true }, { "philippinedroneassociation.org", true }, { "philippkeschl.at", true }, + { "philipssupportforum.com", true }, + { "philipzhan.tk", true }, { "phillipgoldfarb.com", true }, - { "phillipsuk.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 }, { "phone-service-center.de", true }, + { "phonix-company.fr", true }, { "phormance.com", true }, { "phosagro.biz", false }, { "phosagro.com", false }, @@ -26207,9 +28524,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "photodeal.fr", true }, { "photographe-reims.com", true }, { "photographersdaydream.com", true }, + { "photography-workshops.net", true }, { "photolium.net", true }, { "photomodelcasting.com", true }, { "photon.sh", true }, + { "photosquare.com.tw", true }, { "phototravel.uk", true }, { "phototrio.com", true }, { "phoxmeh.com", true }, @@ -26218,7 +28537,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phparcade.com", true }, { "phpartners.org", true }, { "phpbbchinese.com", true }, - { "phpdistribution.com", true }, { "phpdorset.co.uk", true }, { "phpinfo.in.th", true }, { "phpkari.cz", true }, @@ -26230,7 +28548,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phra.gs", true }, { "phrive.space", true }, { "phryanjr.com", false }, - { "phryneas.de", true }, { "phuket-idc.com", true }, { "phuket-idc.de", true }, { "phunehehe.net", true }, @@ -26239,7 +28556,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phus.lu", true }, { "physicalism.com", true }, { "physicalist.com", true }, + { "physicaltherapist.com", false }, { "physicpezeshki.com", true }, + { "physics-schools.com", true }, { "physiotherapie-seiwald.de", true }, { "physiovesenaz.ch", true }, { "pi-control.de", true }, @@ -26249,11 +28568,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 }, @@ -26281,8 +28600,8 @@ 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 }, @@ -26290,7 +28609,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pieland.eu", true }, { "pieldenaranja.com", true }, { "piem.org", true }, - { "pieperhome.de", true }, { "pieq.eu", true }, { "pieq.eu.org", true }, { "pier28.com", true }, @@ -26306,57 +28624,54 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pietermaene.be", false }, { "pietz.uk", true }, { "pigritia.de", true }, - { "piils.fr", true }, + { "pigs.pictures", true }, { "pijuice.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 }, + { "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 }, { "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 }, + { "pinnacleallergy.net", true }, { "pinnaclelife.co.nz", true }, { "pinnaclelife.nz", true }, { "pinnacles.com", true }, { "pinner.io", true }, { "pinoydailytvshow.net", true }, - { "pinoylinux.org", true }, + { "pinoyonlinetv.com", true }, { "pinoytech.ph", true }, { "pinpayments.com", true }, { "pinpointengineer.co.uk", true }, @@ -26370,9 +28685,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pinterest.ie", true }, { "pinterest.info", true }, { "pinterest.jp", true }, - { "pintoselectrician.co.za", true }, + { "pintosbeeremovals.co.za", true }, + { "pintosplumbing.co.za", true }, { "pioneer-car.eu", true }, { "pioneer-rus.ru", true }, + { "pipenny.net", true }, { "pipocao.com", true }, { "piranil.com", true }, { "pirate.trade", true }, @@ -26382,6 +28699,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pirateproxy.cam", true }, { "pirateproxy.cat", true }, { "pirateproxy.cc", true }, + { "pirateproxy.gdn", true }, { "pirateproxy.ist", true }, { "pirateproxy.la", true }, { "pirateproxy.one", true }, @@ -26392,10 +28710,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 }, @@ -26404,33 +28724,38 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pissblau.com", true }, { "pissflaps.co.uk", true }, { "pisupp.ly", true }, + { "pitbullsecuritysolutions.ca", true }, { "pitchpinecapital.com", true }, { "pitchupp.com", true }, { "pitfire.io", true }, { "pitot-rs.org", true }, { "pittmantraffic.co.uk", true }, + { "pivniraj.com", true }, { "pivotaltracker.com", true }, { "pivotanimation.org", true }, + { "piwko.co", true }, { "pix5.de", true }, { "pixabay.com", true }, + { "pixe2019.org", true }, + { "pixel-kraft.de", true }, { "pixel.facebook.com", false }, { "pixel.google.com", true }, { "pixelbash.de", true }, { "pixelcubed.com", true }, - { "pixelesque.uk", 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 }, @@ -26439,31 +28764,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pizzagigant.hu", true }, { "pizzahut.ru", true }, { "pizzalongaway.it", true }, + { "pizzamc.eu", 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 }, { "pkgt.de", false }, { "pkirwan.com", true }, - { "pko.ch", true }, + { "pkisolutions.com", true }, { "pkov.cz", true }, { "pkphotobooths.co.uk", true }, - { "pksps.com", true }, { "pl-cours.ch", true }, { "pl.search.yahoo.com", false }, { "placasonline.com.br", true }, @@ -26480,12 +28797,13 @@ 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 }, @@ -26500,6 +28818,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "planetknauer.net", true }, { "planetofthegames.tv", true }, { "planetromeofoundation.org", true }, + { "planetsoftware.com.au", true }, { "planformation.com", true }, { "planify.io", true }, { "planitz.com", true }, @@ -26510,6 +28829,7 @@ 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 }, @@ -26519,16 +28839,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "plastiflex.it", true }, { "plastovelehatko.cz", true }, { "platformadmin.com", true }, { "platinumexpress.com.ar", true }, - { "platinumpeek.com", true }, { "platomania.nl", true }, { "platschi.net", true }, { "platten-nach-mass.de", true }, @@ -26541,23 +28862,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "playanka.com", true }, { "playawaycastles.co.uk", true }, { "playdaysparties.co.uk", true }, + { "playerdb.co", 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 }, @@ -26567,13 +28892,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plesse.pl", true }, { "plexa.de", true }, { "plexhome13.ddns.net", true }, + { "plexi.dyndns.tv", true }, + { "plexmark.tk", true }, { "plextv.de", 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 }, @@ -26590,30 +28919,30 @@ 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 }, + { "plus1s.site", true }, + { "pluscbdoil.com", true }, { "pluslink.co.jp", true }, { "plusstreamfeed.appspot.com", true }, { "plustech.id", true }, { "pluta.net", true }, + { "plutiedev.com", true }, { "pluto.life", true }, { "plutokorea.com", true }, { "plutopia.ch", true }, { "plymouthbouncycastles.co.uk", true }, - { "plymouthglassgallery.com", true }, { "plzdontpwn.me", true }, { "plzenskybarcamp.cz", true }, { "plzh4x.me", true }, @@ -26630,6 +28959,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pmarques.info", true }, { "pmartin.tech", true }, { "pmbc.org", true }, + { "pmbtf.com", true }, { "pmconference.ch", true }, { "pmf.gov", true }, { "pmg-offshore-company.com", true }, @@ -26637,6 +28967,7 @@ 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 }, @@ -26663,26 +28994,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pochaneko.com", true }, { "pocitacezababku.cz", true }, { "pocketfruity.com", true }, - { "pocketfullofapps.com", true }, + { "pocketinsure.com", true }, { "podemos.info", true }, { "podia.com.gr", false }, { "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 }, { "poezja.com.pl", true }, { "poezjagala.pl", true }, { "poffenhouse.ddns.net", true }, + { "pogera.com", 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 }, @@ -26690,26 +29021,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "polaire.org", true }, { "polanda.com", true }, + { "polar-baer.com", true }, { "polar.uk.com", true }, { "pole-emotion.ch", true }, { "poleacademie.com", true }, { "poles4pilots.com", true }, + { "police-schools.com", true }, { "policedriver.com", true }, { "policereferencecheck.com", true }, { "policesromandesrecrutement.ch", true }, { "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 }, @@ -26722,6 +29060,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 }, @@ -26735,21 +29075,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polly.spdns.org", 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 }, + { "polymorph.rs", true }, { "polynomapp.com", true }, { "polypane.rocks", true }, { "polypet.com.sg", true }, + { "polyr.xyz", true }, { "polytarian.com", true }, { "polytekniskforening.dk", true }, { "pomar.club", false }, - { "pomardaserra.com", true }, { "pomelo-paradigm.com", true }, { "pomfeed.fr", true }, { "pommedepain.fr", true }, @@ -26769,6 +29112,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ponydesignclub.nl", true }, { "ponyfoo.com", true }, { "ponzi.life", true }, + { "poodleassassin.com", true }, + { "poodlefan.net", true }, { "pookl.com", true }, { "poolspondsandwaterscapes.com", true }, { "poolvilla-margarita.net", false }, @@ -26779,7 +29124,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pop3.jp", true }, { "popcat.ru", true }, { "popcornpalacefundraising.com", true }, - { "popcultureshack.com", true }, { "popeyes.com", true }, { "popinga.it", true }, { "popmagz.com", true }, @@ -26793,19 +29137,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "porg.es", true }, { "pork.org.uk", true }, { "porkel.de", true }, - { "porn77.info", true }, - { "pornbay.org", true }, + { "pornbay.eu", true }, { "porncandi.com", true }, - { "pornfacefinder.com", 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 }, + { "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 }, @@ -26817,11 +29165,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "portablespeakersfinder.com", true }, { "portailevangelique.ca", true }, { "portal.tirol.gv.at", true }, + { "portalcarapicuiba.com", true }, { "portalcarriers.com", true }, { "portalcentric.net", true }, - { "portalhubnuti.cz", false }, { "portalkla.com.br", true }, - { "portalzine.de", true }, { "portamiinpista.it", true }, { "porte.roma.it", true }, { "portercup.com", true }, @@ -26830,17 +29177,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "portofala.pt", true }, { "portofrotterdam.com", false }, { "portosonline.pl", true }, - { "portraitsystem.biz", true }, { "portsdebalears.gob.es", true }, { "portsmouthbouncycastles.co.uk", true }, { "portsmoutheic.com", true }, { "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 }, @@ -26872,28 +29220,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "postn.eu", true }, { "postpot.co.kr", true }, { "posttigo.com", true }, + { "postura-corretta.it", true }, { "posyperfume.com", true }, { "potatiz.com", true }, { "potatofrom.space", true }, { "potatopro.com", true }, - { "potatron.tech", true }, { "potature.rimini.it", true }, { "potature.roma.it", true }, { "potentialproject.com", false }, + { "potenzprobleme-info.net", true }, { "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 }, + { "poundwholesale.co.uk", true }, { "pour-la-culture-aulnay.fr", true }, { "pourlesenfants.info", true }, { "pouwels-oss.nl", true }, { "povareschka.ru", true }, { "povesham.tk", true }, + { "pow-s.com", true }, + { "pow.jp", true }, { "powelljones.co.uk", true }, { "power-coonies.de", true }, { "power-fit.org", true }, @@ -26901,44 +29255,51 @@ static const nsSTSPreload kSTSPreloadList[] = { { "power-meter.cc", true }, { "power-tools24.com", true }, { "powerball.shop", true }, + { "powerblanket.com", true }, { "powercloud.technology", true }, { "powerdent.net.br", true }, { "poweredbyiris.nl", true }, { "poweredbypurdy.com", true }, + { "powerfortunes.com", true }, + { "powerinboxperformance.com", true }, { "powermatic7.com", true }, { "powermeter.at", true }, { "powermint.de", true }, + { "powerplaywashers.com", true }, { "powerpointschool.com", true }, { "powerserg.org", true }, { "powersergdatasystems.com", true }, { "powersergholdings.com", true }, + { "powersergthisisthetunnelfuckyouscott.com", true }, { "powersergthisisthewebsitefuckyouscott.com", true }, { "powersergusercontent.com", true }, - { "powertothebuilder.com", true }, { "powerwellness-korecki.de", true }, { "pozemedicale.org", true }, { "pozlife.net", true }, - { "pozzitiv.ro", true }, + { "pp-server.com", true }, { "pp3345.net", true }, { "ppcrestaurants.com", true }, - { "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 }, { "ppy.sh", true }, { "pr.search.yahoo.com", false }, { "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 }, @@ -26947,15 +29308,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "praguepsychology.com", true }, { "praguepsychology.cz", true }, { "pragueswim.cz", true }, + { "praha-9.eu", true }, { "prajwalkoirala.com", true }, { "prakhar.uk", true }, { "prakharprasad.com", true }, { "praktijkdevecht.nl", true }, + { "praktijkpassepartout.nl", true }, + { "prashchar.uk", true }, + { "pratopronto.org", true }, + { "pratorotoli.it", true }, { "praxino.de", true }, { "praxis-dingeldey.de", true }, { "praxis-familienglueck.de", true }, + { "praxis-odermath.de", true }, { "prayerrequest.com", true }, - { "prazeresdavida.com.br", true }, { "prazynka.pl", true }, { "prc-newmedia.com", true }, { "prc.gov", true }, @@ -26964,15 +29330,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "preciscx.com", true }, { "preciseassemblies.com", true }, { "precision.st", true }, + { "precisiondigital-llc.com", true }, + { "precisionmachineservice.com", true }, { "precode.eu", true }, { "predoiu.ro", true }, - { "preexport.com", true }, { "prefix.eu", true }, { "pregono.com", true }, { "pregunteleakaren.gov", true }, { "preigu.de", true }, { "preis-alarm.info", true }, { "preis-alarm.org", true }, + { "preissler.co.uk", true }, + { "preload.link", true }, { "preloaded-hsts.badssl.com", true }, { "prelogica.com.br", true }, { "preludes.org", true }, @@ -26984,7 +29353,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prelved.nl", true }, { "prelved.pl", true }, { "prelved.se", true }, - { "premaritalsex.info", true }, { "prematureacceleration.club", true }, { "premierbouncycastles.co.uk", true }, { "premieresloges.ca", false }, @@ -26992,58 +29360,63 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "prepaid-cards.xyz", true }, { "prepaid-voip.nl", true }, - { "prepaidgirl.com", true }, { "prepaidkredietkaart.be", true }, { "prepare-job-hunting.com", true }, { "presbee.com", true }, + { "presbvm.org", true }, + { "presbyterian-colleges.com", true }, { "prescotonline.co.uk", true }, { "present-m.com", true }, - { "presentesdegrife.com.br", true }, { "president.bg", true }, + { "presidio.gov", true }, { "prespanok.sk", true }, + { "press-presse.ca", true }, + { "pressakey.com", true }, { "presscenter.jp", 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 }, { "prestigerepairs.com.au", true }, { "prestigesigns.net", true }, { "prestonandsons.com.au", true }, - { "prestonapp.com", true }, { "prestonbrant.com", true }, { "pretachique.com.br", true }, { "pretix.eu", true }, { "pretrialservices.gov", true }, { "pretty.hu", true }, + { "prettygirlcheats.com", true }, { "prettynode.com", true }, - { "pretwolk.nl", true }, { "pretzelx.com", true }, { "prevenir.ch", true }, { "preview-it-now.com", true }, { "priceremoval.net", true }, { "pricesniffer.co", true }, { "prideindomination.com", true }, - { "pridetechdesign.com", true }, + { "pridetechdesign.com", false }, { "prielwurmjaeger.de", true }, + { "prihatno.my.id", true }, + { "primaconsulting.net", true }, { "primalbase.com", true }, { "primalinea.pro", true }, { "primates.com", true }, { "primewho.org", true }, - { "primordialsnooze.com", true }, + { "primoloyalty.com", true }, { "primorus.lt", true }, { "primotilesandbathrooms.co.uk", false }, - { "princeagency.com", true }, { "princesparktouch.com", true }, { "princessefoulard.com", true }, { "principalsexam.com", true }, @@ -27061,6 +29434,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "printerleasing.be", true }, { "printexpress.cloud", true }, { "printf.de", true }, + { "printfn.com", false }, { "printler.com", true }, { "printmet.com", true }, { "printus.de", true }, @@ -27096,6 +29470,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "privacy-week.at", true }, { "privacy.com", true }, { "privacybadger.org", true }, + { "privacychick.com", true }, + { "privacychick.io", true }, + { "privacyforjournalists.org.au", true }, { "privacyinternational.org", true }, { "privacyscore.org", true }, { "privacyweek.at", true }, @@ -27112,13 +29489,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "privatepokertour.com", true }, { "privatepropertymallorca.com", true }, { "privatestatic.com", false }, + { "privatevoid.net", true }, { "privatewolke.com", true }, { "privatfrei.de", true }, { "privatpatient-krankenhaus.de", true }, + { "privcloud.cc", true }, { "privea.fr", true }, { "privelust.nl", true }, { "priverify.com", true }, - { "privu.me", true }, { "privy-staging.com", true }, { "privy.com", true }, { "prjktruby.com", false }, @@ -27126,26 +29504,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 }, + { "proadvanced.com", true }, { "proautorepairs.com.au", true }, { "probase.ph", true }, { "probely.com", true }, { "probiv.biz", true }, { "probiv.cc", true }, - { "procens.us", true }, + { "procarservices.com", true }, { "procensus.com", true }, { "procert.ch", true }, { "processesinmotion.com", true }, { "procharter.com", true }, { "procinorte.net", true }, { "proclib.org", true }, + { "procrastinatingengineer.co.uk", true }, { "procrastinationland.com", true }, + { "procreditbank-kos.com", true }, { "procreditbank.com.al", true }, { "proctorio.com", true }, { "prodct.info", true }, @@ -27153,6 +29537,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prodietix.cz", true }, { "prodigia.com", false }, { "prodinger.com", true }, + { "prodottogiusto.com", true }, { "prodsim.ninja", true }, { "producepromotions.com", true }, { "producertools.io", true }, @@ -27160,7 +29545,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "productboard.com", true }, { "productdesignsoftware.com.au", true }, { "production.vn", true }, - { "productived.net", false }, { "productlondon.com", true }, { "productoinnovador.com", true }, { "productpeo.pl", true }, @@ -27168,6 +29552,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "produkttest-online.com", true }, { "prodware.fr", true }, { "prodware.nl", true }, + { "proeflokaalbakker.nl", true }, { "proefteksten.nl", false }, { "proeftuinveenweiden.nl", true }, { "proemployeeprotection.com", true }, @@ -27190,6 +29575,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 }, @@ -27197,20 +29583,26 @@ 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.supply", true }, + { "project86fashion.com", true }, { "projectarmy.net", false }, { "projectblackbook.us", true }, - { "projectcastle.tech", true }, + { "projectborealisgitlab.site", false }, { "projectforge.org", true }, + { "projectlinuseasttn.org", true }, { "projectnom.com", true }, + { "projectsafechildhood.gov", true }, { "projectsecretidentity.com", true }, { "projectsecretidentity.org", true }, { "projectunity.io", true }, @@ -27218,22 +29610,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "projest.ch", true }, { "projet-fly.ch", true }, { "prok.pw", true }, + { "prolan.pw", true }, { "prolearningcentre.com", true }, + { "prolinos.de", true }, + { "promedyczny.pl", true }, { "prometheanfire.net", true }, { "prometheanfire.org", true }, { "promisesaplus.com", true }, + { "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 }, @@ -27243,9 +29644,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "propipesystem.com", true }, @@ -27254,21 +29658,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proprietairesmaisons.fr", true }, { "propseller.com", true }, { "proseandleprechauns.com", true }, + { "prosharp.com.au", true }, { "prospanek.cz", true }, + { "prosperfit.com", true }, { "prosperontheweb.com", true }, { "prospo.co", true }, - { "prostohobby.ru", true }, - { "prostoporno.net", true }, { "prostoporno.sexy", true }, { "prostye-recepty.com", true }, { "prosurveillancegear.com", true }, - { "prot.ch", true }, + { "prot.ch", false }, + { "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 }, - { "protempore.fr", true }, { "proteogenix-products.com", true }, { "proteogenix.science", true }, { "proteus-eretes.nl", true }, @@ -27284,16 +29690,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proust.media", false }, { "proustmedia.de", false }, { "provectus.de", true }, - { "provence-appartements.com", true }, + { "proveits.me", false }, + { "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.bz", true }, { "proxybay.co", true }, @@ -27302,8 +29710,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proxybay.one", true }, { "proxybay.tv", true }, { "proxyportal.eu", true }, - { "proxyportal.net", true }, - { "proymaganadera.com", true }, { "prpferrara.it", true }, { "prplz.io", true }, { "prt.in.th", true }, @@ -27314,6 +29720,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 }, @@ -27329,6 +29738,7 @@ 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 }, @@ -27336,8 +29746,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pself.net", true }, { "pseta.ru", 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 }, @@ -27362,18 +29777,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "psycho-lobby.com", true }, { "psycho.space", true }, { "psychoactive.com", true }, + { "psychoco.net", false }, { "psychologie-hofner.at", true }, { "psychotherapie-kp.de", true }, + { "psycolleges.com", true }, { "psydix.org", true }, { "psylab.cc", true }, { "psylab.re", true }, { "psylab.vip", true }, { "psytrance-pro.com", true }, + { "pt-d.ru", true }, { "pt-server.de", true }, { "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 }, @@ -27381,6 +29802,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ptrbrs.nl", true }, { "ptrl.ws", true }, { "ptron.org", true }, + { "pty.gg", true }, { "puac.de", true }, { "pubean.com", true }, { "pubi.me", true }, @@ -27397,11 +29819,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "publicrea.com", true }, { "publicsuffix.org", true }, { "publiq.space", true }, + { "pubmire.com", true }, { "pubreview.com.au", true }, { "pubreviews.com", true }, { "pucchi.net", true }, { "pucssa.org", true }, { "puddis.de", true }, + { "puggan.se", true }, { "pugovka72.ru", true }, { "puhka.me", true }, { "puissancemac.ch", true }, @@ -27421,20 +29845,20 @@ 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 }, { "pureitsolutionsllp.com", true }, { "purelunch.co.uk", 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 }, @@ -27444,19 +29868,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "purplestar.com", true }, { "purplestar.mobi", true }, { "purplewindows.net", true }, + { "purplez.pw", true }, { "purrfect-box.co.uk", true }, { "purrfectboudoir.com", true }, { "purrfectmembersclub.com", true }, + { "pursuedtirol.com", true }, { "puryearlaw.com", true }, { "pusatinkubatorbayi.com", true }, { "pushers.com.mx", true }, + { "pushoflove.com", true }, + { "pushphp.com", true }, { "pushrax.com", true }, + { "pusichatka.ddns.net", true }, { "put.moe", true }, { "put.re", true }, { "putatara.net", true }, { "putman-it.nl", true }, { "putney.io", true }, { "putomani.rs", true }, + { "putrock.be", true }, { "puurwonengeldrop.nl", false }, { "puxlit.net", true }, { "puyallupnissanparts.com", true }, @@ -27472,10 +29902,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pvpcraft.ca", true }, { "pvpctutorials.de", true }, { "pvtschlag.com", true }, + { "pwaresume.com", true }, { "pwdsafe.com", true }, { "pwe.vision", true }, + { "pwnedpass.tk", true }, { "pwnies.dk", true }, { "pwolk.com", true }, + { "pxl-mailtracker.com", true }, + { "pxl.cl", true }, { "pxx.io", true }, { "py-amf.org", true }, { "py.search.yahoo.com", false }, @@ -27488,17 +29922,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pypi.io", true }, { "pypi.org", true }, { "pypi.python.org", true }, + { "pyramidsofchi.com", 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 }, @@ -27506,12 +29945,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qa.stg.fedoraproject.org", true }, { "qabalah.jp", true }, { "qaconstrucciones.com", true }, - { "qadmium.com", true }, { "qambarraza.com", true }, - { "qamrulhaque.com", true }, { "qapital.com", true }, + { "qaq.sh", true }, { "qaz.cloud", true }, - { "qbeing.info", true }, { "qbiju.com.br", true }, { "qbus.pl", true }, { "qc.immo", true }, @@ -27526,35 +29963,41 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qcstudentcenter.com", true }, { "qcstyleacademy.com", true }, { "qctravelschool.com", true }, + { "qdabogados.com", true }, { "qdon.space", false }, { "qedcon.org", false }, { "qelectrotech.org", true }, { "qetesh.de", true }, { "qetic.co.jp", true }, { "qewc.com", true }, + { "qgblog.org", true }, { "qgustavor.tk", true }, { "qhse-professionals.nl", true }, { "qianalysis.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 }, { "qis.fr", true }, { "qitarabutrans.com", true }, + { "qiu521119.host", true }, { "qiuri.org", true }, - { "qiuxian.ddns.net", true }, { "qivonline.pt", true }, { "qiwi.be", true }, { "qixi.biz", true }, { "qkka.org", true }, + { "qkmortgage.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 }, @@ -27563,34 +30006,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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.net", true }, { "qtpass.org", true }, { "qtpower.co.uk", true }, { "qtpower.net", true }, { "qtpower.org", true }, { "qtvr.com", true }, - { "qtxh.net", false }, + { "qtxh.net", true }, { "quackerswaterproofing.com", true }, - { "quaedam.org", 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 }, @@ -27602,8 +30045,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 }, @@ -27617,22 +30058,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qubes-os.org", true }, { "qubyte.codes", true }, { "quchao.com", 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 }, { "query-massage.com", true }, { "question.com", true }, - { "questionable.host", true }, + { "questoj.cn", true }, { "questsocial.it", true }, { "quevisiongrafica.com", true }, { "quic.stream", true }, @@ -27642,7 +30089,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quietapple.org", true }, { "quikchange.net", true }, { "quikpay.com.au", true }, - { "quikrmovies.to", true }, { "quilmo.com", true }, { "quimatic.com.br", true }, { "quinnlabs.com", true }, @@ -27652,44 +30098,52 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, - { "r3nt3r.com", true }, + { "r3bl.blog", true }, + { "r3bl.me", true }, { "r3s1stanc3.me", 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 }, @@ -27699,12 +30153,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rabbit.wales", false }, { "rabbitfinance.com", true }, { "rabica.de", true }, + { "rabotaescort.com", true }, { "rabynska.eu", true }, { "raccoltarifiuti.com", true }, + { "racdek.com", true }, + { "racdek.net", true }, + { "racdek.nl", true }, { "racermaster.xyz", true }, { "racesport.nl", false }, - { "raceviewcycles.com", true }, - { "raceviewequestrian.com", true }, { "rachaelrussell.com", true }, { "rachelchen.me", true }, { "racheldiensthuette.de", true }, @@ -27716,42 +30172,54 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rackerlab.com", false }, { "raclet.co.uk", true }, { "raconconsulting.co.uk", true }, + { "racoo.net", true }, + { "racozo.com", true }, { "racunovodstvo-prina.si", true }, + { "rada-group.eu", true }, { "radar.sx", true }, { "radaravia.ru", true }, + { "radarnext.com", true }, { "radartatska.se", true }, { "radartek.com", true }, { "radcube.hu", true }, + { "radegundisfest.de", true }, { "radfieldhomecare.co.uk", true }, { "radfieldhomecarefranchising.co.uk", true }, - { "radical.org", true }, { "radicaloptimism.org", true }, { "radicalsub.com.br", true }, { "radins.com", true }, + { "radio-pulsar.eu", true }, { "radio-utopie.de", true }, { "radio1.ie", true }, { "radioafibra.com.br", true }, { "radiocomsaocarlos.com.br", true }, + { "radiofmimagen.net", true }, + { "radioheteroglossia.com", true }, { "radioilusion.es", true }, { "radiom.fr", true }, { "radiomodem.dk", true }, { "radiomontebianco.it", true }, { "radionicabg.com", true }, { "radiopolarniki.spb.ru", true }, + { "radior9.it", true }, { "radiormi.com", true }, + { "radiorsvp.com", false }, { "radiosendungen.com", true }, { "radis-adopt.com", true }, { "radiumtree.com", true }, + { "radom-pack.pl", 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 }, + { "raft.pub", true }, { "rafting-japan.com", true }, { "ragasto.nl", true }, { "rage-overload.ch", true }, @@ -27759,23 +30227,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "railgun.com.cn", true }, { "railjob.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 }, @@ -27785,12 +30263,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raissarobles.com", true }, { "raito.win", true }, { "rajivshah.co.uk", true }, + { "rajkapoordas.com", true }, { "rajyogarishikesh.com", true }, { "rak-business-service.com", true }, - { "rakugaki.cn", 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 }, @@ -27804,12 +30283,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raltha.com", true }, { "ram-it.nl", true }, { "ram.nl", true }, - { "ramatola.uk", true }, - { "rambii.de", true }, - { "ramblingrf.tech", true }, { "rambo.codes", true }, + { "ramitmittal.com", true }, { "rammstein-portugal.com", true }, { "ramrecha.com", true }, + { "ramsor-gaming.de", true }, { "randc.org", true }, { "random-samplings.org", true }, { "randomadversary.com", true }, @@ -27819,6 +30297,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "randomkoalafacts.com", true }, { "randomprecision.co.uk", true }, { "randomquotesapp.com", true }, + { "ranfurlychambers.co.nz", true }, { "rangde.org", true }, { "rangercollege.edu", true }, { "rangsmo.se", true }, @@ -27826,7 +30305,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ranking-deli.jp", true }, { "ranktopay.com", true }, { "ranson.com.au", true }, - { "rantanda.com", true }, { "rante.com", true }, { "ranyeh.co", true }, { "ranyeh.com", true }, @@ -27838,6 +30316,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raphael.li", true }, { "raphaeladdile.com", true }, { "raphaelcasazza.ch", true }, + { "raphaelmoura.ddns.net", true }, + { "raphaelschmid.eu", true }, { "raphrfg.com", true }, { "rapidapp.io", true }, { "rapidhubs.com", true }, @@ -27854,22 +30334,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rascalscastles.co.uk", true }, { "rascalscastlesdoncaster.co.uk", true }, { "rasebo.ro", true }, + { "raspberryultradrops.com", true }, { "raspii.tech", true }, - { "rastreie.net", true }, + { "raspitec.ddns.net", true }, { "rasty.cz", true }, { "ratd.net", true }, { "ratebridge.com", true }, + { "ratelsec.com", true }, { "rathbonesonline.com", true }, { "rathgeb.org", true }, + { "ratinq.co", true }, { "rationalcreation.com", true }, { "rationalism.com", true }, { "rationalops.com", true }, { "rattenkot.io", true }, { "raulrivero.es", true }, + { "rault.io", true }, { "raum4224.de", true }, { "rauros.net", true }, { "rautelow.de", true }, - { "rautermods.net", true }, { "ravchat.com", true }, { "raven.dog", true }, { "ravenger.net", true }, @@ -27879,11 +30362,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raviparekh.co.uk", true }, { "ravis.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 }, + { "rayanitco.com", true }, { "rayiris.com", true }, { "raykitchenware.com", true }, { "raymcbride.com", true }, @@ -27899,14 +30385,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "razeen.me", true }, { "razeencheng.com", true }, { "raziskovalec-resnice.com", true }, + { "razvanburz.net", true }, + { "rbcservicehub-uat.azurewebsites.net", true }, { "rbensch.com", true }, { "rbflote.lv", true }, { "rbltracker.com", true }, { "rbmafrica.co.za", true }, { "rbnet.xyz", true }, { "rbran.com", true }, - { "rbtvshitstorm.is", true }, { "rburchell.com", true }, + { "rbx-talk.xyz", true }, { "rc-offi.net", true }, { "rc-rp.com", true }, { "rc-shop.ch", true }, @@ -27914,22 +30402,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rcd.cz", true }, { "rcdocuments.com", 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-prefecture.com", true }, { "rdwh.tech", true }, + { "rdxsattamatka.mobi", true }, { "re-curi.com", true }, { "re-engines.com", true }, { "reachhead.com", true }, @@ -27938,16 +30432,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "react-db.com", true }, { "reactivarte.es", true }, { "reactive-press.com", true }, + { "reactpwa.com", true }, { "read.sc", true }, { "reades.co.uk", true }, { "readheadcopywriting.com", true }, - { "readify.com.au", true }, { "readingandmath.org", true }, { "readingrats.de", true }, + { "readmusiccoleman.com", true }, { "readonly.de", true }, { "readouble.com", false }, - { "readtldr.com", true }, { "readysell.net", true }, + { "readytobattle.net", true }, { "readytongue.com", true }, { "readytowear.es", true }, { "reaganlibrary.gov", true }, @@ -27956,9 +30451,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "realcapoeira.ru", true }, { "realestateonehowell.com", true }, { "realestateradioshow.com", true }, - { "realfamilyincest.com", true }, { "realfreedom.city", true }, - { "realgarant-shop.de", false }, { "realhorsegirls.net", true }, { "realhypnosistraining.com.au", true }, { "realitea.co.uk", true }, @@ -27970,10 +30463,15 @@ 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 }, + { "realum.com", true }, + { "realum.de", true }, + { "realum.eu", true }, + { "realum.net", true }, { "realvnc.help", true }, { "realwaycome.com", true }, { "realwildart.com", true }, @@ -27983,23 +30481,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reath.me", 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 }, { "recantoshop.com", true }, { "recantoshop.com.br", true }, { "recapp.ch", true }, + { "recaptcha-demo.appspot.com", true }, { "receiliart.com", true }, + { "receptionpoint.com", true }, { "receptionsbook.com", true }, - { "recepty.eu", false }, + { "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 }, @@ -28013,11 +30513,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "recmon.hu", true }, { "reco-studio.de", true }, { "recolic.net", true }, + { "recommended.reviews", true }, { "recon-networks.com", true }, + { "reconexion.life", true }, { "recordeuropa.com", false }, { "recoveringspirit.com", true }, { "recoveryonline.org", true }, - { "recreation.gov", true }, { "recreoviral.com", true }, { "recruitmade.jp", true }, { "rectecforum.com", true }, @@ -28055,11 +30556,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reddingsbrigade-zwolle.nl", true }, { "reddit2kindle.com", true }, { "reddraggone9.com", true }, + { "reddyai.com", true }, { "rede-reim.de", true }, { "rede-t.com", true }, { "redelectrical.co.uk", true }, { "redessantaluzia.com.br", true }, { "redfox-infosec.de", true }, + { "redfoxmarketiing.com", true }, { "redgatesoftware.co.uk", true }, { "redgoose.ca", true }, { "redhandedsecurity.com.au", true }, @@ -28071,39 +30574,48 @@ static const nsSTSPreload kSTSPreloadList[] = { { "redirect.stg.fedoraproject.org", true }, { "rediske.me", true }, { "redit.com", true }, + { "rediverge.com", true }, { "redivis.com", true }, + { "redleslie.com", true }, { "redletter.link", true }, { "redlinelap.com", true }, { "redlink.de", true }, + { "redmind.se", true }, { "redmore.me", true }, - { "redneck-gaming.de", true }, { "redneragenturen.org", true }, { "rednsx.org", true }, - { "redporno.cz", true }, + { "redpact.com", true }, { "redprice.by", true }, { "redshield.co", true }, { "redshiftlabs.com.au", true }, { "redshoeswalking.net", true }, { "redsicom.com", true }, + { "redsquarelasvegas.com", true }, + { "redsquirrelcampsite.co.uk", true }, { "redstoner.com", true }, { "redteam-pentesting.de", true }, { "redwaterhost.com", true }, { "redweek.com", true }, + { "redwoodpaddle.es", true }, + { "redwoodpaddle.pt", true }, { "redzurl.com", false }, { "reed-sensor.com", true }, { "reedloden.com", true }, + { "reedyforkfarm.com", true }, { "reegle.com", true }, { "reepay.com", true }, { "rees-carter.net", true }, + { "reesmichael1.com", true }, { "reevaappliances.co.uk", true }, - { "reevoo.com", true }, - { "reevu.net", true }, { "reezer.org", true }, + { "refactor.zone", false }, { "referdell.com", true }, { "refficience.com", true }, { "refill-roboter.de", true }, + { "refinansiering.no", true }, { "reflectivity.io", true }, { "reflectores.net", true }, + { "refletindosaude.com.br", true }, { "reflexions.co", true }, { "reflexive-engineering.com", true }, { "reflexive.xyz", true }, @@ -28111,7 +30623,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reforesttheplanet.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 }, @@ -28121,6 +30635,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reganclassics.com", true }, { "reganparty.com", true }, { "regar42.fr", false }, + { "regeneo.cz", true }, { "regenerapoint.it", true }, { "regenerescence.com", true }, { "regily.com", true }, @@ -28128,14 +30643,13 @@ 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 }, { "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 }, @@ -28143,12 +30657,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "registrarplus.net", true }, { "registrarplus.nl", true }, { "registryplus.net", true }, - { "registryplus.nl", true }, { "regmyr.se", true }, { "regnix.net", true }, { "regnr.info", true }, { "regolithmedia.com", true }, { "regraph.de", true }, + { "regresionavidaspasadas.com", true }, + { "regularflolloping.com", true }, { "regulations.gov", true }, { "reha-honpo.jp", true }, { "rehabili-shigoto.com", true }, @@ -28159,11 +30674,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -28171,15 +30688,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reimann.me", true }, { "reimers.de", true }, { "rein.kr", true }, - { "reinaertvandecruys.com", true }, { "reinaldudras.ee", true }, { "reinaldudrasfamily.ee", 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 }, @@ -28187,42 +30703,55 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reisenbauer.ee", true }, { "reiseversicherung-werner-hahn.de", true }, { "reishunger.de", true }, + { "reisslittle.com", 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 }, + { "relaxhavefun.com", true }, { "relaxpointhyncice.cz", true }, { "relaybox.io", true }, { "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", false }, { "relvan.com", true }, { "rem0te.net", true }, + { "remaimodern.org", true }, { "remambo.jp", true }, + { "remax.at", true }, { "remedi.tokyo", true }, + { "remedionaturales.com", true }, { "remedioparaherpes.com", true }, { "remedios-caserospara.com", true }, { "remedioscaserosparalacistitis.com", true }, + { "remedioskaseros.com", false }, { "remejeanne.com", true }, { "rememberthemilk.com", false }, { "remi-saurel.com", true }, + { "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 }, @@ -28233,6 +30762,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rene-schwarz.com", true }, { "rene-stolp.de", true }, { "renearends.nl", true }, + { "renedekoeijer.com", true }, + { "renedekoeijer.nl", true }, + { "renee.today", true }, { "reneleu.ch", true }, { "renem.net", false }, { "renemayrhofer.com", true }, @@ -28244,7 +30776,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "renewpfc.com", true }, { "renezuo.com", true }, { "renkenlaw.com", true }, - { "renlen.nl", true }, { "renov8sa.co.za", true }, { "renovum.es", true }, { "renrenche.com", false }, @@ -28258,6 +30789,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rentinsingapore.com.sg", true }, { "rentourhomeinprovence.com", true }, { "renuo.ch", true }, + { "renxinge.cn", false }, + { "reo.gov", true }, { "reorz.com", true }, { "reox.at", false }, { "repaik.com", true }, @@ -28269,6 +30802,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "replicaswiss.nl", true }, { "repology.org", true }, { "report-uri.com", true }, + { "report2psb.online", true }, { "reporting.gov", true }, { "reproduciblescience.org", true }, { "reproductive-revolution.com", true }, @@ -28277,20 +30811,17 @@ 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 }, + { "reputationweaver.com", true }, { "reqrut.net", true }, - { "request-trent.com", true }, { "requestr.co.uk", true }, { "res-kc.com", true }, { "resama.eu", true }, - { "resc.la", true }, { "rescms-secure.com", true }, { "research-panel.jp", true }, { "research.facebook.com", false }, @@ -28302,21 +30833,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "resfriatech.com.br", true }, { "residence-simoncelli.com", true }, { "residentiallocksmithsanantoniotx.com", true }, + { "resine.roma.it", true }, + { "resinflooringcompany.com", true }, { "resist.ca", true }, { "resistav.com", true }, { "resolvefa.co.uk", true }, { "resolvefa.com", true }, { "resolving.com", true }, { "resoplus.ch", true }, + { "resort-islands.net", 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 }, { "respon.jp", true }, { "responer.com", true }, + { "responsepartner.com", true }, { "responsibledisclosure.nl", false }, { "responsive-shop.com", true }, { "responsivepaper.com", true }, @@ -28335,17 +30872,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "restoruns.xyz", true }, { "restrealitaet.de", true }, { "restrito.org", true }, + { "resultsatretail.com", true }, { "resursedigitale.ro", true }, { "retefarmaciecostadamalfi.it", true }, { "retetenoi.net", true }, { "retetop95.it", 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 }, { "retractableawningssydney.com.au", true }, { "retro.rocks", true }, @@ -28355,6 +30891,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "retrocdn.net", true }, { "retrofitlab.com", true }, { "retroity.net", true }, + { "retrojar.top", true }, { "retronet.nl", true }, { "retroroundup.com", true }, { "retrotracks.net", true }, @@ -28363,12 +30900,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "reuter.de", true }, { "revamed.com", false }, + { "revapost.fr", true }, { "revayd.net", true }, { "revensoftware.com", true }, { "reverencestudios.com", true }, @@ -28385,28 +30922,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "revisionnotes.xyz", true }, { "revisit.date", 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 }, { "rhaegal.me", true }, { "rhd-instruments.com", true }, { "rhd-instruments.de", true }, @@ -28416,47 +30953,50 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rheinturm.nrw", true }, { "rheocube.com", true }, { "rhese.net", true }, - { "rhetthenckel.com", true }, + { "rhetorical.ml", true }, { "rheuma-online.de", true }, { "rhevelo.com", true }, { "rhinelander.ca", true }, { "rhinoceroses.org", true }, { "rhnet.at", true }, { "rhodenmanorcattery.co.uk", true }, - { "rhodes.ml", true }, { "rhodri.io", true }, { "rhowell.io", true }, { "rhymeswithmogul.com", true }, { "rhymix.org", true }, { "rhynl.io", true }, { "riajenaka.com", true }, + { "riaki.net", true }, { "rial.space", true }, { "ribs.com", true }, + { "ricardo.nu", true }, { "ricardobalk.nl", true }, { "ricaud.me", true }, { "riccardopiccioni.it", true }, { "riccy.org", true }, { "riceadvice.info", true }, - { "richardcrosby.co.uk", true }, + { "richadams.me", true }, + { "richardbloomfield.blog", true }, + { "richardfeinbergdds.com", true }, { "richardhering.de", true }, - { "richardhicks.us", true }, { "richardjgreen.net", true }, { "richardlangworth.com", true }, { "richardlugten.nl", true }, + { "richardramos.me", true }, { "richardrblocker.net", true }, + { "richardson.cam", true }, { "richardson.engineering", true }, { "richardson.pictures", true }, { "richardson.software", true }, { "richardson.systems", true }, { "richardwarrender.com", true }, { "richie.fi", true }, - { "richie.link", true }, - { "richmtdriver.com", true }, { "richonrails.com", true }, { "ricketyspace.net", true }, { "ricki-z.com", true }, { "rickrongen.nl", true }, { "rickscastles.co.uk", true }, + { "ricksfamilycarpetcleaning.com", true }, { "rickvanderzwet.nl", true }, { "rickweijers.nl", true }, { "ricky.capital", false }, @@ -28464,19 +31004,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rico.ovh", true }, { "ricobaldegger.ch", true }, { "ricochet.im", true }, + { "ricoydesign.com", true }, { "ricozienke.de", true }, { "riddims.co", true }, { "ride-up.com", true }, + { "rideways.com", true }, { "rideyourdamn.bike", true }, + { "ridgelandchurch.org", true }, { "ridingboutique.de", true }, { "riederle.com", true }, { "riemer.ml", true }, { "riesenweber.id.au", true }, { "riesheating.com", 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 }, @@ -28488,25 +31031,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rigolitch.fr", true }, { "rigsalesaustralia.com", true }, { "rijk-catering.nl", false }, - { "rijsinkunst.nl", true }, + { "rijsinkunst.nl", false }, { "rik.onl", true }, { "riku.pw", true }, { "rile5.com", true }, { "rileyevans.co.uk", true }, { "rimax.vn", true }, { "rimcountrymuseum.org", true }, + { "rimediogiusto.com", 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 }, { "rip-sport.cz", true }, { "ripaton.fr", true }, + { "ripcordsandbox.com", true }, { "ripmixmake.org", true }, - { "ripple.com", true }, + { "riqy86.nl", true }, + { "ris.fi", true }, { "risada.nl", true }, { "risaphuketproperty.com", true }, { "riscascape.net", true }, @@ -28514,7 +31062,6 @@ 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 }, @@ -28523,6 +31070,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ristorantefattoamano.it", true }, { "ristoviitanen.fi", true }, { "ristrutturazioneappartamento.roma.it", true }, + { "rit.space", false }, { "rittau.biz", true }, { "rittau.org", true }, { "ritzlux.com.tw", true }, @@ -28530,25 +31078,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rivalsa.cn", true }, { "rivastation.de", true }, { "riverbanktearooms.co.uk", true }, + { "riverbed.com", 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 }, { "rix.ninja", true }, { "rixter.com", true }, - { "rixzz.ovh", true }, { "riyono.com", true }, { "rizalpalawan.gov.ph", true }, { "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 }, @@ -28559,15 +31110,13 @@ 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 }, { "rmm-i.com", true }, { "rmmanfredi.com", true }, { "rmpsolution.de", true }, { "rmrig.org", true }, { "rms.sexy", true }, - { "rmsides.com", true }, { "rmstudio.tw", true }, { "rmsupply.nl", true }, { "rn29.me", true }, @@ -28577,18 +31126,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "robertattfield.com", true }, + { "robertayamashita.com", true }, + { "robertayamashita.com.br", true }, + { "robertbln.com", true }, { "robertg.me", true }, { "robertglastra.com", true }, { "roberthurlbut.com", true }, @@ -28613,6 +31164,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "robinlinden.eu", true }, { "robinsonstrategy.com", true }, { "robinsonyu.com", true }, + { "robinwill.de", true }, { "robinwinslow.uk", true }, { "robjager-fotografie.nl", true }, { "robocop.no", true }, @@ -28620,9 +31172,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 }, @@ -28634,16 +31188,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -28662,15 +31218,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rodevlaggen.nl", true }, { "rodichi.net", true }, { "rodinnebyvanie.eu", true }, - { "rodinneodpoledne2018.cz", true }, + { "rodneybrooksjr.com", false }, { "rodolfo.gs", true }, { "rodomonte.org", true }, { "rodrigocarvalho.blog.br", true }, { "rody-design.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 }, @@ -28678,7 +31233,6 @@ 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 }, @@ -28692,24 +31246,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rogoff.xyz", true }, { "rogue-e.xyz", true }, { "roguefinancial.com", true }, - { "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 }, @@ -28720,12 +31276,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roma-servizi.it", true }, { "romab.com", 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 }, @@ -28738,21 +31294,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "romatrip.it", true }, { "rome.dating", true }, { "rommelwood.de", true }, - { "roms.fun", true }, + { "romun.net", true }, + { "romy.tw", true }, { "ronanrbr.com", true }, { "rondommen.nl", true }, { "rondouin.fr", true }, { "rondreis-amerika.be", true }, { "rondreis-schotland.nl", true }, { "roninf.ch", true }, + { "roninitconsulting.com", true }, { "ronniegane.kiwi", true }, { "ronnylindner.de", true }, { "ronomon.com", true }, + { "ronzertnert.xyz", 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 }, @@ -28763,7 +31325,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rooneytours.nl", true }, { "roopakv.com", true }, { "roosabels.nl", false }, - { "roosterpgplus.nl", true }, { "root-space.eu", true }, { "root.bg", true }, { "root.cz", true }, @@ -28774,13 +31335,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rootedlifemontessori.com", true }, { "rootkea.me", true }, { "rootlair.com", true }, + { "rootonline.de", 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 }, @@ -28799,16 +31361,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rosenkeller.org", true }, { "roseofyork.com", true }, { "roseofyorkbooking.com", true }, + { "roseon.net", true }, { "roseparkhouse.com", true }, { "rosesciences.com", true }, { "rosetiger.life", true }, { "rosevillefacialplasticsurgery.com", true }, + { "roshhashanahfun.com", true }, { "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 }, { "rot47.net", true }, { "rotek.at", true }, @@ -28828,6 +31393,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rounda.it", true }, { "roundcube.mayfirst.org", false }, { "roundrock-locksmith.com", true }, + { "roundtablekzn.co.za", true }, { "roussos.cc", true }, { "rout0r.org", true }, { "route-wird-berechnet.de", true }, @@ -28843,21 +31409,76 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roxiesbouncycastlehire.co.uk", true }, { "roxtri.cz", true }, { "royal-rangers.de", true }, + { "royal806.com", true }, + { "royal810.com", true }, + { "royal811.com", true }, + { "royal812.com", true }, + { "royal813.com", true }, + { "royal816.com", true }, + { "royal817.com", true }, + { "royal818.com", true }, + { "royal830.com", true }, + { "royal833.com", true }, + { "royal850.com", true }, + { "royal851.com", true }, + { "royal852.com", true }, + { "royal853.com", true }, + { "royal855.com", true }, + { "royal856.com", true }, + { "royal857.com", true }, + { "royal859.com", true }, + { "royal86.com", true }, + { "royal861.com", true }, + { "royal862.com", true }, + { "royal863.com", true }, + { "royal865.com", true }, + { "royal867.com", true }, + { "royal868.com", true }, + { "royal869.com", true }, + { "royal871.com", true }, + { "royal872.com", true }, + { "royal873.com", true }, + { "royal875.com", true }, + { "royal877.com", true }, + { "royal879.com", true }, + { "royal88.com", true }, + { "royal88.tech", true }, + { "royal881.com", true }, + { "royal882.com", true }, + { "royal883.com", true }, + { "royal885.com", true }, + { "royal886.com", true }, + { "royal887.com", true }, + { "royal888888.com", true }, + { "royal889.com", true }, + { "royal890.com", true }, + { "royal891.com", true }, + { "royal892.com", true }, + { "royal893.com", true }, + { "royal894.com", true }, + { "royal895.com", true }, + { "royal896.com", true }, + { "royal898.com", true }, + { "royal899.com", true }, { "royalacademy.org.uk", true }, { "royalasianescorts.co.uk", true }, { "royalbluewa3.cc", true }, { "royalcitytaxi.ca", true }, { "royalcitytaxi.com", true }, + { "royalfoxrealtor.com", true }, { "royalmarinesassociation.org.uk", true }, { "royalnissanparts.com", true }, { "royalpalacenogent.fr", true }, { "royalrangers.fi", true }, { "royalty-market.com", true }, + { "royalyule.com", true }, { "royceandsteph.com", true }, { "roycewilliams.net", true }, { "rozalynne-dawn.ga", true }, { "rozhodce.cz", true }, { "rpadovani.com", true }, + { "rpauto.ru", true }, + { "rpgcampaign.website", true }, { "rpgmaker.es", true }, { "rpherbig.com", true }, { "rphl.net", true }, @@ -28871,23 +31492,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rrdesignsuisse.com", true }, { "rrg-partner.ch", true }, { "rring.me", true }, - { "rritv.com", true }, { "rro.rs", true }, { "rrudnik.com", true }, { "rrwolfe.com", 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 }, + { "rsmith.io", true }, { "rsmmail.com", true }, { "rsp-blogs.de", true }, + { "rsridentassist.com", true }, { "rss.sh", false }, - { "rsships.com", true }, { "rssr.se", true }, { "rsttraining.co.uk", true }, { "rsync.eu", false }, @@ -28896,9 +31517,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rtate.se", true }, { "rtcx.net", true }, { "rtd.uk.com", true }, + { "rte.eu", true }, { "rte2fm.ie", true }, { "rteaertel.ie", true }, { "rtechservices.io", true }, + { "rteguide.ie", true }, { "rteinternational.ie", true }, { "rtejr.ie", true }, { "rtek.se", false }, @@ -28906,23 +31529,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rteone.ie", true }, { "rteplayer.com", true }, { "rtesport.eu", true }, + { "rteworld.com", true }, { "rtfpessoa.xyz", true }, + { "rths.tk", true }, + { "rthsoftware.cn", true }, { "rtrappman.com", true }, { "rtrinflatables.co.uk", true }, { "rtsr.ch", true }, + { "rttss.com", 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 }, { "rublacklist.net", true }, + { "ruby-auf-schienen.de", true }, { "rubyist.today", true }, { "rubymartin.com.au", true }, { "rubyquincunx.com", true }, @@ -28930,12 +31561,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rubytune.com", true }, { "rucksack-rauf-und-weg.de", true }, { "ruckzuck-privatpatient.de", true }, + { "rucnerobene.eu", true }, { "ruconsole.com", true }, { "rud.is", true }, { "rudd-o.com", true }, - { "rudelune.fr", true }, - { "ruderverein-gelsenkirchen.de", true }, { "rudewiki.com", true }, + { "rudhaulidirectory.com", true }, { "rudloff.pro", true }, { "rudnikas.com", true }, { "rudolph.life", true }, @@ -28944,8 +31575,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ruediger-voigt.eu", true }, { "ruedigervoigt.de", true }, { "ruedirrenggli.ch", true }, - { "rueduparticulier.tk", true }, - { "rueg.eu", true }, + { "rueduparticulier.tk", false }, + { "rueegger.me", true }, { "ruerte.net", true }, { "rufabula-com.appspot.com", true }, { "ruffbeatz.com", true }, @@ -28960,11 +31591,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ruin.one", true }, { "ruiruigeblog.com", true }, { "ruk.ca", true }, - { "rullzer.com", true }, { "rulu.co", true }, { "rulu.tv", true }, { "rulutv.com", true }, - { "rumlager.de", true }, + { "rumartinez.es", true }, { "rummage4property.co.uk", true }, { "rumplesinflatables.co.uk", true }, { "rumtaste.com", true }, @@ -28973,6 +31603,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "runagain.ch", true }, { "runebet.com", true }, { "runefake.com", true }, + { "runementors.com", false }, { "runklesecurity.com", true }, { "runnergrapher.com", true }, { "runreport.fr", true }, @@ -28980,20 +31611,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "runvs.io", true }, { "ruobr.ru", 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 }, @@ -29004,16 +31638,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rustyrambles.com", true }, { "rusxakep.com", true }, { "rutgerschimmel.nl", true }, + { "ruthmontenegro.com", true }, { "rutiger.com", 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 }, @@ -29029,6 +31665,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -29039,10 +31676,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ryansmithphotography.com", true }, { "ryazan-region.ru", true }, { "rychlikoderi.cz", true }, + { "rydermais.tk", true }, { "rynekpierwotny.pl", true }, - { "ryois.me", true }, + { "rys.pw", true }, + { "ryssl.com", true }, { "ryu22e.org", true }, { "ryuu.es", true }, + { "ryyule.com", true }, + { "ryzex.de", true }, { "ryzhov.me", true }, { "rzentarzewski.net", true }, { "s-a.xyz", true }, @@ -29056,6 +31697,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -29066,9 +31708,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "s404.de", true }, { "s44.eu", true }, { "s4db.net", true }, + { "s4media.org", true }, + { "s4q.me", true }, { "s4tips.com", true }, { "s4ur0n.com", true }, { "s5118.com", true }, + { "s64.cz", true }, { "s8a.us", true }, { "s95.de", true }, { "sa-blog.net", true }, @@ -29080,11 +31725,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saba-piserver.info", true }, { "sabahattin-gucukoglu.com", true }, { "sabe.cz", true }, + { "sabine-forschbach.de", true }, + { "sabineforschbach.de", true }, { "sabrinajoias.com.br", true }, { "sabrinajoiasprontaentrega.com.br", true }, + { "sabtunes.com", true }, { "sacaentradas.com", true }, { "saccani.net", true }, - { "sachk.com", true }, { "sackers.com", true }, { "sackmesser.ch", true }, { "saclier.at", true }, @@ -29094,26 +31741,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sadbox.es", true }, { "sadbox.org", true }, { "sadbox.xyz", true }, + { "sadeghian.us", true }, { "sadev.co.za", true }, { "sadhawkict.org", true }, { "sadmansh.com", true }, { "sadou.kyoto.jp", true }, { "sadsu.com", true }, - { "saenforcement.agency", true }, { "saengsook.com", true }, { "saengsuk.com", 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 }, { "safejourney.education", true }, { "safematix.com", true }, @@ -29126,13 +31776,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "safetext.me", true }, { "safetycloud.me", true }, { "safetynames.com", true }, + { "safetyrisk.net", 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 }, @@ -29143,6 +31793,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sahkotyot.eu", true }, { "said.id", true }, { "said.my.id", true }, + { "saidtezel.com", true }, { "saier.me", true }, { "saifoundation.in", true }, { "saigonflowers.com", true }, @@ -29152,67 +31803,88 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saikouji.tokushima.jp", true }, { "sailingonward.com", true }, { "sailormoonevents.org", true }, + { "sailormoonlibrary.org", true }, { "saimoe.moe", true }, { "saimoe.org", true }, { "sainetworks.net", true }, + { "saint-bernard-gouesch.fr", true }, + { "saint-cyril.com", true }, { "saintaardvarkthecarpeted.com", true }, { "saintanthonyscorner.com", true }, { "sainth.de", true }, + { "sainthelenas.org", true }, + { "saintjamestheapostle.org", true }, + { "saintjohn-bocaraton.com", true }, + { "saintmarkchurch.net", true }, + { "saintpatrick-norristown.net", true }, { "saintsrobotics.com", true }, { "saipariwar.com", true }, { "saiputra.com", true }, - { "saiyasu-search.com", true }, + { "saitrance.com", true }, + { "saitv.org", true }, { "sajamstudija.info", true }, { "sajdowski.de", true }, { "sakaki.anime.my", false }, { "sakostacloud.de", true }, { "sakura-paris.org", true }, + { "sakura.zone", true }, + { "sakuracdn.com", true }, + { "sakuracommunity.com", false }, { "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 }, - { "salixcode.com", true }, + { "salidaswap.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-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 }, + { "saludmas.site", true }, { "saludsexualmasculina.org", true }, { "saludsis.mil.co", true }, + { "saludyvida.site", true }, + { "salutethefish.com", true }, + { "salutethegrains.com", true }, { "salutethepig.com", true }, + { "salva.re", true }, { "salvagedfurnitureparlour.com", true }, { "sam-football.fr", true }, + { "samanacafe.com", true }, { "samanthasgeckos.com", true }, { "samanthasicecream.com", true }, { "samappleton.com", true }, @@ -29234,10 +31906,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "sammyservers.com", true }, + { "sammyservers.net", true }, + { "sammyslimos.com", true }, { "samnya.cn", true }, { "samsungmobile.it", true }, { "samsungphonegenerator.xyz", true }, @@ -29247,32 +31925,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "samuellaulhau.fr", true }, { "samui-samui.de", false }, { "samuirehabcenter.com", true }, + { "samvanderkris.xyz", true }, { "samwilberforce.com", true }, { "samwrigley.co.uk", true }, - { "samwu.tw", false }, + { "samwu.tw", true }, { "samyerkes.com", true }, + { "san-mian-ka.ml", true }, { "san.ac.th", true }, { "sana-store.com", true }, { "sana-store.cz", true }, { "sana-store.sk", true }, - { "sanalbayrak.com", true }, - { "sanandreasstories.com", true }, { "sanantoniolocksmithinc.com", true }, + { "sanantoniolocksmithtx.com", true }, { "sanasport.cz", true }, { "sanasport.sk", true }, { "sanatorii-sverdlovskoy-oblasti.ru", true }, { "sanatorionosti.com.ar", true }, { "sanchez.adv.br", true }, + { "sand-islets.de", true }, { "sandalj.com", true }, { "sandbagexpress.com", true }, { "sandbox.mydigipass.com", false }, + { "sandboxfp.com", true }, { "sandburner.net", 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 }, { "sandmanintel.com", true }, { "sandmarc.cz", true }, @@ -29288,26 +31968,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, @@ -29315,6 +31998,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 }, @@ -29325,7 +32009,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sapindus.pl", true }, { "sapk.fr", true }, { "saposute-s.jp", true }, - { "sapphireblue.me", true }, { "sapphirepearl.com.sg", true }, { "sapprendre.ch", true }, { "saprima.de", true }, @@ -29339,12 +32022,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sarariman.com", true }, { "sarasturdivant.com", true }, { "sardegnatirocini.it", true }, - { "sarkarikhoj.com", true }, + { "sarink.eu", 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 }, @@ -29363,14 +32051,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -29382,21 +32071,20 @@ 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 }, { "saveora.com", true }, - { "saveora.shop", true }, { "savetheinternet.eu", true }, { "saveya.com", true }, { "savic.com", true }, { "saviezvousque.net", true }, { "savingrecipe.com", true }, + { "savingsoftheyear.com", true }, { "savingsomegreen.com", true }, { "savingsstoreonline.ca", true }, { "savisasolutions.co.za", true }, @@ -29412,9 +32100,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sayrodigital.com", true }, { "sayura.net", true }, { "saz.sh", true }, + { "sazavafest.cz", true }, { "sazuz.cz", true }, { "sb-group.dk", true }, { "sb-mnn.com", true }, + { "sb-sd.org", true }, { "sb-tuning.ru", true }, { "sb.im", true }, { "sb.sb", true }, @@ -29425,11 +32115,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sbf888.com", true }, { "sbiewald.de", true }, { "sbir.gov", true }, + { "sbirecruitment.co.in", true }, { "sbit.com.br", true }, { "sblum.de", true }, { "sbo-dresden.de", true }, { "sbr.red", true }, { "sbrouwer.org", true }, + { "sbrownbourne.com", true }, { "sbsavings.bank", true }, { "sbsbaits.com", true }, { "sbsnursery.co.uk", true }, @@ -29440,7 +32132,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scaarus.com", true }, { "scaffalature.roma.it", true }, { "scaffoldhireeastrand.co.za", true }, - { "scaffoldhiresandton.co.za", true }, { "scalacollege.nl", true }, { "scalaire.com", true }, { "scalaire.fr", true }, @@ -29449,6 +32140,7 @@ 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 }, @@ -29456,8 +32148,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scanpay.dk", true }, { "scarafaggio.it", true }, { "scatsbouncingcastles.ie", true }, + { "scbdh.org", true }, { "scelec.com.au", true }, { "scenastu.pl", true }, + { "scene.mx", true }, { "scenester.tv", true }, { "scenicbyways.info", true }, { "scepticism.com", true }, @@ -29469,8 +32163,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schatmeester.be", true }, { "schatzibaers.de", true }, { "schawe.me", true }, + { "schbebtv.fr", true }, { "scheduleme.io", true }, { "scheemadigital.com", true }, + { "schefczyk.com", true }, + { "schefczyk.de", true }, + { "schefczyk.eu", true }, { "schefczyk.net", true }, { "scheidtweiler.de", true }, { "scheinlichter.de", true }, @@ -29480,19 +32178,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schenkes.de", true }, { "scherfke.de", true }, { "scheuchenstuel.at", true }, + { "schgroup.com", true }, { "schier.info", true }, { "schil.li", true }, { "schildbach.de", true }, { "schillers-friedberg.de", true }, { "schimmel-test.info", true }, { "schippendale.de", true }, - { "schippers-it.nl", true }, { "schizoids.net", true }, { "schlachter.ca", true }, { "schlaf.guru", true }, { "schlafguru.com", true }, { "schlagenhauf.info", true }, { "schlagma.de", false }, + { "schlarb.eu", true }, { "schlarp.com", true }, { "schlechtewitze.com", true }, { "schlick.wedding", true }, @@ -29501,7 +32200,6 @@ 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 }, @@ -29511,44 +32209,52 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schnapke.name", true }, { "schneeketten-ratgeber.de", true }, { "schnegg.name", true }, + { "schneidr.de", true }, { "schneids.me", true }, { "schnellno.de", true }, { "schnellsuche.de", true }, { "schnouki.net", true }, + { "schnuckenhof-wesseloh.de", true }, { "schnyder-werbung.ch", true }, { "schoeck-elektro.de", true }, + { "schoeller.click", true }, { "schoepski.de", true }, { "schoknecht.net", true }, { "schoknecht.one", true }, + { "schokofoto.de", true }, { "schokokeks.org", true }, + { "scholar.group", true }, + { "scholar.site", true }, { "scholarly.com.ph", true }, { "scholarly.ph", true }, { "scholarnet.cn", true }, + { "scholarstyle.com", true }, { "scholierenvervoerzeeland.nl", true }, { "schollbox.de", false }, + { "scholledev.com", true }, { "scholz-kallies.de", true }, { "schont.org", true }, { "school-b.us", true }, { "school-register.co.za", true }, - { "school.in.th", true }, { "schoolbus.at", true }, + { "schoolcafe.com", true }, { "schoolotzyv.ru", true }, { "schoolsonice.nl", true }, { "schopenhauer-institut.de", 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 }, - { "schritt4fit.de", true }, { "schrodingersscat.com", true }, { "schrodingersscat.org", true }, { "schroeder-immobilien-sundern.de", true }, @@ -29573,7 +32279,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schummar.de", true }, { "schunako.ch", true }, { "schuppentier.org", true }, - { "schur-it.de", true }, { "schurkenstaat.net", true }, { "schutz-vor-schmutz.de", true }, { "schutznetze24.de", false }, @@ -29581,6 +32286,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schwabenhaus-ka.de", true }, { "schwalliers.com", true }, { "schwanke.in", true }, + { "schwarz-gelbe-fuechse.de", true }, { "schwarzegar.de", true }, { "schwarzer.it", true }, { "schwarzes-muenchen.de", true }, @@ -29600,12 +32306,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "scis.com.ua", true }, @@ -29614,6 +32323,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -29622,6 +32333,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scorobudem.ru", true }, { "scorocode.ru", true }, { "scorp13.com", true }, + { "scottgalvin.com", true }, { "scottgruber.me", true }, { "scottgthomas.com", true }, { "scotthelme.co.uk", true }, @@ -29629,7 +32341,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scottishseniorsgolf.com", true }, { "scottseditaacting.com", true }, { "scottstorey.co.uk", true }, - { "scottynordstrom.org", false }, + { "scotttopperproductions.com", true }, { "scoutingridderkerk.nl", true }, { "scoutingtungelroy.nl", true }, { "scoutnet.de", true }, @@ -29637,6 +32349,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scp500.com", true }, { "scpartyentertainment.co.uk", true }, { "scpslgame.com", true }, + { "scra.gov", true }, { "scrabble-solver.com", true }, { "scrambox.com", true }, { "scramget.com", true }, @@ -29646,7 +32359,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scratchandscuffs.com", true }, { "scratchandscuffs.uk", true }, { "scrayos.net", true }, - { "scredible.com", true }, + { "scredible.com", false }, { "screen64.tk", true }, { "screenlight.tv", true }, { "screenmachine.com", true }, @@ -29659,7 +32372,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scrisulfacebine.ro", true }, { "scrod.me", true }, { "scroll.in", true }, - { "scrumplex.net", true }, + { "scrumbleship.com", true }, + { "scrumpus.com", true }, { "scrumstack.co.uk", true }, { "scryfall.com", true }, { "scs-simulatoren.de", true }, @@ -29667,8 +32381,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scswam.com", true }, { "sctiger.me", true }, { "sctiger.ml", true }, + { "sctm.at", true }, { "sctrainingllc.com", true }, { "scubadiving-phuket.com", true }, + { "scubaland.hu", true }, { "scul.net", true }, { "sculpture.support", true }, { "scuolaguidalame.ch", true }, @@ -29678,11 +32394,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scwilliams.co.uk", true }, { "scwilliams.uk", true }, { "sd.af", true }, + { "sdayman.com", true }, { "sdcardrecovery.de", true }, { "sdg-tracker.org", true }, { "sdho.org", true }, { "sdns.fr", true }, - { "sdocast.com", true }, { "sdsi.us", true }, { "sdsk.one", true }, { "sdsmanagement.me", true }, @@ -29693,9 +32409,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "seafood.co.nz", true }, { "seaholmwines.com", true }, { "sealaw.com", true }, @@ -29706,6 +32422,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -29723,14 +32440,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "searchbrothers.nl", true }, { "searchbrothers.ru", true }, { "searchbrothers.uk", true }, + { "searchcandy.nl", true }, + { "searchcandy.uk", true }, { "searchdatalogy.com", true }, { "seareytraining.com", true }, + { "searsucker.com", true }, { "searx.ru", true }, { "searx.xyz", true }, { "seasidestudios.co.uk", true }, { "season.moe", true }, { "seasons.nu", false }, { "seatbeltpledge.com", true }, + { "seatshare.co.uk", true }, { "seattle-life.net", true }, { "seattlefabrication.com", true }, { "seattlemesh.net", true }, @@ -29738,19 +32459,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seattlewalkinbathtubs.com", true }, { "seavancouver.com", true }, { "seb-mgl.de", 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 }, { "sebi.org", true }, + { "seby.io", true }, { "sec-mails.de", true }, { "sec-research.com", true }, { "sec-wiki.com", true }, @@ -29759,13 +32483,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sec.gov", true }, { "sec.red", true }, { "sec3ure.co.uk", true }, - { "sec44.com", true }, - { "sec44.net", true }, - { "sec44.org", true }, { "sec455.com", true }, { "sec530.com", true }, { "sec555.com", true }, - { "secanje.nl", true }, { "secbone.com", true }, { "secboom.com", true }, { "seccom.ch", true }, @@ -29773,14 +32493,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "secpoc.online", true }, { "secretar.is", true }, - { "secretpanties.com", true }, + { "secretary-schools.com", true }, + { "secretsanta.fr", true }, { "secretsdujeu.com", true }, { "secretserveronline.com", true }, { "secretum.tech", true }, @@ -29814,6 +32536,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securethe.news", true }, { "securetheorem.com", true }, { "securetronic.ch", true }, + { "securetrustbank.com", true }, { "securi-tay.co.uk", true }, { "securify.nl", true }, { "securipy.com", true }, @@ -29825,14 +32548,14 @@ 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 }, + { "securitycamerascincinnati.com", true }, + { "securitycamerasjohnsoncity.com", true }, { "securityfest.com", true }, + { "securitygladiators.com", true }, { "securityheaders.com", true }, { "securityheaders.io", true }, + { "securityheaders.nl", true }, { "securityinet.com", false }, { "securitykey.co", true }, { "securitypluspro.com", true }, @@ -29840,17 +32563,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securitypuppy.com", true }, { "securitysense.co.uk", true }, { "securitysnobs.com", false }, - { "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 }, { "secwall.me", true }, - { "secwise.nl", true }, { "secyourity.se", true }, { "sedeusquiser.net", true }, { "sedlakovalegal.com", true }, @@ -29859,28 +32579,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "see.wtf", true }, { "seeclop.ch", true }, { "seedandleisure.co.uk", true }, + { "seedisclaimers.com", true }, { "seednode.co", true }, { "seedsofangelica.net", true }, { "seekers.ch", true }, { "seeks.ru", true }, { "seekthe.net", true }, { "seemeagain.com", true }, - { "seemeasaperson.com", true }, { "seesuite.com", true }, { "seewhatididhere.com", true }, { "seeworkdone.com", true }, { "seezeitlodge-bostalsee.de", true }, { "sefru.de", true }, { "seg-leipzig.org", true }, + { "seg-sys.com", true }, { "segaretro.org", true }, { "segitz.de", true }, { "segmetic.com", true }, { "segulink.com", true }, + { "seguros-de-salud-y-vida.com", true }, { "segurosbalboa.com.ec", false }, { "segurosocial.gov", true }, { "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 }, @@ -29898,6 +32621,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "selectel.com", false }, { "selectel.ru", true }, { "selectorders.com", true }, + { "selectsplat.com", true }, { "selegiline.com", true }, { "selent.me", true }, { "self-evident.org", true }, @@ -29910,6 +32634,7 @@ 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 }, @@ -29917,15 +32642,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sellme.biz", true }, { "sellmoretires.com", true }, { "sello.com", true }, + { "sellorbuy.uk", true }, + { "sellorbuy.us", true }, { "seltendoof.de", true }, { "semacode.com", true }, { "semaf.at", true }, { "semaflex.it", true }, + { "semantica.cz", true }, { "semaphore-studios.com", true }, + { "semdynamics.com", true }, { "semenov.su", false }, { "semianalog.com", true }, { "seminariruum.ee", true }, { "semiocast.com", true }, + { "semirben.de", true }, + { "semiread.com", true }, { "semjonov.de", true }, { "semmlers.com", true }, { "semox.de", true }, @@ -29938,26 +32669,30 @@ 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 }, { "seniors.singles", true }, { "senmendai-reform.com", true }, + { "sennase.net", true }, + { "senobio.com", true }, { "senorcontento.com", true }, { "sensebridge.com", true }, { "sensebridge.net", true }, { "sensepixel.com", true }, { "senshudo.tv", true }, { "sensoft-int.net", true }, - { "sensualism.com", true }, { "sentandsecure.com", true }, { "sentic.info", true }, { "sentidosdelatierra.org", true }, @@ -29967,6 +32702,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sentry.nu", true }, { "senzaparole.de", true }, { "seo-analyse.com", true }, + { "seo-dr-it.com", true }, { "seo-linz.at", true }, { "seo-nerd.de", true }, { "seo-portal.de", true }, @@ -29974,16 +32710,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seo.london", true }, { "seo.tl", true }, { "seoagentur2go.de", true }, + { "seoankara.name.tr", true }, { "seobutler.com", true }, { "seocomposer.com", true }, { "seoenmexico.com.mx", true }, { "seoexperte.berlin", true }, { "seogeek.nl", true }, { "seohackers.fr", true }, + { "seohouston.com", true }, { "seoinc.com", true }, { "seoium.com", true }, - { "seokay.com", true }, - { "seolaba.io", true }, + { "seojames.com", true }, { "seolib.org", true }, { "seomarketing.bg", true }, { "seon.me", true }, @@ -29995,7 +32732,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seouniversity.org", 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 }, @@ -30005,8 +32744,10 @@ 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 }, { "sergefonville.nl", true }, @@ -30014,11 +32755,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sergije-stanic.me", true }, { "sergiosantoro.it", true }, { "sergiozygmunt.com", true }, - { "sergivb01.me", true }, { "sergos.de", true }, { "serialexperiments.co.uk", true }, { "serienstream.to", true }, { "serigraphs.co.uk", true }, + { "serinamusic.com", true }, { "seriousclimbing.com", true }, { "seriouss.am", true }, { "sernate.com", true }, @@ -30047,6 +32788,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 }, @@ -30054,16 +32796,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "servethecity-karlsruhe.de", true }, { "servettorna.com", true }, { "servgate.jp", true }, + { "service-wueste-vodafone.tk", true }, { "service.gov.uk", true }, { "servicebeaute.fr", true }, { "serviceboss.de", true }, + { "servicemembers.gov", true }, { "servida.ch", true }, { "serviettenhaus.de", true }, { "servingbaby.com", true }, { "servious.org", true }, { "servitek.de", true }, { "serviziourgente.it", true }, - { "servpanel.de", true }, { "servx.org", true }, { "serw.org", true }, { "serwis-wroclaw.pl", true }, @@ -30075,6 +32818,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "setenforce.one", true }, { "setfix.de", true }, { "sethcaplan.com", true }, + { "sethjust.com", true }, { "sethvargo.com", true }, { "setphaserstostun.org", true }, { "setsailanddive.com", true }, @@ -30090,32 +32834,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "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 }, { "seyfarth.de", true }, + { "seyr.me", true }, { "sfa.sk", true }, - { "sfaturiit.ro", true }, + { "sfaparish.org", true }, { "sfcomercio.com.br", true }, { "sfdev.ovh", true }, + { "sfg-net.com", true }, + { "sfg-net.eu", true }, + { "sfg-net.net", true }, + { "sfg-net.org", true }, { "sfg-nordholz.de", true }, { "sfile.eu", true }, { "sfirat-haomer.com", true }, @@ -30126,19 +32869,23 @@ 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 }, + { "sgs-systems.de", true }, + { "sgs.camera", true }, { "sgsp.nl", true }, { "sgtcodfish.com", true }, - { "sgtsnookums.net", true }, { "sgtt.ch", true }, { "sgutranscripts.org", true }, { "sh-heppelmann.de", true }, - { "sh-network.de", false }, + { "sh-network.de", true }, { "sh0rt.zone", true }, { "sh0shin.org", true }, - { "shaaaaaaaaaaaaa.com", true }, + { "shaadithailand.com", true }, { "shad.waw.pl", true }, { "shadesofgrayadr.com", true }, { "shadesofgraylaw.com", true }, @@ -30146,6 +32893,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shadigee.org", true }, { "shadowict.net", true }, { "shadowict.tech", true }, + { "shadowkingdomrecords.com", true }, { "shadowkitsune.net", true }, { "shadowlurker.com.au", true }, { "shadowsing.com", true }, @@ -30154,6 +32902,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 }, @@ -30170,17 +32919,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "shan.io", false }, { "shan.si", true }, { "shanahanstrategy.com", true }, - { "shandonsg.co.uk", true }, - { "shanekoster.net", true }, { "shanetully.com", true }, { "shanewadleigh.com", true }, + { "shangzhen.site", true }, + { "shankangke.com", true }, { "shannoneichorn.com", true }, { "shansing.cn", true }, { "shansing.com", true }, @@ -30191,26 +32942,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "share.works", true }, { "sharealo.org", true }, { "sharedhost.de", true }, - { "shareeri.com", true }, { "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 }, + { "sharisharpe.com", true }, + { "shark.cat", true }, { "shark5060.net", true }, { "sharkie.org.za", true }, { "sharperedge.pw", true }, { "sharperedgecomputers.com", true }, { "sharu.me", true }, { "sharvey.ca", true }, - { "shasso.com", true }, { "shaun.net", true }, { "shaunandamyswedding.com", true }, { "shaunc.com", true }, @@ -30218,15 +32964,19 @@ 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 }, @@ -30237,18 +32987,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shelleystoybox.com", true }, { "shellfire.de", true }, { "shellgame.io", true }, + { "shellj.me", true }, { "shelljuggler.com", false }, + { "shellot.com", true }, { "shellshock.eu", true }, { "shellvatore.us", true }, - { "shemissed.me", true }, { "shemsconseils.ma", true }, { "shena.co.uk", true }, { "shenghaiautoparts.com", true }, { "shenghaiautoparts.net", true }, + { "shengrenyu.com", true }, + { "shens.ai", true }, { "shenyuqi.com", false }, { "sherbers.de", true }, { "sherrikehoetherapy.com", true }, + { "sherut.net", true }, { "shft.cl", true }, + { "shgroup.xyz", true }, { "shgt.jp", true }, { "shh-listen.com", true }, { "shh.sh", true }, @@ -30257,33 +33012,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shico.org", true }, { "shieldcomputer.com", true }, { "shieldfe.com", true }, + { "shieldofachilles.in", 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.net", true }, + { "shimo.im", true }, { "shin-inc.jp", true }, { "shinghoi.com", true }, + { "shinglereplacementlv.com", true }, { "shining.gifts", true }, + { "shinko-osaka.jp", true }, { "shinnyosangha.org", false }, { "shinonome-lab.eu.org", true }, + { "shinsyo.com", true }, { "shintoism.com", true }, { "shinyuu.net", true }, { "shipard.com", true }, { "shipard.cz", true }, { "shipcloud.io", true }, + { "shiqi.ca", true }, + { "shiqi.one", true }, + { "shiqisifu.cc", true }, { "shirakaba-cc.com", true }, { "shirt2go.shop", true }, { "shirtsdelivered.com", true }, { "shirtsofholland.com", true }, { "shishamania.de", true }, + { "shishkabobnc.com", true }, { "shishkin.us", true }, { "shishlik.net", true }, { "shitagi-shop.com", true }, @@ -30294,6 +33058,8 @@ 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 }, @@ -30301,13 +33067,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shock.ee", true }, { "shockercityservices.com", true }, { "shodan.io", true }, - { "shoemuse.com", true }, + { "shoeracks.uk", true }, { "shoestringeventing.co.uk", true }, { "shokola.com", true }, { "shome.de", true }, { "shooter.dog", true }, + { "shop-hellsheadbangers.com", true }, { "shop-s.net", true }, { "shop.fr", true }, + { "shop4d.com", true }, { "shopadvies.nl", true }, { "shopalike.cz", true }, { "shopalike.dk", true }, @@ -30321,34 +33089,43 @@ 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 }, + { "shophisway.com", true }, + { "shopific.co", true }, + { "shopify.com", true }, { "shopifycloud.com", true }, { "shopkini.com", true }, { "shoplandia.co", true }, + { "shopperexperts.com", true }, { "shoppia.se", true }, { "shopping24.de", true }, { "shoppr.dk", true }, + { "shopregional.com.br", true }, { "shopsouthafrican.com", true }, { "shopstart.dk", true }, + { "shopstasy.com", true }, { "shoptec.sk", true }, { "shorebreaksecurity.com", true }, { "shorehamfort.co.uk", true }, { "short-biography.com", true }, { "short-term-plans.com", true }, + { "shortcut.pw", true }, { "shortdiary.me", true }, { "shoshin-aikido.de", true }, - { "shota.vip", 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 }, { "showf.om", true }, { "showmax.com", true }, { "showmethemoney.ru", true }, @@ -30358,7 +33135,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "showroom.uk", true }, { "showroom113.ru", true }, { "showsonar.com", true }, - { "shoxmusic.net", false }, { "shredriteservices.com", true }, { "shreyansh26.me", true }, { "shrike.me", false }, @@ -30370,13 +33146,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shu-fu.net", true }, { "shuffleradio.nl", true }, { "shugo.net", 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 }, + { "shuvo.rocks", true }, + { "shuvodeep.de", true }, { "shux.pro", true }, { "shwrm.ch", true }, { "shybynature.com", true }, @@ -30384,8 +33164,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "si-benelux.nl", true }, { "si.to", true }, { "si2b.fr", true }, + { "siaggiusta.com", true }, { "siamsnus.com", true }, { "sianbryn.co.uk", true }, + { "sianjhon.com", true }, { "sibfk.org", true }, { "sibiutourguide.com", true }, { "sibrenvasse.nl", true }, @@ -30395,29 +33177,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "siciliapulizie.it", true }, { "sicken.eu", true }, { "sickfile.com", true }, - { "sicklepod.com", true }, { "siconnect.us", true }, + { "sicurled.com", true }, { "sidelka-tver.ru", true }, { "sidema.be", true }, + { "sidemount-forum.com", true }, + { "sidemount-tauchen.com", true }, { "sidepodcast.com", true }, { "sidepodcastdaily.com", true }, { "sidepodcastextra.com", true }, + { "sideropolisnoticias.com.br", true }, { "sideshowbarker.net", true }, { "sidium.de", true }, { "sidnicio.us", true }, { "sidonge.com", true }, { "sidongkim.com", true }, { "sidpod.ru", true }, + { "siduga.com", true }, { "siegemund-frankfurt.de", true }, - { "sieh.es", true }, { "siel.nl", true }, + { "sielsystems.nl", 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 }, @@ -30430,6 +33218,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "signal.org", true }, { "signalmaps.co.uk", true }, { "signaltransmitter.de", true }, + { "signdesk.com", true }, { "significados.com", true }, { "significados.com.br", true }, { "significantbanter.com", true }, @@ -30439,6 +33228,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sigsrv.net", true }, { "sigterm.no", true }, { "sigterm.sh", true }, + { "sigurnost.online", true }, { "siirtutkusu.com", true }, { "sikayetvar.com", false }, { "sikevux.se", true }, @@ -30448,11 +33238,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silashes.ru", true }, { "silaslova-ekb.ru", true }, { "silent-clean.de", true }, + { "silent-yachts.com", true }, + { "silent.live", false }, { "silentkernel.fr", false }, { "silentundo.org", true }, { "silerfamily.net", true }, + { "silica-project.com", true }, + { "silica-project.jp", true }, + { "silicon-north.com", true }, + { "silicon-vision.com", true }, { "siliconchip.me", true }, - { "silke-hunde.de", true }, { "silkebaekken.no", true }, { "silkebeckmann.de", true }, { "sillisalaatti.fi", true }, @@ -30463,9 +33258,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -30521,7 +33316,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silvergoldbull.mw", true }, { "silvergoldbull.my", true }, { "silvergoldbull.nz", true }, - { "silvergoldbull.ph", true }, { "silvergoldbull.pl", true }, { "silvergoldbull.pt", true }, { "silvergoldbull.qa", true }, @@ -30539,10 +33333,13 @@ 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 }, { "silvine.xyz", true }, + { "silvobeat.blog", true }, { "silvobeat.com", true }, { "sim-karten.net", true }, { "sim-minaoshi.jp", true }, @@ -30559,6 +33356,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 }, @@ -30574,16 +33372,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 }, @@ -30592,8 +33389,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simpip.com", true }, { "simple.com", false }, { "simpleclassiclife.com", true }, + { "simplecmsdemo.com", true }, { "simplecoding.click", true }, { "simplecontacts.com", true }, + { "simplecrypt.io", true }, { "simplednscrypt.org", true }, { "simpleindianrecipes.com", true }, { "simpleinout.com", true }, @@ -30620,6 +33419,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simplystudio.com", true }, { "simpte.com", true }, { "simpul.nl", true }, + { "simrail.nl", true }, { "simsnieuws.nl", true }, { "simukti.net", true }, { "sin-nombre-alleria.de", true }, @@ -30629,33 +33429,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sinceschool.com", true }, { "sinclairinat0r.com", true }, { "sinde.ru", true }, + { "sinefili.com", true }, { "sinergy.ch", true }, + { "sinfonietta-meridiana.de", true }, { "sinfulforums.net", true }, { "singaporemint.com", true }, { "singapurfirma.com", true }, { "singel.ch", true }, - { "singerwang.com", 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 }, - { "sinsojb.me", true }, + { "sinronet.com", true }, { "sint-joris.nl", true }, { "sintaxis.org", true }, { "sinterama.biz", true }, { "sinuelovirtual.com.br", true }, { "sioeckes.hu", true }, + { "sion.info", true }, { "sipc.org", true }, + { "siratalmustaqim.com", true }, { "siraweb.org", true }, { "sirbouncealotcastles.co.uk", true }, { "sirbouncelot.co.uk", true }, @@ -30668,12 +33469,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sirtaptap.com", true }, { "sirtuins.com", true }, { "sirvoy.com", true }, - { "sisgopro.com", 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 }, @@ -30683,12 +33482,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sit-brn.ru", true }, { "sit.ec", true }, { "sitc.sk", true }, + { "site-helper.com", true }, { "sitebuilderreport.com", true }, { "sitedrive.fi", true }, + { "sitefactory.com.br", true }, { "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 }, @@ -30696,18 +33498,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sivale.mx", true }, { "sivyerge.com", true }, { "siw64.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 }, { "sjd.is", true }, - { "sjdtaxi.com", true }, + { "sjdaws.com", true }, { "sjis.me", true }, { "sjleisure.co.uk", true }, { "sjoorm.com", true }, - { "sjsmith.id.au", true }, { "sjv4u.ch", true }, { "sk-net.cz", true }, { "skala.io", true }, @@ -30719,7 +33521,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skatingchina.com", true }, { "skatn.de", true }, { "skazka.ru", true }, - { "skday.com", true }, { "skedda.com", true }, { "skedr.io", false }, { "skeeley.com", true }, @@ -30727,7 +33528,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skepneklaw.com", true }, { "skepticalsports.com", true }, { "sketchmyroom.com", true }, - { "sketchywebsite.net", true }, { "skhaz.io", true }, { "skhire.co.uk", true }, { "skhoop.cz", true }, @@ -30738,13 +33538,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -30757,8 +33560,10 @@ 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 }, @@ -30768,50 +33573,55 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skolem.de", true }, { "skoleniphp.cz", true }, { "skommettiamo.it", true }, - { "skomski.org", true }, { "skontakt.cz", true }, { "skontorp-enterprise.no", true }, + { "skoolergraph.azurewebsites.net", true }, { "skortekaas.nl", false }, { "skory.us", true }, { "skou.dk", false }, { "skram.de", true }, - { "skrimix.tk", true }, { "skryptersi.pl", true }, { "sksdrivingschool.com.au", true }, { "sktan.com", 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 }, + { "sky-universe.net", true }, { "skyanchor.com", true }, - { "skybloom.com", true }, - { "skybloom.io", false }, - { "skybound.link", true }, + { "skybloom.io", true }, + { "skycmd.net", true }, { "skyderby.ru", true }, { "skydragoness.com", true }, { "skydrive.live.com", false }, + { "skyem.co.uk", 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", true }, { "skynetnetwork.eu.org", true }, { "skynetz.tk", true }, { "skype.com", true }, { "skyquid.co.uk", true }, - { "skyris.co", true }, { "skys-entertainment.com", true }, + { "skyscapecanopies.com", true }, { "skysuite.nl", true }, - { "skytec.host", true }, + { "skyynet.de", true }, { "skyzimba.com.br", true }, { "sl-bildermacher.de", true }, { "sl0.us", true }, { "sl899.com", true }, { "sl998.com", true }, + { "slab.com", false }, { "slack-files.com", true }, { "slack.com", true }, { "sladic.si", false }, @@ -30831,27 +33641,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "slim-slender.com", true }, { "slimk1nd.nl", true }, { "slimspots.com", true }, { "slingo-sta.com", true }, - { "slingo.com", true }, { "slingooriginals.com", true }, { "slingoweb.com", true }, { "slink.hr", true }, @@ -30863,26 +33673,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "slowgames.xyz", true }, { "slpower.com", true }, { "slrd-isperih.com", true }, { "sluciaconstruccion.com", true }, - { "sluimann.de", true }, { "sluitkampzeist.nl", false }, { "slusham.com", true }, { "slvh.fr", true }, { "slwilde.ca", true }, { "slxh.eu", true }, { "slxh.nl", true }, + { "slysend.com", true }, { "sm-supplements.gr", true }, { "sm.ms", true }, { "sm2016.ch", true }, @@ -30890,7 +33698,8 @@ 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 }, @@ -30911,6 +33720,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smart-shapes.co.uk", true }, { "smart-wohnen.net", true }, { "smart.gov", true }, + { "smartacademy.ge", true }, { "smartairkey.com", true }, { "smartandcom.ch", true }, { "smartandhappychild.ro", true }, @@ -30929,23 +33739,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartlogreturns.com", true }, { "smartlogstock.com", true }, { "smartlogtower.com", true }, - { "smartmeal.ru", true }, + { "smartmarketingcoaching.com", true }, { "smartmessages.net", true }, + { "smartmompicks.com", true }, { "smartmomsmartideas.com", true }, { "smartpass.government.ae", true }, { "smartphonechecker.co.uk", true }, { "smartpolicingplatform.com", true }, - { "smartrade.tech", true }, + { "smartrecruit.ro", true }, { "smartservices.nl", true }, { "smartshiftme.com", true }, { "smartship.co.jp", true }, - { "smartshoppers.es", true }, { "smartsparrow.com", true }, + { "smartthursday.hu", true }, { "smartvideo.io", true }, { "smartviewing.com", true }, + { "smartwank.com", true }, { "smartwelve.com", true }, { "smartwoodczech.cz", true }, - { "smartwritingservice.com", true }, { "smartwurk.nl", false }, { "smash-gg.club", true }, { "smatch.com", true }, @@ -30968,14 +33779,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smit.com.ua", true }, { "smit.ee", true }, { "smith.co", true }, + { "smith.is", true }, { "smithandcanova.co.uk", false }, - { "smithchow.com", true }, { "smithfieldbaptist.org", true }, + { "smkw.com", false }, { "smm.im", true }, - { "smmcab.website", true }, { "smmlaba.io", true }, { "smokeandmirrors.agency", true }, - { "smokinghunks.com", true }, + { "smokefree.gov", true }, + { "smokeus.dk", true }, { "smol.cat", true }, { "smoo.st", true }, { "smoothcomp.com", true }, @@ -31000,26 +33812,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smskeywords.co.uk", true }, { "smskmail.com", true }, { "smsprivacy.org", true }, + { "smtp.in.th", true }, { "smuncensored.com", true }, { "smutba.se", true }, { "smutek.net", true }, + { "smx.net.br", true }, { "snackbesteld.nl", true }, { "snafu.cz", true }, { "snakafya.com", true }, - { "snake.dog", true }, { "snap.com", true }, { "snapappointments.com", true }, + { "snapappts.com", true }, { "snapchat.com", true }, { "snapfinance.com", true }, { "snapserv.ch", true }, { "snapserv.net", true }, + { "snaptier.co", true }, { "snaptools.io", true }, + { "snargol.com", true }, { "snatch.com.ua", true }, - { "snazel.co.uk", true }, { "snazzie.nl", true }, { "sncdn.com", true }, { "sndbouncycastles.co.uk", true }, - { "sneak.berlin", true }, { "sneakpod.de", true }, { "sneakynote.com", true }, { "sneakypaw.com", true }, @@ -31028,7 +33842,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sneedit.com", true }, { "sneedit.de", true }, { "sneeuwhoogtes.eu", true }, - { "sneezry.com", true }, { "snel4u.nl", true }, { "snelbv.nl", true }, { "snelshops.nl", true }, @@ -31036,8 +33849,9 @@ 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.us", true }, { "sniep.net", true }, { "snight.co", true }, @@ -31045,12 +33859,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snip.run", true }, { "snippet.wiki", true }, { "snl.no", true }, + { "sno-kingroofing-gutters.com", true }, { "snoerendevelopment.nl", true }, + { "snohomishsepticservice.com", true }, { "snopyta.com", true }, + { "snoringhq.com", true }, { "snote.io", true }, { "snoupon.com", true }, { "snow-online.com", true }, - { "snow-online.de", true }, { "snow.dog", true }, { "snowalerts.eu", true }, { "snowalerts.nl", true }, @@ -31060,11 +33876,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snowhaze.ch", true }, { "snowhaze.com", true }, { "snowpak.com", true }, - { "snowplane.net", true }, + { "snowpaws.de", true }, { "snowraven.de", true }, + { "snowy.land", true }, { "snowyluma.me", true }, { "snrat.com", true }, { "snrub.co", true }, + { "sntravel.co.uk", true }, { "snuff.porn", true }, { "snughealth.org.uk", true }, { "sny.no", true }, @@ -31074,6 +33892,7 @@ 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 }, @@ -31081,15 +33900,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "socialnitro.com", true }, { "socialnous.co", true }, @@ -31103,12 +33923,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "societyhilldance.com", true }, { "socioambiental.org", true }, { "sociobiology.com", true }, + { "sociology-schools.com", true }, { "sociopathy.org", true }, { "sockeye.io", true }, { "sockscap64.com", true }, { "socoastal.com", true }, { "sodadigital.com.au", true }, { "sodafilm.de", true }, + { "sodamakerclub.com", true }, { "sodexam.pro", true }, { "sodi.nl", true }, { "sodiao.cc", true }, @@ -31117,14 +33939,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sofabedshop.de", true }, { "sofiavanmoorsel.com", true }, { "sofort.com", true }, + { "sofortimplantate-muenchen.de", true }, { "sofortueberweisung.de", true }, { "softandbouncy.co.uk", true }, { "softanka.com", true }, { "softart.club", true }, { "softballrampage.com", true }, + { "softbebe.com", true }, { "softcreatr.de", false }, + { "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 }, { "softtennis-zenei.com", true }, @@ -31132,14 +33959,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "software.rocks", true }, { "softwarebetrieb.de", true }, { "softwaredesign.foundation", false }, + { "softwarehardenberg.nl", true }, { "softwarevoortherapeuten.nl", true }, + { "softwaylancing.com", true }, { "softwerk-edv.de", true }, { "sogola.com", true }, { "sogravatas.com.br", true }, { "sogutma.com.tr", true }, { "sohamroy.me", true }, + { "soia.ca", true }, { "soinvett.com", true }, - { "soju.fi", true }, + { "sokaissues.info", true }, { "sokche.com", true }, { "sokietech.com", true }, { "sokkenhoek.nl", true }, @@ -31157,6 +33987,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 }, @@ -31164,12 +33997,14 @@ 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 }, @@ -31177,6 +34012,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solihulllionsclub.org.uk", true }, { "solipym.net", true }, { "solit.systems", true }, + { "solitairenetwork.com", true }, { "solmek.co.uk", true }, { "solmek.com", true }, { "solomisael.com", true }, @@ -31184,9 +34020,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solonotizie24.it", true }, { "solsocog.de", true }, { "soluphant.de", true }, - { "solus-project.com", true }, { "solutionhoisthire.com.au", true }, { "solvation.de", true }, + { "solve-it.se", true }, { "solved.tips", true }, { "solvemethod.com", true }, { "solvingproblems.com.au", true }, @@ -31200,8 +34036,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "somecrazy.com", true }, { "somersetscr.nhs.uk", true }, { "somersetwellbeing.nhs.uk", true }, - { "somewherein.jp", true }, { "sommefeldt.com", true }, + { "somoshuemul.cl", true }, { "somosnoticia.com.br", true }, { "sompani.com", true }, { "somuchbetterwithage.com", true }, @@ -31213,15 +34049,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sondergaard.de", true }, { "sondersobk.dk", true }, { "songluck.com", true }, + { "songshuzuoxi.com", true }, { "songsmp3.co", true }, { "songsmp3.com", true }, { "songsmp3.info", true }, { "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 }, { "sonic.studio", true }, { "sonicdoe.com", true }, @@ -31232,13 +34071,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soohealthy.nl", true }, { "soomee.be", true }, { "soomee1.be", true }, + { "soontm.de", true }, + { "soontm.net", true }, { "soopure.nl", true }, + { "sooscreekdental.com", true }, + { "soothemobilemassage.com.au", true }, { "soph.jp", true }, - { "soph.us", true }, { "sopher.io", true }, { "sophiaandmatt.co.uk", true }, { "sophiakligys.com", true }, { "sophieandtrey.com", true }, + { "sopo.me", true }, { "soprabalao.com.br", true }, { "soquee.net", true }, { "sor.so", true }, @@ -31247,9 +34090,10 @@ 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 }, @@ -31262,8 +34106,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sosteam.jp", true }, { "sosteric.si", true }, { "sotadb.info", true }, + { "sotai.tk", true }, { "sotar.us", true }, - { "sotavasara.net", true }, { "sotoasobi.net", true }, { "sotthewes.nl", true }, { "sou-co.jp", true }, @@ -31273,37 +34117,45 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "soundtruckandautorepair.com", true }, + { "soupcafe.org", true }, + { "souqtajmeel.com", true }, { "sour.is", true }, { "souravsaha.com", true }, - { "sourcebox.be", true }, + { "sourcebox.be", false }, { "sourcely.net", true }, { "sourceway.de", true }, { "souris.ch", true }, - { "sous-surveillance.net", false }, { "southafrican.dating", true }, { "southambouncycastle.co.uk", true }, { "southamerican.dating", true }, { "southbankregister.com.au", true }, + { "southcountyplumbing.com", true }, + { "southdakotahealthnetwork.com", true }, { "southernmost.us", true }, + { "southernstructuralsolutions.com", true }, { "southernutahinfluencers.com", true }, + { "southflanewsletter.com", true }, { "southlakenissanparts.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 }, @@ -31312,13 +34164,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sovendus.de", true }, { "sowlutions.com", true }, { "soybase.org", true }, + { "soydemac.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 }, { "spacedirectory.org", true }, { "spacedots.net", true }, @@ -31331,7 +34185,9 @@ 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 }, @@ -31346,10 +34202,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sparklebastard.com", true }, { "sparkresearch.net", true }, { "sparkreviewcenter.com", true }, + { "sparkz.no", true }, { "sparprofi.at", true }, { "sparta-en.org", true }, { "sparta-solutions.de", true }, { "spartaconsulting.fi", true }, + { "spartacuslife.com", true }, { "spartaermelo.nl", true }, { "spasicilia.it", true }, { "spatzenwerkstatt.de", true }, @@ -31365,11 +34223,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "speak-polish.com", true }, { "spearfishingmx.com", true }, { "speargames.net", true }, + { "specdrones.us", true }, { "specialtyalloys.ca", true }, { "speciesism.com", true }, - { "spectreattack.com", true }, + { "spectroom.space", true }, { "spectrosoftware.de", true }, - { "spedition-transport-umzug.de", true }, + { "spectrum.gov", true }, { "speech-balloon.com", true }, { "speechdrop.net", true }, { "speechmate.com", true }, @@ -31381,7 +34240,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "speedsportofhull.co.uk", true }, { "speedtailors.com", true }, { "speedtest-russia.com", true }, - { "speedychat.it", true }, { "speeltoneel.nl", true }, { "speerpunt.info", true }, { "speets.ca", true }, @@ -31392,32 +34250,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spellcheckci.com", true }, { "spellchecker.net", true }, { "spenglerei-shop.de", true }, - { "sperohub.com", true }, + { "sperandii.it", true }, + { "sperec.fr", true }, { "sperrstun.de", true }, { "spesys-services.fr", true }, { "spha.info", true }, { "sphereblur.com", true }, + { "spherenix.org", true }, { "sphido.org", true }, { "spicydog.org", true }, { "spicymatch.com", true }, + { "spidermail.tk", true }, + { "spidernet.tk", true }, { "spideroak.com", true }, { "spiders.org.ua", true }, + { "spiel-teppich.de", true }, { "spielezar.ch", true }, { "spielland.ch", true }, { "spiellawine.de", true }, + { "spiet.nl", true }, { "spiff.eu", true }, { "spiga.ch", true }, - { "spillersfamily.net", 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 }, + { "spinor.im", true }, { "spins.fedoraproject.org", true }, { "spinspin.wtf", true }, - { "spiralschneiderkaufen.de", true }, { "spirella-shop.ch", true }, { "spirit55555.dk", true }, { "spiritual.dating", true }, @@ -31435,44 +34297,47 @@ static const nsSTSPreload kSTSPreloadList[] = { { "splintermail.com", true }, { "splitdna.com", true }, { "splitreflection.com", true }, + { "splopp.com", true }, { "splunk.net", true }, { "spodelime.com", true }, + { "spokaneexteriors.com", true }, + { "spokanepolebuildings.com", true }, { "spoketwist.com", true }, { "spoluck.ca", true }, - { "spolwind.de", true }, { "spom.net", true }, { "sponc.de", true }, { "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 }, { "sportsmansblog.com", true }, { "sportstraineradvisor.com", true }, + { "sportstreetstyle.com", true }, { "sporttown.it", true }, { "sportugalia.ru", true }, { "sportvereine.online", true }, + { "sportwette.eu", true }, { "sportxt.ru", true }, { "spot-lumiere-led.com", true }, { "spotrebitelskecentrum.sk", true }, @@ -31495,9 +34360,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sprinklermanohio.com", true }, { "spritmonitor.de", true }, { "spritsail.io", true }, + { "sproktz.com", true }, { "sprucecreekclubs.com", true }, { "sprucecreekgcc.com", true }, { "sps-lehrgang.de", true }, + { "spslawoffice.com", true }, + { "spsnewengland.org", true }, { "sptk.org", true }, { "spuffin.com", true }, { "spufpowered.com", true }, @@ -31507,21 +34375,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, - { "squadlinx.com", true }, + { "sqroot.eu", true }, { "square-gaming.org", true }, { "square-src.de", false }, { "square.com", false }, - { "squareonebgc.com.ph", true }, + { "squarelab.it", true }, { "squareup.com", false }, { "squawk.cc", true }, + { "squeakql.online", true }, { "squeezemetrics.com", true }, { "squido.ch", true }, { "squidparty.com", true }, @@ -31533,6 +34400,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "srbija-nekretnine.org", true }, { "src.fedoraproject.org", true }, { "srchub.org", true }, + { "srife.net", true }, + { "srigc.com", true }, { "srihash.org", true }, { "srinivasan.io", true }, { "sro.center", true }, @@ -31558,7 +34427,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ssc8689.com", true }, { "ssc8689.net", true }, { "sscd.no", true }, - { "ssdax.com", true }, + { "ssdax.com", false }, { "ssdservers.co.uk", true }, { "ssenberg.nl", true }, { "ssh-keys.online", true }, @@ -31589,14 +34458,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 }, @@ -31605,24 +34479,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "staatsschutz.at", true }, { "staatsschutzgesetz.at", true }, { "stablelib.com", true }, + { "stacklasvegas.com", true }, { "stackpath.com", true }, { "stackptr.com", true }, - { "stacktile.io", false }, { "stackunderflow.com", true }, { "staddlestonesbowness.co.uk", true }, { "stadm.com", true }, { "stadsbygd.info", true }, { "stadt-apotheke-muensingen.de", true }, + { "stadtbauwerk.at", false }, + { "stadtbuecherei-bad-wurzach.de", true }, { "stadterneuerung-hwb.de", true }, { "stadtpapa.de", true }, { "stadtplan-ilmenau.de", true }, + { "staer.ro", true }, { "staff.direct", true }, + { "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 }, { "stair.ch", true }, { "stairfallgames.com", true }, @@ -31631,47 +34509,49 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stako.jp", true }, { "staktrace.com", true }, { "stalder.work", true }, + { "staljedevledder.nl", true }, { "stalker-shop.com", 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 }, + { "stanthony-hightstown.net", true }, { "stanthonymaryclaret.org", true }, - { "star-citizen.wiki", true }, { "star-clean.it", true }, - { "star-killer.net", 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 }, + { "starina.ru", true }, { "starinvestors.in", 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 }, + { "starsam80.net", true }, + { "starsguru.com", true }, + { "starsing.bid", true }, { "starskim.cn", true }, - { "starstreak.net", true }, + { "starstreak.net", false }, { "startaninflatablebusiness.com", true }, { "startergen.com", true }, { "startlab.sk", true }, @@ -31679,12 +34559,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "startpage.com", true }, { "startpage.info", true }, { "startrek.in", true }, + { "startsamenvitaal.nu", true }, { "starttraffic.com", true }, { "starttraffic.uk", true }, { "startupgenius.org", true }, - { "starwatches.eu", true }, { "starwins.co.uk", true }, - { "stassi.ch", true }, { "stastka.ch", true }, { "stat.ink", true }, { "statebuildinggroup.com", true }, @@ -31700,22 +34579,26 @@ 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 }, { "stay.black", true }, { "stayme.cz", true }, { "stayschemingco.com", true }, + { "stb-schefczyk.de", true }, { "stb-strzyzewski.de", true }, { "stbennett.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 }, + { "stdrc.cc", false }, { "steakhaus-zumdorfbrunnen.de", true }, { "steakovercooked.com", true }, { "stealingheather.com", true }, @@ -31738,6 +34621,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steelephys.com.au", true }, { "steelmounta.in", true }, { "steemit.com", true }, + { "steemyy.com", true }, { "steerty.com", true }, { "stefan-bayer.eu", true }, { "stefan-rothe.ch", true }, @@ -31748,8 +34632,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 }, @@ -31757,10 +34643,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steinbergmedia.de", true }, { "steinibox.de", true }, { "steklein.de", true }, + { "stekosouthamerica.com", true }, { "stella-artis-ensemble.at", true }, { "stellarguard.me", true }, { "stellarium-gornergrat.ch", true }, - { "stellarvale.net", true }, { "stellen.ch", true }, { "stelleninserate.de", true }, { "stellenticket.de", true }, @@ -31775,6 +34661,8 @@ 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 }, @@ -31808,11 +34696,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steuer-voss.de", true }, { "steuerberater-essen-steele.com", true }, { "steuerkanzlei-edel.de", true }, + { "steuerkanzlei-und-wirtschaftsberater-manke.de", true }, { "steuern-recht-wirtschaft.de", true }, { "steuerseminare-graf.de", true }, { "steuertipps-sonderausgaben.de", true }, { "steve.kiwi", true }, { "steveborba.com", true }, + { "stevecostar.com", true }, { "stevedesmond.ca", true }, { "stevedoggett.com", true }, { "stevegrav.es", true }, @@ -31821,21 +34711,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steven-klix.de", true }, { "stevenbolgartersnakes.com", true }, { "stevenhumphrey.uk", true }, - { "stevenkwan.me", true }, { "stevenroddis.com", true }, { "stevens.se", false }, { "steventress.com", true }, + { "steventruesdell.com", true }, { "stevenwooding.com", true }, { "stevenz.net", true }, { "stevenz.science", true }, { "stevenz.xyz", true }, { "stevesdrivingschooltyneside.com", true }, { "stewartswines.com", true }, - { "stewonet.nl", true }, + { "stewpolley.com", true }, { "steyaert.be", false }, - { "stforex.com", true }, + { "stforex.com", false }, + { "stfrancisnaugatuck.org", true }, { "stfw.info", true }, - { "stge.uk", true }, + { "stgabrielstowepa.org", true }, + { "stgeorgegolfing.com", true }, + { "stgm.org", true }, + { "sthenryrc.org", true }, + { "stian.net", true }, { "stichtingliab.nl", true }, { "stichtingscholierenvervoerzeeland.nl", true }, { "stichtingsticky.nl", true }, @@ -31846,6 +34741,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stickertuningfetzt.de", false }, { "stickies.io", true }, { "stickmanventures.com", true }, + { "stickstueb.de", true }, { "stickswag.eu", true }, { "stiffordacademy.org.uk", true }, { "stift-kremsmuenster.at", true }, @@ -31855,11 +34751,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -31869,14 +34764,31 @@ 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 }, { "stjohnin.com", true }, + { "stjohnsottsville.org", true }, + { "stjoseph-stcatherine.org", true }, + { "stjosephspringcity.com", true }, + { "stjscatholicchurch.org", true }, + { "stjustin.org", true }, { "stln.ml", true }, { "stlu.de", true }, + { "stlukenh.org", true }, { "stlukesbrandon.org", true }, { "stm-net.de", true }, + { "stm32f4.jp", true }, + { "stma.is", true }, + { "stmariagoretti.net", true }, + { "stmarthachurch.com", true }, { "stmaryextra.uk", true }, + { "stmattsparish.com", true }, + { "stmichaellvt.com", true }, + { "stmichaelunion.org", true }, + { "stmkza.net", true }, { "stmlearning.com", true }, { "stmsolutions.pl", true }, { "stneotsbouncycastlehire.co.uk", true }, @@ -31888,27 +34800,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stoebermehl.at", true }, { "stoffelnet.de", true }, { "stogiesandmash.com", true }, - { "stoinov.com", true }, { "stokvistrading.nl", true }, + { "stolbart.com", true }, { "stolin.info", true }, { "stolina.de", false }, { "stolkpotplanten.nl", true }, { "stolkschepen.nl", true }, { "stolpi.is", true }, { "stomt.com", true }, + { "stoneagehealth.com.au", true }, { "stonedworms.de", true }, { "stonefusion.org.uk", true }, { "stonehammerhead.org", true }, - { "stonemain.eu", true }, { "stonewuu.com", true }, { "stony.com", true }, { "stonystratford.org", true }, + { "stopbreakupnow.org", true }, { "stopbullying.gov", true }, { "stopfraud.gov", false }, { "stopthethyroidmadness.com", true }, { "storageideas.uk", true }, { "stordbatlag.no", true }, { "storedsafe.com", true }, + { "storeit.co.uk", true }, { "storillo.com", true }, { "storm-family.com", true }, { "stormi.io", true }, @@ -31923,6 +34837,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "storytime.hu", true }, { "stouter.nl", true }, { "stoxford.com", true }, + { "stpatrickbayshore.org", true }, { "straatderzotten.nl", true }, { "strafensau.de", true }, { "strahlende-augen.info", true }, @@ -31936,6 +34851,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "strategiccapital.com", true }, { "strategiclivingblog.com", true }, { "strategie-zone.de", true }, + { "strathewerd.de", true }, { "stratmann-b.de", true }, { "stratuscloud.co.za", true }, { "stratuscloudconsulting.cn", true }, @@ -31949,21 +34865,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "straubis.org", true }, { "strauser.com", true }, { "stravers.shoes", true }, + { "strawberry-laser.gr", true }, { "streamchan.org", true }, - { "streamlineautogroup.com", true }, + { "streamelements.com", true }, + { "streamkit.gg", true }, { "streampleasure.xyz", true }, - { "streams.dyndns.org", true }, + { "street-medics.fr", true }, { "street-smart-home.de", true }, { "street-tek.com", true }, { "streetdancecenter.com", true }, + { "streetmarket.ru", true }, { "streets.mn", true }, { "streetshirts.co.uk", true }, { "streetspotr.com", true }, { "streetview.wien", true }, { "strefapi.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 }, @@ -31973,6 +34893,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stringtoolbox.com", true }, { "stringvox.com", true }, { "stripe.com", true }, + { "striped.horse", true }, { "strivephysmed.com", false }, { "strm.hu", true }, { "strming.com", true }, @@ -31982,23 +34903,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "structurally.net", true }, { "structure.systems", true }, { "strugee.net", true }, { "strutta.me", true }, - { "struxureon.com", true }, { "strydom.me.uk", true }, { "stsolarenerji.com", true }, { "stt.wiki", true }, { "stuartbell.co.uk", true }, + { "stuarteggerton.com", true }, { "stuartmorris.id.au", true }, { "stuartmorris.me", true }, { "stuartmorris.name", true }, @@ -32024,15 +34949,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studio-architetto.com", true }, { "studio-fotografico.ru", true }, { "studio-webdigi.com", true }, + { "studio44.fit", true }, + { "studioavvocato24.it", true }, + { "studiobergaminloja.com.br", true }, { "studiodentisticosanmarco.it", true }, { "studiodewit.nl", true }, { "studiogavioli.com", true }, { "studiograou.com", true }, { "studiohelder.fr", false }, + { "studiohomebase.amsterdam", true }, { "studiokicca.com", true }, { "studiolegalepaternostro.it", true }, { "studiomarcella.com", true }, { "studionowystyl.pl", true }, + { "studiopirrate.com", true }, { "studiopop.com.br", true }, { "studioproapp.com", true }, { "studioriehl.com", true }, @@ -32043,15 +34973,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studiovaud.com", true }, { "studipro-formation.fr", true }, { "studipro-marketing.fr", true }, + { "studisys.net", true }, { "studium.cz", true }, { "studlan.no", true }, { "studyin.jp", 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 }, + { "stuffiwouldbuy.com", true }, { "stuka-art.de", true }, { "stulda.cz", false }, { "stumeta.de", true }, @@ -32083,13 +35015,11 @@ 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 }, { "sublimebits.com", true }, { "sublocale.com", true }, { "submedia.tv", true }, @@ -32105,7 +35035,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "subversive-tech.com", true }, { "succ.in", true }, { "succesprojekter.dk", true }, - { "succubus.xxx", true }, + { "successdeliv.com", true }, { "suchmaschinen-werkstatt.de", true }, { "suckmyan.us", false }, { "sucretown.net", true }, @@ -32113,8 +35043,10 @@ 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 }, { "sudoschool.com", true }, { "suelyonjones.com", true }, { "suessdeko.de", true }, @@ -32125,19 +35057,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "suited21.com", 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 }, @@ -32147,13 +35087,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sumoatm.com", false }, { "sumthing.com", true }, { "sun-leo.co.jp", true }, - { "sun-wellness-online.com.vn", true }, { "sunboxstore.jp", true }, { "sunbritetv.com", true }, { "sunchasercats.com", true }, { "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 }, @@ -32166,19 +35107,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, @@ -32187,18 +35126,18 @@ 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 }, - { "supermarx.nl", true }, + { "supermae.pt", true }, { "supermercadosdia.com.ar", true }, { "supermercato24.it", true }, { "supermil.ch", true }, { "supern0va.net", true }, { "supernaut.info", true }, - { "supernt.lt", true }, - { "supersahnetorten.de", true }, { "supersec.es", true }, { "supersole.net", true }, { "supersonnig-festival.de", true }, @@ -32211,58 +35150,74 @@ static const nsSTSPreload kSTSPreloadList[] = { { "supertechcrew.com", true }, { "supertutorial.com.br", true }, { "supervisionassist.com", true }, + { "superway.es", 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 }, { "suprem.biz", true }, { "suprem.ch", true }, { "supriville.com.br", true }, { "sur-v.com", true }, { "surao.cz", true }, { "surasak.io", true }, - { "surdam.casa", false }, + { "surasak.net", true }, + { "surasak.org", true }, + { "surdam.casa", true }, { "sure-it.de", true }, + { "surefit-oms.com", true }, { "suretone.co.za", true }, + { "surfnetkids.com", true }, { "surfocal.com", true }, { "surgenet.nl", true }, { "surgeongeneral.gov", true }, { "surgicalassociateswny.com", true }, { "suroil.com", true }, { "surpreem.com", true }, + { "surreyheathyc.org.uk", true }, + { "suruifu.com", true }, + { "suruifu.tk", true }, { "survature.com", true }, + { "surveillance104.com", true }, { "surveyhealthcare.com", true }, { "surveyinstrumentsales.com", true }, { "surveymill.co.uk", true }, + { "survivalistplanet.com", true }, { "survivalmonkey.com", true }, - { "survivebox.fr", true }, { "susanbpilates.co", true }, { "susanbpilates.com", true }, { "susann-kerk.de", true }, { "susanna-komischke.de", true }, + { "susanvelez.com", true }, { "susc.org.uk", true }, { "sush.us", true }, - { "sushi.roma.it", true }, { "sushibesteld.nl", true }, - { "sushifrick.de", true }, { "sushikatze.de", true }, + { "susoccm.org", true }, { "susosudon.com", true }, { "suspension-shop.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 }, @@ -32275,24 +35230,24 @@ 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 }, { "sw-servers.net", true }, { "sw33tp34.com", true }, - { "swagsocial.net", true }, { "swankism.com", true }, { "swansdoor.org", true }, { "swap.gg", true }, @@ -32302,8 +35257,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swat4stats.com", true }, { "swattransport.ae", true }, { "sway-cdn.com", true }, - { "sway.com", true }, { "swd.agency", true }, + { "sweak.net", true }, { "swedishhost.com", true }, { "swedishhost.se", true }, { "sweep-me.net", true }, @@ -32312,14 +35267,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "swimmingpoolaccidentattorney.net", true }, { "swimready.net", true }, { "swimwear365.co.uk", true }, { "swineson.me", true }, @@ -32329,6 +35289,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swiss-apartments.com", true }, { "swiss-connection.net", true }, { "swiss-cyber-experts.ch", true }, + { "swiss-vanilla.ch", true }, + { "swiss-vanilla.com", true }, { "swisscannabis.club", true }, { "swissdojo.ch", true }, { "swisselement365.com", true }, @@ -32336,29 +35298,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swissfreshaircan.com", true }, { "swissid.ch", true }, { "swisslinux.org", true }, - { "swisstechassociation.ch", true }, { "swisstechtalks.ch", true }, + { "swissvanilla.ch", true }, + { "swissvanilla.com", true }, { "switch-trader.com", true }, { "switch.moe", true }, { "switcheo.exchange", true }, { "switcheo.rocks", true }, { "switzerland-family-office.com", true }, + { "swivells.com", true }, + { "swn-nec.de", true }, { "swordfeng.xyz", true }, + { "swqa.hu", true }, + { "swuosa.org", false }, { "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 }, + { "syamutodon.xyz", true }, + { "syamuwatching.xyz", true }, { "sycamorememphis.org", true }, - { "sychov.pro", true }, { "sydney-sehen.com", true }, { "sydney.dating", true }, { "sydneyhelicopters.com.au", true }, { "sydneylawnandturf.com.au", true }, { "syenar.net", true }, { "syezd.com.au", true }, + { "syha.org.uk", true }, { "syhost.at", true }, { "syhost.ch", true }, { "syhost.de", true }, @@ -32367,7 +35337,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "syleam.in", true }, { "sylfie.net", true }, { "syllogi.xyz", true }, - { "sylvaincombe.net", true }, { "sylvaindurand.fr", true }, { "sylvaindurand.org", true }, { "sylvaloir.fr", true }, @@ -32382,21 +35351,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "symbiose.com", true }, { "symbiosecom.ch", 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 }, { "synaptickz.me", true }, { "synatra.co", true }, { "sync-it.no", true }, { "synccentre.com", true }, { "syncflare.com", true }, - { "synchrocube.com", true }, { "synchrolarity.com", true }, { "synchronyse.com", true }, - { "synchtu.be", true }, { "syncrise.co.jp", true }, { "syneart.com", true }, { "synecek11.cz", true }, @@ -32408,9 +35377,11 @@ 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 }, @@ -32422,8 +35393,7 @@ 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 }, @@ -32431,11 +35401,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "systemweb.no", true }, @@ -32443,20 +35415,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "systoolbox.net", true }, { "sysystems.cz", true }, { "syt3.net", true }, - { "sytk.me", true }, + { "syukatsu-net.jp", true }, { "syy.im", true }, { "syzygy-tables.info", true }, { "szafkirtv.pl", true }, { "szagun.net", true }, + { "szaloneigly.com", true }, { "szamitogepdepo.com", true }, { "szaydon.me", false }, + { "szclsya.me", true }, { "szczot3k.pl", true }, { "szechenyi2020.hu", true }, { "szentistvanpt.sk", true }, { "szerelem.love", true }, + { "szetowah.org.hk", true }, { "szunia.com", true }, { "szybkiebieganie.pl", true }, { "szyndler.ch", true }, + { "szzsivf.com", true }, { "t-hawk.com", true }, { "t-net.org.hu", true }, { "t-shirts4less.nl", true }, @@ -32479,7 +35455,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taartbesteld.nl", true }, { "tabarnak.ga", true }, { "tabernadovinho.com.br", true }, - { "tabhui.com", true }, + { "tabi-news.com", true }, + { "tabi-runrun.com", true }, { "tabithawebb.co.uk", true }, { "tabledusud.be", true }, { "tabledusud.nl", true }, @@ -32492,12 +35469,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tachi.uk", true }, { "tacklinglife.com", true }, { "tacklog.com", true }, - { "tacomafia.net", false }, + { "tacomafia.net", true }, { "tacostea.net", true }, { "tacticalsquare.com", true }, - { "tadata.me", true }, { "taddiestales.com", true }, { "tadeo.ca", true }, + { "tadiranbatteries.de", true }, { "tadluedtke.com", true }, { "tadtadya.com", true }, { "tadu.de", true }, @@ -32508,21 +35485,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taglioepiega.eu", true }, { "taglioepiega.it", true }, { "tagpay.com", true }, + { "tahavu.com", true }, { "tahosa.co", true }, { "tahosalodge.org", true }, { "tai-in.com", true }, { "tai-in.net", true }, - { "tailandfur.com", true }, + { "tailpuff.net", false }, { "tails.boum.org", true }, { "taimane.com", true }, + { "taiphanmem.net", true }, { "taishon.nagoya", true }, { "taitmacleod.com", true }, { "taiwan.dating", true }, + { "taiwania.capital", true }, + { "taiwania.vc", true }, + { "taiwaniacapital.com", true }, + { "taiwaniacapital.com.tw", true }, + { "taiwaniacapital.tw", true }, { "taiwantour.info", true }, { "taiyouko-hatuden.net", true }, { "taizegroep.nl", true }, { "tajper.pl", true }, { "take1give1.com", false }, + { "takedownthissite.com", true }, { "takeitoffline.co.uk", true }, { "takemoto-ped.com", true }, { "taken.pl", true }, @@ -32538,6 +35523,7 @@ 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 }, @@ -32548,7 +35534,6 @@ 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 }, @@ -32556,20 +35541,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "tamindir.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 }, { "tandempartnerships.com", true }, + { "tandilmap.com.ar", true }, + { "tandk.com.vn", true }, { "tandzorg.link", true }, { "tangel.me", true }, { "tangemann.org", true }, @@ -32585,22 +35574,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 }, { "tanto259.name", false }, { "tanyanama.com", true }, + { "tanz-kreativ.de", true }, { "tanz.info", true }, { "tanzhijun.com", true }, { "tanzo.io", true }, { "taoburee.com", 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 }, { "tarantul.org.ua", true }, { "tarasecurity.co.uk", true }, { "tarasecurity.com", true }, @@ -32612,6 +35607,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tariff.cc", true }, { "tarik.io", true }, { "tarmexico.com", true }, + { "tarots-et-oracles.com", true }, { "tarsan.cz", true }, { "tartaneagle.org.uk", true }, { "tartanhamedshop.com.br", true }, @@ -32627,6 +35623,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 }, @@ -32638,48 +35635,53 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tatsidou.gr", true }, { "tattoo.dating", true }, { "tattvaayoga.com", true }, - { "taunhanh.us", true }, + { "tatuantes.com", true }, + { "taunhanh.us", false }, { "tavolaquadrada.com.br", true }, { "tavsys.net", true }, { "tax-guard.com", true }, { "taxaroo.com", true }, + { "taxaudit.com", true }, { "taxi-24std.de", false }, { "taxi-chamonix.fr", true }, { "taxi-collectif.ch", true }, + { "taxi-jihlava.cz", true }, { "taxi-puck.pl", true }, { "taxi-waregem.be", true }, { "taxicollectif.ch", true }, - { "taxiindenbosch.nl", true }, + { "taxid-k.be", true }, { "taxis-collectifs.ch", true }, { "taxisafmatosinhos.pt", true }, { "taxiscollectifs.ch", true }, { "taxlab.co.nz", 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 }, { "tc-st-leonard.ch", true }, { "tc.nz", true }, { "tcacademy.co.uk", true }, { "tcb-a.org", true }, { "tcb-b.org", true }, + { "tccmb.com", true }, { "tcdw.net", true }, { "tcf.org", true }, { "tcgforum.pl", true }, { "tcgrepublic.com", true }, + { "tchaka.top", true }, { "tchannels.tv", true }, { "tchebb.me", true }, { "tchebotarev.com", true }, @@ -32690,6 +35692,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tcptun.com", true }, { "tcpweb.net", true }, { "tcspartner.net", true }, + { "tcvvip.com", true }, + { "tcwis.com", true }, { "tdchrom.com", true }, { "tdfbfoundation.org", true }, { "tdrcartuchos.com.br", true }, @@ -32712,6 +35716,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teahut.net", true }, { "team-azerty.com", true }, { "team-bbd.com", true }, + { "team-pancake.eu", true }, { "team.house", true }, { "team3482.com", true }, { "teambeam.at", true }, @@ -32722,8 +35727,8 @@ 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 }, @@ -32731,12 +35736,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teampaddymurphy.ie", true }, { "teamtouring.net", true }, { "teamtrack.uk", true }, + { "teamtravel.co", true }, { "teamup.com", true }, + { "teamup.rocks", true }, { "teamupturn.com", true }, { "teamupturn.org", true }, { "teamusec.de", true }, { "tearoomlints.be", true }, - { "teasenetwork.com", true }, { "teaser-trailer.com", true }, { "teatrarium.com", true }, { "teb-akademia.pl", true }, @@ -32746,30 +35752,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tecart-system.de", true }, { "tecartcrm.de", true }, { "tech-blogger.net", true }, - { "tech-clips.com", true }, { "tech-director.ru", true }, { "tech-essential.com", 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 }, + { "techbrawl.org", 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 }, { "techhappy.ca", true }, { "techinet.pl", true }, @@ -32778,37 +35781,38 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techmajesty.com", true }, { "techmasters.io", true }, { "techmunchies.net", false }, + { "technic3000.com", true }, { "technicabv.nl", true }, { "technicalbrothers.cf", true }, { "technicallyeasy.net", 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 }, { "technoinfogroup.it", true }, { "technologie-innovation.fr", true }, { "technologyand.me", true }, + { "technologyhound.org", true }, { "technologysi.com", true }, { "technoparcepsilon.fr", true }, { "technoscoots.com", true }, { "technosorcery.net", true }, - { "technoswag.ca", true }, { "technotonic.co.uk", true }, { "techold.ru", true }, { "techorbiter.com", true }, { "techosmarcelo.com.ar", 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 }, + { "techtrader.ai", true }, + { "techtrader.io", true }, { "techvalue.gr", true }, { "techview.link", true }, { "techviewforum.com", true }, @@ -32816,6 +35820,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techwithcromulent.com", true }, { "techwords.io", true }, { "teckids.org", true }, + { "tecma.com", true }, { "tecmarkdig.com", true }, { "tecne.ws", true }, { "tecnicoelettrodomestici.roma.it", true }, @@ -32839,17 +35844,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, @@ -32859,7 +35861,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teknoforums.com", true }, { "teknolit.com", true }, { "tekstschrijvers.net", true }, - { "teksuperior.com", true }, { "tektuts.com", true }, { "tekuteku.jp", true }, { "telamon.eu", true }, @@ -32889,17 +35890,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "telephonedirectories.us", true }, { "telepons.com", true }, { "telework.gov", true }, + { "tellcorpassessoria.com.br", true }, { "telling.xyz", 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 }, { "tematicas.org", true }, + { "temdu.com", true }, { "temizmama.com", true }, { "temnacepel.cz", true }, { "temp.pm", true }, @@ -32908,8 +35910,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "template-parks.com", true }, { "templateinvaders.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 }, @@ -32918,7 +35920,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tenenz.com", true }, { "tenisservis.eu", true }, { "tenkofx.com", true }, - { "tenma.pro", true }, { "tennisadmin.com", true }, { "tennismindgame.com", true }, { "tenno.tools", true }, @@ -32926,14 +35927,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tenpolab.com", true }, { "tenseapp.pl", true }, { "tenshoku-hanashi.com", true }, - { "tent.io", true }, { "tenta.com", true }, { "tentabrowser.com", true }, { "tentations-voyages.com", false }, { "tenthousandcoffees.com", true }, - { "tenthpin.com", true }, + { "tenthpin.com", false }, { "tenyx.de", true }, { "tenzer.dk", true }, + { "tepid.org", true }, { "tepitus.de", true }, { "teplofom.ru", true }, { "teplomash24.ru", true }, @@ -32943,14 +35944,17 @@ 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 }, + { "terminalvelocity.co.nz", true }, { "termino.eu", true }, + { "terminsrakning.se", true }, { "termitemounds.org", true }, { "termitinitus.org", true }, { "termografiranje.si", true }, + { "termux.com", true }, { "terra.fitness", true }, { "terrab.de", false }, { "terracloud.de", false }, @@ -32963,9 +35967,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "terralimno.eu", true }, { "terraluna.space", true }, { "terranova-nutrition.dk", true }, + { "terrapay.com", true }, { "terrastaffinggroup.com", false }, { "terraweb.net", true }, + { "terrax.net", true }, { "terresmagiques.com", true }, + { "terrorbilly.com", true }, { "terrty.net", true }, { "terryjohnsononline.com", true }, { "tes.com", true }, @@ -32975,27 +35982,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tescolide.cz", true }, { "tescoludia.sk", true }, { "teskalabs.com", true }, + { "teslamagician.com", true }, { "tesoro.pr", true }, { "tessai.ga", true }, + { "test-aankoop.be", true }, + { "test-achats.be", true }, { "test-textbooks.com", true }, { "test.de", true }, + { "test.support", true }, { "testadren.com", true }, + { "testeveonline.com", true }, { "testgeomed.ro", true }, - { "testi.info", true }, { "testomato.com", true }, - { "testosterone-complex.com", true }, { "testosteronedetective.com", true }, - { "testpornsite.com", true }, { "testsuite.org", true }, { "testuje.net", true }, { "tetedelacourse.ch", true }, { "teto.nu", true }, + { "tetraetc.com", true }, { "tetraktus.org", true }, + { "tetrarch.co", true }, { "tetsugakunomichi.jp", true }, { "tetsumaki.net", true }, { "teufel.dk", true }, { "teufelswerk.net", true }, - { "teulon.eu", true }, { "teusink.eu", true }, { "teva-li.com", true }, { "tewarilab.co.uk", true }, @@ -33022,10 +36032,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "texy.info", true }, { "teysens.com", true }, { "teyssedre.ca", true }, - { "tezcam.tk", true }, { "tf-network.de", true }, { "tf2b.com", true }, { "tf2calculator.com", true }, + { "tf7879.com", true }, { "tfg-bouncycastles.com", true }, { "tfle.xyz", true }, { "tflite.com", true }, @@ -33040,6 +36050,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 }, @@ -33052,6 +36063,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thaiforest.ch", true }, { "thaihomecooking.com", true }, { "thailandpharmacy.net", true }, + { "thailandpropertylisting.com", true }, { "thairehabassociation.com", true }, { "thajskyraj.com", true }, { "thala.fr", true }, @@ -33059,6 +36071,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thalgott.net", true }, { "thalhammer.it", true }, { "thalia.nu", true }, + { "thaliagetaway.com.au", true }, { "thallinger.me", true }, { "thamesfamilydentistry.com", true }, { "thanabh.at", true }, @@ -33066,42 +36079,55 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thanhthinhbui.com", true }, { "thatdarkplace.com", true }, { "thatquiz.org", true }, + { "thatsme.io", true }, { "thca.ca", true }, { "thcpbees.co.uk", true }, + { "the-bermanns.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 }, { "theactuary.ninja", true }, + { "theadelaideshow.com.au", true }, { "theadultswiki.com", true }, { "thealexandertechnique.co.uk", true }, { "theankhlife.com", true }, { "theanticellulitediet.com", true }, + { "theaps.net", true }, { "theastrocoach.com", true }, + { "theatre-schools.com", true }, { "thebakers.com.br", true }, { "thebakery2go.de", true }, { "thebannerstore.com", true }, + { "thebarneystyle.com", true }, { "thebasebk.org", true }, { "thebcm.co.uk", true }, + { "thebeachessportsphysio.com", true }, + { "thebeginningviolinist.com", true }, { "thebest.ch", true }, { "thebestfun.co.uk", 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 }, { "thebodyprinciple.com", true }, { "thebonerking.com", true }, { "thebouncedepartment.co.uk", true }, @@ -33110,16 +36136,14 @@ 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 }, { "thecloudshelter.com", true }, { "thecoffeecamp.com", true }, @@ -33128,23 +36152,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thecompany.pl", true }, { "theconcordbridge.azurewebsites.net", true }, { "thecondobuyers.com", true }, - { "thecozycastle.com", true }, + { "thecookiejar.me", true }, { "thecrazytravel.com", true }, { "thecrew-exchange.com", true }, { "thecrochetcottage.net", true }, { "thecuppacakery.co.uk", true }, { "thecuriouscat.net", true }, - { "thecuriousdev.com", true }, { "thecurvyfashionista.com", true }, { "thecustomdroid.com", true }, - { "thecustomizewindows.com", true }, { "thedark1337.com", true }, - { "thedebug.life", true }, { "thederminstitute.com", true }, { "thediaryofadam.com", true }, { "thedisc.nl", true }, { "thediscovine.com", true }, { "thedocumentrefinery.com", true }, + { "thedom.site", true }, { "thedreamtravelgroup.co.uk", true }, { "thedronechart.com", true }, { "thedutchmarketers.com", true }, @@ -33152,32 +36174,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theeducationchannel.info", true }, { "theeducationdirectory.org", true }, { "theeighthbit.com", true }, - { "theel0ja.info", true }, { "theel0ja.ovh", true }, { "theemasphere.com", true }, + { "thefairieswantmedead.com", true }, { "thefanimatrix.net", true }, + { "thefashionpolos.com", true }, { "thefasterweb.com", true }, { "thefbstalker.com", true }, { "thefengshuioffice.com", true }, { "theferrarista.com", true }, + { "thefilmphotography.com", true }, { "theflowerbasketonline.com", true }, + { "theflowershopdeddington.com", true }, { "theflyingbear.net", true }, { "thefnafarchive.org", true }, - { "thefox.com.fr", true }, + { "theforkedspoon.com", true }, + { "thefourthmoira.com", true }, { "thefrk.pw", true }, + { "thefuckingtide.com", true }, { "thefunfirm.co.uk", true }, { "thefurnitureco.uk", true }, { "thegarrowcompany.com", true }, - { "thegcccoin.com", true }, { "thegeekdiary.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 }, @@ -33190,7 +36217,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thehiddenbay.ws", true }, { "thehivedesign.org", true }, { "thehomeicreate.com", true }, + { "thehonorguard.org", true }, { "thehookup.be", true }, + { "thehoryzon.com", true }, { "thehotfix.net", true }, { "thehotness.tech", true }, { "thehouseofgod.org.nz", true }, @@ -33203,16 +36232,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theinitium.com", true }, { "theintercept.com", true }, { "theinternationalgeekconspiracy.eu", true }, - { "thej0lt.com", true }, + { "theitsage.com", false }, { "thejacksoninstitute.com.au", true }, { "thekev.in", true }, { "thekeytobusiness.co.uk", true }, { "thekindplate.ca", true }, { "thekingofhate.com", true }, + { "thekovnerfoundation.org", true }, { "thelaimlife.com", true }, { "thelanscape.com", true }, { "thelastsurprise.com", true }, + { "thelatedcult.com", true }, + { "thelearningenterprise.co.uk", true }, { "thelegionshirley.co.uk", true }, + { "thelifeofmala.com", true }, { "thelinuxtree.net", true }, { "thelittlecraft.com", true }, { "thelocals.ru", true }, @@ -33221,14 +36254,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themacoaching.nl", true }, { "themallards.info", true }, { "themarshallproject.org", true }, - { "themeaudit.com", true }, { "themecraft.studio", true }, { "themefoxx.com", true }, { "themetacity.com", true }, - { "themilanlife.com", true }, + { "themigraineinstitute.com", true }, { "themillerslive.com", true }, { "themimitoof.fr", true }, { "themist.cz", true }, + { "themobilestuffs.com", true }, { "themoep.at", true }, { "themoneyconverter.com", true }, { "themonkeytrail.co.uk", true }, @@ -33238,14 +36271,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themusicinnoise.net", true }, { "thenanfang.com", true }, { "thenarcissisticlife.com", true }, + { "theneatgadgets.com", true }, { "thenexwork.com", true }, { "thenib.com", true }, - { "thenichecast.com", true }, { "thenocman.com", true }, { "thenovaclinic.com", true }, { "thenowheremen.com", true }, { "theo.me", true }, { "theobromos.fr", true }, + { "theoc.co", true }, { "theocharis.org", true }, { "theodorahome.co", true }, { "theodorahome.com.br", true }, @@ -33258,6 +36292,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 }, @@ -33265,6 +36300,8 @@ 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 }, @@ -33275,36 +36312,48 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theplaydaysbus.co.uk", true }, { "theplayspot.co.uk", true }, { "theploughharborne.co.uk", true }, + { "thepoplarswines.com.au", true }, { "thepostoffice.ro", true }, { "thepriorybandbsyresham.co.uk", true }, + { "theproductpoet.com", true }, { "thepromisemusic.com", true }, + { "thepurem.com", true }, + { "thepythianseed.com", true }, { "theragran.co.id", true }, { "theralino.de", true }, { "theramo.re", true }, { "therandombits.com", true }, + { "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 }, + { "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 }, @@ -33317,6 +36366,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thesharepointfarm.com", true }, { "theshield.in", true }, { "theshine.pl", true }, + { "theshopally.com", false }, { "thesignacademy.co.uk", true }, { "thesignalco.com.au", true }, { "thesimplifiers.com", true }, @@ -33327,49 +36377,57 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thesmokingcuban.com", true }, { "thesocialmediacentral.com", true }, { "thesplashlab.com", true }, + { "thesslstore.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 }, { "thestudyla.com", true }, { "thestyle.city", true }, + { "thestyleforme.com", true }, { "thesuppercircle.com", true }, { "theswissbay.ch", true }, { "thetechnical.me", true }, { "thetenscrolls.com", true }, + { "thethreepercent.marketing", true }, { "thetomharling.com", true }, - { "thetradinghall.com", true }, + { "thetotalemaildelivery.com", true }, { "thetree.ro", true }, { "thetrendspotter.net", true }, { "thetuxkeeper.de", false }, + { "thetvtraveler.com", true }, { "theunitedstates.io", true }, { "thevacweb.com", true }, { "thevalentineconstitution.com", true }, + { "thevenueofhollywood.com", true }, + { "theverybusyoffice.co.uk", true }, { "thevgg.com", false }, + { "thevisasofoz.com", true }, + { "thevoya.ga", true }, { "thewagesroom.co.uk", true }, { "thewarrencenter.org", true }, { "thewaxhouse.academy", true }, { "thewaxhouse.de", true }, - { "thewaxhouse.shop", true }, + { "thewayofthedojo.com", true }, { "thewebdexter.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 }, + { "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 }, @@ -33378,27 +36436,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "thijsalders.nl", false }, { "thijsbekke.nl", true }, { "thijsslop.nl", true }, { "thijsvanderveen.net", true }, { "thinegen.de", true }, - { "thingies.site", true }, { "thingsimplied.com", true }, + { "thingsof.org", true }, { "think-asia.org", true }, { "think-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 }, @@ -33410,7 +36467,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -33423,18 +36482,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thomalaudan.de", true }, { "thomas-bertran.com", true }, { "thomas-fahle.de", true }, + { "thomas-prior.com", true }, { "thomas-sammut.com", true }, { "thomas-suchon.fr", 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 }, { "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 }, @@ -33442,16 +36505,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thomaswoo.com", true }, { "thompsonfamily.cloud", true }, { "thomsonscleaning.co.uk", true }, - { "thomspooren.nl", true }, { "thomwiggers.nl", true }, { "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 }, @@ -33463,7 +36525,9 @@ 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 }, @@ -33471,8 +36535,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "threelions.ch", true }, { "threema.ch", true }, { "threexxx.ch", true }, + { "threit.de", true }, { "threv.net", true }, { "thriftdiving.com", true }, + { "thrillernyc.com", true }, { "thrivesummit.com", true }, { "thriveta.com", true }, { "thriveweb.com.au", true }, @@ -33484,13 +36550,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thuisverpleging-meerdael.be", true }, { "thullbery.com", true }, { "thummer.net", true }, + { "thunderfield-boat.co.uk", true }, { "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", true }, { "thw-bernburg.de", true }, { "thxandbye.de", true }, @@ -33500,37 +36566,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "tidycustoms.net", true }, + { "tiekoetter.com", true }, { "tielectric.ch", true }, - { "tiendafetichista.com", true }, { "tiendavertigo.com", true }, { "tiens-ib.cz", true }, { "tier-1-entrepreneur.com", true }, { "tierarztpraxis-bogenhausen.de", true }, { "tierarztpraxis-weinert.de", true }, - { "tiernanx.com", true }, + { "tierraprohibida.net", true }, { "ties.com", true }, { "tiew.pl", true }, { "tifan.net", true }, @@ -33548,7 +36619,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tijo.ch", true }, { "tik.edu.ee", true }, { "tik.help", true }, - { "tiki-god.co.uk", true }, { "tildes.net", true }, { "tildesnyder.com", true }, { "tiledailyshop.com", true }, @@ -33563,15 +36633,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tillberg.us", true }, { "tilleysbouncycastles.co.uk", true }, { "tillseasyscore.com", true }, + { "tilman.ninja", true }, + { "tilosp.de", true }, + { "tilta.com", true }, { "tiltedwindmillcrafts.com", true }, { "timbarlotta.com", true }, { "timberkel.com", true }, + { "timbers.space", true }, { "timbishopartist.com", true }, { "timbrust.de", true }, - { "timdebruijn.nl", true }, + { "timco.cloud", true }, { "timdeneau.com", true }, { "timdoug.com", true }, - { "time.gov", true }, { "time.sh", true }, { "time2060.ru", true }, { "time22.com", true }, @@ -33580,11 +36653,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timebox.tk", true }, { "timeglass.de", true }, { "timeless-photostudio.com", true }, - { "timetab.org", true }, + { "timelessskincare.co.uk", true }, { "timetech.io", true }, { "timetotrade.com", true }, { "timewasters.nl", true }, { "timfiedler.net", true }, + { "timhieuthuoc.com", true }, { "timing.com.br", true }, { "timjk.de", true }, { "timmersgems.com", true }, @@ -33595,11 +36669,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timoso.de", true }, { "timothybjacobs.com", true }, { "timoxbrow.com", true }, + { "timsayedmd.com", true }, { "timtaubert.de", true }, { "timtelfer.com", true }, { "timtj.ca", true }, { "timvivian.ca", true }, { "timweb.ca", true }, + { "timysewyn.be", true }, + { "tina.media", true }, { "tinastahlschmidt.de", true }, { "tindallriley.co.uk", true }, { "tinf15b4.de", true }, @@ -33624,13 +36701,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tinytownsoftplay.co.uk", true }, { "tinyvpn.net", true }, { "tinyvpn.org", true }, - { "tioat.net", true }, { "tipaki.gr", true }, { "tipbox.is", true }, + { "tipe.io", true }, { "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 }, @@ -33639,15 +36718,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tirlins.com", true }, { "tiroler-kupferschmiede.com", true }, { "tirs4ne.ch", true }, + { "tis.ph", true }, { "tischlerei-klettke.de", true }, { "tissot-mayenfisch.com", true }, { "tit-cdn.de", true }, + { "tit-dev.de", true }, { "tit-dns.de", true }, { "tit-mail.de", true }, { "tit.systems", true }, { "titandirect.co.uk", true }, { "titanous.com", true }, - { "titanpointe.org", true }, { "titansized.com", true }, { "titanwaterproofing.com.au", true }, { "titelseite.ch", true }, @@ -33658,8 +36738,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tivido.nl", true }, { "tiwag.at", true }, { "tixeconsulting.com", true }, + { "tixify.com", true }, { "tjampoer.com", true }, - { "tjandpals.com", true }, { "tjenestetorvet.dk", true }, { "tjkcastles.uk", true }, { "tjl.rocks", true }, @@ -33671,17 +36751,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tkeycoin.com", true }, { "tkgpm.com", true }, { "tkirch.de", true }, - { "tkjg.fi", true }, { "tkn.me", true }, - { "tkn.tokyo", true }, { "tkusano.jp", true }, { "tkw01536.de", false }, + { "tl.gg", true }, { "tlca.org", true }, { "tlcnet.info", true }, { "tlehseasyads.com", true }, { "tleng.de", true }, { "tlo.xyz", true }, - { "tloxygen.com", true }, { "tls-proxy.de", true }, { "tls.builders", true }, { "tls.care", true }, @@ -33689,19 +36767,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tlsrobot.se", true }, { "tlthings.net", true }, { "tlumaczenie.com", true }, + { "tlyphed.net", true }, { "tlys.de", true }, + { "tmakiguchi.org", true }, + { "tmas.dk", true }, { "tmberg.cf", true }, { "tmberg.ga", true }, { "tmberg.gq", true }, { "tmberg.ml", true }, { "tmberg.tk", true }, { "tmc.com.mt", true }, - { "tmconnects.com", true }, { "tmcpromotions.co.uk", true }, { "tmcreationweb.com", true }, { "tmdb.biz", true }, { "tmf.ru", true }, - { "tmhr.moe", true }, { "tmi-products.eu", true }, { "tmi-produkter.se", true }, { "tmi.news", true }, @@ -33709,6 +36788,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tmonitoring.com", true }, { "tmpraider.net", true }, { "tmpsantos.com.br", true }, + { "tmsdiesel.com", true }, { "tmtopup.com", true }, { "tn0.club", true }, { "tndentalwellness.com", true }, @@ -33717,12 +36797,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tnl.cloud", true }, { "tntmobi.com", true }, { "tny.link", true }, - { "to2mbn.org", true }, + { "toabsentfamily.com", true }, { "toad.ga", true }, { "toast.al", false }, { "tob-rulez.de", true }, { "tobacco.gov", true }, - { "tobedo.net", true }, + { "tobaccolocker.com", true }, { "tober-cpag.de", true }, { "tobi-mayer.de", true }, { "tobias-bauer.de", true }, @@ -33740,10 +36820,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tobiashorvath.de", true }, { "tobiaskorf.de", true }, { "tobiaspahlings.de", true }, + { "tobiassachs.de", true }, { "tobiassattler.com", true }, + { "tobiaswiese.com", true }, { "tobiemilford.com", true }, { "tobis-rundfluege.de", true }, - { "tobis-webservice.de", true }, { "tobischo.de", true }, { "tobisworld.ch", true }, { "tobyalden.com", true }, @@ -33761,38 +36842,40 @@ static const nsSTSPreload kSTSPreloadList[] = { { "todapolitica.com", true }, { "todaymeow.com", true }, { "toddfry.com", true }, - { "todocracy.com", true }, + { "todoereaders.com", true }, { "todoescine.com", true }, { "todoist.com", true }, - { "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 }, { "toetsplatform.be", true }, { "tofe.io", true }, - { "tofilmhub.com", true }, { "tofu.cf", true }, { "togech.jp", true }, { "togetter.com", true }, { "toheb.de", false }, + { "tohochofu-sportspark.com", true }, { "tohokinemakan.tk", true }, - { "tohokufd.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 }, { "tokinoha.net", true }, + { "tokintu.com", true }, { "tokio.fi", true }, { "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 }, @@ -33802,6 +36885,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tokyomakino.com", true }, { "tokyovipper.com", true }, { "tolboe.com", true }, + { "toldositajuba.com", true }, { "toleressea.fr", true }, { "toles-sur-mesure.fr", true }, { "tolle-wolke.de", true }, @@ -33809,12 +36893,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tollfreeproxy.com", true }, { "tom-geiger.de", true }, { "tom-kunze.de", true }, - { "tom-maxwell.com", true }, + { "tom-kurka.cz", true }, { "tom.horse", true }, + { "tom.je", true }, + { "tom94.net", true }, { "tomabrafix.de", true }, + { "tomahawk.ca", true }, + { "tomandmara.com", true }, { "tomarns.nl", true }, { "tomasjacik.cz", true }, - { "tomaskavalek.cz", true }, + { "tomaskavalek.cz", false }, { "tomaspatera.cz", true }, { "tomaspialek.cz", true }, { "tomasvecera.cz", true }, @@ -33824,11 +36912,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomaw.net", true }, { "tomaz.eu", true }, { "tombaker.me", true }, - { "tomberek.info", true }, { "tombrossman.com", true }, - { "tomcort.com", true }, { "tomd.ai", true }, - { "tomdudfield.com", true }, { "tomend.es", true }, { "tomershemesh.me", true }, { "tomfisher.eu", true }, @@ -33836,7 +36921,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 }, @@ -33848,15 +36933,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tommic.eu", true }, { "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 }, + { "tomspdblog.com", true }, { "tomssl.com", true }, { "tomticket.com", true }, { "tomudding.com", true }, @@ -33866,12 +36950,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -33889,7 +36973,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tonermonster.de", true }, { "tonex.de", true }, { "tonex.nl", true }, - { "tonguetechnology.com", true }, { "tonkayagran.com", true }, { "tonkayagran.ru", true }, { "tonkinson.com", true }, @@ -33914,42 +36997,55 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tools.pro", true }, { "toolsense.io", true }, { "toom.io", true }, + { "toomy.ddns.net", true }, { "toonpool.com", true }, { "toonsburgh.com", true }, + { "toontown.team", true }, + { "toontownrewritten.com", true }, { "toool.nl", true }, { "toool.org", true }, + { "tooolroc.org", false }, + { "toot.center", true }, { "toothdoc.ca", true }, { "tooti.biz", true }, { "top-esb.com", true }, { "top-obaly.cz", true }, { "top-opakowania.pl", true }, - { "top-solar-info.de", true }, + { "top5hosting.co.uk", true }, { "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 }, { "topicdesk.com", true }, { "topicit.net", true }, { "topirishcasinos.com", true }, { "topjobs.ch", true }, + { "topkek.ml", true }, + { "toplist.cz", true }, { "toplist.eu", true }, { "topnotepad.com", true }, { "topodin.com", true }, { "toponlinecasinosites.co.uk", true }, + { "toppercan.es", true }, + { "toppointrea.com", true }, { "topprice.ua", true }, + { "topsailtechnologies.com", true }, { "topservercccam.tv", true }, { "topshelfcommercial.com", true }, - { "topshoptools.com", true }, { "topsteaks-daun.de", true }, { "toptec.net.br", true }, { "toptexture.com", true }, @@ -33959,16 +37055,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "topworktops.co.uk", true }, { "toracon.org", true }, { "torahanytime.com", true }, - { "torbe.es", true }, { "torchantifa.org", true }, { "toreni.us", true }, { "toretame.jp", true }, + { "torg-room.ru", true }, { "torkware.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 }, { "torproject.org", false }, @@ -33984,14 +37081,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "torsten-schmitz.net", true }, { "torstensenf.de", true }, { "torte.roma.it", true }, + { "tortocan.com", 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 }, + { "tosolini.info", true }, { "tosostav.cz", true }, { "tosteberg.se", true }, { "tostu.de", true }, @@ -34000,6 +37100,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "totalbike.com.br", true }, { "totalcarcheck.co.uk", true }, { "totalchecklist.com", true }, + { "totalemaildelivery.com", true }, { "totalforcegym.com", true }, { "totalhomecareinc.com", true }, { "totallylegitimatehosting.ru", true }, @@ -34016,11 +37117,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "touch.mail.ru", true }, { "touchoflife.in", true }, { "touchscreentills.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 }, @@ -34031,6 +37131,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tourispo.com", true }, { "tournamentmgr.com", true }, { "tournevis.ch", true }, + { "toursthatmatter.com", true }, { "tourtransferitaly.it", true }, { "tourtrektrip.com", true }, { "tous-travaux.ch", true }, @@ -34042,6 +37143,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toutart.ch", 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 }, @@ -34074,29 +37184,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "traas.org", true }, { "trabajarenremoto.com", true }, { "trabbel.org", true }, - { "tracalada.cl", true }, { "trace.guru", true }, { "trace.moe", true }, { "traceheatinguk.co.uk", true }, { "tracelight.io", true }, + { "tracemyplace.com", true }, { "traceroute.guru", true }, { "traceroute.link", true }, { "traceroute.network", true }, { "traces.ml", true }, - { "tracewind.top", true }, { "tracfinancialservices.com", true }, { "tracinsurance.com", true }, { "trackchair.com", true }, { "trackdomains.com", true }, { "trackersimulator.org", true }, { "trackeye.dk", true }, - { "trackmeet.io", 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 }, @@ -34104,12 +37215,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tradeinvent.co.uk", true }, { "trademan.ky", true }, { "traderjoe-cloud.de", true }, + { "tradernet.ru", true }, { "tradik.com", true }, { "tradinews.com", true }, { "tradinews.fr", true }, { "traditions.nl", true }, { "traditionskapperscollege.nl", true }, { "traditionsvivantesenimages.ch", true }, + { "tradiz.org", false }, { "trafarm.ro", true }, { "trafas.nl", true }, { "traffic.az", true }, @@ -34120,21 +37233,40 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "trainline.at", true }, + { "trainline.cn", true }, + { "trainline.com.br", true }, + { "trainline.com.pt", true }, + { "trainline.cz", true }, { "trainline.de", true }, { "trainline.es", true }, { "trainline.eu", true }, { "trainline.fr", true }, { "trainline.it", true }, + { "trainline.nl", true }, + { "trainline.no", true }, + { "trainline.pl", true }, + { "trainmagazine.be", true }, + { "trainmagazine.de", true }, + { "trainmagazine.nl", true }, + { "trainplaza.be", true }, + { "trainplaza.net", true }, + { "trainplaza.nl", true }, { "trainsgoodplanesbad.com", true }, { "traista.ru", true }, { "traiteurpapillonevents.be", true }, { "trajano.net", true }, + { "trajectfoto.nl", true }, + { "trajectvideo.nl", true }, + { "tran.pw", true }, { "trance-heal.com", true }, { "trance-heal.de", true }, { "trance-heal.me", true }, @@ -34146,11 +37278,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -34158,7 +37290,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "transferserver.at", true }, { "transfersummit.com", true }, { "transfigurewizard.com", true }, - { "transfile.fr", true }, { "transformaniatime.com", true }, { "transformations-magazin.com", true }, { "transgendergedenkdag.nl", true }, @@ -34177,22 +37308,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "translate.fedoraproject.org", true }, { "translate.googleapis.com", true }, { "translate.stg.fedoraproject.org", true }, - { "translateblender.ru", true }, { "translatoruk.co.uk", true }, { "transmarttouring.com", true }, { "transmisjeonline.pl", true }, + { "transmitit.pl", true }, + { "transmute.review", true }, { "transnexus.com", true }, + { "transoil.co.uk", true }, { "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 }, @@ -34200,18 +37334,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "travelinsurance.co.nz", true }, { "travellers.dating", true }, { "travellovers.fr", true }, { "travelmyth.ie", true }, { "travelogue.jp", true }, { "travelphoto.cc", true }, - { "travelpricecheck.com", true }, + { "travelrefund.com", true }, { "travelshack.com", true }, { "travi.org", true }, { "travis.nl", true }, @@ -34222,30 +37357,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trbanka.com", true }, { "trea98.org", true }, { "treaslockbox.gov", true }, - { "treatment.org", true }, { "tree0.xyz", true }, { "treebaglia.xyz", true }, { "treehouseresort.nl", true }, { "trees.chat", true }, { "treeschat.com", true }, { "treetopsecurity.com", true }, + { "treeworkbyjtec.com", true }, { "trefcon.cz", true }, { "trefpuntdemeent.nl", true }, { "treinaweb.com.br", false }, + { "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 }, + { "trendus.no", true }, { "trendykids.cz", true }, { "trenta.io", true }, - { "trentmaydew.com", true }, + { "tresor.it", true }, { "tresorit.com", true }, { "tresorsecurity.com", true }, { "tretail.net", true }, { "tretkowski.de", true }, + { "treussart.com", true }, { "trezy.me", true }, { "trezy.net", true }, { "trhastane.com", true }, @@ -34256,9 +37395,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trialandsuccess.nl", true }, { "trialcentralnet.com", true }, { "trianglecastles.co.uk", true }, - { "trianon.xyz", true }, { "tribac.de", true }, { "tribaldos.com", true }, + { "tribaljusticeandsafety.gov", true }, + { "tribe.rs", true }, + { "tribetrails.com", true }, { "tribly.de", true }, { "tribut.de", true }, { "tributh.cf", true }, @@ -34268,12 +37409,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tributh.net", true }, { "tributh.tk", true }, { "tricefy4.com", true }, + { "tricks.clothing", true }, { "trident-online.de", true }, { "tridentflood.com", true }, { "trietment.com", true }, { "trigardon-rg.de", true }, { "trik.es", false }, { "trillian.im", true }, + { "trilliumvacationrentals.ca", true }, { "triluxds.com", true }, { "trim-a-slab.com", true }, { "trimage.org", true }, @@ -34290,18 +37433,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "triticeaetoolbox.org", 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 }, @@ -34311,30 +37457,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "true-itk.de", true }, + { "trueassignmenthelp.co.uk", true }, { "trueblueessentials.com", 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 }, @@ -34345,21 +37495,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trulance.com", true }, { "truly-madly-happiness.de", true }, { "trumanlibrary.org", 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 }, { "trybabyschoice.com", true }, { "trybooking.com", true }, { "tryfabulousskincream.com", true }, @@ -34377,12 +37528,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "tsedryk.ca", true }, + { "tsgkc1.com", true }, { "tsicons.com", true }, { "tsironis-olivenoel.de", true }, { "tslcontractors.co.uk", true }, @@ -34398,28 +37551,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tsundere.moe", true }, { "tsung.co", true }, { "tsurai.work", 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 }, { "ttuwiki.org", true }, - { "ttwt.com", true }, { "tty1.net", true }, { "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 }, @@ -34432,55 +37588,59 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tucuxi.org", true }, { "tudiennhakhoa.com", true }, { "tudorproject.org", 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 }, { "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 }, { "tunnelwatch.com", true }, { "tuntitili.fi", true }, { "tuotteet.org", true }, + { "tuou.xyz", true }, { "tupa-germania.ru", true }, { "tupeuxpastest.ch", true }, { "tuppenceworth.ie", true }, { "turbobit.ch", true }, - { "turdnagel.com", true }, + { "turf-experts.com", true }, { "turigum.com", true }, { "turkish.dating", true }, + { "turl.pl", true }, { "turnaroundforum.de", true }, { "turncircles.com", true }, { "turnoffthelights.com", true }, { "turnonsocial.com", true }, { "turpinpesage.fr", true }, { "tursiae.org", true }, - { "turtle.ai", true }, + { "turtle.ai", false }, { "turtleduckstudios.com", true }, { "turtlepwr.com", true }, { "turunculevye.com", true }, { "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 }, { "tutorialinux.com", true }, { "tutorme.com", true }, { "tuts4you.com", true }, @@ -34494,6 +37654,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tuxie.com", true }, { "tuxlife.net", true }, { "tuxpeliculas.com", true }, + { "tuxplace.nl", true }, + { "tuxrtfm.com", true }, { "tuxtimo.me", true }, { "tuxz.net", true }, { "tuza.com.au", true }, @@ -34510,7 +37672,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tvleaks.se", true }, { "tvlplus.net", true }, { "tvqc.com", true }, - { "tvs-virtual.cz", true }, { "tvseries.info", true }, { "tvsheerenhoek.nl", true }, { "tvzr.com", true }, @@ -34523,22 +37684,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -34547,16 +37709,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "twodadsgames.com", true }, { "twofactorauth.org", true }, { "twohuo.com", true }, - { "twojfaktum.pl", true }, - { "twolanedesign.com", true }, { "twopif.net", true }, { "tworaz.net", true }, { "twun.io", true }, + { "twuni.org", true }, { "txcap.org", true }, { "txdivorce.org", true }, { "txi.su", true }, { "txlrs.org", true }, { "txm.pl", true }, + { "txtecho.com", true }, { "tyche.io", true }, { "tycho.org", true }, { "tycom.cz", true }, @@ -34565,21 +37727,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tyl.io", true }, { "tylerdavies.net", true }, { "tylerfreedman.com", true }, + { "tylerharcourt.ca", true }, { "tylerharcourt.net", 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 }, @@ -34592,7 +37750,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tysox.de", true }, { "tysye.ca", true }, { "tyuo-keibi.co.jp", true }, + { "tzermias.gr", true }, { "tzifas.com", true }, + { "u-martfoods.com", true }, { "u-metals.com", true }, { "u-tokyo.club", true }, { "u.nu", true }, @@ -34614,6 +37774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "u5b.de", false }, { "u5r.nl", true }, { "ua.search.yahoo.com", false }, + { "uaci.edu.mx", true }, { "uae-company-service.com", true }, { "uangteman.com", true }, { "uasmi.com", true }, @@ -34621,11 +37782,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uatgootax.ru", false }, { "ub3rk1tten.com", false }, { "ubanquity.com", true }, + { "ubcani.com", true }, { "uberbkk.com", true }, { "uberboxen.net", true }, { "uberestimator.com", true }, { "ubermail.me", true }, - { "ubertt.org", true }, { "uberwald.de", true }, { "uberwald.ws", true }, { "ubezpieczeniepsa.com", true }, @@ -34636,45 +37797,96 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ublaboo.org", true }, { "uborcare.com", true }, { "ubun.net", true }, - { "uc.ac.id", true }, + { "ubuntu18.com", true }, { "ucac.nz", false }, { "ucangiller.com", true }, { "ucch.be", true }, { "ucfirst.nl", true }, { "uchargeapp.com", true }, - { "uclanmasterplan.co.uk", true }, + { "uchiha.ml", 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 }, { "udvoukocek.eu", true }, + { "ueba1085.jp", true }, { "ueberdosis.io", true }, { "ueberwachungspaket.at", true }, { "uedaviolin.com", true }, { "uel-thompson-okanagan.ca", true }, { "ueni.com", true }, - { "uerdingen.info", true }, { "uevan.com", true }, { "uex.im", true }, { "ufanisi.mx", true }, { "ufindme.at", true }, - { "ufo.moe", true }, { "ufplanets.com", true }, - { "uggedal.com", true }, + { "ugb-verlag.de", true }, { "ugx-mods.com", true }, + { "uhappy1.com", true }, + { "uhappy11.com", true }, + { "uhappy2.com", true }, + { "uhappy21.com", true }, + { "uhappy22.com", true }, + { "uhappy23.com", true }, + { "uhappy24.com", true }, + { "uhappy25.com", true }, + { "uhappy26.com", true }, + { "uhappy27.com", true }, + { "uhappy28.com", true }, + { "uhappy29.com", true }, + { "uhappy3.com", true }, { "uhappy30.com", true }, + { "uhappy31.com", true }, + { "uhappy33.com", true }, + { "uhappy50.com", true }, + { "uhappy55.com", true }, + { "uhappy56.com", true }, + { "uhappy57.com", true }, + { "uhappy58.com", true }, + { "uhappy59.com", true }, + { "uhappy6.com", true }, + { "uhappy60.com", true }, + { "uhappy61.com", true }, + { "uhappy62.com", true }, + { "uhappy66.com", true }, + { "uhappy67.com", true }, + { "uhappy69.com", true }, + { "uhappy70.com", true }, + { "uhappy71.com", true }, + { "uhappy72.com", true }, + { "uhappy73.com", true }, + { "uhappy74.com", true }, + { "uhappy75.com", true }, + { "uhappy76.com", true }, + { "uhappy77.com", true }, + { "uhappy78.com", true }, + { "uhappy79.com", true }, + { "uhappy8.com", true }, + { "uhappy80.com", true }, + { "uhappy81.com", true }, + { "uhappy82.com", true }, + { "uhappy83.com", true }, + { "uhappy85.com", true }, + { "uhappy86.com", true }, + { "uhappy88.com", true }, + { "uhappy9.com", true }, + { "uhappy90.com", true }, + { "uhappy99.com", true }, { "uhasseltodin.be", true }, { "uhc.gg", true }, + { "uhlhosting.ch", true }, { "uhrenlux.de", true }, + { "uhssl.com", true }, { "uhurl.net", true }, { "ui8.net", true }, { "uiberlay.cz", true }, - { "uicchy.com", true }, { "uiop.link", true }, { "uiterwijk.org", true }, { "uitgeverij-deviant.nl", true }, @@ -34701,7 +37913,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ulabox.com", true }, { "uldsh.de", true }, { "ulen.me", true }, + { "ulgc.cz", true }, { "uli-eckhardt.de", true }, + { "ulitroyo.com", true }, { "ullah.se", true }, { "ulmer-schneesport.de", true }, { "ulovdomov.cz", true }, @@ -34713,21 +37927,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "umbrellaye.online", true }, { "umbricht.li", true }, - { "umbriel.fr", true }, { "umenlisam.com", true }, { "umisonoda.com", true }, { "umkmjogja.com", true }, - { "umsolugar.com.br", true }, + { "umsapi.com", true }, { "umwandeln-online.de", true }, { "un-framed.co.za", true }, { "un-zero-un.fr", true }, { "un.fo", true }, + { "unapolegetic.co", true }, { "unapp.me", true }, { "unatco.noip.me", true }, { "unausa.com.br", true }, @@ -34738,6 +37952,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 }, @@ -34746,9 +37961,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 }, @@ -34759,14 +37972,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uncensoreddns.dk", true }, { "uncensoreddns.org", true }, { "undeadbrains.de", true }, - { "undecidable.de", true }, { "undeductive.media", true }, + { "undef.in", true }, { "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 }, @@ -34778,11 +37991,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unfettered.net", false }, { "unfuddle.cn", true }, { "unga.dk", true }, + { "ungeek.eu", 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 }, @@ -34794,6 +38008,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unicefkepeslapok.hu", true }, { "unicefvoscilnice.si", true }, { "unicolabo.jp", true }, + { "unicorn-systems.net", true }, { "unicorn.melbourne", true }, { "unicorntooling.eu", true }, { "unicredit.ba", true }, @@ -34806,12 +38021,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uniekglas.nl", true }, { "unifei.edu.br", true }, { "uniform-agri.com", true }, - { "uniformebateriasheliar.com.br", true }, { "unikoingold.com", true }, { "unila.edu.br", true }, + { "unimbalr.com", true }, { "uninet.cf", true }, { "uniojeda.ml", true }, { "unionplat.ru", true }, + { "uniontestprep.com", true }, + { "unipig.de", true }, { "uniprimebr.com.br", false }, { "uniq.site", true }, { "unique-bouncy-castles.co.uk", true }, @@ -34821,6 +38038,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 }, @@ -34831,33 +38049,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unitel2000.de", true }, { "unityconsciousnessbooks.com", true }, { "univercite.ch", true }, - { "univeril.com", true }, + { "univeril.com", false }, + { "univerpack.net", true }, { "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 }, - { "unknownbreakup.com", true }, { "unkrn.com", true }, { "unlax.com", true }, - { "unleash.pw", true }, { "unli.xyz", true }, { "unlocken.nl", true }, { "unlocktalent.gov", true }, - { "unlogis.ch", true }, - { "unmarkdocs.co", true }, { "unmonito.red", true }, { "unn-edu.info", true }, { "uno-pizza.ru", true }, - { "uno.fi", true }, { "unobrindes.com.br", true }, { "unoccupyabq.org", true }, { "unp.me", true }, @@ -34867,8 +38081,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unquote.li", true }, { "unrealircd.org", true }, { "unrelated.net.au", true }, - { "unripple.com", true }, { "unruh.fr", true }, + { "uns.vn", true }, { "unsacsurledos.com", true }, { "unsee.cc", true }, { "unseen.is", true }, @@ -34876,28 +38090,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unser-gartenforum.de", true }, { "unsereins.me", true }, { "unsourirealecole.fr", true }, - { "unstablewormhole.ltd", true }, { "unstamps.org", true }, { "unsuspicious.click", true }, { "unterfrankenclan.de", true }, { "unterhaltungsbox.com", true }, { "unternehmer-radio.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 }, - { "upay.ru", true }, + { "upbad.com", true }, { "upbeatrobot.com", true }, { "upbeatrobot.eu", true }, { "upd.jp", true }, + { "updatehub.io", true }, { "upgamerengine.com", true }, { "upgamerengine.com.br", true }, { "upgamerengine.net", true }, + { "upgauged.com", true }, + { "upholsterydesign.com.au", true }, { "upitnik.rs", true }, { "uplaqui.com.br", true }, { "uplinklabs.net", true }, @@ -34906,34 +38119,41 @@ 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 }, { "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 }, { "uptrends.com", true }, { "uptrends.de", true }, { "uptrex.co.uk", true }, + { "upturn.org", true }, { "upundit.com", true }, + { "upwardtraining.co.uk", 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 }, @@ -34947,15 +38167,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urbanwaters.gov", false }, { "urbanwildlifealliance.org", false }, { "urbexdk.nl", true }, + { "urbizoroofing.com", true }, { "urcentral.com", true }, { "urcentral.net", true }, { "urcentral.nl", true }, { "ureka.org", true }, + { "urep.us", true }, { "urgences-valais.ch", true }, { "urinedrugtesthq.com", true }, { "uripura.de", true }, { "urist1011.ru", true }, - { "url.cab", true }, { "url.fi", true }, { "url.fm", true }, { "url.rw", true }, @@ -34967,6 +38188,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urltodomain.com", true }, { "urown.net", true }, { "ursa-minor-beta.org", true }, + { "ursae.co", true }, { "urspringer.de", true }, { "ursuslibris.hu", true }, { "urth.org", true }, @@ -34979,53 +38201,59 @@ 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 }, { "usbcraft.com", true }, { "usbevents.co.uk", true }, { "usbr.gov", true }, { "uscloud.nl", true }, { "usd.de", true }, + { "usdoj.gov", true }, { "usds.gov", true }, { "use.be", true }, - { "use.ci", true }, { "usebean.com", true }, - { "usedoor.jp", true }, { "usedu.us", true }, { "user-re.com", true }, + { "userra.gov", true }, { "usetypo3.com", true }, { "useyourloaf.com", true }, { "usgande.com", true }, { "ushandbookapp.com", true }, { "ushare.ch", true }, + { "usimmigration.us", true }, { "usipvd.ch", true }, { "usitcolours.bg", true }, - { "usleep.net", true }, + { "uskaria.com", true }, { "usmint.gov", true }, { "usninosnikrcni.eu", true }, { "usnti.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 }, { "usualbeings.com", true }, { "usuan.net", true }, - { "usuluddin.ga", true }, + { "usweme.info", true }, { "uswitch.com", true }, { "ut-addicted.com", true }, { "utahfireinfo.gov", true }, { "utahlocal.net", true }, + { "utahtravelcenter.com", true }, { "utazas-nyaralas.info", true }, { "utcast-mate.com", true }, - { "utdscanner.com", true }, { "utdsgda.com", true }, - { "uteam.it", true }, { "utepils.de", true }, { "utgifter.no", true }, { "utilia.tools", true }, @@ -35038,39 +38266,45 @@ 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 }, + { "uuid.cf", 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 }, { "uwelilienthal.de", true }, - { "uwimonacs.org.jm", 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 }, { "uzaymedya.com.tr", true }, + { "uziregister.nl", 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 }, { "va-reitartikel.com", true }, { "va.gov", false }, { "vacationsbyvip.com", true }, @@ -35081,8 +38315,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vaew.com", true }, { "vagabond.fr", true }, { "vagabondgal.com", true }, - { "vagaerg.com", true }, - { "vagaerg.net", true }, { "vagmour.eu", true }, { "vagpartsdb.com", true }, { "vagrantbits.com", true }, @@ -35094,13 +38326,17 @@ 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 }, + { "valcardiesel.com", true }, + { "valek.net", true }, { "valenciadevops.me", true }, + { "valentin-dederer.de", true }, { "valentin-ochs.de", true }, { "valentin-sundermann.de", true }, + { "valentin.ml", true }, { "valentinberclaz.com", true }, { "valentineapparel.com", true }, { "valentineforpresident.com", true }, @@ -35118,10 +38354,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "valis.sx", true }, { "valkohattu.fi", true }, { "valkor.pro", true }, + { "valkova.net", true }, { "vallei-veluwe.nl", true }, { "valleyautofair.com", true }, { "valleyautoloan.com", true }, { "valleycode.net", true }, + { "valleydalecottage.com.au", true }, { "valleyshop.ca", true }, { "vallutaja.eu", true }, { "valokuva-albumi.fi", true }, @@ -35129,16 +38367,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "valorem-tax.ch", true }, { "valoremtax.ch", true }, { "valoremtax.com", true }, + { "valorizofficial.com", true }, { "valshamar.is", true }, { "valsk.is", false }, { "valskis.lt", true }, { "valtlai.fi", true }, { "valtoaho.com", true }, { "valudo.st", true }, + { "valuechain.me", true }, { "valueng.com", true }, + { "valueofblog.com", true }, { "valueseed.net", true }, { "vampyrium.net", false }, { "van11y.net", true }, + { "vanagamsanthai.com", true }, + { "vanagamseeds.com", true }, { "vanbinnenuit.nl", true }, { "vancityconcerts.com", true }, { "vancouvercosmeticsurgery.ca", true }, @@ -35152,8 +38395,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vandermeer.frl", true }, { "vanderrijt.nl", false }, { "vanderziel.org", true }, + { "vandorenscholars.org", true }, + { "vandyhacks.org", true }, { "vaneigenkweek.be", true }, - { "vanhaos.com", true }, + { "vangoghcoaching.nl", true }, { "vanhoudt-usedcars.be", true }, { "vanhoutte.be", false }, { "vanhove.biz", true }, @@ -35163,7 +38408,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vanohaker.ru", true }, { "vanouwerkerk.net", true }, { "vantagepointpreneed.com", true }, + { "vantaio.com", true }, + { "vante.me", true }, { "vantien.com", true }, + { "vantru.is", true }, { "vanvoro.us", false }, { "vanwunnik.com", true }, { "vapecom-shop.com", true }, @@ -35172,9 +38420,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vapensiero.co.uk", true }, { "vaperolles.ch", true }, { "vapesense.co.uk", true }, + { "vapesupplies.com.au", true }, { "vaphone.co", true }, + { "vapingdaily.com", true }, { "vapor.cloud", false }, { "vapordepot.jp", true }, + { "vaporpunk.space", true }, + { "varalwamp.com", true }, { "varcare.jp", true }, { "varden.info", true }, { "vareillefoundation.fr", true }, @@ -35185,44 +38437,43 @@ static const nsSTSPreload kSTSPreloadList[] = { { "variag-montazh.ru", true }, { "varicoseveinssolution.com", true }, { "varimedoma.com", true }, + { "variomedia.de", 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 }, { "vascomm.co.id", true }, - { "vase-eroticke-povidky.cz", 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 }, { "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 }, + { "vault81.de", true }, { "vaultproject.io", true }, { "vaur.fr", true }, { "vavel.com", true }, - { "vavouchers.com", true }, { "vawebsite.co", true }, { "vawlt.io", true }, - { "vawltstorage.com", true }, { "vaygren.com", true }, { "vazue.com", true }, { "vb-oa.co.uk", true }, @@ -35231,12 +38482,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "vcmi.download", true }, @@ -35254,7 +38504,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vdesc.com", true }, { "vdisk24.de", true }, { "vdmeij.com", true }, - { "vdownloader.com", true }, { "vdzwan.net", true }, { "ve.search.yahoo.com", false }, { "ve3oat.ca", true }, @@ -35268,12 +38517,10 @@ 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 }, { "vegepa.com", true }, { "vegetariantokyo.net", true }, { "veggie-treff.de", true }, @@ -35283,11 +38530,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "venje.pro", true }, @@ -35299,7 +38551,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -35307,29 +38564,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "verberne.nu", true }, { "verbier-lechable.com", true }, { "verbierfestival.com", 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 }, + { "verge.capital", true }, { "vergeaccessories.com", true }, { "vergelijksimonly.nl", true }, + { "vergessen.cn", true }, { "verhovs.ky", true }, { "verifalia.com", 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 }, { "verizonconnect.com", false }, { "verizonguidelines.com", 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 }, @@ -35347,7 +38608,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vers.one", true }, { "versagercloud.de", true }, { "versbesteld.nl", true }, - { "versbeton.nl", true }, { "versicherungen-werner-hahn.de", true }, { "versicherungskontor.net", true }, { "verspai.de", true }, @@ -35357,19 +38617,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "veryimportantusers.com", true }, { "verymelon.de", true }, { "verymetal.nl", true }, + { "verzekeringencambier.be", true }, { "verzekeringsacties.nl", true }, { "verzick.com", true }, { "vescudero.net", true }, { "veslosada.com", true }, { "vespacascadia.com", true }, + { "vestd.com", true }, { "vestingbar.nl", true }, + { "vestum.ru", true }, + { "vetbits.com", true }, + { "veterinarian-hospital.com", true }, { "veterinario.roma.it", true }, { "veterinarioaltea.com", true }, + { "veterinary-colleges.com", true }, + { "veteriner.name.tr", true }, { "vetforum.co", true }, { "vetinte.eu", true }, { "vetofish.com", true }, @@ -35377,12 +38647,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veverusak.cz", true }, { "vfdworld.com", 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 }, { "vhummel.nl", true }, { "vi.photo", true }, { "via-shire-krug.ru", true }, @@ -35390,19 +38661,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viafinance.cz", false }, { "viaggio-in-cina.it", true }, { "viagraonlinebestellen.org", true }, + { "viagusto.pl", true }, { "viajandoporelmundo.com.ar", 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 }, { "vicentee.com", true }, { "vichiya.com", true }, - { "vician.cz", false }, { "vicicode.com", true }, { "viciousflora.com", true }, { "vicjuwelen-annelore.be", true }, + { "victora.com", true }, { "victorcanera.com", true }, { "victordiaz.me", true }, { "victoreriksson.ch", true }, @@ -35420,7 +38691,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "victorhawk.com", true }, { "victoriaartist.ru", true }, { "victoriastudio.ru", true }, - { "victoriaville.ca", true }, { "victorjacobs.com", true }, { "victornet.de", true }, { "victornilsson.pw", true }, @@ -35431,7 +38701,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vid-immobilien.de", true }, { "vida-it.com", true }, { "vida.es", true }, + { "vidadu.com", true }, { "vidbooster.com", true }, + { "vidcloud.xyz", true }, { "vide-greniers.org", false }, { "videogamesartwork.com", true }, { "videokaufmann.at", true }, @@ -35441,29 +38713,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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", 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 }, { "vietnamwomenveterans.org", true }, - { "vieux.pro", true }, { "viewbook.com", true }, + { "viewey.com", 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 }, @@ -35477,90 +38750,112 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vijverbenodigdheden.nl", true }, { "vik.im", true }, { "vikalbino.com.br", true }, + { "vikalpgupta.com", true }, { "vikapaula.com", true }, { "vikashkumar.me", true }, { "viking-style.ru", true }, { "vikings.net", true }, { "vikodek.com", true }, { "viktorprevaric.eu", true }, + { "vila-eden.cz", true }, { "vilabiamodas.com.br", 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 }, { "vima.ch", true }, { "vimeo.com", true }, + { "vinagro.sk", true }, + { "vinahost.vn", true }, { "vinarstvimodryhrozen.cz", true }, { "vincentcox.com", false }, + { "vincentoshana.com", true }, { "vincentpancol.com", true }, + { "vincentswordpress.nl", true }, + { "vincible.space", true }, + { "vinciconps4.it", true }, { "vincitraining.com", true }, { "vineright.com", true }, + { "vinetech.co.nz", true }, + { "vingt.me", true }, { "vinilosdecorativos.net", true }, + { "vinistas.com", true }, { "vinner.com.au", true }, { "vinnie.gq", 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 }, + { "vinticom.ch", true }, { "vintock.com", true }, { "vinyculture.com", true }, { "vinzite.com", true }, - { "violetraven.co.uk", true }, { "violin4fun.nl", true }, { "vionicbeach.com", true }, { "vionicshoes.com", true }, + { "vip-9649.com", true }, { "vip4553.com", true }, { "vip8522.com", true }, + { "vip9649.com", true }, { "vipesball.cc", true }, { "vipesball.info", true }, { "vipesball.me", true }, { "vipi.es", true }, { "viptamin.eu", true }, { "viptamol.com", true }, + { "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 }, @@ -35570,16 +38865,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visikom.de", true }, { "visioflux-premium.com", true }, { "visionarymedia.nl", true }, - { "visiondigitalsog.com", true }, + { "visiondirectionaldrilling.com", true }, { "visionexpress.com", true }, { "visionexpress.ie", true }, { "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 }, @@ -35595,7 +38891,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visualmasters.nl", true }, { "visudira.com", true }, { "vitahook.pw", true }, - { "vital-tel.co.uk", true }, { "vitalamin.com", true }, { "vitalamin.de", true }, { "vitalismaatjes.nl", true }, @@ -35603,15 +38898,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vitalthrills.com", true }, { "vitalware.com", true }, { "vitalyzhukphoto.com", true }, - { "vitamaxxi.com.br", true }, { "vitamineproteine.com", true }, { "vitaminler.com", 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 }, @@ -35619,6 +38915,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vivaldi.club", true }, { "vivaldi.com", true }, { "vivamusic.es", true }, + { "vivanosports.com.br", false }, { "vivatv.com.tw", true }, { "vivendi.de", true }, { "vivianmaier.cn", true }, @@ -35629,9 +38926,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vivirenelmundo.com", true }, { "vivo.sx", true }, { "vivoitaliankitchen.com", true }, + { "vivy.com", true }, { "vixrapedia.org", true }, { "viyf.org", true }, - { "viza.io", true }, { "vizards.cc", true }, { "vize.ai", false }, { "vizija-nepremicnine.si", true }, @@ -35646,10 +38943,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vk4wip.org.au", true }, { "vkb-remont.ru", true }, { "vkennke.org", true }, - { "vkirichenko.name", true }, + { "vkino.com", false }, { "vkox.com", true }, { "vksportphoto.com", true }, { "vladislavstoyanov.com", true }, + { "vlakem.net", true }, { "vlastimilburian.cz", true }, { "vleesbesteld.nl", true }, { "vleij.com", true }, @@ -35660,7 +38958,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vloeck.de", true }, { "vlora.city", true }, { "vlovgr.se", true }, - { "vlsk.eu", true }, { "vlsm.se", true }, { "vlvvl.com", true }, { "vm-0.com", true }, @@ -35678,12 +38975,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vn.search.yahoo.com", false }, { "vncg.org", true }, { "vnd.cloud", true }, - { "vndb.org", true }, { "vnfs-team.com", true }, + { "vnpem.org", true }, { "vnvisa.center", true }, { "vnvisa.ru", true }, + { "vocalik.com", true }, { "vocaloid.my", true }, - { "vocalsynth.space", true }, { "vocalviews.com", true }, { "vocus.aero", true }, { "vocustest.aero", true }, @@ -35692,22 +38989,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vodpay.com", true }, { "vodpay.net", true }, { "vodpay.org", true }, + { "vogelbus.ch", true }, { "vogler.name", true }, + { "vogue.cz", true }, + { "voice-of-design.com", true }, { "voicu.ch", 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 }, { "voipsun.com", true }, { "vojtechpavelka.cz", true }, - { "vokalsystem.com", true }, - { "vokativy.cz", false }, { "vokeapp.com", true }, + { "vokurka.net", true }, { "volcanconcretos.com", true }, { "volcano-kazan.ru", true }, { "volcano-spb.ru", true }, @@ -35720,14 +39019,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "volker-gropp.de", true }, { "volkergropp.de", true }, { "volkerwesselstransfer.nl", false }, - { "volkerwesselswave.nl", false }, { "volksvorschlagpmar.ch", true }, { "vollans.id.au", true }, { "voloevents.com", true }, { "volta.io", true }, { "volto.io", true }, { "volunteeringmatters.org.uk", true }, - { "volvipress.gr", true }, { "vomitb.in", true }, { "von-lien-aluprofile.de", true }, { "von-lien-dachrinnen.de", true }, @@ -35739,16 +39036,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vonski.pl", true }, { "voodoochile.at", true }, { "vop.li", true }, - { "vorkbaard.nl", true }, { "vorlage-musterbriefe.de", true }, { "vorlage-mustervertrag.de", true }, { "vorlagen-geburtstagsgruesse.de", true }, { "vorlicek.de", true }, { "vorlif.org", true }, - { "vorm2.com", true }, { "vorodevops.com", true }, + { "vorte.ga", true }, { "vos-fleurs.ch", true }, { "vos-fleurs.com", true }, + { "vos-systems.com", true }, + { "vos-systems.es", true }, + { "vos-systems.eu", true }, + { "vos-systems.net", true }, + { "vos-systems.org", true }, { "vosgym.jp", true }, { "vosky.fr", true }, { "vosn.de", true }, @@ -35757,12 +39058,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "voxfilmeonline.net", true }, { "voxml.com", true }, @@ -35773,35 +39074,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "vpsboard.com", true }, { "vpsdream.dk", true }, + { "vpsou.com", true }, { "vpsport.ch", true }, { "vpsvz.net", true }, { "vrandopulo.ru", true }, - { "vranjske.co.rs", true }, { "vrcholovka.cz", 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 }, { "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 }, { "vssnederland.nl", true }, { "vstehn.ru", true }, @@ -35809,7 +39112,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vsx.ch", true }, { "vtaxi.se", true }, { "vtipe-vylez.cz", true }, - { "vtuber-schedule.info", true }, + { "vtuber.art", true }, { "vuakhuyenmai.vn", true }, { "vubey.yt", true }, { "vuilelakens.be", true }, @@ -35822,21 +39125,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vulns.sexy", true }, { "vulnscan.org", true }, { "vulpine.club", 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.com", 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 }, @@ -35844,12 +39151,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -35857,33 +39162,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w-spotlight.appspot.com", true }, { "w-w-auto.de", true }, { "w.wiki", true }, + { "w1221.com", 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 }, + { "w95.pw", true }, { "wa-stromerzeuger.de", true }, + { "wa.me", true }, { "waaw.tv", true }, { "wabatam.com", true }, { "wachter.biz", true }, + { "wacky-science.com", true }, { "wacky.one", true }, { "wadidi.com", true }, { "wadsworth.gallery", true }, - { "wadvisor.com", true }, { "waelisch.de", true }, - { "waelti.xxx", true }, { "waf.ninja", true }, { "waf.sexy", true }, - { "wafa4hw.com", true }, { "wafelland.be", true }, { "waffle.at", false }, { "wafuton.com", true }, { "wagyu-bader.de", true }, + { "wahhoi.net", true }, { "wahidhasan.com", true }, { "wahlman.org", true }, { "wahrnehmungswelt.de", true }, @@ -35896,11 +39203,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -35910,16 +39217,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wakamiyasumiyosi.com", true }, { "wakandasun.com", true }, { "wakatime.com", true }, + { "wakhanyeza.org", true }, { "wakiminblog.com", true }, { "wala-floor.de", true }, { "waldvogel.family", true }, { "walent.in", true }, { "walentin.co", true }, + { "waligorska.pl", true }, { "walk.onl", true }, { "walkera-fans.de", true }, { "walkhighlandsandislands.com", true }, { "walkingrehabilitation.com", true }, { "walksedona.com", true }, + { "walksfourpaws.co.uk", true }, { "wallabet.fr", true }, { "wallabies.org", true }, { "wallace-group.net", true }, @@ -35944,31 +39254,44 @@ static const nsSTSPreload kSTSPreloadList[] = { { "walruses.org", true }, { "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 }, + { "wangbangyu.cf", true }, + { "wangbangyu.ga", true }, + { "wangbangyu.gq", true }, + { "wangbangyu.ml", true }, + { "wangbangyu.tk", true }, { "wangjun.me", true }, - { "wangqiliang.cn", false }, - { "wangqiliang.com", false }, + { "wangqiliang.cn", true }, + { "wangqiliang.com", true }, { "wangqiliang.org", true }, { "wangql.net", true }, { "wangqr.tk", true }, { "wangtanzhang.com", true }, + { "wangwill.me", true }, { "wangyubao.cn", true }, { "wangyue.blog", true }, { "wangzuan168.cc", true }, + { "wanlieyan.com", true }, { "wannaridecostarica.com", true }, - { "wanybug.cn", true }, + { "wanybug.cf", true }, { "wanybug.com", true }, + { "wanybug.ga", true }, + { "wanybug.gq", true }, + { "wanybug.tk", true }, + { "wanzenbug.xyz", true }, { "waonui.io", true }, - { "wapgu.cc", true }, + { "wapking.co", true }, + { "wapoolandspa.com", true }, { "wardow.com", true }, { "warebouncycastles.co.uk", true }, { "warekit.io", true }, @@ -35976,9 +39299,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "warenmedia.com", true }, { "wargameexclusive.com", true }, { "warhaggis.com", true }, - { "warmestwishes.ca", true }, { "warmservers.com", true }, - { "warnings.xyz", true }, { "warofelements.de", true }, { "warp-radio.com", true }, { "warp-radio.net", true }, @@ -35992,13 +39313,13 @@ 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 }, { "wasielewski.com.de", true }, { "wasil.org", true }, { "waslh.com", true }, - { "wasserburg.dk", true }, { "wasserspucker.de", true }, { "wassibauer.com", true }, { "wastrel.ch", true }, @@ -36011,6 +39332,8 @@ 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 }, @@ -36029,17 +39352,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "waukeect.com", true }, { "wave-ola.es", true }, { "wave.is", true }, + { "waverlysecuritycameras.com", true }, { "wavesboardshop.com", true }, + { "wavesoftime.com", true }, { "waveum.com", true }, { "wawak.pl", true }, { "waxdramatic.com", true }, + { "waycraze.com", true }, { "wayfair.de", true }, + { "wayfairertravel.com", true }, { "wayohoo.com", true }, { "wayohoo.net", true }, { "waytt.cf", true }, { "waze.com", true }, + { "wb256.com", true }, { "wbci.us", false }, { "wbg-vs.de", true }, + { "wblautomotive.com", true }, + { "wblinks.com", true }, { "wbt-solutions.ch", true }, { "wbt-solutions.net", true }, { "wbudd.com", true }, @@ -36047,6 +39377,7 @@ 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 }, @@ -36056,13 +39387,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wdic.org", true }, { "wdodelta.nl", true }, { "wdol.gov", true }, - { "wdrl.info", true }, { "wdt.cz", false }, { "we-bb.com", true }, { "we-run-linux.de", true }, { "we-use-linux.de", true }, { "weacceptbitcoin.gr", true }, - { "wealthcentral.com.au", true }, { "wealthprojector.com", true }, { "wealthprojector.com.au", true }, { "wealthreport.com.au", true }, @@ -36074,24 +39403,32 @@ 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-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 }, @@ -36100,9 +39437,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webandmore.de", false }, { "webappky.cz", true }, { "webartex.ru", true }, + { "webauthority.co.uk", true }, { "webbiz.co.uk", true }, { "webbson.net", false }, - { "webbx.se", true }, { "webcamtoy.com", true }, { "webcatchers.nl", true }, { "webcatechism.com", false }, @@ -36111,16 +39448,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webcontentspinning.com", true }, { "webcookies.org", true }, { "webcrm.com", true }, + { "webcurtaincall.com", true }, { "webdeflect.com", true }, + { "webdemaestrias.com", true }, { "webdesign-st.de", true }, { "webdesigneauclaire.com", true }, { "webdesignerinwarwickshire.co.uk", true }, { "webdesignlabor.ch", true }, { "webdesignplay.com", true }, { "webdesignplayground.io", true }, + { "webdesignsandiego.com", true }, { "webdevops.io", true }, { "webdevxp.com", true }, { "webdl.org", true }, + { "webdollarvpn.io", true }, { "webduck.nl", false }, { "webeast.eu", true }, { "webeau.com", true }, @@ -36129,12 +39470,14 @@ 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 }, @@ -36160,11 +39503,11 @@ 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 }, { "webnames.ca", true }, + { "webnexty.com", true }, { "webogram.org", false }, { "webpinoytambayan.net", true }, { "webpinoytv.info", true }, @@ -36175,14 +39518,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webproxy.pw", true }, { "webpubsub.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 }, @@ -36198,6 +39538,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "websitesdallas.com", true }, { "websiteservice.pro", true }, { "webslake.com", true }, + { "websmartmedia.co.uk", true }, { "webspiral.jp", true }, { "webspire.tech", true }, { "webstijlen.nl", true }, @@ -36209,54 +39550,53 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webtalis.nl", true }, { "webtasarim.pw", true }, { "webtheapp.com", true }, - { "webtobesocial.de", true }, { "webtorrent.io", true }, { "webtrh.cz", true }, { "webtropia.com", false }, + { "webutils.io", true }, { "webvisum.de", true }, { "webwednesday.nl", true }, { "webwinkelexploitatie.nl", true }, { "webwinkelwestland.nl", true }, { "webwit.nl", true }, - { "webwolf.co.za", true }, { "webworkshop.ltd", true }, + { "webxr.today", true }, { "webyazilimankara.com", true }, { "webz.one", true }, - { "wecanvisit.com", true }, { "wechatify.com", true }, { "wecleanbins.com", true }, { "wecobble.com", true }, - { "weddingalbumsdesign.com", true }, { "weddingfantasy.ru", true }, + { "weddingofficiantwilmington.com", true }, { "weddingsbynoon.co.uk", true }, { "weddywood.ru", false }, { "wedos.com", true }, { "weeblr.com", true }, { "weeblrpress.com", true }, - { "weedcircles.com", true }, - { "weedlandia.org", true }, { "weedlife.com", true }, { "weednews.co", true }, { "weedupdate.com", true }, { "weedworthy.com", true }, { "weedypedia.de", true }, + { "week.report", true }, { "weekdone.com", true }, { "weekendinitaly.com", true }, { "weekly-residence.com", true }, { "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 }, { "wegotcookies.com", true }, { "wegrzynek.org", true }, { "wegvielfalt.de", true }, @@ -36270,40 +39610,38 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weiling.clinic", true }, { "weils.net", true }, { "weiltoast.de", true }, - { "weimaraner.com.br", true }, + { "weiming.ddns.net", true }, { "weimz.com", true }, { "wein.cc", true }, { "wein.co.kr", true }, { "weinbergerlawgroup.com", true }, + { "weingaertner-it.de", true }, { "weinundsein.com", true }, { "weirdesigns.com", true }, - { "weirdserver.com", true }, { "weisse-liste.de", true }, { "weissman.agency", true }, { "weiterbildung-vdz.de", true }, { "weitergedacht.eu", true }, + { "weixiaojun.org", true }, { "weizenspr.eu", true }, { "welcome-tahiti.com", true }, { "welcome-werkstatt.com", true }, { "welcome-werkstatt.de", true }, { "welcome26.ch", true }, { "welcomehelp.de", true }, - { "welcomescuba.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-gutschein.de", true }, { "wellnesscheck.net", true }, + { "wellsolveit.com", false }, { "welovecatsandkittens.com", true }, - { "welpo.me", true }, { "welsh.com.br", true }, { "welshccf.org.uk", true }, { "welteneroberer.de", true }, @@ -36311,6 +39649,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weltenhueter.de", true }, { "weltverschwoerung.de", true }, { "welzijnkoggenland.nl", true }, + { "wem.hr", true }, { "wemakebookkeepingeasy.com", true }, { "wemakemenus.com", true }, { "wemakeonlinereviews.com", true }, @@ -36318,10 +39657,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wen-in.com", true }, { "wen-in.net", true }, { "wenchieh.com", true }, + { "wendigo.pl", true }, { "wendlberger.net", true }, { "wendu.me", true }, { "wener.me", false }, - { "wengebowuguan.com", true }, { "wenger-shop.ch", true }, { "wenjs.me", true }, { "wensing-und-koenig.de", true }, @@ -36338,9 +39677,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 }, @@ -36353,6 +39693,7 @@ 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 }, @@ -36363,7 +39704,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wertheimer-burgrock.de", true }, { "wertpapiertreuhand.de", true }, { "werwolf-live.de", true }, - { "wes-dev.com", true }, { "wesecom.com", true }, { "wesell.asia", true }, { "weserv.nl", true }, @@ -36376,6 +39716,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "west-contemporary.com", true }, { "west-trans.com.au", true }, { "west-wind.net", true }, + { "westcanal.net", true }, { "westcarrollton.org", true }, { "westcentenaryscouts.org.au", true }, { "westcentralaor.org", true }, @@ -36384,9 +39725,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "westcode.de", true }, { "westcountrystalking.com", true }, { "westendwifi.net", true }, + { "westernfrontierins.com", true }, { "westeros.hu", true }, - { "westhighlandwhiteterrier.com.br", true }, { "westhillselectrical.com", true }, + { "westlaketire.pt", true }, { "westlakevillageelectric.com", true }, { "westlakevillageelectrical.com", true }, { "westlakevillageelectrician.com", true }, @@ -36402,14 +39744,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "westmidlandsinflatables.co.uk", true }, { "westsuburbanbank.com", true }, { "westwood.no", true }, + { "wesupportthebadge.org", true }, { "wetofu.top", true }, + { "wetrepublic.com", true }, + { "wette.de", true }, { "wevenues.com", true }, { "wewitro.de", true }, { "wewitro.net", true }, { "wexfordbouncycastles.ie", true }, { "wexilapp.com", true }, { "weyland-yutani.org", true }, - { "weyland.tech", true }, + { "weynaphotography.com", true }, + { "wezartt.com", true }, { "wf-bigsky-master.appspot.com", true }, { "wf-demo-eu.appspot.com", true }, { "wf-demo-hrd.appspot.com", true }, @@ -36422,15 +39768,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wf-trial-hrd.appspot.com", true }, { "wfh.ovh", true }, { "wfh.se", true }, + { "wfl.ro", true }, { "wft-portfolio.nl", true }, { "wg-steubenstrasse.de", true }, { "wg3k.us", false }, + { "wgcp.com", true }, { "wgom.org", true }, { "wgplatform.co.uk", true }, { "wgraphics.ru", true }, { "wgsi-friesland.nl", true }, { "wh-guide.de", true }, - { "whanau.org", true }, { "what-wood.servehttp.com", true }, { "whatagreatwebsite.net", true }, { "whatanime.ga", true }, @@ -36443,7 +39790,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whatclinic.ru", true }, { "whateveraspidercan.com", true }, { "whatismycountry.com", true }, - { "whatismyip.net", true }, + { "whatismyip.net", false }, { "whatismyipaddress.ca", true }, { "whatisthe.cloud", true }, { "whatnext.limited", true }, @@ -36454,6 +39801,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whatsupgold.com.tw", true }, { "whatsupoutdoor.com", true }, { "whatthingsweigh.com", true }, + { "whattominingrigrentals.com", true }, + { "whatusb.com", true }, { "whatwebcando.today", true }, { "whatwg.org", true }, { "whd-guide.de", true }, @@ -36462,7 +39811,7 @@ 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 }, @@ -36473,7 +39822,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whing.org", true }, { "whipnic.com", true }, { "whirlpool-luboss.de", true }, + { "whirlpool.net.au", true }, { "whisky-circle.info", true }, + { "whiskygentle.men", true }, { "whiskynerd.ca", true }, { "whisp.ly", false }, { "whispeer.de", true }, @@ -36482,6 +39833,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 }, @@ -36489,20 +39841,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whitealps.fr", true }, { "whitealps.net", true }, { "whitebear.cloud", true }, + { "whitebirdclinic.org", true }, { "whitefm.ch", true }, { "whitehathackers.com.br", 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 }, @@ -36517,10 +39872,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whocalled.us", true }, { "whocybered.me", true }, { "whoimg.com", true }, - { "whoisamitsingh.com", true }, { "whoisthenightking.com", true }, { "whoiswp.com", true }, - { "wholelotofbounce.co.uk", false }, { "wholesalecbd.com", true }, { "wholesomeharvestbread.com", false }, { "whonix.org", true }, @@ -36532,6 +39885,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whub.io", true }, { "why-brexit.uk", true }, { "whychoosebob.net.au", true }, + { "whynohttps.com", true }, { "whyopencomputing.ch", true }, { "whyopencomputing.com", true }, { "whytls.com", true }, @@ -36578,6 +39932,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 }, @@ -36585,6 +39950,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 }, @@ -36594,13 +39960,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wiktoriaslife.com", true }, { "wilane.org", true }, { "wilcodeboer.me", true }, - { "wild-turtles.com", false }, + { "wild-turtles.com", true }, { "wildboaratvparts.com", true }, { "wilddogdesign.co.uk", true }, { "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 }, @@ -36614,16 +39981,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 }, + { "williamscomposer.com", true }, + { "williamsflintlocks.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 }, @@ -36642,23 +40012,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "winbignow.click", true }, { "winbuzzer.com", true }, { "wincasinowin.click", true }, + { "winch-center.de", true }, { "wind.moe", true }, { "winddan.nz", true }, { "windelnkaufen24.de", true }, { "windowcleaningexperts.net", true }, - { "windows10insider.com", true }, { "windowslatest.com", true }, { "windowsnerd.com", true }, + { "windowsnoticias.com", true }, { "windowwellcovers.com", true }, - { "windrunner.se", true }, { "windscribe.com", true }, { "windsock-app.com", true }, { "windsorite.ca", true }, { "windsorspi.com", true }, { "windycitydubfest.com", true }, { "wine-tapa.com", true }, - { "wineonthewall.com", true }, - { "winepress.org", true }, + { "wineparis.com", true }, { "winghill.com", true }, { "wingify.com", true }, { "wingmin.net", true }, @@ -36666,8 +40035,8 @@ 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-elektro.de", true }, @@ -36676,20 +40045,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wintercam.nl", true }, { "winterfeldt.de", true }, { "winterhillbank.com", true }, + { "wintermeyer-consulting.de", true }, { "wintermeyer.de", true }, { "winterschoen.nl", true }, { "wintodoor.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 }, @@ -36698,7 +40065,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -36710,7 +40079,6 @@ 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 }, @@ -36725,6 +40093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wizzr.nl", true }, { "wj0666.com", true }, { "wjbolles.com", true }, + { "wjcainc.com", true }, { "wjci.com", true }, { "wje-online.de", true }, { "wjg.ca", true }, @@ -36751,14 +40120,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wmfusercontent.org", true }, { "wmkowa.de", true }, { "wmustore.com", true }, - { "wnmed.com.au", 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 }, { "wodinaz.com", true }, { "wodka-division.de", true }, @@ -36784,10 +40151,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wolfgang-kloke.de", true }, { "wolfgang-ziegler.com", true }, { "wolfie.ovh", false }, - { "wolfsden.cz", 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 }, @@ -36797,12 +40164,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "womb.city", true }, { "wombatalla.com.au", true }, { "wombats.net", true }, + { "womcom.nl", true }, { "women-only.net", true }, { "womensalespros.com", true }, { "womenshairlossproject.com", true }, { "wonabo.com", true }, { "wonder.com.mx", false }, { "wonderbill.com", true }, + { "wonderbits.net", true }, { "wonderfuleducation.eu", true }, { "wonderfuleducation.nl", true }, { "wondergorilla.com", true }, @@ -36815,21 +40184,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "woodbury.io", true }, { "woodcoin.org", 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 }, @@ -36837,31 +40209,32 @@ 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 }, { "wordxtra.net", true }, - { "worf.in", true }, { "work-in-progress.website", true }, { "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 }, { "workmart.mx", 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 }, { "worldcigars.com.br", true }, { "worldcrafts.org", true }, @@ -36877,29 +40250,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worldofvnc.net", true }, { "worldofwobble.co.uk", true }, { "worldpeacetechnology.com", true }, + { "worldrecipes.eu", true }, { "worldsgreatestazuredemo.com", true }, + { "worldsinperil.it", true }, { "worldsoccerclips.com", true }, { "worldstone777.com", true }, { "worldtalk.de", true }, { "wormbytes.ca", true }, - { "wormdisk.net", true }, { "worst.horse", false }, { "wort-suchen.de", true }, - { "woshiluo.site", true }, { "wot-tudasbazis.hu", true }, + { "woti.dedyn.io", true }, { "wotra-register.com", true }, { "woudenberg.nl", true }, + { "woudenbergsedrukkerij.nl", true }, { "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 }, @@ -36913,17 +40285,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wp-site1.com", true }, { "wp-site2.com", true }, { "wp-tao.com", true }, + { "wp-webagentur.de", true }, { "wpac.de", true }, { "wpandup.org", true }, { "wpcanban.com", true }, + { "wpccu.org", true }, + { "wpcdn.bid", true }, { "wpcharged.nz", true }, { "wpdesigner.ir", 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 }, @@ -36948,6 +40322,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wq.ro", true }, { "wr.su", true }, { "wrara.org", true }, + { "wrathofgeek.com", true }, { "wrc-results.com", true }, { "wrdcfiles.ca", true }, { "wrdx.io", true }, @@ -36958,14 +40333,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "writeandedit-for-you.com", true }, { "writecustomessay.com", true }, { "writeenglishright.com", true }, - { "writemyessay.info", true }, { "writemyessay.today", true }, { "writemyessays.com", true }, { "writemypaperhub.com", true }, - { "writemytermpapers.com", true }, { "writeoff.me", true }, { "writepride.com", true }, - { "writepro.net", true }, + { "writer24.ru", true }, { "writereditor.com", true }, { "writing-job-online.com", true }, { "writingcities.net", true }, @@ -36988,9 +40361,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "wsyy.info", true }, @@ -36998,7 +40370,9 @@ 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 }, { "wtw.io", true }, @@ -37010,7 +40384,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wuifan.com", true }, { "wuji.cz", true }, { "wumai-p.cn", true }, - { "wumai.cloud", true }, { "wumbo.cf", true }, { "wumbo.co.nz", true }, { "wumbo.ga", true }, @@ -37021,10 +40394,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wunderlist.com", true }, { "wundernas.ch", true }, { "wundi.net", true }, - { "wuppertal-2018.de", true }, - { "wuppertaler-kurrende.com", true }, - { "wuppertaler-kurrende.de", true }, + { "wunschzettel.de", true }, + { "wuppertal-2018.de", false }, + { "wuppertaler-kurrende.com", false }, + { "wuppertaler-kurrende.de", false }, { "wutianyi.com", true }, + { "wuwuwu.me", true }, { "wuxiaobai.win", true }, { "wuxiaohen.com", true }, { "wuyue.photo", true }, @@ -37043,11 +40418,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wwv-8722.com", true }, { "www-33445.com", true }, { "www-49889.com", true }, + { "www-7570.com", true }, + { "www-80036.com", true }, { "www-8522.am", true }, { "www-8522.com", true }, { "www-86499.com", true }, { "www-8722.com", true }, + { "www-9649.com", true }, { "www-9822.com", true }, + { "www-pj009.com", true }, { "www.aclu.org", false }, { "www.airbnb.com", true }, { "www.amazon.cn", true }, @@ -37069,6 +40448,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 }, @@ -37105,26 +40485,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.twitter.com", false }, { "www.united.com", true }, { "www.usaa.com", false }, + { "www.viasinc.com", false }, { "www.vino75.com", false }, { "www.wepay.com", false }, { "www.wordpress.com", false }, { "www.zdnet.com", true }, - { "www68277.com", true }, + { "wwww.me.uk", true }, { "wxcafe.net", true }, + { "wxdisco.com", true }, + { "wxforums.com", true }, { "wxh.jp", true }, + { "wxkxsw.com", true }, { "wxster.com", true }, - { "wxyz.buzz", true }, { "wyam.io", true }, { "wybar.uk", true }, + { "wycrow.com", false }, { "wyday.com", true }, { "wygibanki.pl", true }, { "wygodnie.pl", 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 }, + { "wyydsb.cn", true }, + { "wyydsb.com", true }, + { "wyydsb.xin", true }, + { "wyysoft.tk", true }, + { "wzfetish.com.br", true }, { "wzfou.com", true }, { "wzrd.in", true }, { "wzyboy.org", true }, @@ -37135,25 +40526,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x.st", true }, { "x0r.be", true }, { "x13.com", true }, - { "x1be.win", true }, + { "x1616.tk", 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-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 }, { "xbb.hk", true }, { "xbb.li", true }, { "xbertschy.com", true }, { "xblau.com", true }, - { "xboxdownloadthat.com", true }, { "xboxlivegoldshop.nl", true }, { "xboxonex.shop", true }, { "xbrl.online", true }, @@ -37167,15 +40559,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xcorpsolutions.com", true }, { "xcvb.xyz", true }, { "xd.cm", true }, - { "xd.fi", true }, { "xdavidhu.me", true }, { "xdawn.cn", true }, { "xdeftor.com", true }, - { "xecure.zone", true }, - { "xecureit.com", true }, + { "xdos.io", true }, { "xeedbeam.me", true }, { "xega.org", true }, { "xehost.com", true }, + { "xeiropraktiki.gr", true }, { "xelesante.jp", true }, { "xendo.net", true }, { "xenomedia.nl", true }, @@ -37187,24 +40578,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xentox.com", true }, { "xerblade.com", true }, { "xerhost.de", true }, - { "xerownia.eu", true }, + { "xerkus.pro", 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 }, + { "xgzepto.cn", true }, { "xhadius.de", true }, + { "xhily.com", true }, { "xhmikosr.io", true }, { "xho.me", 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 }, @@ -37213,32 +40608,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "xichtsbuch.de", true }, { "xicreative.net", true }, { "xiecongan.org", true }, { "xif.at", true }, { "xight.org", true }, { "xilef.org", true }, + { "xiliant.com", false }, { "xilkoi.net", true }, { "xilou.org", true }, { "ximbo.net", true }, { "xin-in.com", true }, { "xin-in.net", true }, { "xing-in.net", true }, + { "xinj.com", true }, { "xinnixdeuren-shop.be", true }, { "xinuspeed.com", true }, { "xinuspeedtest.com", true }, { "xinuurl.com", true }, - { "xiongx.cn", true }, { "xj8876.com", true }, { "xjd.vision", true }, + { "xjf6.com", true }, { "xjjeeps.com", true }, + { "xjoin.de", true }, { "xjpvictor.info", true }, { "xkblog.xyz", true }, { "xkcd.pw", true }, @@ -37246,29 +40645,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xkviz.net", true }, { "xlan.be", true }, { "xlange.com", true }, + { "xliang.co", true }, + { "xlui.me", true }, { "xluxes.jp", true }, { "xmedius.ca", true }, { "xmedius.com", false }, { "xmedius.eu", true }, { "xmenrevolution.com", true }, - { "xmerak.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 }, { "xn----7sbfl2alf8a.xn--p1ai", true }, { "xn----8hcdn2ankm1bfq.com", true }, + { "xn----8sbjfacqfqshbh7afyeg.xn--80asehdb", true }, { "xn----zmcaltpp1mdh16i.com", true }, { "xn--0iv967ab7w.xn--rhqv96g", true }, { "xn--0kq33cz5c8wmwrqqw1d.com", true }, + { "xn--158h.ml", true }, { "xn--24-6kch4bfqee.xn--p1ai", true }, { "xn--24-glcia8dc.xn--p1ai", true }, - { "xn--3lqp21gwna.cn", true }, + { "xn--48jwg508p.net", true }, + { "xn--4kro7fswi.xn--6qq986b3xl", true }, { "xn--4pv80kkz8auzf.jp", true }, + { "xn--57h.ml", true }, { "xn--5dbkjqb0d.com", true }, { "xn--5dbkjqb0d.net", true }, { "xn--6o8h.cf", true }, @@ -37276,11 +40681,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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--80aejljbfwxn.xn--p1ai", true }, { "xn--80anogxed.xn--p1ai", true }, { "xn--80azelb.xn--p1ai", true }, + { "xn--8bi.gq", true }, { "xn--8dry00a7se89ay98epsgxxq.com", true }, { "xn--90accgba6bldkcbb7a.xn--p1acf", true }, { "xn--allgu-biker-o8a.de", true }, @@ -37301,36 +40707,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--detrkl13b9sbv53j.com", true }, { "xn--detrkl13b9sbv53j.org", true }, { "xn--die-zahnrzte-ncb.de", true }, - { "xn--dk8haaa.ws", true }, { "xn--dmonenjger-q5ag.net", true }, { "xn--dragni-g1a.de", true }, { "xn--dtursfest-72a.dk", true }, { "xn--e1aoahhqgn.xn--p1ai", true }, { "xn--ecki0cd0bu9a4nsjb.com", true }, { "xn--eckle6c0exa0b0modc7054g7h8ajw6f.com", true }, + { "xn--ehq13kgw4e.ml", true }, + { "xn--ehqw04eq6e.jp", true }, { "xn--elsignificadodesoar-c4b.com", true }, { "xn--erklderbarenben-slbh.dk", true }, + { "xn--et8h.cf", true }, { "xn--f9jh4f4b4993b66s.tokyo", true }, { "xn--familie-pppinghaus-l3b.de", true }, { "xn--feuerlscher-arten-4zb.de", true }, + { "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--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--keditr-0xa.biz", true }, + { "xn--klmek-0sa.com", true }, { "xn--knstler-n2a.tips", false }, + { "xn--krpto-lva.de", true }, { "xn--ktha-kamrater-pfba.se", true }, { "xn--lckwg.net", true }, { "xn--love-un4c7e0d4a.com", true }, @@ -37345,7 +40757,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--mgbbh2a9fub.xn--ngbc5azd", false }, { "xn--mgbmmp7eub.com", true }, { "xn--mgbpkc7fz3awhe.com", true }, - { "xn--mhsv04avtt1xi.com", false }, { "xn--mllers-wxa.info", true }, { "xn--myrepubic-wub.net", true }, { "xn--myrepublc-x5a.net", true }, @@ -37355,15 +40766,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--nf1a578axkh.xn--fiqs8s", true }, { "xn--nrrdetval-v2ab.se", true }, { "xn--o38h.tk", true }, + { "xn--obt757c.com", true }, + { "xn--oiqt18e8e2a.eu.org", true }, + { "xn--p8j9a0d9c9a.xn--q9jyb4c", true }, { "xn--pbt947am3ab71g.com", true }, { "xn--pe-bka.ee", true }, { "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 }, + { "xn--rlcus7b3d.xn--xkc2dl3a5ee0h", true }, { "xn--roselire-60a.ch", true }, { "xn--roselire-60a.com", true }, { "xn--rt-cja.ie", true }, @@ -37378,6 +40794,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net", true }, { "xn--t8j4aa4nzg3a5euoxcwee.xyz", true }, { "xn--tigreray-i1a.org", true }, + { "xn--trdler-xxa.xyz", true }, { "xn--u8jwd.ga", true }, { "xn--u9j0ia6hb7347cg8wavz0avb0e.com", true }, { "xn--u9jv84l7ea468b.com", true }, @@ -37400,47 +40817,46 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "xonn.de", true }, - { "xotika.tv", true }, + { "xoonth.net", true }, { "xp2.de", true }, { "xpbytes.com", true }, { "xpd.se", 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", false }, { "xqk7.com", true }, { "xr.cx", true }, + { "xr1s.me", true }, + { "xrg.cz", true }, { "xrippedhd.com", true }, { "xrockx.de", true }, - { "xroot.org", false }, { "xrwracing-france.com", true }, { "xs2a.no", true }, - { "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 }, @@ -37448,7 +40864,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -37458,38 +40874,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, { "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 }, + { "xxxsuper.net", true }, + { "xyenon.bid", true }, + { "xyfun.net", false }, { "xyngular-health.com", true }, { "xywing.com", true }, - { "xyyp.mn", true }, { "xyzulu.hosting", true }, + { "xza.fr", true }, { "xzclip.cn", true }, - { "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 }, { "yagihiro.tech", true }, { "yahan.tv", true }, @@ -37515,13 +40929,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yangmaodang.org", true }, { "yanngraf.ch", true }, { "yanngraf.com", true }, + { "yannic.world", true }, { "yannick.cloud", true }, { "yannik-buerkle.de", true }, { "yannikbloscheck.com", true }, - { "yannikhenke.de", true }, { "yanovich.net", true }, { "yanqiyu.info", true }, + { "yans.io", true }, { "yantrasthal.com", true }, + { "yanuwa.com", true }, { "yao-in.com", true }, { "yao-in.net", true }, { "yapbreak.fr", true }, @@ -37532,14 +40948,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, + { "yayart.club", true }, { "yazaral.com", true }, { "ybin.me", true }, + { "ybresson.com", true }, { "ybsul.com", true }, + { "ybt520.com", true }, { "ybti.net", true }, { "ybzhao.com", true }, { "ych.art", true }, @@ -37547,11 +40967,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ychon.com", true }, { "ychong.com", true }, { "yclan.net", true }, + { "ycnrg.org", true }, { "yd.io", true }, { "yeapdata.com", true }, + { "yecl.net", true }, { "yeesker.com", true }, { "yell.ml", true }, + { "yellotalk.co", true }, + { "yellowfly.co.uk", true }, { "yellowpages.ee", true }, + { "yellowtaillasvegas.com", true }, + { "yellowtree.co.za", true }, { "yelon.hu", true }, { "yelp.at", true }, { "yelp.be", true }, @@ -37587,11 +41013,13 @@ 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 }, @@ -37599,13 +41027,15 @@ 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 }, { "yh599.cc", true }, { "yhaupenthal.org", true }, { "yhb.io", true }, { "yhe.me", true }, + { "yhenke.de", true }, + { "yhfou.com", true }, { "yhndnzj.com", true }, { "yhong.me", true }, { "yhrd.org", true }, @@ -37614,10 +41044,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -37627,16 +41056,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yiyueread.com", true }, { "yiz96.com", true }, { "yjsw.sh.cn", 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 }, + { "ynxfh.cn", true }, + { "yoast.com", true }, { "yobai-grouprec.jp", true }, { "yobai28.com", true }, + { "yobbelwobbel.de", false }, { "yobify.com", true }, { "yocchan1513.net", true }, { "yoga-alliance-teacher-training.com", true }, @@ -37647,6 +41080,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yoga-zentrum-narayani.de", true }, { "yogabhawnamission.com", true }, { "yogacentric.co.uk", true }, + { "yogahealsinc.org", true }, { "yogananda-roma.org", true }, { "yogaschoolrishikesh.com", true }, { "yoibyoin.info", true }, @@ -37655,12 +41089,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yokohama-legaloffice.jp", 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 }, + { "yoppoy.com", true }, { "yopuedo.co", true }, { "yoramvandevelde.net", true }, { "yorcom.nl", false }, @@ -37672,29 +41108,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yosheenetwork.fr", true }, { "yoshibaworks.com", true }, { "yoshitsugu.net", true }, + { "yosida-dental.com", true }, { "yospos.org", true }, + { "yoticonnections.com", true }, { "yotilab.com", true }, { "yotta-zetta.com", true }, { "yotubaiotona.net", true }, { "you.com.br", true }, + { "you2you.fr", true }, { "youareme.ca", true }, { "youc.ir", true }, { "youcanmakeit.at", true }, { "youcruit.com", true }, - { "youdowell.com", true }, { "youdungoofd.com", true }, { "youftp.tk", true }, { "yougee.ml", true }, + { "yougot.pw", 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 }, { "youlovehers.com", true }, - { "youmonit.me", true }, { "youms.de", true }, { "young-sheldon.com", true }, { "youngdogs.org", true }, @@ -37703,55 +41140,63 @@ static const nsSTSPreload kSTSPreloadList[] = { { "youngsook.com", true }, { "youngsook.org", true }, { "youpark.no", true }, + { "youpickfarms.org", true }, { "your-erotic-stories.com", true }, { "your-out.com", true }, + { "your-waterserver.com", true }, + { "youracnepro.com", true }, { "youran.me", true }, { "yourbonus.click", true }, { "yourciso.com", true }, + { "yourcomputer.expert", true }, { "yourcopywriter.it", true }, { "yourforex.org", true }, { "yourfriendlytech.com", true }, + { "yourfuntrivia.com", true }, { "yourfuturestrategy.com.au", true }, + { "yourgadget.ro", true }, { "yourgames.tv", true }, { "yourhair.net", true }, + { "yourlanguages.de", true }, + { "yourmemorykeeper.co.uk", true }, { "yourneighborhub.com", true }, { "yourskin.nl", true }, + { "yourstake.org", true }, { "yourticketbooking.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 }, { "yqjf68.com", true }, { "yr166166.com", true }, + { "yrjanheikki.com", true }, { "ys-shop.biz", true }, { "ysicing.net", true }, { "ysicorp.com", true }, + { "yslbeauty.com", true }, + { "yspeo.biz", true }, { "ysun.xyz", true }, - { "ysx.me.uk", true }, - { "ytb.zone", true }, - { "ytbmp3.com", true }, - { "ytbmp4.com", true }, { "ytec.ca", true }, - { "ytpak.com", true }, { "ytpak.pk", true }, { "ytreza.fr", true }, { "ytuquelees.net", true }, + { "ytx588.com", true }, { "yu.gg", false }, { "yu.vc", true }, { "yuan.ga", true }, { "yuanben.io", true }, - { "yuanbenlian.com", true }, + { "yuanjiazhao.com", true }, { "yuanjiazhao.tk", true }, { "yubi.co", true }, { "yubicloud.io", true }, @@ -37808,21 +41253,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yubikeyservices.eu", true }, { "yubiking.com", true }, { "yue.la", true }, - { "yuka.one", true }, + { "yue2.net", true }, + { "yugasun.com", true }, { "yukari.cafe", true }, + { "yukari.cloud", true }, { "yuki-nagato.com", true }, { "yuki.xyz", true }, - { "yukimochi.com", true }, - { "yukimochi.jp", true }, { "yukonconnector.com", true }, { "yukonlip.com", true }, { "yukontec.com", true }, - { "yum0.cn", true }, { "yumeconcert.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 }, @@ -37834,10 +41278,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -37847,10 +41293,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yvonnehaeusser.de", true }, { "yvonnethomet.ch", true }, { "yvonnewilhelmi.com", true }, + { "yxs.me", true }, { "yxt521.com", true }, - { "yya.bid", true }, { "yya.me", true }, - { "yya.men", true }, { "yyc.city", true }, { "yyyy.xyz", true }, { "yzal.io", true }, @@ -37859,34 +41304,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yzimroni.net", true }, { "z-konzept-nutrition.ru", true }, { "z-latko.info", true }, + { "z-to-a.com", true }, { "z-vector.com", true }, { "z.ai", true }, { "z1h.de", true }, - { "z33.ch", true }, - { "z33.co", true }, { "z4k.de", true }, { "z99944x.xyz", true }, { "za.search.yahoo.com", false }, { "zaagbaak.nl", true }, { "zaalleatherwear.nl", false }, + { "zabavno.mk", true }, { "zabbix.tips", true }, - { "zabszk.net", true }, { "zabukovnik.net", true }, { "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 }, { "zahe.me", true }, @@ -37895,20 +41340,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zahnarzt-hofer.de", true }, { "zahnarzt-kramer.ch", true }, { "zahnarzt-muenich.de", true }, - { "zaidan.de", true }, - { "zaidan.eu", true }, - { "zaidanfood.com", true }, - { "zaidanfood.eu", true }, - { "zaidanlebensmittelhandel.de", true }, { "zajazd.biz", true }, + { "zakariya.blog", true }, { "zakcutner.uk", 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 }, + { "zalvus.com", true }, { "zamalektoday.com", true }, { "zamocosmeticos.com.br", true }, { "zamow.co", true }, @@ -37917,7 +41360,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zanellidesigns.co.uk", true }, { "zanthra.com", true }, { "zanzabar.it", true }, - { "zapatoshechoamano.pe", true }, { "zapier.com", true }, { "zappbuildapps.com", false }, { "zappos.com", true }, @@ -37940,32 +41382,39 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zberger.com", true }, { "zbetcheck.in", true }, { "zbrane-doplnky.cz", true }, + { "zbut.bg", 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 }, { "zdbl.de", true }, { "zdenekspacek.cz", true }, { "zdorovayasimya.com", true }, + { "zdrave-konzultace.cz", true }, + { "zdravekonzultace.cz", true }, { "zdravesteny.cz", true }, { "zdrojak.cz", true }, + { "zdymak.by", true }, { "ze3kr.com", true }, + { "zeal-and.jp", true }, { "zeal-interior.com", true }, { "zealworks.jp", true }, { "zebbra.ro", true }, { "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 }, + { "zeibekiko-souvlaki.gr", true }, { "zeilenmethans.nl", true }, { "zeilles.nu", true }, { "zeitoununiversity.org", true }, @@ -37977,22 +41426,27 @@ 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 }, + { "zenghx.tk", false }, { "zenics.co.uk", true }, { "zenithmedia.ca", true }, { "zenk-security.com", true }, { "zenlogic.com", true }, { "zenmate.com.tr", true }, + { "zennzimie.be", true }, + { "zennzimie.com", true }, { "zenofa.co.id", true }, + { "zenram.com", true }, { "zentask.io", true }, { "zenti.cloud", true }, - { "zentiweb.nl", true }, { "zenvideocloud.com", true }, + { "zeparadox.com", true }, { "zephyrbk.com", true }, { "zephyrbookkeeping.com", true }, + { "zephyretcoraline.com", true }, { "zeplin.io", true }, { "zer0-day.pw", true }, { "zer0.de", false }, @@ -38005,6 +41459,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zeropush.com", true }, { "zeroseteatacado.com.br", true }, { "zerossl.com", true }, + { "zerosync.com", true }, + { "zerotoone.de", true }, + { "zerowastesavvy.com", true }, { "zertif.info", true }, { "zertitude.com", true }, { "zeryn.net", true }, @@ -38012,14 +41469,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "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 }, @@ -38034,16 +41489,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhangyuhao.com", true }, { "zhangzifan.com", false }, { "zhaofeng.li", true }, + { "zhaopage.com", true }, { "zhaoxixiangban.cc", true }, { "zhcexo.com", true }, { "zhen-chen.com", true }, { "zhengjie.com", true }, + { "zhenyan.org", true }, + { "zhi.ci", true }, { "zhiku8.com", true }, { "zhima.io", true }, { "zhitanska.com", true }, - { "zhiwei.me", true }, { "zhl123.com", true }, - { "zhoushuo.me", true }, + { "zhongzicili.ws", true }, + { "zhoushuo.me", false }, { "zhoutiancai.cn", true }, { "zhovner.com", true }, { "zhthings.com", true }, @@ -38059,7 +41517,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zigottos.fr", true }, { "zigzagmart.com", true }, { "zihao.me", false }, - { "zii.bz", true }, { "zijung.me", true }, { "zikinf.com", true }, { "ziktime.com", true }, @@ -38073,26 +41530,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zingarastore.com", true }, { "zingjerijk.nl", true }, { "zings.eu", true }, - { "zinniamay.com", 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 }, + { "zirtek.ie", true }, { "zirtual.com", true }, - { "zitrone44.de", true }, { "zitseng.com", true }, { "zittingskalender.be", true }, { "zivava.ge", true }, { "zivmergers.com", true }, - { "zivyruzenec.cz", false }, + { "zivver.com", true }, { "zixiao.wang", true }, + { "zju.tv", true }, + { "zjuqsc.com", true }, + { "zjv.me", true }, + { "zjyifa.cn", true }, + { "zk.com.co", true }, { "zk.gd", true }, { "zk9.nl", true }, + { "zkontrolujsiauto.cz", true }, { "zkrypt.cc", true }, { "zkzone.net", true }, + { "zl0iu.com", true }, + { "zl8862.com", true }, { "zlatakus.cz", true }, { "zlatosnadno.cz", true }, { "zlaty-tyden.cz", true }, @@ -38113,6 +41580,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zmartagroup.se", true }, { "znation.nl", true }, { "zny.pw", true }, + { "zoarcampsite.uk", true }, { "zobraz.cz", true }, { "zobworks.com", true }, { "zoccarato.ovh", true }, @@ -38127,7 +41595,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zoki.art", true }, { "zollihood.ch", true }, { "zolokar.xyz", true }, + { "zom.bi", true }, { "zomerschoen.nl", true }, + { "zonadigital.co", true }, { "zone-produkte.de", false }, { "zone39.com", true }, { "zonecb.com", true }, @@ -38139,38 +41609,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zonglovani.info", true }, { "zonky.cz", true }, { "zonkysetkani.cz", true }, - { "zoo.city", false }, { "zooish.net", true }, { "zook.systems", true }, { "zoola.io", true }, { "zoolaboo.de", 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 }, { "zorasvobodova.cz", true }, { "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 }, - { "zqwqz.com", true }, + { "zp25.ninja", true }, + { "zqstudio.top", true }, { "zravypapir.cz", true }, - { "zrhdwz.cn", true }, { "zrniecka-pre-sny.sk", true }, { "zrnieckapresny.sk", true }, { "zrt.io", true }, @@ -38187,7 +41656,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zuan-in.net", true }, { "zubel.it", false }, { "zubora.co", true }, - { "zubro.net", true }, { "zuefle.net", true }, { "zug-anwalt.de", true }, { "zug.fr", true }, @@ -38198,7 +41666,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zula.africa", true }, { "zulu.ro", true }, { "zum-baur.de", true }, + { "zumazar.ru", true }, { "zund-app.com", true }, + { "zunda.cafe", true }, { "zundapp529.nl", true }, { "zundappachterhoek.nl", true }, { "zuolan.me", false }, @@ -38208,7 +41678,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zuppy.pm", true }, { "zuralski.net", true }, { "zurgl.com", false }, - { "zurickrelogios.com.br", true }, { "zurret.de", true }, { "zusjesvandenbos.nl", true }, { "zuzumba.es", true }, @@ -38224,7 +41693,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zwy.ch", true }, { "zx6rninja.de", true }, { "zx7r.de", true }, - { "zxavier.com", true }, { "zxe.com.br", true }, { "zxtcode.com", true }, { "zy.md", true }, @@ -38239,6 +41707,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zyrillezuno.com", true }, { "zyul.ddns.net", true }, { "zyzardx.com", true }, + { "zyzsdy.com", true }, + { "zz295.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_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) { |